@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* @font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Black.ttf'),
    url('../fonts/roboto/Roboto-BlackItalic.ttf'),
    url('../fonts/roboto/Roboto-Bold.ttf'),
    url('../fonts/roboto/Roboto-BoldItalic.ttf'),
    url('../fonts/roboto/Roboto-Italic.ttf'),
    url('../fonts/roboto/Roboto-Light.ttf'),
    url('../fonts/roboto/Roboto-LightItalic.ttf'),
    url('../fonts/roboto/Roboto-Medium.ttf'),
    url('../fonts/roboto/Roboto-MediumItalic.ttf'),
    url('../fonts/roboto/Roboto-Regular.ttf'),
    url('../fonts/roboto/Roboto-Thin.ttf'),
    url('../fonts/roboto/Roboto-ThinItalic.ttf');
    font-weight: normal;
    font-style: normal;
} */

/***************** Variables *****************/
:root {
    --title: 20px;
    --sub-title: 18px;
    --text: 14px;
    --text-center: center;

    --text-color: #000;

    --grey: #F1F1F1;
    --green: #007B8B;
    --orange: #F68C51;
    --yellow: #EBB424;
}

/***************** Animations *****************/
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes gradientMoviment {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/***************** Templates *****************/
.bg-white {
    background-color: #FFF;
}

.bg-grey {
    background-color: var(--grey);
}

.bg-green {
    background-color: var(--green);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-yellow {
    background-color: var(--yellow);
}

.color-white {
    color: #FFF;
}

.color-grey {
    color: var(--grey);
}

.color-green {
    color: var(--green);
}

.color-orange {
    color: var(--orange);
}

.color-yellow {
    color: var(--yellow);
}

.width-100 {
    width: 100%;
}

.height-100 {
    height: 100%;
}

.fs-20 {
    font-size: var(--title) !important;
}

.fs-18 {
    font-size: var(--sub-title) !important;
}

.fs-14 {
    font-size: var(--text) !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-11 {
    font-size: 11px !important;
}

.fs-10 {
    font-size: 10px !important;
}

.title {
    color: var(--text-color);
    font-weight: 400;
    font-size: var(--title) !important;
}

.text {
    color: var(--text-color);
    font-weight: 400;
    font-size: var(--text);
    line-height: 20px;
}

.text-center {
    text-align: center;
}

.text-lighter {
    font-weight: lighter !important;
}

.text-semi-bold {
    font-weight: 500 !important;
}

.text-bold {
    font-weight: 600 !important;
}

.hiper-link {
    text-decoration: underline !important;
    font-size: var(--text);
}

.decoration-underline {
    text-decoration: underline !important;
}

.mg-0-auto {
    margin: 0 auto;
}

.mg-btm-0 {
    margin-bottom: 0px !important;
}

.mg-btm-5 {
    margin-bottom: 5px !important;
}

.mg-btm-10 {
    margin-bottom: 10px !important;
}

.mg-btm-15 {
    margin-bottom: 15px !important;
}

.mg-btm-20 {
    margin-bottom: 20px !important;
}

.mg-btm-30 {
    margin-bottom: 30px !important;
}

.mg-btm-40 {
    margin-bottom: 40px !important;
}

.mg-btm-70 {
    margin-bottom: 70px !important;
}

.mg-rgt-0 {
    margin-right: 0px !important;
}

.mg-rgt-1 {
    margin-right: 1% !important;
}

.mg-rgt-5 {
    margin-right: 5px !important;
}

.mg-rgt-10 {
    margin-right: 10px !important;
}

.mg-rgt-20 {
    margin-right: 20px !important;
}

.mg-rgt-30 {
    margin-right: 30px !important;
}

.mg-rgt-40 {
    margin-right: 40px !important;
}

.mg-rgt-60 {
    margin-right: 60px !important;
}

.mg-rgt-70 {
    margin-right: 70px !important;
}

.mg-top-0 {
    margin-top: 0px !important;
}

.mg-top-1 {
    margin-top: 1% !important;
}

.mg-top-5 {
    margin-top: 5px !important;
}

.mg-top-10 {
    margin-top: 10px !important;
}

.mg-top-20 {
    margin-top: 20px !important;
}

.mg-top-30 {
    margin-top: 30px !important;
}

.mg-top-40 {
    margin-top: 40px !important;
}

.mg-top-70 {
    margin-top: 70px !important;
}

.flex {
    display: flex;
}

.row-wrap {
    flex-flow: row wrap;
}

.content-space-between {
    justify-content: space-between;
}

.content-center {
    justify-content: center;
}

.content-space-evenly {
    justify-content: space-evenly;
}

.content-end {
    justify-content: end;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: end;
}

.flex-column {
    flex-direction: column;
}

.row-wrap {
    flex-flow: row wrap;
}

.gap-1 {
    gap: 2px;
}

.gap-2 {
    gap: 4px;
}

.gap-3 {
    gap: 6px;
}

.gap-4 {
    gap: 8px;
}

.gap-5 {
    gap: 10px;
}

.gap-6 {
    gap: 12px;
}

.gap-7 {
    gap: 14px;
}

.gap-8 {
    gap: 16px;
}

.gap-9 {
    gap: 18px;
}

.gap-10 {
    gap: 20px;
}

.gap-12 {
    gap: 24px;
}

.gap-14 {
    gap: 28px;
}

.gap-16 {
    gap: 32px;
}

.gap-18 {
    gap: 36px;
}

.gap-20 {
    gap: 40px;
}

.relative {
    position: relative;
}

.button {
    cursor: pointer;
    transition: ease-in-out 0.5s;
}

.button:hover {
    background-color: #fff;
}

.button.active {
    background-color: #fff;
}

.select {
    cursor: pointer;
    transition: ease-in-out 0.5s;
}

.scale-x {
    transform: scaleX(-1);
}

.cursor-pointer {
    cursor: pointer;
}

.loader-session {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7) !important;
    height: 100%;
    width: 100%;
}

.loader-session img {
    width: 70px;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto';
    -webkit-box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #0000003b;
    border-radius: 20px;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: auto;
}

section {
    height: 100vh;
    position: relative;
}

nav {
    top: 0;
    z-index: 12;
    width: 100%;
    /* height: 10px; */
    height: 10px;
    position: relative;
    background: #007B8B;
    transition: ease-in-out 0.5s;
}

nav:hover {
    height: 75px;
}

nav .white-band {
    background-color: #fff;
}

nav .white-band .content-menu {
    width: 95%;
    display: flex;
    justify-content: end;
    height: 24px;
    max-width: 1350px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    padding: 0px 4px;
    margin: auto;
}

nav .white-band .button {
    display: flex;
    justify-content: end;
    margin: 0 10px;
    position: relative;
    padding: 0px 5px;
}

nav .white-band .button:hover {
    background-color: #F1F1F1;
}

nav .white-band .button a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

nav .white-band .button img {
    margin-right: 10px;
}

nav .white-band .button .title-menu {
    color: #000;
    font-weight: 500;
    font-size: 12px !important;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

nav .container-large {
    max-width: 1350px;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    height: 10px;
    width: 95%;
    padding: 4px 4px;
    transition: ease-in-out 0.5s;
    margin: auto;
    opacity: 0;
    visibility: hidden;
}

nav:hover .container-large {
    height: 75px;
    opacity: 1;
    visibility: visible;
}

nav .container-large .image-logo {
    width: 150px;
    display: block;
    position: relative;
    height: 50px;
}

nav .container-large .image-logo img {
    width: 125px;
    height: 50px;
}

nav .container-large .div-botao-compra {
    display: none;
}

nav .container-large .nav-menu {
    text-align: right;
    width: calc(100% - 340px);
    max-width: 675px;
    margin-left: 6%;
}

nav .container-large .nav-menu .navbar-nav {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-flow: row wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav .container-large .nav-menu .navbar-nav .item-nav {
    display: inline-block;
    /* margin: 0 2%;*/
    position: relative;
    transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

nav .container-large .nav-menu .navbar-nav .item-nav.active .categoria:after {
    width: 100%;
}

nav .container-large .nav-menu .navbar-nav .item-nav .categoria {
    color: #ffffff;
    display: block;
    padding: 10px 8px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto';
    transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    text-decoration: none;
}

nav .container-large .nav-menu .navbar-nav .item-nav .categoria:after {
    width: 0%;
    left: 0%;
    bottom: 27%;
    z-index: -1;
    content: '';
    height: 18px;
    position: absolute;
    background: #EBB31F;
    transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

nav .container-large .nav-menu .navbar-nav .item-nav .lista-submenu {
    left: 0%;
    top: 85%;
    opacity: 0;
    z-index: -1;
    position: absolute;
    visibility: hidden;
    transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

nav .container-large .nav-menu .navbar-nav .item-nav .lista-submenu .item-submenu {
    display: block;
    text-align: left;
    border-bottom: 1px solid #FFF;
    background: #189EA5;
}

nav .container-large .nav-menu .navbar-nav .item-nav .lista-submenu .item-submenu:last-child {
    border-bottom: 0;
}

nav .container-large .nav-menu .navbar-nav .item-nav .lista-submenu .item-submenu .subcategoria {
    color: #ffffff;
    display: block;
    white-space: nowrap;
    padding: 5px 20px 5px 10px;
    transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    font-size: 14px !important;
    text-decoration: none;
}

nav .container-large .nav-menu .navbar-nav .item-nav .lista-submenu .item-submenu.active .subcategoria,
nav .container-large .nav-menu .navbar-nav .item-nav .lista-submenu .item-submenu .subcategoria:hover {
    background: rgba(28, 111, 192, 0.63);
}

nav .container-large .nav-menu .navbar-nav .item-nav .lista-submenu .item-submenu .lista-subsubmenu {
    display: none;
    left: 0;
    top: 100%;
    opacity: 0;
    z-index: -1;
    position: absolute;
    visibility: hidden;
    transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

nav .container-large .nav-menu .navbar-nav .item-nav:not(.sociais):hover .categoria:after {
    width: 100%;
    background: #EBB31F;
}

nav .container-large .nav-menu .navbar-nav .item-nav:not(.sociais):hover .lista-submenu {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado {
    position: absolute;
    display: inline-block;
    margin: 0 5px;
    text-align: center;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado .fa {
    color: #ffffff;
    padding: 4px 0;
    display: block;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado span {
    display: none;
    color: #ffffff;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login {
    right: 58px;
    bottom: -30px;
    cursor: pointer;
    background: #00bfb3;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login .fa {
    width: 25px;
    height: 25px;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login+.menu-perfil {
    top: 55px;
    opacity: 0;
    right: 58px;
    text-align: left;
    padding: 5px 15px;
    position: absolute;
    visibility: hidden;
    background: #ffffff;
    transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    border-radius: 7px;
    -o-border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    -webkit-box-shadow: 6px 6px 3px 2px #f5f5f5;
    box-shadow: 6px 6px 3px 2px #f5f5f5;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login+.menu-perfil:hover {
    opacity: 1;
    visibility: visible;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login+.menu-perfil:before {
    top: -5px;
    right: 12px;
    content: '';
    border-bottom: 5px solid #ffffff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login+.menu-perfil h4,
nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login+.menu-perfil a {
    display: block;
    white-space: nowrap;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login+.menu-perfil h4 {
    color: #272727;
    font-size: 14px;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login+.menu-perfil a {
    padding: 2px 0;
    font-size: 12px;
    color: #6f716e;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.login:hover+.menu-perfil {
    opacity: 1;
    visibility: visible;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.compras {
    right: 0;
    bottom: -50px;
    background: #ffcd00;
}

nav .container-large .nav-menu .navbar-nav .item-nav.sociais .deslocado.compras .fa {
    width: 50px;
    height: 45px;
    font-size: 30px;
    line-height: 36px;
    background-size: 60%;
}

nav .container-large .nav-sociais .deslocado.compras img {
    width: 37px;
    object-fit: contain;
}

nav .container-large .comprar .btn-comprar {
    background: #40C982;
    border-radius: 19px;
    padding: 5px 17px;
    color: #fff;
    font-size: 14px;
    font-family: "Roboto";
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 10px;
}

nav .container-large .container-features {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-features .linguagem .idioma-img {
    position: relative;
    right: -1px;
    padding-bottom: 7px;
}

.features-mobile {
    display: none !important;
}

nav .user-deslogado {
    display: flex;
    position: relative;
    cursor: pointer;
}

nav .box-login {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    flex-direction: column;
    right: -50px;
    top: 45px;
    background-color: #fff;
    color: #000;
    padding: 16px;
    text-align: center;
    width: 215px;
    transition: ease-in-out 0.3s;
    box-shadow: 3px 5px 10px rgb(0 0 0 / 15%);
}

.user-deslogado:hover .box-login {
    opacity: 1;
    visibility: unset;
}

.user-deslogado div.welcome p.hello {
    color: #fff !important;
    font-size: 14px;
}

nav .box-login p {
    color: #000 !important;
    font-size: 13px !important;
    margin-bottom: 20px;
    line-height: 24px;
}

nav .box-login .button-div {
    margin-bottom: 20px;
}

nav .box-login .button-div #login-menu {
    background-color: #F68C51;
    color: #fff;
    width: 100px;
    height: 30px;
    margin: auto;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

nav .box-login #cadastro {
    font-weight: 500;
    padding: 0px 5px;
    font-size: 16px;
    color: #000;
}

nav .container-features .login-cadastro .deslocado .dropdown-content {
    display: none;
    text-align: center;
    position: absolute;
    left: 20px;
    top: 44px;
    background-color: #189EA5;
    min-width: 117px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    padding: 12px 16px;
    z-index: 1;
}

nav .dropdown-content {
    display: grid;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    position: absolute;
    left: -5px;
    top: 19px;
    background-color: #189EA5;
    min-width: 48px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    transition: ease-in-out 0.3s;
}

nav .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: unset;
}

nav .dropdown .dropdown-content a {
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
}

nav .container-features .login-cadastro {
    display: flex;
    align-items: center;
}

nav .container-features .login-cadastro a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
}

nav .container-features .login-cadastro #ou {
    font-size: 12px;
    font-size: 16px;
    color: #FFF;
}

nav .container-features .login-cadastro #cadastro {
    padding: 0px 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

nav .container-features .login-cadastro .deslocado {
    position: relative;
    display: inline-block;
}

nav .container-features .login-cadastro .deslocado button {
    cursor: pointer;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 14px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    border: 0;
}

nav .container-features .login-cadastro .deslocado button .welcome {
    max-width: 100px;
    overflow: hidden;
    display: flex;
}

nav .container-features .login-cadastro .deslocado button .welcome .hello {
    margin-right: 5px;
}

nav .container-features .login-cadastro .deslocado button .welcome p {
    color: #fff !important;
    text-align: initial;
    line-height: 17px;
    white-space: nowrap;
}

nav .container-features .login-cadastro .deslocado .arrow {
    position: relative;
    top: -7px;
    left: -3px;
}

nav .container-features .login-cadastro .deslocado {
    display: flex;
    align-items: center;
}

nav .container-features .login-cadastro .deslocado .dropdown-content {
    display: grid;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    position: absolute;
    left: 8px;
    top: 40px;
    background-color: #189EA5;
    min-width: 117px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    transition: ease-in-out 0.3s;
}

nav .container-features .login-cadastro .deslocado:hover .dropdown-content {
    opacity: 1;
    visibility: unset;
}

.container-features .login-cadastro .deslocado .dropdown-content a {
    color: #ffffff;
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
}

nav .container-large .nav-sociais .deslocado.compras span {
    right: 6px;
    bottom: 19px;
    display: block;
    font-size: 10px;
    padding: 2px 0px;
    position: absolute;
    text-align: center;
    font-weight: 800;
    background: #F68C51;
    color: #fff;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

nav .container-large .nav-menu .navbar-nav .close-menu {
    display: none;
}

nav .container-large .nav-menu .hamburger {
    display: none;
}

nav .container-large .nav-sociais {
    width: 50px;
    height: 50px;
    margin: 0 5px;
    position: relative;
}

nav .container-large .nav-sociais .deslocado {
    position: absolute;
    width: 50px;
    height: 100%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

nav .container-large .nav-sociais .deslocado img.icon-carrinho {
    width: 24px;
    object-fit: contain;
}

nav .container-large .nav-sociais .menu-perfil {
    top: 42px;
    opacity: 0;
    right: 7px;
    padding: 5px 15px;
    position: absolute;
    visibility: hidden;
    background: #ffffff;
    transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    border-radius: 7px;
    -o-border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    box-shadow: 3px 5px 10px rgb(0 0 0 / 15%);
}

nav .container-large .nav-sociais:hover .menu-perfil {
    opacity: 1;
    visibility: unset;
}

nav .container-large .nav-sociais .menu-perfil:before {
    top: -5px;
    right: 12px;
    content: '';
    border-bottom: 5px solid #ffffff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
}

nav .container-large .nav-sociais .menu-perfil h4 {
    color: #272727;
    font-size: 14px;
    display: block;
    white-space: nowrap;
}

.safari-message {
    display: none;
    background-color: var(--yellow);
    /* position: fixed; */
    top: 0px;
    width: 100%;
    left: 0;
    justify-content: center;
    align-items: center;
    max-height: 20px;
    z-index: 12;
}

.safari-message p {
    color: #fff;
    font-size: 12px;
    padding: 10px;
    margin-right: 30px;
}

.safari-message .close-message {
    position: absolute;
    right: 10px;
}

.safari-message .close-message i {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.float-content {
    background: #f1f1f1;
    position: absolute;
    top: 0;
}

#spinner {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    display: none;
}

#spinner div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7) !important;
}

#spinner div img {
    width: 150px;
    animation: spin 1s linear infinite;
    border-radius: 50%;
}

#spinner div #close-spinner {
    text-decoration: underline;
    cursor: pointer;
}

.button .tooltip {
    background-color: #6D6D6D;
    max-width: 100px;
    height: 20px;
    padding: 3px 6px;
    position: absolute;
    bottom: -25px;
    left: 0;
    border-radius: 0px 5px 5px 5px;
    display: none;
    z-index: 9;
}

.button .tooltip-inverted {
    right: 0 !important;
    left: unset !important;
    border-radius: 5px 0px 5px 5px;
}

.button:hover .tooltip {
    display: unset;
    animation: fadeIn 0.8s;
}

.button .tooltip p {
    color: #FFF;
    white-space: nowrap;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#gabarito {
    position: relative;
    /*background-color: #FFF;*/
}

#linha-mid-y {
    position: absolute;
    top: 0px;
    z-index: 222;
    height: 100%;
    width: 0.5px;
    border: 0.25px solid #deb100;
    display: none;
}

#linha-mid-x {
    position: absolute;
    left: 0px;
    z-index: 222;
    width: 100%;
    height: 0.5px;
    border: 0.25px solid #deb100;
    display: none;
}

.linha {
    position: absolute !important;
    border: 0.25px solid #00bcaf;
    z-index: 222;
}

.linha-x {
    width: 100%;
}

.linha-y {
    height: 100%;
    top: 0px;
}

div.elemento {
    position: absolute;
    cursor: move;
    display: inline-block;
    padding: 0 !important;
    line-height: 1 !important;
    white-space: nowrap;
}

div.elemento span {
    font-family: unset;
}

div.selecionado {
    box-shadow: 0px 0px 4px 1px #002855;
}

div.elemento.bloqueado {
    cursor: not-allowed;
    /*pointer-events: none;
    box-shadow: none;*/
}

div.elemento.bloqueado .excluir-elemento,
div.elemento.bloqueado .resizable-handle,
div.elemento.bloqueado .ui-rotatable-handle {
    display: none !important;
}

div#html2canvas {
    width: 736px;
}

#boxModelo {
    /* position: absolute;
	top: calc(50% - 260px);
    left: calc(50% - 372.5px); */

    height: 570px;
    width: 550px;

    z-index: 999;

    /* border: 2px solid #002855; */
    background-color: #fff;
    position: relative;
}

#boxModelo .header-modelo {
    height: 50px;
    width: 100%;
    padding: 5px 20px;

    display: flex;
    justify-content: space-between;

    position: absolute;
    top: 0;

    background-color: #007B8B;
}

#boxModelo .fale-conosco {
    background: #fff;
    text-decoration: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 70%;
    font-size: 12px;
    color: #000;
    border: 1px solid;
}

#boxModelo .logo-mce {
    overflow: hidden;
}

#boxModelo .logo-mce img {
    width: 67px;
    transform: scale(1.2);
}


#boxModelo .digital-cup {
    width: 100%;
    height: 95%;
}

#boxModelo .fechar-box-modelo {
    font-size: 25px;
    cursor: pointer;
    color: #fff;
    margin-left: 30px;
}

#boxModelo .ampliar-box-modelo {
    position: absolute;
    right: 16px;
    bottom: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

#boxModelo .ampliar-box-modelo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#boxModelo .ampliar-box-modelo i {
    color: #007B8B !important;
    font-size: 22px;
}

#boxModelo .link-box-modelo {
    position: absolute;
    bottom: 20px;
    /*cursor: pointer;*/
    width: 100%;
}

#boxModelo .link-box-modelo a {
    font-size: 14px;
    color: #007B8B;
    font-weight: 400;
    margin-bottom: 10px;
}

