.body-12 {
    font-family: var(--text-font);
    font-size: 12px;
}

.body-14 {
    font-family: var(--text-font);
    font-size: 14px;
}

.body-16 {
    font-family: var(--text-font);
    font-size: 16px;
}

button {
    cursor: pointer !important;
}

.border {
    margin: calc(var(--elements-gap) / 2) 0 0;
    border-bottom: 1px solid #e2e2e2;
}

.underline {
    text-decoration: underline;
}

@media (max-width: 888px) {
    .form {
        padding: 32px 0;
    }

    .form button {
        width: 100%;
    }

    .form .col-lg-6 {
        width: 100%;
    }
}

input:focus {
    border-color: #96b0ad;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.background-primary {
    background-color: var(--primary-color);
}

.background-white {
    background-color: var(--color-white);
}

.color-white {
    color: var(--color-white);
}

.text-primary {
    color: var(--primary-color);
}

.text-gray {
    color: var(--color-cinza-escuro);
}

.color-dark-gray {
    color: var(--color-dark-gray);
}

.font-12 {
    font-size: 12px;
}

.white-space {
    white-space: nowrap;
}

.link-footer {
    font-size: 18px;
    line-height: 22.5px;
    font-family: var(--text-font);
}

select.input-default {
    -webkit-appearance: none;
    appearance: none;
    color: var(--color-cinza-escuro);
    font-size: 14px;
    width: 140px;

    background-image: url("../../images/svgs/select-arrow.svg");
    background-repeat: no-repeat;
    background-position-x: calc(100% - 16px);
    background-position-y: 50%;

    border: 1px solid var(--color-cinza-escuro);
    padding: 8px 16px;
    border-radius: 8px;

    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;

    font-family: var(--text-font);
}

select.input-default:hover {
    cursor: pointer;
    border: 0.5px solid var(--primary-color);
}

.paginacao-select select.input-default {
    width: 145px;
}

.input-default.input-bordered {
    border: 1px solid #b2b2b2;
    width: 141px;
}

.input-border-b {
    box-sizing: border-box;

    padding: 4px 0;
    border: none;
    border-bottom: 1px solid #b2b2b2;
    background-color: transparent;
}

.input-border-b::placeholder {
    color: #1b1d1c;
}

select.input-border-b {
    -webkit-appearance: none;
    appearance: none;

    background-image: url("../../images/svgs/arrow-bottom-black.svg");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 50%;
}

