@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) !important;
}
.bg-yellow {
    background-color: var(--yellow);
}

.orange-color {
    color: var(--orange);
}
.black-color {
    color: var(--text-color) !important;
}
.white-color {
    color: #FFF !important;
}
.grey-color {
    color: var(--grey) !important;
}
.green-color {
    color: var(--green) !important;
}
.orange-color {
    color: var(--orange) !important;
}
.yellow-color {
    color: var(--yellow) !important;
}

.width-100 {
    width: 100%;
}
.width-50 {
    width: 50%;
}
.width-33 {
    width: 33.33%;
}
.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);
}

.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: 10px !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-70 {
    margin-right: 70px !important;
}

.mg-lft-0 {
    margin-left: 0px !important;
}
.mg-lft-1 {
    margin-left: 1% !important;
}
.mg-lft-5 {
    margin-left: 5px !important;
}
.mg-lft-10 {
    margin-left: 10px !important;
}
.mg-lft-20 {
    margin-left: 20px !important;
}
.mg-lft-30 {
    margin-left: 30px !important;
}
.mg-lft-40 {
    margin-left: 40px !important;
}
.mg-lft-70 {
    margin-left: 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-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;
}

.button {
    cursor: pointer;
    transition: ease-in-out 0.5s;
}
.button:hover {
    background-color: var(--grey) !important;
}
.button.active {
    background-color: var(--grey) !important;
}

.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%;
    z-index: 100;
}

.loader-session img{
    width: 70px;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto';
    -webkit-box-sizing: border-box;
    color-scheme: only light !important;
}
*::-webkit-scrollbar {
    display: none;          
}
/* *::-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: calc(var(--vh, 1vh) * 100 - 50px);
    max-width: 900px;
    position: relative;
    margin: auto;
}

/* NAV BAR MOBILE */

.nav-bar-mobile {
    height: 50px !important;
    background-color: transparent;
    max-width: 900px;
	box-shadow: none;
    margin: auto;
    position: relative;
    z-index: 9;
}
.nav-bar-mobile a {
    text-decoration: none;
}
.outter-mobile {
    top: 50px;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
}
.nav-bar-mobile  .outter-mobile.from-menu {
    background: transparent;
    left: 0;
    top: 50px;
}
.nav-bar-mobile  .outter-mobile.from-menu .nav-blur {
    backdrop-filter: blur(2px);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50px;
    left: 0;
    z-index: 1;
}
.nav-bar-mobile .container-large-mobile {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    background: #fff;
}
.nav-bar-mobile .container-large-mobile .image-logo {
    width: 80px;
    height: 40px;
    background-color: #fff;
	display: flex;
	align-items: center;
}
/* .nav-bar-mobile .container-large-mobile .nav-menu {
    display: none;
} */
.nav-bar-mobile .container-large-mobile .nav-menu .navbar-nav {
    z-index: 2;
    position: relative;
    background-color: #fff;
    box-shadow: 3px 8px 10px rgb(0 0 0 / 15%);
    padding: 20px;
	margin: 0;
	list-style: none;
}
.nav-bar-mobile .container-large-mobile .container-features .bag-content {
    width: 40px;
    height: 40px;
    background-color: #fff;
    position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
}
.nav-bar-mobile .container-large-mobile .container-features .bag-content #cartNumber {
    right: 2px;
    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-bar-mobile .container-large-mobile .container-features .bag-content .msg-carrinho {
    display: none;
}

.nav-bar-mobile .container-large-mobile .container-features .hamburger-mobile {
    width: 40px;
    height: 40px;
    background-color: #fff;
	display: flex;
    align-items: center;
    justify-content: center;
}
.nav-bar-mobile .container-large-mobile .nav-menu .navbar-nav .item-nav .categoria {
	padding: 0;
}
.nav-bar-mobile .container-large-mobile .nav-menu .navbar-nav .lista-submenu {
    display: none;
	list-style: none;
    padding: 0;
}
.nav-bar-mobile .container-large-mobile .nav-menu .navbar-nav .category-arrow {
    transition: ease-in-out 0.3s;
}
.nav-bar-mobile .around-hr {
    margin: 0 -20px;
}
.nav-bar-mobile .around-hr hr {
    width: 100%;
	margin: 0;
}
.nav-bar-mobile .comprar .comprar-header {
    width: 100px;
    height: 25px;
    text-transform: uppercase;
}
.nav-bar-mobile .container-large-mobile .nav-menu .navbar-nav .item-nav .comprar {

}
.nav-bar-mobile .close-menu-mobile {
    display: none;
    width: 40px;
    height: 40px;
}
.nav-bar-mobile .dropbtn {
    background-color: transparent;
}
.nav-bar-mobile .translator {
    position: relative;
    width: 40px;
}
.nav-bar-mobile .translator .linguagens {
    background-color: #F1F1F1;
    height: 100px;
    width: 100%;
    padding: 8px;
    position: absolute;
    left: 0px;
    display: none;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 15%);
}

