/*---------------------*/
/*------GENERALES------*/
/*---------------------*/

/*General*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #fafafa;
    color: #606060;
}

/*Loading*/
.container-loading {
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.6);
}
.container-loading .spinner-border {
    color: #674ea7;
    border-width: 10px;
}

/*Utilities*/
.separator {
    opacity: 1;
    border-bottom: 2px solid #674ea7;
    width: 60px;
    margin-top: 0;
}
.min-height-login {
    min-height: calc(100vh - 275px)
}
.min-height-admin {
    min-height: calc(100vh - 215px)
}
.img-add {
    cursor: pointer;
}
.alert-result, .alert-result-veiculos {
    height: calc(100vh - 74px) !important;
}

/*Forms*/
.form-control {
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    padding: .500rem .75rem;
}
.form-control:focus {
    border-color: #674ea7;
    outline: initial;
    box-shadow: none;
}
.form-group > label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    width: 100%;
    padding: .375rem .75rem !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border: 1px solid #d1d1d1;
    box-shadow: none;
    background: #f7f7f7;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px !important;
    right: 7px !important;
}
.select2-container--default .select2-selection--single {
    border: 0 !important;
}
.radio-style label {
    display: block;
    width: 100%;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
}
.radio-style label:hover {
    background-color: #f7f7f7;
}
.radio-style input[type="radio"]:checked + label {
    background-color: #f3eeff;
    color: #674ea7;
    border-color: #674ea7;
}
.checkbox-style label {
    position: relative;
    padding-top: 3px;
    padding-left: 33px;
    margin-bottom: 15px;
    cursor: pointer;
}
.checkbox-style label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 1px solid #674ea7;
}
.checkbox-style input[type="checkbox"]:checked + label:before {
    background-color: #674ea7;
    background-image: url("/images/icons/tick.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
}
.radio-style-circle label {
    width: 40px;
    height: 40px;
    padding: 8px;
    font-size: 0.9rem;
    border: 1px solid #674ea7;
    border-radius: 50%;
    cursor: pointer;
    transition: all ease 300ms;
}
.radio-style-circle label:hover {
    background-color: #f7f7f7;
}
.radio-style-circle label:focus {
    outline: initial !important;
    box-shadow: none !important;
}
.radio-style-circle input[type="radio"]:checked + label {
    background-color: #e1d7fb;
    color: #674ea7;
    border-color: #674ea7;
}
.radio-style.is-invalid label, 
.city-container.is-invalid .select2-selection__rendered, 
.error-fix.is-invalid .select2-selection__rendered,
.bairro-container.is-invalid .select2-selection__rendered,
.is-invalid + label::before,
.radio-style-circle.is-invalid label {
    border: 1px solid #e74c3c;
}

/*Backgrounds*/
.bg-primary-custom {
    background-color: #674ea7;
}
.bg-danger-custom {
    background-color: #e74c3c;
}

/*Texts*/
.text-primary-custom {
    color: #674ea7;
}
.text-success-custom {
    color: #16a085;
}
.text-light-custom {
    color: #8a8a8a;
}

/*Buttons*/
.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(225, 208, 255);
}
.btn-primary-custom {
    background-image: linear-gradient(45deg, black, transparent);
    color: #fff;
    color: #fff;
    background-color: #6647a4;
    border-color: #5b4091;
}
.btn-primary-custom:hover {
    color: #fff;
    background-color: #584088;
    border-color: #523d7b;
}
.btn-info-custom {
    color: #fff;
    background-color: #3498db;
    border-color: #3498db;
}
.btn-info-custom:hover {
    color: #fff;
    background-color: #3185bd;
    border-color: #3192d3;
}
.btn-danger-custom {
    color: #fff;
    background-color: #e74c3c;
    border-color: #e74c3c;
}
.btn-danger-custom:hover {
    color: #fff;
    background-color: #d34b3b;
    border-color: #d34b3b;
}
.btn-success-custom {
    background-image: linear-gradient(45deg, black, transparent);
    color: #fff;
    background-color: #7460ad;
    border-color:  #9b88bf;
}
.btn-success-custom:hover {
    color: #fff;
    background-color:  #534088;
    border-color:  #392968;
}

/*Nav tabs*/
.tab-pane a.nav-link {
    min-width: 150px;
    text-align: center;
    color: #777;
    border: 0;
}
.tab-pane a.nav-link.active {
    background: none;
    border: 0;
    border-bottom: 1px solid #6647a4;
    color: #2c133a;
    font-weight: bold;
}