.products-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.card-produto {
    max-width: 280px;
    background-color: transparent;

    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

.card-produto:hover {
    box-shadow: 18px 29px 54px #e9e9e9;
}

.product-quick-view,
.product-title,
.product-price,
.product-see-more-btn {
    font-family: var(--text-font);
}

.product-price h5 {
    font-size: 16px;
    font-weight: bold;
}

.bold {
    font-weight: bold;
}

.right {
    justify-content: right;
}

.left {
    justify-content: left;
}

.product-images,
.spp-item-single-card-image {
    text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-image-featured,
.product-image-secondary {
    width: 100%;
    height: 100%;
    max-width: 280px;
    max-height: 280px;

    object-fit: cover;
    display: block;
    background-color: var(--color-white);

    aspect-ratio: 1 / 1;
}

.product-image-secondary {
    display: none;
}

.product-images .product-image-secondary+.product-image-featured {
    animation: 0.6s ease appear-product-image-secondary;
}

.product-images:hover .product-image-secondary+.product-image-featured {
    display: none;
    animation: none;
}

.product-images:hover .product-image-secondary {
    display: block;
    animation: 0.6s ease appear-product-image-secondary;
}

.product-quick-view {
    z-index: 2;
    bottom: 100%;

    height: 58px;
    position: absolute;
    width: 100%;
    max-height: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-theme-color);
    color: #fff;

    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

.product-quick-view>span {
    opacity: 0;
}

.card-produto:hover .product-quick-view {
    max-height: 58px;
}

.card-produto:hover .product-quick-view>span {
    opacity: 100%;
}

.product-parceled {
    font-family: var(--text-font);
    font-size: 12px;
    color: #7c878e;
}

.product-wish {
    background-color: transparent;
}

.product-wish::after {
    content: url("../../images/svgs/heart2.svg");
}

.product-wish.active::after {
    content: url("../../images/svgs/heart2-red.svg");
}

.product-wish:hover {
    cursor: pointer;
}

.product-color-ball {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.product-color-ball:hover {
    cursor: pointer;
}

.product-color-ball.active {
    border: 1px solid var(--secondary-theme-color);
}

.product-color-ball-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(206, 215, 220, 0.39);
    font-family: var(--text-font);
    font-size: 10px;
    color: #292e31;
}

.product-info {
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-title {
    width: 100%;
}

.grid {
    display: grid;
    justify-items: center;
}

.product-info-foot a {
    text-decoration: none;
}

.product-stock-msg {
    font-family: var(--text-font);
    color: red;
    font-size: 14px;
    margin-bottom: 4px;
}

.product-info-middle {
    flex-wrap: wrap;
}

.product-price,
.product-original-price {
    width: 100%;
    margin-bottom: 4px;
    text-align: center;
}

.product-original-price {
    font-size: 12px;
    color: #ccc;
    text-decoration: line-through;
}

.product-colors {
    display: flex;
    gap: 8px;
}

.product-see-more-btn {
    line-height: 21px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    padding: 5px 0;
    display: block;
    width: 100%;

    background-image: linear-gradient(30deg,
            var(--primary-theme-color) 50%,
            transparent 50%);
    background-size: 850px;
    background-repeat: no-repeat;
    background-position: 0;
    border: 1px solid var(--primary-theme-color);

    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.product-see-more-btn:hover {
    color: var(--secondary-theme-color);
    border-color: var(--secondary-theme-color);
    background-image: linear-gradient(30deg,
            var(--primary-theme-color) 50%,
            transparent 50%);
    background-size: 850px;
    background-repeat: no-repeat;
    background-position: 100%;
}

.product-quick-view-button-holder {
    display: block;
}

.card-produto:hover .product-quick-view-button {
    margin-bottom: 0;
}

.product-quick-view-button {
    padding: 10px 20px 10px 10px;
    background-color: #fff;
    color: var(--primary-theme-color);
    opacity: 0.95;
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    cursor: pointer;
    margin-bottom: -100px;
    transition: 0.3s all ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-quick-view-button-text {
    color: var(--primary-theme-color);
    margin-right: -90px;
    margin-left: 5px;
    transition: 0.3s all ease;
    opacity: 0;
}

.product-quick-view-button:hover .product-quick-view-button-text {
    margin-right: 0;
    display: block;
    opacity: 1;
}

.product-label {
    background-color: var(--primary-theme-color);
    color: #fff;
    padding: 2px 5px;
    position: absolute;
    left: -5px;
    top: 5px;
    z-index: 1;
}

/*-------ESTILOS MENU PAINEL CLIENTE-------*/
#page-map {
    padding: 20px 0 30px;
    color: #7c878e;
}

#page-name {
    color: var(--primary-theme-color);
}

#dashboard .container {
    gap: 32px;
}

.menu-conta {
    width: 280px;
}

.menu-conta-header {
    padding: 20px 0;
}

.menu-conta-header-title {
    color: var(--secondary-theme-color);
}

.menu-conta-item {
    padding: 20px 0 20px 20px;
    border-top: 1px solid #ced7dc;

    align-items: center;

    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

.menu-conta-item.active {
    border-right: 4px solid var(--primary-theme-color);
    color: var(--primary-theme-color);
}

.menu-conta-item:hover {
    color: var(--primary-theme-color);
}

.menu-conta li button {
    font-family: var(--text-font);
    font-size: 18px;
}

#icon-exit {
    margin-left: auto;
}

.dashboard-content {
    flex-grow: 1;
    max-width: 904px;
}

.dashboard-header {
    margin-bottom: 24px;
}

.dashboard-header span {
    display: block;
}

.swal-modal {
    font-family: var(--text-font);
}

.swal-modal .swal-text {
    text-align: center;
}

div.info-card-header-action {
    display: none !important;
}

@keyframes appear-product-image-secondary {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .hide-mb {
        display: none;
    }

    .card-produto {
        flex-shrink: 0;
    }

    #dashboard .container {
        flex-direction: column;
    }

    .menu-conta {
        width: 100%;
    }

    .menu-conta-header {
        align-items: center;
        justify-content: space-between;
    }

    .menu-conta-btn-mb {
        background-color: transparent;
    }

    #menu-conta-open-ic,
    #menu-conta-close-ic {
        display: none;
    }

    .menu-conta-btn-mb:not(.active) #menu-conta-open-ic {
        display: block;
    }

    .menu-conta-btn-mb.active #menu-conta-close-ic {
        display: block;
    }

    .menu-conta-item {
        padding: 8px 0;
        flex-shrink: 0;
    }
}

