@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
 
:root {
    --main-color: #ED1C24;
}

html, body {
    font-size: 14px;
}

* {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: bold;
    font-size: 32px;
}

h3 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 16px;
}

input[type=radio] {
    all:unset;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: #ccc solid 2px;
    display: block;
    border-radius: 20px;
    margin-right: 10px;
    cursor: pointer;
    transition-duration: .2s;
}

input[type=radio]:checked {
    background: #fff url('/images/ico_check.png') no-repeat center center;
    content: '•';
    color: #fff;
    font-size: 16px;
    background-size: 28px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: none;
}

.container {
    padding: 0 32px !important;
}

.group-btn-radio {
    background-color: #efefef;
}

.btn {
    border-radius: 4px;
    padding: 8px 32px;
    border-radius: 40px;
}

.btn:hover img {
    position: relative;
    top: -1px;
}

.btn:hover img {
    margin-left: 8px;
    transition-duration: .3s;
}

.btn-success {
    background-color: rgb(37,211,102) !important;
    border: none !important;
    font-weight: bold;
    font-size: 16px;
    border-bottom: #069c3d solid 3px !important;
}

.btn-warning {
    background-color: #ffeaa7 !important;
    border: none !important;
    font-weight: bold;
    font-size: 16px;
    border-bottom: #fdcb6e solid 3px !important;
}

.btn-primary {
    background-color: #FFA41C !important;
    border: none !important;
    font-weight: bold;
    font-size: 16px;
    color: #0F1111;
    border-bottom: #FF8F00 solid 3px !important;
}

.text-red {
    color: var(--main-color);
}

hr {
    opacity: 1;
    color: #dedede;
}

header {
    padding: 16px;
    margin: 16px;
    border-radius: 8px;
}

header::before {
    display: block;
    background-color: var(--main-color);
    content: '';
    height: 80px;
    width: 100%;
    margin-bottom: -48px;
    border-radius: 8px;
}

header::after, #product_description::before {
    display: block;
    height: 5px;
    width: 200px;
    content: '';
    margin: 16px auto;
    background-color: var(--main-color);
}

#product_description::before {
    margin: 16px 8px;
}

.header_seller_image {
    width: 100px;
    height: 100px;
    background-color: #fff;
    background-position: center top;
    background-size: 100%;
    border-radius: 100%;
    margin: 0;
    background-repeat: no-repeat;
    border: #fff solid 3px;
}

.seller_name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
    color: #111;
}

.seller_social {
    margin-top: 16px;
    margin-bottom: 16px;
}

.seller_social a {
    display: inline-block;
    padding: 8px;
    background: var(--main-color);
    border-radius: 8px;
    margin: 0 8px;
    box-shadow: rgba(0, 0, 0, .1) 0px 3px 3px;
    color: #fff;
}

.seller_social a:hover {
    box-shadow: rgba(0, 0, 0, .1) inset 0px 3px 3px;
}

.page_description {
    margin-top: 16px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}

.page_description small {
    display: block;
    margin: 16px 0;
    font-size: .8em;
    line-height: 120% !important;
    font-weight: normal;
}

.product_installments label {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
    cursor: pointer;
}

.product_installments label>span {
    font-size: 16px;
    font-weight: normal;
}

.wv_list_product {
    background: #fff;
    padding: 16px 32px;
    border-bottom: #efefef solid 1px;
    border-radius: 32px;
}

.wv_list_product .btn {
    width: 100%;
}

.wv_list_product_name {
    height: 80px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.wv_list_product_name::after {
    display: block;
    width: 50px;
    height: 5px;
    content: '';
    background-color: var(--main-color);
}

.payment_methods .btn span {
    display: block;
    line-height: 100%;
    font-weight: normal;
    font-size: 10px;
}

footer {
    margin: 64px 0 0 0;
    color: #fff;
}

footer>div {
    background-color: var(--main-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: start;
}

.footer_logo {
    width: 80px;
    height: 80px;
    background-color: #fff;
    background-position: center center;
    background-size: 90%;
    border-radius: 100%;
    margin: 0;
    background-repeat: no-repeat;
}

.footer_copyright {
    color: #666;
    font-size: 12px;
    margin: 16px 0;
}

.footer_copyright a {
    color: inherit;
}

.footer_address>div {
    min-width: 150px;
    border-top: rgba(0,0,0,.2) solid 1px;
    padding-top: 8px;
}

#whatsapp_floating_button {
    position: fixed;
    right: 16px;
    bottom: 16px;
}

@media (max-width: 767px) {
    footer {
        text-align: center;
    }
    footer>div {
        flex-direction: column;
        align-items: center;
    }
    .footer_logo {
        margin-bottom: 8px;
    }
    .footer_address {
        flex-direction: column;
    }
}