#boxModelo .toggle-imagem-produto {
    text-decoration: underline;
    font-size: 16px;
    color: #000;
    font-weight: 400;

    display: flex;
    margin-left: 15px;
    cursor: pointer;
}

#boxModelo .foto-taca {
    display: none;
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    top: 50px;
    left: 0;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#boxModelo .foto-taca img {
    margin-bottom: 30px;
    width: 200px;
}

#boxAprovacao {
    position: absolute;
    z-index: 99999;
    display: block;
    top: calc(50% - 318px);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    /*height: 642px;*/
    height: auto;
    width: 1288px;
    border: 2px solid #999;
    background-color: #fff;
}

#boxAprovacao .show-salvar {
    display: none;
}

#boxAprovacao .show-salvar p {
    margin: 2rem 0rem;
    text-align: justify;
    font-size: 13.6px;
    font-weight: bold;
    line-height: 20px;
}

#boxAprovacao #fechar-box-aprovacao {
    position: absolute;
    right: 30px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

#boxAprovacao div#header-aprovacao {
    background-color: #fff;
    height: 50px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#boxAprovacao div#header-aprovacao img {
    width: 125px;
}

#boxAprovacao div#header-aprovacao h3 {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #000;
    font-size: 20px;
}

#boxAprovacao div.content-gabarito {
    display: flex;
    justify-content: space-between;
}

