.cupons{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.item_cupom{
    width: 90%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.left_cupom{
    background: rgb(255, 255, 255);
    height: 180px;
    width: 188px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
}
.left_cupom::before{
    content: "";
    width: 68px;
    position: absolute;
    left: -45px;
    height: 68px;
    border-radius: 100%;
    background: #f8f8f8;
}
.left_cupom::after{
    content: "";
    width: 10px;
    z-index: 1;
    right: -5px;
    top: 14px;
    height: calc(100% - 24px);
    position: absolute;
    background-image: repeating-linear-gradient(rgb(248 248 248), rgb(248 248 248) 16px, transparent 16px, transparent 24px, rgb(248 248 248) 24px), repeating-linear-gradient(270deg, rgb(248 248 248), rgb(248 248 248) 16px, transparent 16px, transparent 24px, rgb(248 248 248) 24px);
    background-size: 10px 100%, 100% 10px, 10px 100%, 100% 10px;
    background-position: 0px 0px, 0px 0px, 100% 0px, 0px 100%;
    background-repeat: no-repeat;
}
.area_loja_cupom{
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.area_loja_cupom img{
    width: 50px;
}
.area_loja_cupom p{
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    margin-top: 10px;
    text-align: center;
    width: 150px;
}
.right_cupom{
    width: calc(100% - 130px);
    flex-direction: column;
    align-items: flex-start;
    -webkit-box-pack: center;
    justify-content: center;
    padding-left: 17px;
    background-color: #fff;
    border-radius: 20px;
    height: 180px;
    position: relative;
}
.right_cupom::after{
    content: "";
    width: 68px;
    position: absolute;
    right: -35px;
    top: 44px;
    height: 90px;
    border-radius: 100%;
    background: #f8f8f8;
}
.alert_cupoun{
    font-size: 11px;
    text-align: center;
    font-weight: 300;
    margin: auto;
    margin-top: -5px;
    width: 90%;
    margin-bottom: 10px;
}
.content_cupom{
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
}
.content_infos_cupom{
    max-width: 600px;
    min-width: 150px;
}
.desc_cupom{
    font-size: 18px;
    font-weight: 600;
}
.info_using{
    font-size: 13px;
    color: #4f4f4f;
    margin-top: 10px;
    margin-bottom: 10px;
}
.content_desconto{
    color: #1957ee;
    font-size: 25px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}
.content_get_cupom{
    width: 240px;
    height: 37px;
    position: relative;
    padding-right: 50px;
    min-width: 240px;
    margin-left: auto;
}
.btn_open_cupom{
    cursor: pointer;
    position: relative;
    padding: 0px;
    width: 100%;
    max-width: 240px;
    height: 37px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border: none;
    border-radius: 999px;
}
.content_cupom_after{
    background-color: rgb(255, 255, 255);
    position: absolute;
    padding-right: 16px;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
    width: calc(100% - 15px);
    height: 37px;
    border-radius: 999px;
    border-top: 1px dashed #1957ee;
    border-right: 1px dashed #1957ee;
    border-bottom: 1px dashed #1957ee;
    border-image: initial;
    border-left: unset;
    color: #1957ee;
}
.content_cupom_before{
    z-index: 1;
    position: absolute;
    left: 0px;
    background: #1957ee;
    border-top: 1px solid #1957ee;
    border-bottom: 1px solid #1957ee;
    border-left: 1px solid #1957ee;
    border-image: initial;
    border-right: none;
    border-radius: 999px 0px 0px 999px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 14px;
    color: rgb(255, 255, 255);
    width: 82%;
    max-width: 196px;
    height: 37px;
    transition: all 0.125s ease-in 0s;
}
.content_cupom_before::after{
    content: "";
    z-index: 2;
    position: absolute;
    right: -21px;
    width: 35px;
    height: 38px;
    border-radius: 100% 0px 0px 100%;
    background: linear-gradient(90deg, #f8f8f8, 50%, transparent 50%);
    transform: rotate(-10deg);
    transition: all 0.125s ease-in 0s;
}
.btn_open_cupom:hover .content_cupom_before{
    width: 75%;
}


.back_cupom{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}
.pop_cupom{
    width: 300px;
    padding: 20px 10px;
    background-color: #fff;
    border-radius: 10px;
    position: fixed;
    z-index: 10000;
    top: 80px;
    left: 50%;
    margin-left: -160px;
    display: none;
}
.area_closed{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.area_closed svg{
    height: 20px;
    cursor: pointer;
}
.area_loja_pop{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.area_loja_pop img{
    width: 80px;
}
.attention{
    margin-left: 20px;
}
.attention h3{
    font-size: 18px;
    margin: 0;
    color: #1d1d1d;
}
.attention p{
    margin: 0;
    font-size: 12px;
    color: #7b7b7b;
}
.content_pop_cupom{
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.content_pop_cupom h4{
    font-size: 15px;
    margin: 0;
}
.content_pop_cupom p{
    margin: 0;
    text-align: center;
    font-size: 13px;
    margin-top: 5px;
    color: #7b7b7b;
}
.area_copyCupom{
    width: 80%;
    height: 35px;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    margin-top: 15px;
    border-radius: 20px;
    justify-content: space-around;
    cursor: pointer;
}
.area_copyCupom p{
    font-size: 13px;
    color: #3d3d3d;
    font-weight: 600;
    margin: 0;
}
.cutCopy{
    display: flex;
    align-items: center;
    justify-content: center;
}
.cutCopy p{
    margin-left: 5px;
    color: #1957ee;
}
.cutCopy svg{
    fill: #1957ee;
}
.click_openloja{
    width: 80%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: #1957ee;
    border-radius: 5px;
    cursor: pointer;
}
.click_openloja p{
    margin: 0;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}
.click_openloja svg{
    height: 15px;
    fill: #fff;
    margin-left: 15px;
}
.right_coupoum_text{
    font-size: 30px;
    margin-left: 10px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc(100% - 150px);
}
.area_name_coupom{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.left_coupom_img{
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.left_coupom_img img{
    width: 80px;
}
.plus_coupom{
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}
.plus_coupom svg{
    height: 15px;
    margin-right: 5px;
}
.area_text_cupom{
    padding: 10px 15px;
    background-color: #E7F9DD;
    color: #2B7A00;
    border: 2px dashed #2B7A00;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}
.area_text_cupom svg{
    height: 20px;
    margin-right: 5px;
    fill: #2B7A00;
}
.area_plus_mobile{
    border-radius: 5px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.area_plus_mobile svg{
    height: 15px;
    margin-right: 10px;
}
.desc_cupoms{
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    padding: 25px;
    display: none;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
    font-weight: 500;
}
/**CUPONS NOVO**/
.title_cupons_page{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border-radius: 5px;
}
.title_cupons_page img{
    width: 300px;
}
.cupons_page{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-between;
}

.item_cupom_inline{
    width: calc(30% - 20px);
    min-width: 240px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 15px;
    max-height: 207px;
    margin: 5px;
    margin-bottom: 10px;
}
.inline_cupom_top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}
.text_cupom, .dest_cupom{
    display: flex;
    align-items: center;
    font-weight: 600;
}
.text_cupom{
    font-size: 15px;
    width: 200px;
    overflow: hidden;
    flex-wrap: nowrap;
}
.text_cupom svg{
    height: 15px;
    margin-right: 5px;
}
.dest_cupom{
    padding: 5px 10px;
    background-color: #1957ee;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
}
.dest_cupom svg{
    height: 15px;
    margin-right: 5px;
}
.inline_cupom_center{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.img_loja_inline img{
    width: 50px;
    border: 1px solid #1957ee;
    border-radius: 50%;
    margin-left: 10px;
}
.inline_loja_cupom{
    font-size: 14px;
    font-weight: 600;
}
.inline_loja_cupom span{
    color: #1957ee;
}
.text_inline_cupom{
    font-size: 13px;
    color: #7a6262;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 10px;
}
.inline_cupom_bottom{
    width: 100%;
    border-top: 1px solid #ccc;
    height: 63px;
    padding-bottom: 5px;
}
.btn_inline_cupom{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 5px;
    height: 35px;
    background-color: #1d1d1d;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.btn_inline_cupom svg{
    height: 15px;
    margin-right: 10px;
}
.date_inline_cupom{
    font-size: 12px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    margin-top: -2px;
}

/**LOJAS DE CUPONS**/
.lojas_cupom{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.item_loja_c{
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ffffff;
    
    color: #3d3d3d;
    margin: 5px;
}
.item_loja_c img{
    height: 40px;
}
.item_loja_c p{
    font-size: 11px;
    font-weight: 600;
}
.qt_cupom{
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-top: 5px;
}
.qt_cupom svg{
    height: 15px;
    margin-right: 5px;
}
.qt_cupom span{
    margin-right: 5px;
}

@media only screen and (max-width: 685px){
    .content_cupom{
        width: 100%;
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;
    }
    .content_get_cupom{
        margin-top: 10px;
        width: 190px;
        padding-left: 0;
        min-width: 190px;
        margin-left: 0;
    }
    .right_cupom::after{
       display: none;
    }
    .left_cupom{
        width: 120px;
    }
    .area_loja_cupom img{
        width: 50px;
    }
    
    .btn_open_cupom{
        width: 190px;
    }
    .area_loja_cupom p{
        display: none;
    }
    .desc_cupom{
        max-width: 200px;
        font-size: 13px;
    }
    .content_desconto{
        font-size: 20px;
    }
    .right_coupoum_text{
        font-size: 18px;
    }
    .left_coupom_img{
        width: 110px;
        height: 110px;
        margin-left: 5px;
    }
    .left_coupom_img img{
        width: 80px;
    }
    .plus_coupom{
        width: 140px;
        height: 40px;
        display: none;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
    }
    .area_text_cupom{
        padding: 6px 10px;
        margin-top: 5px;
    }
    .area_plus_mobile{
        display: flex;
        min-width: 300px;
    }
    .desc_cupoms{
        min-width: 300px;
        padding: 15px;
    }
    .cupons_page{
        justify-content: space-around;
    }
    .item_cupom_inline{
        width: 290px;
    }
    .lojas_cupom{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        margin-top: 20px;
    }
    .item_loja_c{
        width: 90px;
        height: 90px;
        margin: 0;
        margin-bottom: 5px;
    }
}