/*Card*/
.carousel-item{
    min-height: 100px;
    background: #eee;
}
.card-product {
    /*min-height: 510px;*/
    border-radius: 7px;
    overflow: hidden;
}
.card-product h5 {
    color: #606060;
    font-size: 20px;
    line-height: 26px;
    height: 26px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.card-product p, .card-product a{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.card-product .btn{
    border-radius:0px;
}
.card-bairro{
    height:22px;
    margin-top: 5px;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content-card-product > p, .card-product .price {
    color: #000;
    font-size: 0.9rem;
}
.card-product .data-product {
    color: #606060;
    font-size: 0.9rem;
}
.card-product .price p:nth-child(1) {
    font-size: 1rem;
}
/*.card-product .price p:nth-child(2) {*/
.card-product .price p{
    color: #16a085;
    font-size: 1.2rem;
}
.card-product.car .price p:nth-child(1) {
    font-size: 1.4rem;
    color: #16a085;
}

/*Header*/
.navbar-brand img {
    width: 100px;
}
.header-main .navbar-dark.bg-primary-custom .navbar-nav .nav-link {
    color: #fff;
    padding: 5px 14px;
    border-radius: 5px;
}
.header-main .navbar-dark.bg-primary-custom .navbar-nav .nav-link:hover {
    background-color: #6327ac;
}
.header-main .navbar-light .navbar-nav .nav-link {
    border-bottom: 2px solid #fff;
    transition: all ease 300ms;
}
.header-main .navbar-light .navbar-nav .nav-link:hover {
    color: #674ea7;
    border-bottom: 2px solid #674ea7;
}
#dd-menu-account {
    margin-top: -1px;
}

/*Footer*/
/*.footer-main {
    background-color: #6647A4;
    color: #e1e1e1;
}*/
.footer-main a {
    color: #fff;
    text-decoration: none;
}
/*.footer-main > div:nth-child(2) {
    background: #1e1e1e;
}*/
.rrss a {
    font-size: 20px;
    margin: 0 2px;
    background: #606060;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all ease 300ms;
}
.rrss .btn-facebook:hover {
    background: #3b5998;
}
.rrss .btn-twitter:hover {
    background: #00acee;
}
.rrss .btn-youtube:hover {
    background: #FF0000;
}
.rrss .btn-instagram:hover {
    background: #e1306c;
}

/*---------------------*/
/*---------HOME--------*/
/*---------------------*/

/*Carousel*/
.carousel-control-prev, .carousel-control-next {
    text-decoration: none;
    font-size: 1.8rem;
}

/*Search*/
.select-main-container label {
    position: relative;
    cursor: pointer;
    border: 2px solid #d1d1d1;
    transition: all ease 300ms;
}
.select-main-container input[type="radio"]:checked + label {
    border: 2px solid #674ea7;
}
/*.select-main-container input[type="radio"] + label:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 70px;
    background-image: url("../icons/down-arrow.svg");
    background-position: center;
    background-size: cover;
    bottom: -50px;
    left: calc(50% - 25px);
    opacity: 0;
    transition: all ease 300ms;
}
.select-main-container input[type="radio"]:checked + label:before {
    opacity: 1;
    bottom: -90px;
}*/
.search-home img {
    max-width: 60px;
}
.filter-home ul li a, .filter-home ul li i {
    color: #606060;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all ease 300ms;
}
.filter-home ul li a:hover {
    color: #674ea7;
    margin-left: 5px;
}
.filter-home h2 {
    color: #674ea7;
}

/*Results*/
.results, .results-veiculos {
    /*height: calc(100vh - 74px) !important;
    overflow: auto;*/
}
.map-home iframe {
    width: 100% !important;
    height: calc(100vh - 74px) !important;
}
.content-card-product, .content-card-product:hover {
    color: #606060;
}

/*Responsive*/
@media(max-width: 1199px) {
    .results {
        height: auto !important;
    }
}

/*---------------------*/
/*--LOGIN & REGISTER---*/
/*---------------------*/
.form-login figure i {
    font-size: 80px;
    color: #606060;
}
.form-login .reset {
    background: none;
    border: 0;
    top: 20px;
    font-size: 1.3rem;
    right: 20px;
    color: #606060;
}
.success-registered img {
    width: 100%;
    max-width: 100px;
}

/*---------------------*/
/*-------ABOUT---------*/
/*---------------------*/
.about:before {
    content: "";
    background-image: url("../images/pages/architecture-1836070_1280.jpg");
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    background-position: center 70%;
}

/*---------------------*/
/*-------ADMIN---------*/
/*---------------------*/

/*Header*/
.header-admin img {
    width: 150px;
}
.header-admin #navbarDropdownAccount:after {
    display: none;
}
.header-admin #navbarDropdownAccount {
    font-size: 0.85rem;
    color: #606060;
    line-height: 1.3;
    text-align: right;
}
.header-admin .first-letter {
    background-color: #606060;
    font-size: 25px;
    color: #f7f7f7;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/*Navleft*/
.nav-left-admin .list-group-item {
    color: #606060;
    font-size: 1.1rem;
}
.nav-left-admin .list-group-item.active {
    /*color: #6647a4;
    background: none;
    border-color: #6647a4;
    background: #fff;*/
    color: #FFF;
    background: #34045d;
    border-color: #6647a4;
}

/*Modals*/
.delete-property {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: #e74c3c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
}

/*Footer*/
.footer-admin .rrss a {
    background: #1e1e1e;
}

/*---------------------*/
/*---PRODUCT DETAIL----*/
/*---------------------*/
.container-product-detail {
    top: auto;
}
.item-features {
    background-color: #f7f7f7;
    min-width: 80px;
}
.item-features i {
    font-size: 2rem;
}
.item-features {
    font-size: 1rem;
}











/*-------TESTES-----*/

                                .hidden-scroll-bar::-webkit-scrollbar { 
                                    display: none;
                                }
                                .imovel-filter .col-md-flex{
                                    padding-right: 10px;
                                }
                                 .veiculo-filter .col-md-flex{
                                    padding-right: 10px;
                                }


                                .valor input, .valor select{
                                    width: 120px;
                                    display: inline-flex;
                                }
                                #statusImovel.form-control:focus,#tipoImovel.form-control:focus, #tipoVeiculo.form-control:focus{
                                    background-color:#d1d1d1;
                                }
                                #statusImovel, #tipoImovel, #tipoVeiculo{
                                    width: 150px;
                                }
                                .valor input, .valor select, #statusImovel, #tipoImovel, #tipoVeiculo{
                                    font-size: 16px;
                                    line-height: 23px;
                                    border: 0px;
                                    padding: 0.375rem 0.75rem !important;
                                }
                                .campo-bairro .select2-container--default.select2-container--focus .select2-selection--multiple{
                                    border: 0px;
                                }
                                .valor input, .valor select, .valor select:focus,.valor input:focus,.campo-bairro .select2-selection, .campo-cidade .select2-container--default .select2-selection--single .select2-selection__rendered{
                                    line-height: 23px;
                                    border: 0px;
                                    font-size:16px;
                                    background-color: #f7f7f7;
                                }
                                #cidade, #bairro{
                                    width: 150px;
                                }
                                .switch__container{
                                    display:inline-block;
                                }
                                .switch {
                                  position: absolute;
                                  margin-left: -9999px;
                                  visibility: hidden;
                                }

                                .switch + label {
                                  display: block;
                                  position: relative;
                                  cursor: pointer;
                                  outline: none;
                                  user-select: none;
                                }