#boxAprovacao .block-title {
    margin-bottom: 20px;
}

#boxAprovacao .block-title .title {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

#boxAprovacao div#aprovacao-3d {
    width: 300px;
    padding-top: 4.72rem;
    text-align: center;
}

#boxAprovacao div#aprovacao-3d small {
    display: block;
    text-align: center;
    font-weight: bold;
}

#boxAprovacao div#aprovacao-3d a#copy-link {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    text-decoration: none;
    color: #007B8B;
}

#boxAprovacao div#aprovacao-gabarito {
    max-width: 644px;
    position: relative;
    padding-top: 2rem;
}

#boxAprovacao div.aprovacao-centro {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#boxAprovacao div#aprovacao-gabarito .around-gabarito {
    position: relative;
    min-height: 347px;
    width: 100%;
}

#boxAprovacao div#aprovacao-conferencia {
    width: 320px;
    display: flex;
    background-color: #fff;
    flex-direction: column;
    padding: 1rem;
}

#boxAprovacao div#aprovacao-conferencia div#box-conferencia {
    color: #000;
    margin-top: 20px;
    margin-bottom: 40px;
}

#boxAprovacao div#aprovacao-conferencia div#box-conferencia h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.checkbox-conferencia {
    width: 16px;
    height: 16px;
}