.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-color: #FFF;
    position: absolute;
    top: 0;
}

.mobile-pop-up-session {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.mobile-pop-up-session .blur {
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
}
.mobile-pop-up-session .message {
    width: 250px;
    min-height: 210px;
    background-color: #FFF;
    z-index: 1;
    padding: 15px 15px;
    box-shadow: 2px 5px 20px rgb(0 0 0 / 45%);
}

#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 #007B8B;
}
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;
}

#finalizar {
    width: 150px;
    height: 30px;
    border: 0;
}

#salvar-arte {
    background-color: transparent;
    border: 0;
    height: 30px;
    text-decoration: underline;
}

#voltar-arte {
    width: 150px;
    height: 30px;
    border: 0;
    background-color: #F3F3F3;
}

#category-copa-session .card {
    width: 100%;
    height: 100px;
    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%;
}
.resizable-r:before {
    position: absolute;
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    bottom: -18px;
    right: -9px;
    background-color: #fff;
    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: 25px;
    height: 25px;
    border-radius: 50%;
    bottom: -33px;
    left: calc(50% - 12.5px);
    background-color: #fff;
    cursor: grab;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    content: url(../../images/mobile/rotate.svg);
    font-size: 20px !important;
}

.container {
    height: 100%;
}
.container .navigation-steps .navigator, .container .navigation-steps .sub-navigator  {
    background-color: var(--grey);
    border: 1px solid #DEDEDE;
    height: 30px;
    transition: ease-in-out 0.4s;
}
.container .navigation-tools .navigator{
    background-color: #FFF;
    border: 1px solid #DEDEDE;
    height: 30px;
    text-decoration: underline;
    transition: ease-in-out 0.4s;
}
.container .navigation-tools .navigator.continuar {
    background-color: var(--orange);
    color: #fff !important;
    text-decoration: none !important;
    transition: ease-in-out 0.4s;
}
.container .navigation-steps .navigator.active, .container .navigation-steps .sub-navigator.active {
    background-color: #fff;
    border: 0px solid #DEDEDE;
    box-shadow: 0px -4px 4px rgb(0 0 0 / 15%);
}
.container .navigation-steps .sub-navigator.disable {
    opacity: 0.75;
}
.container .navigation-tools .navigator.active {
    background-color: #F1F1F1;
    box-shadow: 0px -4px 4px rgb(0 0 0 / 15%);
    border: 0;
}
.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: 1px 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;
    width: 100%;
}
.container .content-container .template .print-area .icon-div {
    max-width: 200px;
}
.container .content-container .template .print-area .icon-div svg {
    max-width: 100%;
}
#aprovacao-3d {
    position: absolute;
    top: 42px;
    z-index: 9;
    width: 100%;
    height: calc(100% - 42px);
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}
.container .containter-tools {
    padding: 20px;
    position: relative;
}
.container .containter-tools .stable-div {
    min-height: 80px;
}
.container .containter-tools .tool {
    display: none;
}
/* .container .containter-tools .tool.open {
    display: block !important;
} */
.container .containter-tools .tool .box {
    width: 80px;
    height: 80px;
    box-shadow: 2px 5px 10px rgb(0 0 0 / 15%);
}
.container .containter-tools .colors {
    display: none;
}
.container .containter-tools .colors .container-colors {
    overflow: auto;
}
.container .containter-tools .colors .container-colors .opcao.cor .color-cube {
    width: 80px;
    height: 80px;
    border: 1px solid #c7c7c7;
    margin-right: 20px;
}
.container .containter-tools .colors .container-colors .opcao.cor .color-cube {
    width: 70px;
    height: 70px;
    border: 1px solid #c7c7c7;
    margin-right: 20px;
}
.container .containter-tools .colors .back-type-colors {
    text-decoration: underline;
}
.container .containter-tools .tool .add-button {
    background-color: #fff;
    width: 250px;
    height: 30px;
    box-shadow: 0px 3px 10px rgb(0 0 0 / 16%);
    border: 0;
}
#open-backgrounds {
    display: none;
}
.container .containter-tools .tool .elements, .container .containter-tools .tool .backgrounds {
    height: 330px;
    position: absolute;
    bottom: 0;
    left: 0px;
    z-index: 9;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    box-shadow: 0px -4px 15px rgb(0 0 0 / 16%);
    padding: 30px;
    padding-bottom: 0px;
    overflow-y: auto;
    display: none;
}
.container .containter-tools .tool .elements-slider {
    padding: 10px;
    display: none;
}
.container .containter-tools .tool .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;
}
.container .containter-tools .tool .arts-slider .card {
    width: 110px;
    height: 75px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
}
.container .containter-tools .tool .arts-slider .card .art-selector {
    width: 100%;
    height: 100%;
}
.container .containter-tools .tool .elements-slider .icon-card svg {
    height: 100%;
    width: 100%;
}
.container .containter-tools .tool #category-elements-session {
    display: none;
}
.container .containter-tools .see-more-icons {
    text-decoration: underline;
}
.container .containter-tools .close-icon-list  {
    text-decoration: underline;
}
.container .containter-tools #category-elements-session #icons-list .icon-card {
    width: 85px;
    height: 80px;
    padding: 10px;
    background-color: #F1F1F1;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
    margin: 10px;
}
.container .containter-tools #category-elements-session #icons-list .icon-card svg {
    height: 100%;
    width: 100%;
}