.switch--shadow + label {
    padding: 2px;
    width: 120px;
    height: 35px;
    /* background-color: #dddddd; */
    /* border-radius: 60px; */
}
                                .switch--shadow + label:before,
                                .switch--shadow + label:after {
                                  display: block;
                                  position: absolute;
                                  top: 1px;
                                  left: 1px;
                                  bottom: 1px;
                                  content: "";
                                }
.switch--shadow + label:before {
    right: 1px;
    background-color: #f1f1f1;
    /* border-radius: 60px; */
    transition: all 0.4s;
    content: "Alugar";
    line-height: 35px;
    font-size: 13px;
    padding-left: 7px;
    border-radius: 5px;
}
.switch--shadow + label:after {
    width: 62px;
    transition: all 0.4s;
    content: "Comprar";
    line-height: 35px;
    transform: translateX(60px);
    background-color: #2c133a;
    font-size: 13px;
    border-radius: 0px 5px 5px 0px;
    padding-left: 3px;
    color: #fff;
}
.switch--shadow:checked + label:before {
    background-color: #2c133a;
    /* content: "Alugar"; */
    line-height: 35px;
    color: #fff;
}
.switch--shadow:checked + label:after {
    transform: translateX(60px);
    content: "Comprar";
    line-height: 35px;
    background-color: #f1f1f1;
    color: #222;
}
.modal-filtros .col-12{
    margin-top:25px;
}
.modal-filtros .form-group:first-child{
    margin-top:0px;
}
.header-main .navbar-light .navbar-nav .nav-link:hover{
    border-bottom: 0px;
    background-color: #9b88bf;
    color:#4b28a4;
}
.header-admin #navbarDropdownAccount, .header-main .navbar-light .navbar-nav .nav-link {
    border-bottom: 0px;
    color: #2c133a;
    font-size: 14px;
}
#navbarText .navbar-nav{
    border: 0px;
    border-radius: 30px;
    box-shadow: var(--shd,0 1px 4px rgba(0,0,0,.6));
}