.attention {
    font-size: 12px;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 30px;
    display: block;
}

.attention a {
    color: #000;
    font-weight: 400;
}

.links-div {
    height: 20px;
}

.areas {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.flex-btns {
    display: flex;
    gap: 15px;
}

.flex-btns div {
    flex: 1;
}

div#aprovado {
    width: 100%;
    background-color: var(--green);
    color: #fff;
    height: 40px;
    border: none;
    text-transform: uppercase;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    border-radius: 20px;
}

div#salvar-arte {
    width: 100%;
    background-color: var(--green);
    color: #fff;
    font-weight: 400;
    height: 40px;
    border: none;
    text-transform: uppercase;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-size: 18px;
    cursor: pointer;
}

div#alterar-aprovacao {
    width: 100%;
    background-color: var(--orange);
    color: #fff;
    font-weight: 400;
    height: 40px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 20px;
}

#boxAprovacao div#aprovacao-conferencia div#voltar-personalizacao {
    width: 100%;
    background-color: #B91616;
    color: #fff;
    font-weight: 400;
    height: 30px;
    border: none;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0rem;
    font-size: 14px;
    cursor: pointer;
}

#boxAprovacao div#footer-aprovacao {
    background-color: #DEE2E6;
    padding: 10px;
    height: 92px;
    /* margin-top: 26px; */
    display: flex;
}

#boxAprovacao div#footer-aprovacao .alerta {
    width: 50%;
}

#boxAprovacao div#footer-aprovacao .alerta p {
    font-size: 10px;
    margin-top: 0;
    margin-bottom: 0px;
    text-align: initial;
}