.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 + 260px);
    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%;
    border: 0px;
    background-color: #f1f1f1;
}
.search-elements-submit {
    cursor: pointer;
}
.div-search i {
    position: absolute;
    right: 0px;
    background-color: var(--green);
    color: #fff;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tool .button {
    width: 30px;
    height: 30px;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    right: 0;
    position: relative;
    background-color: #FFF;
}
.tool #new-text {
    width: 250PX;
    height: 30px;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 15%);
    right: 0;
    position: relative;
    background-color: #FFF;
    border: 0;
}
.tool #font-select {
    position: relative;
    width: 250px;
    height: 30px;
    background-color: #FFF;
    box-shadow: 1px 5px 10px rgb(0 0 0 / 16%);
    padding: 5px;
    padding-left: 20px;
}
.tool #font-select i {
    position: absolute;
    right: 0px;
    top: 0;
    background-color: var(--green);
    color: #fff;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tool #font-select .inside-select {
    width: 250px;
    height: 200px;
    position: absolute;
    background-color: #fff;
    bottom: 35px;
    left: 0;
    z-index: 3;
    overflow-y: auto;
    padding: 10px;
    box-shadow: 2px 0px 20px rgb(0 0 0 / 16%);
    display: none;
}
.tool #font-select .inside-select::-webkit-scrollbar {
    display: unset;
    width: 10px;
}
.tool #font-select .inside-select::-webkit-scrollbar-track {
    background: transparent;       
}
.tool #font-select .inside-select::-webkit-scrollbar-thumb {
    background-color: #0000003b;    
    border-radius: 20px;
}

.select-option.font-option {
    height: 40px;
    display: flex;
    align-items: center;
}

.disable {
    pointer-events: none;
    opacity: 0.5;
}

.rotated-90deg {
    transform: rotate(90deg);
}
.elements-colors {
    display: none;
    overflow-y: auto;
}
.elements-colors .back-edicao-elementos {
    text-decoration: underline;
}
.elements-colors .color-cube {
    width: 30px;
    height: 30px;
    margin-right: 20px;
    margin: 12px;
    border: 1px solid #C0C0C0;
}

#insert-text {
    position: absolute;
    left: calc(50% - 71px);
    bottom: calc(50% - 41px);
}

.slick-track {
    padding: 10px 0px;
}

aside#aprovacao {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #fff;
    z-index: 5;
    padding: 20px;
    padding-top: 70px;
    overflow-y: auto;
}

aside#aprovacao .content .head {
    font-size: 14px;
    margin-bottom: 20px;
}

aside#aprovacao .buttons-action div {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
}

aside#aprovacao .bg-cinza {
    background-color: #f1f1f1;
    padding: 20px;
}

aside#aprovacao .bg-cinza .eu-aprovo {
    font-size: 14px;
    margin-bottom: 15px;
}


aside#aprovacao #finalizar {
    background-color: #007B8B;
    color: #fff;
}

aside#aprovacao #voltar-personalizacao {
    background-color: #F68C52;
    color: #fff;
}

aside#aprovacao .around-gabarito {
    position: relative;
    margin-bottom: 5px;
}

aside#aprovacao .cor-impressao {
    display: flex;
    align-items: center;
}

aside#aprovacao .cor-impressao .bolinha-cor {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 20px;
    border: 1px solid #a5a5a5;
    margin-right: 5px;
}

aside#aprovacao .ver-3d {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3F3F3;
    padding: 5px
}

aside#aprovacao .ver-3d img {
    margin-right: 15px;
}

.shadow-ver-3d {
    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;
    -webkit-backface-visibility: hidden;
}

aside#aprovacao #ver-3d {
    position: absolute;
    max-width: 350px;
    left: calc(50% - 150px);
    top: 135px;
    background: #fff;
    border: 1px solid #f3f3f3;
}

aside#aprovacao #ver-3d .view-copo-3d {
    margin-bottom: 0px;
}

aside#aprovacao .fechar-3d{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3F3F3;
    padding: 5px;
    height: 40px;
}

/* #html2canvas .template-area {
    width: 736px;
    height: 445px;
} */