/*Estilos compartilhados por mobile e tablet*/
@media screen and (max-width: 1199px) {
    .card-produto {
        min-width: 162px;
    }

    .product-title {
        font-size: 14px;
        line-height: 18.2px;
    }

    .product-price {
        width: 100%;
        order: 1;
        margin-top: 13px;
    }

    .product-parceled {
        order: 3;
        max-width: 100%;
    }

    .product-colors {
        order: 2;
    }

    .product-color-ball {
        width: 14px;
        height: 14px;
    }

    .product-color-ball:not(:first-child) {
        display: none;
    }

    .product-see-more-btn {
        font-size: 14px;
        line-height: 18.2px;
    }

    .product-quick-view {
        display: none;
    }

    .menu-conta {
        flex-shrink: 0;
    }

    #page-map {
        padding: 20px 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .filtros-ativos-list {
        flex-wrap: wrap;
    }

    .filtros span {
        font-size: 12px;
    }
}

@media screen and (max-width: 750px) {
    .product-quick-view-button .product-quick-view-button-text {
        margin-right: 0;
        display: block;
        opacity: 1;
    }

    .card-produto .product-quick-view-button {
        margin-bottom: 0;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

.inter {
    font-family: var(--text-font);
}

.border-vertical {
    border: 1px solid var(--color-cinza-medio);
}

@keyframes appear-product-image-secondary {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.details-input-qtd input {
    color: var(--primary-color);
    font-weight: bold;
    width: 35px;
    height: 30px;
    text-align: center;
    border: 0;
    border-left: 1px solid #A1A2A5;
    border-right: 1px solid #A1A2A5;
    font-family: var(--text-font);
}

.details-input-qtd input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.details-input-qtd button,
.details-input-qtd input {
    width: 30px;
    height: 30px;
}

.cart-section .row.cart-buttons {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.details-input-qtd {
    border: 1px solid #A1A2A5;
    border-radius: 4px;
    width: max-content;
    flex-direction: row;
    display: flex;
    align-items: center;
}

.details-input-qtd .flex {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.details-input-qtd button,
.details-input-qtd input {
    height: 35px;
    box-sizing: border-box;
}

.details-input-qtd button {
    width: 35px;
    background-color: transparent;
    align-items: center;
    justify-content: center;

    background-color: transparent;

    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

.details-input-qtd button:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
}

.details-input-qtd button:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: none;
}


/* Center elements in input type number */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    display: none;
}

.swal2-title {
    font-family: var(--title-font) !important;
    font-size: 24px !important;
    font-weight: bold !important;
    line-height: 36px !important;
    color: #000000 !important;
}

.swal2-html-container,
#swal2-html-container {
    font-family: var(--text-font) !important;
}

.swal2-actions {
    flex-direction: row-reverse;
}

.swal2-styled {
    border-radius: 5px !important;
    font-family: var(--text-font) !important;
}

.swal2-styled.swal2-deny {
    background-color: var(--color-primary) !important;
}

.swal2-styled.swal2-confirm {
    background-color: #ea5455 !important;
}

.v-enter-active,
.v-leave-active {
    transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
    opacity: 0;
}


/* Checkbox */

.checkbox {
    display: inline-block;
    vertical-align: middle;
}

.checkbox input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.checkbox label {
    position: relative;
    padding-left: 2.2em;
    display: inline-block;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 1.5em;
    width: 1.5em;
    background: #FFF;
    margin-right: 0.5em;
    border: 1px solid #A1A2A5;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.checkbox label::after {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 0.75em;
    transform: translate(-50%, -50%);
    font-size: 1em;
    color: #FFF;
    opacity: 0;
    transition: all 0.2s ease;
}

.checkbox label:focus::before,
.checkbox label:hover::before {
    background: #DDD;
}

.checkbox input:checked+label::before {
    background: #ff7212;
    border-color: #ff7212;
}

.checkbox input:checked+label::after {
    opacity: 1;
}


/* Radio */

.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
}

.radio>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.radio.radio-outline.radio-success>input[type="radio"]:checked~span,
.radio.radio-outline.radio-success>input[type="checkbox"]:checked~span {
    background-color: transparent;
    border-color: var(--secondary-color);
}

.radio.radio-success>span {
    border: 1px solid #D1D3E0;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: white;
}

.radio.radio-outline.radio-success>input:checked~span:after {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    display: block;
}

.radio.radio-outline>span:after {
    content: "";
    width: 10px;
    height: 10px;
    display: none;
    border-radius: 100% !important;
}

.cursor-pointer {
    cursor: pointer;
}