#boxAprovacao a#baixar-arte {
    background-color: transparent;
}

#boxAprovacao #box-conferencia .bg-cinza {
    background-color: #F3F3F3;
    padding: 15px 20px;
    margin-bottom: 5px;
}

#box-conferencia .row-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

#boxAprovacao .infos-copo-gabarito {
    width: 100%;
}

#boxAprovacao .infos-copo-gabarito p {
    text-align: start !important;
    font-size: 14px;
    font-weight: bold;
}

#boxAprovacao .infos-copo-gabarito div.cores-de-impressao-gabarito p {
    display: inline-flex;
}

#boxAprovacao .infos-copo-gabarito div.cores-de-impressao-gabarito span.nome-cor-impressao {
    font-size: 14px;
    margin-top: 1px;
    margin-right: 5px;
    display: flex;
    align-items: center;
}

.create-session {
    width: 80px;
    height: 100vh;
    height: calc(100vh - 10px);
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    left: 0;
    z-index: 11;
}

.create-session .button {
    width: 100%;
    height: 62.5px;
}

.create-session .button.focused {
    background-color: #484848 !important;
}

.create-session .button.focused svg {
    fill: #FFF;
}

.create-session .button.focused .name {
    color: #FFF;
}

.create-session .button.copo-3d,
.create-session .button.copo-3d-transparente {
    width: 100%;
    height: 110px;
    background-color: var(--green);
}

.create-session .button.copo-3d:hover,
.create-session .button.copo-3d-transparente:hover {
    background-color: var(--green);
}

.create-session .button.copo-3d .name,
.create-session .button.copo-3d-transparente .name {
    line-height: 16px;
    color: #FFF;
}

.create-session .button.shadow-background {
    background-color: #484848;
}

.tutorial-step {
    display: none;
    position: absolute;
    left: 80px;
    width: 333px;
    padding: 20px;
    border-radius: 0px 5px 5px 5px;
    background-color: #484848;
    z-index: 15;
    transition: ease-in-out 0.8s;
}

.tutorial-step.alternative-border {
    border-radius: 5px 5px 5px 0px;
}

.tutorial-step.alternative-side {
    right: 160px;
    left: unset;
    border-radius: 5px 5px 0px 5px;
}

.tutorial-step .button {
    width: 20px;
    height: 20px;
    background-color: #fff;
    pointer-events: none;
}

.tutorial-step .button.top {
    position: relative;
}

.tutorial-step .button.bottom {
    position: relative;
    bottom: -12px;
    right: 5px;
}

.tutorial-step .button.bottom svg {
    transform: rotate(180deg);
}

.tutorial-step .skip-tutorial {
    background: transparent;
    border: 0 solid;
    color: #FFF;
    text-decoration: underline;
    display: flex;
    align-items: end;
    cursor: pointer;
}

.tutorial-step .next-step {
    width: 106px;
    height: 25px;
    background: #fff;
    border: 0px solid;
    cursor: pointer;
}

.tooltip-template-infos .infos-content .close-content {
    display: none;
    justify-content: center;
    align-items: center;
    width: 106px;
    height: 25px;
    background: #fff;
    border: 0px solid;
    cursor: pointer;
    margin-top: 20px;
    margin-left: auto;
    font-size: 14px !important;
}

.actions {
    display: none;
    position: absolute;
    left: 80px;
    width: 333px;
    padding: 20px;
    border-radius: 0px 5px 5px 5px;
    background-color: #484848;
    z-index: 11;
    transition: ease-in-out 0.8s;
}

.actions.alternative-border {
    border-radius: 5px 5px 5px 0px;
}

.actions .ok {
    width: 106px;
    height: 25px;
    background: #fff;
    border: 0px solid;
    cursor: pointer;
}

.create-session-extend {
    max-width: 210px;
    min-width: 210px;
    height: 100vh;
    height: calc(100vh - 10px);
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    left: 80px;
    padding: 15px;
    overflow: auto;
    overflow-x: hidden;
    background-color: #fff;
}

.create-session-extend .content {
    display: none;
}

.create-session-extend #category-elements-session {
    display: none;
}

.create-session-extend #category-elements-session #icons-list .icon-card {
    width: 43%;
    height: 75px;
    padding: 10px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
    margin: 5px;
}

.create-session-extend #category-elements-session #icons-list .icon-card svg {
    height: 100%;
    width: 100%;
}

.create-session-extend #category-copa-session {
    display: none;
}

.create-session-extend #category-copa-session #copa-list .icon-card {
    width: 43%;
    height: 75px;
    padding: 10px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
    margin: 5px;
}

.create-session-extend #category-copa-session #copa-list .icon-card svg {
    height: 100%;
    width: 100%;
}

/*.create-session-extend #elements-copa {
    display: none;
}
.create-session-extend #elements-copa #elements-list-copa .icon-card {
    width: 43%;
    height: 75px; 
    padding: 10px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
    margin: 5px;
}
.create-session-extend #elements-copa #elements-list-copa .icon-card svg {
    height: 100%;
    width: 100%;
}
.create-session-extend #arts-copa {
    display: none;
} */

.create-session-extend #copa-elements,
.create-session-extend #copa-arts {
    height: 30px;
    width: 100%;
    border: none;
}

.create-session-extend .content.open {
    display: block;
}

.create-session-extend .content.text #insert-text {
    resize: vertical;
    width: 100%;
    padding: 5px;
}

.create-session-extend .content.text #apply-text,
.create-session-extend .content.text #new-text {
    height: 30px;
    width: 100%;
    border: 0px;
}

.create-session-extend .content.text .select:hover {
    background-color: #f1f1f1;
}

.create-session-extend .content.text .select {
    appearance: auto;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.create-session-extend .content.text .option-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.create-session-extend .content.text .select .option-selected i {
    color: #000;
    font-size: 14px;
    transform: rotate(90deg);
    margin-right: 5px;
}

.create-session-extend .content.text .select .inside-select {
    position: absolute;
    left: 0;
    display: none;
    overflow: auto;
    background-color: #fff;
    box-shadow: 3px 5px 10px rgb(0 0 0 / 15%);
}

.create-session-extend .content.text .select .inside-select div {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    cursor: pointer;
}

.create-session-extend .content.text .select .inside-select div:hover {
    background-color: #f1f1f1 !important;
}

.create-session-extend .content.text .select .inside-select::-webkit-scrollbar {
    width: 6px;
}

.create-session-extend .content.text .select .inside-select::-webkit-scrollbar-track {
    background: transparent;
}

.create-session-extend .content.text .select .inside-select::-webkit-scrollbar-thumb {
    background-color: #0000003b;
    border-radius: 20px;
}

.create-session-extend .content.text #font-select .option-selected .changed-option {
    line-height: 16px;
    font-size: 12px;
    color: #000000dc;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid;
    overflow: hidden;
    width: 80%;
    white-space: nowrap;
}