@media (min-width: 768px){
    #navbarText .py-md-4 {
        padding-top: 0.5rem!important;
        padding-bottom: 0.5rem!important;
    }
}

.dropdown-menu{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    border-radius: 20px;
    overflow: hidden;
    font-size: 14px;
}
.dropdown-item{
    color: #2c133a;
}
.dropdown-item:focus, .dropdown-item:hover {
    border-bottom: 0px;
    background-color: #9b88bf;
    color:#4b28a4;
}
.carousel-item.active{
    /*background-image: url(../images/thumb.jpeg);*/
}

#menu-user a{
    padding-top: 5px !important;
    padding-bottom: 5px !important;

}
#dropdown-principal>li>a{
    height: 100%;
}
footer{
    background-color: #1d0e34;
    background-image: linear-gradient(45deg, black, transparent);
    padding-top: 30px;
}
footer h2{    
    color: #a78fd4;
    font-weight: bold;
    font-size: 21px;
    /*text-align: center;*/
    margin-top: 13px;
    margin-bottom: 60px;
}
footer a,footer p{
    color:#fff;
}
/*.text-right{
    text-align:right;
}*/
footer .social h2{
    margin-bottom: 25px;
}
footer .social i{
    font-size: 30px;
}
.copy{
    font-size: 13px;
    margin-top: 25px;
}

/*Responsive*/
@media(max-width: 1199px) {
    .hidden-scroll-bar{
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
    /*-webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;*/
    }
    .hidden-scroll-bar::after{
        color: #7460ad;
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        box-sizing: border-box;
        display: block;
        position: absolute;
        right: 5px;
        font-size: 22px;
    }
}
.campo-bairro .select2-selection--multiple{
    background-color: #f7f7f7 !important;
    border: 0px !important;
}

.veiculo-bairro input, .veiculo-cidade input, 
.veiculo-bairro .select2-selection{
    min-width: 120px;
}

.modal-fechar{
    background-color: #7460ad;
    border: 0px;
}
.modal-fechar:focus, modal-fechar:hover{
    background-color: #534088;
    border: 0px;
}
#dataTableUser{
    white-space: nowrap;
}
#dataTableUser td, #dataTableUser th{
    /*max-width: 155px;*/
    /*text-overflow: ellipsis;*/
    overflow: hidden;
    font-size: 12px;
}
#dataTableUser td button{
    font-size: 12px;

}
.linkUser{
    color: #555;
    cursor: pointer;
    text-decoration: underline;
}
/*input:invalid{
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);}*/

.nova-img{
    position: absolute;
    /* width: 100%; */
    text-align: center;
    background: rgb(93 248 62 / 87%);
    /* right: 0; */
    padding: 2px 9px;
    font-weight: bold;
    color: #fff;
}



.box-product.example-box .price p{
    color: #aaa;
}

