@font-face {
    font-family: "Panton Black";
    src: url("../../fonts/Panton-Black.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Panton Regular";
    src: url("../../fonts/Panton-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Lato Bold";
    src: url("../../fonts/Lato-Bold.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Lato Regular";
    src: url("../../fonts/Lato-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Lato Light";
    src: url("../../fonts/Lato-Light.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Open Sans Regular";
    src: url("../../fonts/OpenSans-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../../fonts/Inter-VariableFont.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Poppins Light";
    src: url("../../fonts/Poppins-Light.ttf") format("truetype");
    font-display: swap;
}

.heading-56 {
    font-size: 56px;
    font-family: "Poppins Light";
    line-height: 67px;
}

.heading-52 {
    font-size: 52px;
    font-family: "Panton Black";
    line-height: 48px;
}

.heading-48 {
    font-size: 48px;
    font-family: "Panton Black";
    line-height: 57px;
}

.heading-40 {
    font-size: 40px;
    font-family: "Poppins Light";
    line-height: 48px;
}

.heading-40.bold {
    font-weight: 700;
}

.heading-32 {
    font-size: 32px;
    font-family: "Poppins Light";
    line-height: 48px;
}

.heading-32.bold {
    font-weight: 700;
}

.heading-24 {
    font-size: 24px;
    font-family: "Poppins Light";
    line-height: 36px;
}

.heading-24.bold {
    font-weight: 700;
}

.body-24 {
    font-family: "Inter";
    font-size: 24px;
    line-height: 36px;
}

.body-20 {
    font-family: "Poppins Light";
    font-size: 20px;
    line-height: 21px;
}

.body-18 {
    font-family: "Inter";
    font-size: 18px;
    line-height: 27px;
}

.body-16 {
    font-family: "Poppins Light";
    font-size: 16px;
    line-height: 21px;
}

.body-14 {
    font-family: "Poppins Light";
    font-size: 14px;
    line-height: 16px;
}

.body-13 {
    font-family: "Inter";
    font-size: 13.333px;
    line-height: 14px;
}

.body-12 {
    font-family: "Poppins Light";
    font-size: 12px;
    line-height: 14px;
}

.body-10 {
    font-family: "Inter";
    font-size: 10px;
    line-height: 18.2px;
}

.body-8 {
    font-family: "Inter";
    font-size: 8px;
    line-height: 10px;
}

.w-300 {
    font-weight: var(--w-300);
}

.w-400 {
    font-weight: var(--w-400);
}

.w-500 {
    font-weight: var(--w-500);
}

.w-600 {
    font-weight: var(--w-600);
}

.w-700 {
    font-weight: var(--w-700);
}

.underline {
    text-decoration: underline;
}

.exo {
    font-family: "Panton Regular";
}

.btn-default {
    background: linear-gradient(
            90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 50%,
            var(--secondary-color) 50%,
            var(--primary-color) 100%
        )
        right;
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-size: 200%;
    font-size: 16px;
    font-family: "Lato Light";
    font-weight: var(--w-700);
    color: var(--color-white);
    width: 100%;
    margin-top: 32px;
    cursor: pointer;
    transition: 0.5s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.btn-default:hover {
    background-position-x: 0;
    text-decoration: none;
}

.btn-default a {
    color: var(--white);
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Lato Light";
    font-weight: var(--w-700);

    border: 2px solid var(--btn-color);
    border-radius: 4px;

    background-color: transparent;

    color: var(--btn-color);

    padding: 15px;

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

.btn-outline:hover {
    color: #fff;
    background-color: var(--btn-color);
}

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

    padding: 16px 24px;
    border: none;
    border-radius: 6px;

    font-family: "Poppins Light";
    font-weight: var(--w-400);
}

.input-default::placeholder {
    color: #7c878e;
}

select.input-default {
    -webkit-appearance: none;
    appearance: none;
    padding: 10px 16px;
    color: black;
    font-size: 14px;

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

    border: 0.5px solid transparent;
    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;
}

select.input-default:hover {
    cursor: pointer;
    border: 0.5px solid #7c878ea1;
}

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

.input-default.input-bordered {
    border: 1px solid #7c878e;
}

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

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

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

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%;
}

textarea.input-border-b {
    width: 100%;
    color: #7c878e;
    font-size: 14px;
    font-family: "Panton Regular";
    font-weight: var(--w-400);
}

body.no-scroll {
    overflow: hidden;
}

.swal-modal {
    font-family: "Panton Regular";
}

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

.swal-button--confirm {
    background-color: var(--btn-color);
}

.swal-button:not([disabled]):hover {
    background-color: var(--btn-color);
    opacity: 0.7;
}

.swal-button:focus {
    box-shadow: none;
}

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

.swal-icon--success__ring,
.swal-icon--error {
    border-color: var(--secondary-color);
}

.swal-icon--success__line,
.swal-icon--error__line {
    background-color: var(--secondary-color);
}

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

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

    .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 {
        width: 162px;
    }

    .product-images img {
        max-width: 100%;
        height: 196px;
    }

    .product-info-content {
        padding: 8px;
    }

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

    .product-price {
        width: 80%;
        order: 1;
    }

    .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 (min-width: 768px) and (max-width: 1199px) {
    .hide-tb {
        display: none;
    }
}
@media screen and (min-width: 1200px) {
    .hide-ds {
        display: none;
    }
}
button[disabled],
input[disabled],
select[disabled],
textarea[disabled],
div[disabled] {
    opacity: 0.54;
    filter: grayscale(100%);
}

.skeleton-load {
    background: linear-gradient(to right, #f0f0f0, #f2f2f2);
    background-size: 200%;
    animation: 1s skeleton-background infinite ease;
}
.skeleton-load * {
    visibility: hidden;
}
@keyframes skeleton-background {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

.card-produto:not(.skeleton-load) {
    animation: 0.8s ease appear;
}

@keyframes appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