.create-session-extend .content.text #font-select .inside-select {
    position: absolute;
    top: 30px;
    left: 0;
    display: none;
    height: 238px;
    overflow: auto;
    width: 160px;
    background-color: #fff;
    box-shadow: 3px 5px 10px rgb(0 0 0 / 15%);
}

.create-session-extend .content.text #font-select {
    padding: 5px;
    width: 120px;
    height: 20px;
}

.create-session-extend .content.text #font-size-select {
    padding: 5px;
    width: 60px;
    height: 20px;
}

.create-session-extend .content.text #font-size-select .option-selected .changed-option {
    line-height: 16px;
    font-size: 12px;
    color: #000000dc;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid;
    overflow: hidden;
    width: 80%;
    white-space: nowrap;
}

.create-session-extend .content.text #font-size-select .inside-select {
    position: absolute;
    top: 30px;
    left: 0;
    display: none;
    height: 238px;
    overflow: auto;
    width: 100%;
    background-color: #fff;
    box-shadow: 3px 5px 10px rgb(0 0 0 / 15%);
}

.create-session-extend .content.text #text-type-select .option-selected .changed-option {
    line-height: 16px;
    font-size: 12px;
    color: #000000dc;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid;
    overflow: hidden;
    width: 80%;
    white-space: nowrap;
}

.create-session-extend .content.text #text-type-select .inside-select {
    position: absolute;
    top: 30px;
    left: 0;
    display: none;
    height: 148px;
    overflow: auto;
    width: 110px;
    background-color: #fff;
    box-shadow: 3px 5px 10px rgb(0 0 0 / 15%);
}

.create-session-extend .content.text #text-type-select {
    padding: 5px;
    width: 120px;
    height: 20px;
}

.create-session-extend .content.text #range-counter {
    border: 0px;
    border-bottom: 2px solid;
    width: 35px;
}

.create-session-extend .content.text #range-counter:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
}

.create-session-extend .content.text #bend-over-text {
    height: 5px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
    background-color: #B7E0E5;
}

.create-session-extend .content.text #bend-over-text::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;

    border: 1px solid #007B8B;
    background: #fff;
    cursor: pointer;
}

.create-session-extend .content.text .button {
    width: 30px;
    height: 30px;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    right: 0;
    position: relative;
}

.create-session-extend .content.text .button.active {
    background-color: #007B8B !important;
}

.create-session-extend .content.text .button.active:hover {
    background-color: #007B8B !important;
}

.create-session-extend .content.text .button.active svg {
    fill: #FFF;
}

/* .create-session-extend .arts-slider-content {
    display: none;
} */
.create-session-extend .arts-slider {
    /* padding: 10px; */
    display: none;
}

.create-session-extend .arts-slider .slick-track {
    padding: 10px 5px;
}

.create-session-extend .arts-slider .card {
    width: 140px;
    height: 85px;
    border-radius: 10px;
    background-color: #F1F1F1;
    box-shadow: 5px 5px 5px rgb(0 0 0 / 12%);
    position: relative;
}

.create-session-extend .arts-slider .card:first-of-type {
    margin-left: 0 !important;
}

.create-session-extend .arts-slider .card .art-selector {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    justify-content: center;
    align-items: center;
    display: flex;
}

.create-session-extend .arts-slider .card .art-selector img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.create-session-extend .loading-arts {
    padding: 10px;

    display: flex;

    width: 170px;
    overflow: hidden;
}

.create-session-extend .loading-arts .loader {
    padding: 10px;
    background: linear-gradient(90deg, rgba(241, 241, 241, 1) 0%, rgba(219, 219, 219, 1) 50%, rgba(241, 241, 241, 1) 100%);
    background-size: 200% 200%;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);

    min-width: 120px;
    height: 75px;
    margin: 0 20px 0 0;

    animation: gradientMoviment 2s ease infinite;
}

#category-copa-session .card {
    width: 100%;
    min-height: 115px;
    max-height: 200px;
    background-color: var(--grey);
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    position: relative;
    /* margin-right: 10px; */
}

#category-copa-session .card .art-selector {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    justify-content: center;
    align-items: center;
    display: flex;
}

#category-copa-session .card .art-selector img {
    height: 100%;
    width: 100%;
}

#category-arts-list-session {
    display: none;
}

#category-arts-list-session .card {
    width: 100%;
    height: 100px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    position: relative;
    /* margin-right: 10px; */
}

#category-arts-list-session .card .art-selector {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    justify-content: center;
    align-items: center;
    display: flex;
}

#category-arts-list-session .card .art-selector img {
    height: 100%;
    width: 100%;
}

.create-session-extend .white-band {
    width: 100%;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 15%);
}

.create-session-extend .white-band i {
    transform: rotate(90deg);
}

.create-session-extend .white-band .text-block {
    height: 35px;
    padding: 0 10px;
    cursor: pointer;
}

.create-session-extend .select-colors {
    z-index: 3;
    width: 100%;
    height: 164px;
    background-color: #fff;
    overflow: auto;
    display: none;
}

.create-session-extend .select-colors::-webkit-scrollbar {
    width: 6px;
}

.create-session-extend .select-colors::-webkit-scrollbar-track {
    background: transparent;
}

.create-session-extend .select-colors::-webkit-scrollbar-thumb {
    background-color: #0000003b;
    border-radius: 20px;
}

.create-session-extend .select-colors .cor {
    padding: 10px;
    margin-right: 0px;
    cursor: pointer;
}

.create-session-extend .select-colors .cor:hover {
    background-color: #F1F1F1;
}