.box-product.example-box .carousel-item.active{
    background:  linear-gradient(90deg, #aaa, #ccc, #aaa, #ccc) ;
    background-size: 300% 300%; 
    color: transparent !important;
    animation: loading 3s ease;
    animation-iteration-count: infinite;
    
}
.box-product.example-box .carousel-inner img{
    opacity: 0 !important;
}
.box-product.example-box .btn{
    background-color: #aaa !important;
    border: #aaa !important;
} 
.box-product.example-box .cmp{
    background:  linear-gradient(90deg, #aaa, #ccc, #aaa, #ccc) ;
    background-size: 300% 300%; 
    border-radius: 3px;
    color: transparent !important;
    animation: loading 4s ease;
    animation-iteration-count: infinite;
}
.box-product.example-box .casava{
    filter: grayscale(100%);
}
@keyframes loading {
    0%{
        background-position: 100% 0%;
    }
    50%{
        background-position: 50% 0%;
    }
    100%{
        background-position: 0% 0%;
    }
}



.handle-menu button{
    border: 1px solid rgba(0,0,0,.125); background: #fff; border-radius: 5px 5px 0 0; border-bottom: 0; font-size: 1.1rem
}

@media(min-width: 770px) {

    .closed .menu-left {
        width: 58px !important;
    }
    .closed .menu-left {
        width: 58px !important;
    }
    .closed .menu-left a{
        text-wrap: nowrap;
        overflow: hidden;
        padding-left: 7px;
    }
    .closed .content{
        width: calc(100% - 59px);
    }
    .closed  .btn-left{
        display: none
    }
    .closed  .menu-left i{
        margin-right: 20px !important;
    }
    .btn-right{
        display: none
    }
    .closed  .btn-right{
        display: inline-block
    }
    .btn-bars{
        display: none
    }
}

@media(max-width: 770px) {
    .btn-right{
        display: none
    }
    .btn-left{
        display: none
    }
    .closed #list-tab{
        display: none
    }
    .closed  .handle-menu button{
        border: 1px solid rgba(0,0,0,.125); background: #fff; border-radius: 5px ; font-size: 1.1rem
    }
}
.new-bottom-primary{
    width: 200px;
    max-width: calc(50% - 5px);
    border-radius: 21px;
    background: rgb(52,4,93);
    background: linear-gradient(90deg, rgba(52,4,93,1) 0%, rgba(105,3,157,1) 50%, rgba(52,4,93,1) 100%);
    font-size: 14px;
}
.new-input{
    border-radius: 21px;
    text-align: center;
    border: 2px solid #706f6f;
}
.new-input-2{
    text-align: center;
    color: #6647a4;
    background-color: #FFF;
}
.btn-whats {
    background: #25d366;
    border-color: #139b29 ;
    background: linear-gradient(90deg, #15972b 0%, #31be49 50%, #139b29 100%);
}
.form-check-input{
    background-color: #f44336 !important; 
    border-color:  #f44336 !important; 
    background-size: contain !important;
}
.form-check-input:checked{
    background-color: #00d54f !important; 
    border-color:  #00d54f !important;
}
@media(max-width: 770px) {
    #filters-warp{
        width: 100%;
        height: 130px;
    }
    .filters-suspense{
        position: fixed;
        top: 73px;
        z-index: 999;
        width: 100vw;
        left: 0;
        margin: auto;
        background: #fff;
        box-shadow: 1px 1px 8px #AAA;
        padding-top: 12px;
    }
}

.title-new{
    width: 100%;
    text-align: center;
    color: #34045d;
}
.comission-msg{
    color: #34045d;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    display: none;
}
.on-show-c{
    display: none;
}
.view-c .on-show-c{
    display: inline-block;
}
.view-c .on-hide-c{
    display: none;
}

.project-share-button{
    width: 30px;
    min-width: 30px;
    height: 30px;
    position: absolute;
    top: 16px;
    right: 10px;
    font-size: 16px;
    padding: 0;
    padding-top: 2px;
}



/*

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.loader::before , .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite ;
}
.loader::after{
  transform: rotate3d(90, 90, 0, 180deg );
  border-color: #6647a4;
}

@keyframes rotate {
  0%   {transform: rotate(0deg)}
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
}
    */

    .loader {
      width: 60px;
      height: 60px;
      border: 5px solid #FFF;
      border-bottom-color: #6647a4;
      border-radius: 50%;
      display: inline-block;
      box-sizing: border-box;
      animation: rotation 1s linear infinite;
      }
  
      @keyframes rotation {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(360deg);
      }
      } 

:root {
  --zoom: 1; /* padrão */
}

body {
    zoom: var(--zoom);
}
@media(max-width: 1700px) {
  :root {
    --zoom: 0.8;
  }
}

@media(max-width: 1350px) {
  :root {
    --zoom: 0.7;
  }
}
@media(max-width: 1150px) {
  :root {
    --zoom: 0.6;
  }
}

@media(max-width: 700px) {
  :root {
    --zoom: 1;
  }
}