.create-session-extend .select-colors .cor .color-cube {
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

.create-session-extend .select-colors .cor .color-cube.border {
    border: 1px solid #00000075;
}

.create-session-extend .select-colors .cor .color-title {
    font-size: 12px !important;
    color: #000000;
}

.create-session-extend .used-art-colors .color-cube {
    width: 20px;
    height: 20px;
    margin-right: 7px;
    margin-bottom: 7px;
    border: 1px solid #C0C0C0;
    cursor: pointer;
}

.create-session-extend .used-art-colors .color-cube.border {
    border: 1px solid #00000075;
}

.create-session-extend .uploads .upload-button {
    height: 30px;
    cursor: pointer;
}

.create-session-extend .elements-slider {
    padding: 10px;
    display: none;
}

.create-session-extend .elements-slider .icon-card {
    width: 100px;
    height: 75px;
    padding: 10px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
}

.create-session-extend .elements-slider .icon-card svg {
    height: 100%;
    width: 100%;
}

.create-session-extend #remove-meter,
#remove-window,
#remove-barcode {
    height: 30px;
    width: 100%;
    border: 0px;
    cursor: pointer;
}

.create-session-extend #add-meter,
#add-window,
#add-barcode {
    height: 30px;
    color: #FFF;
    width: 100%;
    border: 0px;
    cursor: pointer;
}

.create-session-extend #meter-color .color-cube {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #C0C0C0;
    cursor: pointer;
    margin-bottom: 10px;
}

.excluir-elemento {
    position: absolute;
    display: inline-block;
    font-size: 15px !important;
    color: red;
    top: -15px;
    right: -15px;
    padding: 6.5px;
    border-radius: 111px;
    background-color: #e5e5e5;
    cursor: pointer;
}

.resizable-r:before {
    position: absolute;
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    bottom: -18px;
    right: -9px;
    background-color: #e5e5e5;
    cursor: nwse-resize;
    content: url(../images/icons/expand-min.png);
    text-align: center;
    line-height: 30px;
    font-size: 15px !important;
}

.resizable-t,
.resizable-l,
.resizable-b {
    display: none;
}

.ui-rotatable-handle:before {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    bottom: -13px;
    left: -12px;
    background-color: #e5e5e5;
    cursor: grab;
    text-align: center;
    content: url(../images/icons/rotable-min.png);
    line-height: 30px;
    font-size: 15px !important;
}

.custom-session {
    width: 210px;
    height: 100vh;
    height: calc(100vh - 10px);
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    right: 0;
    padding: 20px;
    z-index: 11;
}

.custom-session .content {
    height: 100%;
}

.custom-session .content .top-content {
    min-height: 220px;
}

.custom-session .content .surrounded-session {
    display: none;
}

.gap-row {
    gap: 5px;
    display: flex;
    position: relative;
}

.custom-session .content .surrounded-session #layers {
    background-color: var(--green);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 41px;
    top: 0px;

    font-size: 10px;
    width: 9px;
    height: 30px;

    /* display: none; */
}

.custom-session .content .row-buttons {
    padding: 0 10px;
    position: relative;
}

.custom-session .content .button {
    width: 30px;
    height: 30px;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    right: 0;
    position: relative;
}

.custom-session .content .button.active {
    background-color: #007B8B !important;
}

.custom-session .content .button.active:hover {
    background-color: #007B8B !important;
}

.custom-session .content .button.active svg {
    fill: #FFF;
}

.custom-session .content .button .rotate-arrow {
    transform: rotate(180deg);
}

.rotate-arrow-90 {
    transform: rotate(90deg);
}

.custom-session .content .current-colors {
    position: absolute;
    left: 0;

    padding: 10px 20px;
    width: 100%;
}

.gap-row .color-cube {
    width: 30px;
    height: 30px;
    background-color: white !important;
    /* border: 1px solid #C0C0C0; */
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);

    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-row #color-picker {
    position: absolute;
}

.custom-session .content .current-colors .arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #F1F1F1;
    position: absolute;
    top: -20px;
    left: 30px;
}

.custom-session .content-art-layers {
    display: none;
}

.custom-session .content-art-layers #art-layers {
    max-height: 250px;
    overflow: auto;
}

.custom-session .content-art-layers #art-layers .layer {
    height: 70px;
    padding: 10px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    cursor: grab;
}

.custom-session .content-art-layers #art-layers .layer.selected {
    border: 2px solid var(--green);
}

.custom-session .content-art-layers #art-layers .layer.bloqueado {
    background: #EEB4B4;
}

.custom-session .content-art-layers #art-layers .layer svg {
    height: 45px;
    width: 100%;
}

.custom-session .content .bottom-content #continue {
    min-width: 100px;
    height: 40px;
    border: unset;
    cursor: pointer;
    border-radius: 10px;
}

.custom-session .content .bottom-content #save-continue {
    text-decoration: underline;
    color: var(--green);
    border: none;
    background: none;
    font-size: 12px;
    cursor: pointer;
}

.container {
    height: 100%;
    margin-left: 80px;
}

.template {
    width: 780px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 2px solid;
    padding: 20px;
    overflow: hidden;
}

.template .no-print-area {
    background-color: #FFF;
    z-index: 2;
}

.template .no-print-area.top {
    height: 20px;
    width: 100%;
    position: absolute;
    top: 0;
}

.template .no-print-area.right {
    height: 100%;
    width: 22px;
    position: absolute;
    right: 0;
}

.template .no-print-area.bottom {
    height: 20px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.template .no-print-area.left {
    height: 100%;
    width: 22px;
    position: absolute;
    left: 0;
}

.template .print-area {
    outline: 2px dashed #000;
    z-index: 2;
}

.template .print-area #medidor {
    height: 100%;
    width: 6%;
    display: inline-block;
    /*left:2px;*/
    z-index: 1;
    transition: ease-in-out 0.5s;
}

.container .content-container {
    position: relative;
}

.container .content-container .template .print-area .icon-div {
    max-width: 200px;
}

.container .content-container .template .print-area .icon-div svg {
    max-width: 100%;
}

.container .content-container .button-features.top {
    position: absolute;
    top: -35px;
    right: 0;
}

.container .content-container .button-features.top .button {
    width: 30px;
    height: 30px;
    background-color: #FFF;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    border-radius: 10px;
    position: relative;
}

.container .content-container .button#redo svg {
    moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.container .content-container .button-features.top .tooltip-template-infos {
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 3;
    background-color: #fff;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
}

.container .content-container .button-features.top .tooltip-template-infos svg {
    width: 15px;
    height: 15px;
}

.container .content-container .button-features.top .tooltip-template-infos .infos-content {
    display: none;

    width: 300px;
    padding: 10px;

    position: absolute;
    top: 32px;
    right: 0;

    background-color: #6D6D6D;
    border-radius: 5px;
}

.container .content-container .button-features.top .tooltip-template-infos.unlocked:hover .infos-content {
    display: unset !important;
    animation: fadeIn 0.8s;
}

.container .content-container .button-features.top .tooltip-template-infos .infos-content .line {
    min-width: 20px;
    height: 0px;

    display: block;


    border: 1px solid;
    margin-top: 4px;
}

.container .content-container .button-features.top .tooltip-template-infos .infos-content .line.dashed {
    border: 1px dashed;
}

/* .container .content-container .button-features.top .color-cube {
    width: 20px;
    height: 20px;
    margin-right: 7px;
    border: 1px solid #C0C0C0;
    pointer-events: none;
} */
.container .content-container .button-features.top .color-cube.toque-selecionado {
    border: 1px solid #C0C0C0 !important;
}

.container .content-container .button-features.bottom .button {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    position: relative;
}

#select-quantidade {
    padding: 15px;
    font-size: 15px;
    width: 89%;
    height: 48px;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    appearance: auto;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

#select-zoom:hover {
    background-color: #f1f1f1;
}

#select-zoom .name-select {
    display: flex;
    justify-content: space-between;
    position: relative;
}

#select-zoom .name-select .changed-number {
    line-height: 16px;
    font-size: 10px;
    color: #000000dc;
    display: flex;
    justify-content: space-between;
}

#select-zoom .name-select i {
    color: #000;
    font-size: 10px;
    font-weight: lighter;
    transform: rotate(270deg);
}

#select-zoom .inside-select {
    position: absolute;
    top: -125px;
    height: auto;
    width: 35px;
    background-color: #FFF;
    display: none;
}

.container .content-container .template .zoom-content:hover #select-zoom .inside-select {
    display: unset;
}

#select-zoom .inside-select div {
    height: 25px;
    font-size: 10px;
    cursor: pointer;
}

#select-zoom .inside-select div:hover {
    background-color: #f1f1f1 !important;
}

#select-zoom .inside-select::-webkit-scrollbar {
    width: 6px;
}

#select-zoom .inside-select::-webkit-scrollbar-track {
    background: transparent;
}

#select-zoom .inside-select::-webkit-scrollbar-thumb {
    background-color: #0000003b;
    border-radius: 20px;
}

#cup-size-select {
    width: 100px;
    height: 30px;
    padding: 0 10px;

    position: relative;
    z-index: 7;
    cursor: pointer;

    background-color: #fff;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 15%);
}

#cup-size-select .name-select {
    display: flex;
    justify-content: space-between;
    position: relative;
}

#cup-size-select .name-select i {
    color: #000;
    font-weight: lighter;
    transform: rotate(90deg);
}

#cup-size-select .inside-select {
    position: absolute;
    top: 30px;
    left: 0;

    height: auto;
    width: 100%;

    background-color: #FFF;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 15%);
    display: none;
}

#cup-size-select .inside-select .select-option {
    height: 30px;
}

#cup-size-select .inside-select .select-option:hover {
    background-color: var(--grey) !important;
}

.create-session-extend .content.text #font-size-select .inside-select {
    position: absolute;
    top: 30px;
    left: 0;
    display: none;
    height: 238px;
    overflow: auto;
    width: 100%;
    background-color: #fff;
    box-shadow: 3px 5px 10px rgb(0 0 0 / 15%);
}

.container .content-container .footer .line {
    width: 13px;
    display: block;
    height: 0px;
    color: #000;
    border: 1px solid;
}

.shadow-modelo3d {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgb(0 0 0 / 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
}

.shadow-modelo3d.beta {
    display: flex;
    width: 550px;
    height: 570px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: unset;
}

.shadow-aprovacao {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgb(0 0 0 / 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
}

.shadow-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
    -webkit-backface-visibility: hidden;
}

.shadow-background .text {
    color: #fff;
}

.shadow-background .content {
    margin-right: 105px;
}

.shadow-background .content button {
    width: 100px;
    border: none;
    cursor: pointer;
}

.shadow-background .content #got-it {
    height: 20px;
    color: #fff;
    background: transparent;
    text-decoration: underline;
}

.shadow-background .content #learn {
    height: 30px;
}

.shadow-background .content .float-content {
    background-color: transparent;
    width: 200px;
}

.shadow-background .content .float-content.right {
    right: calc(0px + 300px);
    top: calc(50vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.shadow-background .content .float-content.right .text {
    width: 100%;
}

.shadow-background .content .float-content.left {
    left: calc(0px + 130px);
    top: calc(50vh - 80px);
}

.shadow-background .content .float-content.left svg {
    transform: scaleX(-1);
}

.v-hidden {
    visibility: hidden;
}

.d-none {
    display: none;
}

div.img-svg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(255, 255, 255, 0);
}

.div-search {
    position: relative;
}

.div-search #search-pantone,
.div-search #search-elements {
    height: 30px;
    padding-left: 5px;
    width: 100%;
}

.search-elements-submit {
    cursor: pointer;
}

.div-search i {
    position: absolute;
    right: 5px;
}

div#copa-content {
    display: flex;
    flex-flow: row wrap;
}

.icon-card.dynamic-category {
    width: 43%;
    height: 75px;
    padding: 10px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
    margin: 5px;
}

.icon-card.dynamic-category svg {
    width: 100%;
    height: 100%;
}

@media only screen and (max-height: 650px) {
    .create-session {
        overflow-y: auto;
    }

    .custom-session .content-art-layers #art-layers {
        max-height: 200px;
        overflow: auto;
    }
}

@media print {
    selection {
        display: none;
    }

    nav {
        display: none;
    }

    .create-session,
    .create-session-extend,
    .custom-session,
    .ferramenta .container {
        display: none;
    }

    .bg-grey {
        background-color: #fff;
    }

    #boxAprovacao {
        width: 1250px;
    }
}

.mirror-disabled {
    pointer-events: none;
    cursor: not-allowed !important;
    background-color: #48484840;
}

#qrcode-field {
    padding: 2.5px;
    margin-bottom: 20px;
    width: 100%;
    resize: none;
}

#generate-qrcode {
    height: 30px;
    color: #FFF;
    width: 100%;
    border: 0px;
    cursor: pointer;
    background-color: var(--green);

    transition: all .3s;
    box-shadow: 0px 0px 0px #a21caf00;
}

#generate-qrcode:hover {
    background-color: #3ab8c9;
    box-shadow: 0px 0px 4px #3ab8c9;
}

.frente-verso {
    display: block;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: absolute;
}

.wrapper {
    position: relative;
}