﻿:root {
    --main-text-color: #333;
    --header-background-color: #00bcd4;
    --menu-border-radius: 11px;
    --menu-color-1: #fff;
    --menu-color-hover: #ccd199;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Rooboto-Regular';
    src: url('/fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    overflow: hidden;
    font-size: 20px;
    letter-spacing: 0.05rem;
    line-height: 1.4;
    font-family: var(--rz-text-font-famaly);
}

/*location-btn*/
#locate-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: white;
    border: 2px solid #007AFF;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    animation: pulse 2s infinite;
    transition: background-color 0.3s;
}

#locate-btn.hide{
    display:none;
}

    #locate-btn:hover {
        background-color: #e6f0ff;
    }

    #locate-btn img {
        width: 60%;
        height: 60%;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 122, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0);
    }
}

/* Мобильные устройства: ширина экрана до 768px */
@media (max-width: 768px) {
    #locate-btn {
        width: 40px;
        height: 40px;
        bottom: 75px;
    }
}


/*end location btn*/

/*login*/
#login-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 15px;
    top: 15px;
    width: 50px;
    height: 35px;
    border-radius: 15px;
    background-color: #7daae2;
    z-index: 1;
}

#login-wrapper span {
    color: white;
    font-size: 20px;
    padding: 5px;
}

.login-layout-wrapper {
    position: relative;
    background-color: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebb-home-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    top: 30px;
    left: 30px;
    background-color: #d9dff8;
    color: #0a49ab;
    text-decoration: none;
    transition: all .5s ease-in-out;
}

.ebb-home-icon:hover {
    color: #fff!important;
    background-color: gray;
    text-decoration: none!important;

}

.login-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-image: url(../images/accountImg.jpg);
    background-repeat: no-repeat;
    background-position: center;
}


.acc-card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.acc-card {
    background-color: white;
    height: 25rem;
    width: 22rem;
}

.register-end {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(246, 239, 242, 0.8);
}

.register-end > div{
    text-align: center;
}

.acc-tabs-wrapper{
    height: 100%;
}

.acc-tab-controls {
    display: flex;
    flex-direction: row;
    height: 10%;
}

.acc-tab-control-item {
    position: relative;
    width: 50%;
    padding: .5rem;
    text-align: center;
    color: #0a49ab;
    border-bottom: solid 5px gray;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-in-out;
    user-select: none;
}

.acc-tab-control-item:hover {
    background-color: #a4afda;
}

@media screen and (max-width: 550px) {
    .login-layout {
        background-image: url(../images/accountmobile.jpg);
    }
}

.acc-tab-control-item.active {
    border-bottom: solid 5px #0a49ab;
    background-color: #d9dff8;
}

.acc-tab-content/*, .acc-tab-content form*/{
    position: relative;
    height: 90%;
    width: 100%;
}

.acc-tab-content form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.acc-errors {
    position: relative;
    left: 35px;
    max-width: 300px;
    height: 40px;
    color: red;
}

.acc-tab-item {
    display: none;
    padding: .3rem;
    height: 100%;
    width: 100%;
}

.acc-tab-item.active {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.acc-tab-btn-wrapper{
    display: flex;
    justify-content: end;
    align-items: flex-end;
    align-self: center;
    width: 100%;
    height: 15%;
    padding-right: 25px;
}

/*app-main*/
#main-content {
    position: relative;
    color: #fff;
}

#main-content * {
    color: white;
}

/*index-controls*/
.index-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    height: 5rem;
    /*bottom: 3rem;*/
    z-index: 110;
}

.index-nav-container,
.index-map-controls {
    position: relative;
    display: flex;
    height: 5rem;
    justify-content: center;
    align-items: center;
}

.index-map-controls {
    margin-left: 1rem;
}

.index-control {
    width: 5rem;
    height: 5em;
    margin: 0 .4rem 0 .4rem;
    border-radius: 3px;
    border: 1px solid white;
    cursor: pointer;
    z-index: 111;
    opacity: .7;
    transition: opacity 0.3s ease;
    background-color: #0b4149;
}

.projects-info-btn {
    background-color: #6f9095;
}

.projects-info-btn.active {
    background-color: #0b4149;
}

.projects-info-btn.active:hover {
    opacity: 1!important;
}

.index-control:hover:not(.projects-info-btn) {
    opacity: 1!important;
}

/*index section*/
#map-section {
    background-color: #000;
    padding: 0;
    
}

#about-section {
    background-color: green;
}

.index-section {
    width: 100vw;
    height: 100vh;
}

#map-container {
    width: 100vw;
    height: 100vh;
}

/*стили для элементов mapbox-gl*/
.mapboxgl-popup {
    max-width: 400px;
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
    color: #607d8b !important;
}

.mapboxgl-popup-close-button {
    border: 0 !important;
    outline: none;
}

.marker {
    display: block;
    border: solid 1px #ffff;
    color: white !important;
    border-radius: 8%;
    cursor: pointer;
    background-color: #a023bb;
    text-align: center;
    padding: 1px 6px;
    min-width: 70px;
}
    
.marker:hover {
    background-color: #252835;
    /*width: 150px;*/
    z-index: 2;
    animation: changeMarkerColor .4s ease-in-out;
}

.index-projectinfo{
    background-color: green;
}

/*кастомные стили для radzen*/
.index-projectinfo * {
    font-family: Rooboto-Thin;
    font-size: 20px;
    letter-spacing: .05em;
    line-height: 1.4;
} 

@keyframes changeMarkerColor {
    0% {
        background-color: #233fbb; /* Начальный цвет фона */
    }

    100% {
       background-color: #252835; /* Новый цвет фона на 50% анимации */
    }
    
}

.prw-doc-container {
    position: relative;
    height: 5rem;
    width: 16rem;
    margin: 3px;
    overflow: hidden;
}

.prw-item img {
    position: relative;
    display: inline-block;
    margin-right: 4px;
    height: 3rem;
    width: 3rem;
}


@media (max-width: 540px){
    .prw-item img {
        height: 2rem;
        width: 2rem;
    }

    .prw-doc-container {
        height: 3rem;
        width: 10rem;
    }
}

.prw-item {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    background-color: #eef1e9;
    border-radius: 6px;
    text-decoration: none !important;
    padding: 4px;
    transition: all 0.5s ease-out 0ms, width 1ms ease 0s;
    -webkit-box-shadow: -3px 0px 32px -4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: -3px 0px 32px -4px rgba(34, 60, 80, 0.2);
    box-shadow: -3px 0px 32px -4px rgba(34, 60, 80, 0.2);
}

.prw-docname{
    text-transform: uppercase;
    line-height: 4rem;
    
}

.prw-item:hover {
    transform: scale(1.3);
}




/*main float menu*/
.menu-wrapper {
    position: fixed;
    color: var(--menu-color-1);
    display: flex;
    justify-content: center;
    bottom: -80px;
    left: 0;
    width: 100%;
    font-size: 14px;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.menu-wrapper.active {
    opacity: 1;
    bottom: 0px;
    z-index: 2
}

.menu-inner {
    /*max-height: fit-content;*/
    min-width: 350px;
    width: 45%;
    padding: 5px;
    background-color: rgba(32, 34, 34, .5);
    border-radius: var(--menu-border-radius);
}

.menu-inner.hide {
    width: 450px !important;
}

@media screen and (max-width: 1500px) {
    .menu-inner {
        width: 60%;
    }
}

@media screen and (max-width: 1200px){
    .menu-inner{
        width: 70%;
    }
}

@media screen and (max-width: 850px) {
    .menu-inner {
        width: 100%;
    }
}

.menu-data {
    background-color: #202222;
    height: 500px;
    /*min-width: 380px;*/
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all .4s ease-in-out;
    opacity: 1;
    padding: 7px;
    margin-bottom: 7px;
    border-radius: var(--menu-border-radius);
}

.menu-data-section.primary {
    height: 75px;
}

.menu-data-section.primary ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: .5px solid white;
}

.menu-data-section.primary li {
    position: relative;
    display: block;
    height: 25px;
    margin: 2px;
    padding: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
    user-select: none;
}

/*иконки в меню*/
.menu-icon-world {
    position: absolute;
    top:0;
    font-size: 30px !important;
}

.menu-data-section.primary li:hover,
.menu-data-section.primary li.active {
    color: var(--menu-color-hover) !important;
    text-decoration: none;
}

.menu-data-section.secondary {
    position: relative;
    height: 450px;
    overflow: hidden;
    background-image: url('../images/lucas-carl-PQfuavIwNGM-unsplash.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.menu-data-section.secondary.filled::before {
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(164, 202, 236, 0.8);
    content: '.';
    color: transparent;
    z-index: 1;
}

.menu-data-section.secondary.filled-noback::before {
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    content: '.';
    color: transparent;
    z-index: 1;
}

.menu-data-section-filled {
    position: relative;
    z-index: 2;
    height: 100%;
}

.project-menu-btn {
    cursor: pointer;
    text-transform: uppercase;
    font-size: .7rem;
    user-select: none;
}



    .project-menu-btn:hover,
    .project-menu-btn.active {
        color: var(--menu-color-hover) !important;
    }

.menu-data.hide {
    height: 0;
    opacity: 0;
    margin-bottom: 3px;
    padding: 0;
}

.menu-select {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

@media screen and (max-width: 850px) {
    .menu-select {
        flex-direction: column;
    }
}

.menu-primary {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    min-width: 350px;
    height: 50px;
    background-color: #202222;
    padding: 10px;
    border-radius: var(--menu-border-radius);
}

    .menu-primary.active {
        width: 100%;
        margin-right: 0;
    }

.menu-primary-left {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}



    .menu-primary-left > span:not(:first-child) {
    }

    .menu-primary-left > span:first-child {
        display: inline-block;
        border-radius: 7px;
        border-right: 1px solid var(--menu-color-hover);
        border-left: 1px solid var(--menu-color-hover);
        margin-right: 7px;
        padding: 0 7px;
        text-transform: lowercase;
        color: var(--menu-color-hover);
    }

#menuProjectInfoBtn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background-color: #393f42;
    border: none;
    outline: none;
    border-radius: 7px;
    padding: 3px 7px;
    color: #fff;
    font-size: .7rem;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    user-select: none;
}

    #menuProjectInfoBtn:hover {
        background-color: #393f42;
        color: var(--menu-color-hover);
    }

    #menuProjectInfoBtn:active,
    #menuProjectInfoBtn:focus {
        outline: none;
    }

    #menuProjectInfoBtn > div {
        display: flex;
        overflow: hidden;
    }

        #menuProjectInfoBtn > div > span {
            display: inline-block;
            height: 25px;
            line-height: 25px;
            margin-right: 4px;
            text-align: center;
        }

            #menuProjectInfoBtn > div > span:first-child {
                font-size: 25px;
            }


.menu-button {
    position: relative;
    cursor: pointer;
    width: 20px;
    height: 30px;
}

.menu-btn-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none !important;
}

    .menu-btn-item:hover {
        color: var(--menu-color-hover);
        text-decoration: none !important;
    }

.menu-data-section.primary li.active .menu-btn-item {
    color: var(--menu-color-hover);
}

.menu-btn-item > span:not(:first-child) {
    font-size: .8rem;
}

.menu-btn-item > span:first-child {
    font-size: 1.5rem;
    margin-right: 5px;
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--menu-color-1);
    height: 2px;
    margin: 6px 0;
    transition: 0.4s;
}

.menu-button .bar:nth-child(1) {
    top: 0;
}

.menu-button .bar:nth-child(2) {
    top: 8px;
}

.menu-button .bar:nth-child(3) {
    top: 16px;
}

.menu-button.active .bar:nth-child(1) {
    top: 8px;
    transform: rotate(-45deg);
}

.menu-button.active .bar:nth-child(2) {
    transform: rotate(0) scale(0, 1);
    opacity: 0;
}

.menu-button.active .bar:nth-child(3) {
    top: 8px;
    transform: rotate(45deg);
}


/*весь контент в секции*/
.secondary-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*дополнительное меню в секции*/
.section-menu-wrapper {
    display: flex;
    height: 35px;
    justify-content: space-around;
    align-items: center;
    background-color: #121616;
    /*margin-top: 5px;*/
}

/*Список поселков*/
.projects-collection{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
    overflow-y: auto;
}

.projects-collection-item {
    position: relative;
    display: block;
    /* width: 350px;
    height: 100px;*/
    margin: 3px;
    text-decoration: none !important;
}

.pci-banner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    color: white;
    font-size: .6rem;
    text-transform: uppercase;
}


/*О компании*/
.about-wrapper {
    width: 100%;
    overflow-y: auto;
}


/*ЛК клиента*/
/*о проекте*/
.clients-office-wrapper,
.project-info-wrapper {
    height: 420px;
    overflow-y: auto;
}

.clients-office-wrapper {
    color: var(--rz-text-color);
}

/*карточка таба*/
.section-card {
    overflow: hidden;
    display: none;
    /*padding: 5px;*/
}

.section-card.active {
    display: flex;
    flex-direction: column;
}

/*.section-card > div {
    margin: 8px 0;
}*/

/*о проекте*/
.section-card.active.info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.section-card .header {
    background-color: var(--project-main-color);
    width: 100%;
    padding: 10px;
    color: #fff!important;
}

.info-block-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 25%;
    padding: .5rem;
    background-color: #333838;
    border: .2px solid gray;
}

.info-block-wrap a{
    color: #fff;
}

.info-block-wrap a:hover {
    color: #fff;
}

@media screen and (max-width: 550px) {
    .info-block-wrap {
        width: 50%;
    }
}

.info-block-title{
    font-weight: 300;
    font-size: .6rem;
}

.info-block-content {
    font-size: .8rem;
}

.info-block-wrap.full-width{
    width: 100%;
}

/*инфраструктура и документы*/
.projects-items-list {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.projects-list-item-wrap {
    display:flex;
    justify-content: center;
    flex-grow: 1;
    background-color: #1c2320;
    border: .3px solid gray;
}

.projects-list-item {
    width: 11rem;
    justify-self: center;
    display: grid;
    grid-template:
        "icon"
        "line"
        "dot"
        "title"
        "descr" 1fr;
    justify-items: center;
    align-items: flex-start;
    text-align: center;
    
    padding: .5rem;
    margin: .5rem;
}

.hover-animate-line-bot{
    position: relative;
}

.projects-list-item.doc {
    text-decoration: none;
    color: inherit !important;
}

.hover-animate-line-bot .item-cursor-over {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: red;
    width: 0%;
    height: 6px;
}

.hover-animate-line-bot:hover .item-cursor-over {
    width: 100%;
    transition: width .6s ease-in-out;
}


.projects-list-item .icon {
    grid-area: icon;
    width: 5rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: white;
    font-size: 2.5rem;
    border: 0.3rem solid rgba(245, 245, 245);
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: -0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.45), inset -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.45);
}

.projects-list-item::before,
.projects-items-list li a::before {
    content: "";
    grid-area: line;
    height: 2rem;
    border-right: 2px dotted currentColor;
}

.projects-list-item::after,
.projects-items-list li a::after {
    content: "";
    grid-area: dot;
    width: 1rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent-color);
    justify-self: center;
    margin-bottom: 0.5rem;
}

.projects-list-item .title {
    grid-area: title;
    margin-block: 0.5rem;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

.projects-list-item .descr {
    grid-area: descr;
    margin-block: 0.5rem;
    font-size: .7rem;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    align-self: end;
}

a.projects-list-item:hover{
    cursor: pointer;
}

@media screen and (max-width: 550px) {
    .projects-list-item {
        width: 9rem;
        margin: .3rem;
    }

    .projects-list-item .icon{
        width: 3rem;
        border: 0.2rem solid rgba(245, 245, 245);
    }

    .projects-list-item .icon *{
        font-size: 25px!important;
    }

    .projects-list-item .title {
        font-size: .8rem;
    }

    .projects-list-item .descr {
        font-size: .7rem;
    }
}

/*галереия проекта*/
.big-p p, p.big-p {
    font-size: 22px;
    line-height: 30px;
}

.cta, input[type="submit"], #sliding-popup .eu-cookie-compliance-buttons button {
    color: #b59982;
    border: 2px solid #b59982;
}

.cta, input[type="submit"], #sliding-popup .eu-cookie-compliance-buttons button, .cta.cta-white, #sliding-popup .eu-cookie-compliance-buttons button.decline-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    display: inline-block;
    text-decoration: none !important;
    font-family: 'Open Sans Condensed',sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    margin-top: 30px;
    cursor: pointer;
    will-change: color,background-color;
}

    .cta:hover, input[type="submit"]:hover, #sliding-popup .eu-cookie-compliance-buttons button:hover {
        color: #000000;
        background-color: #b59982;
    }

.default-panel-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.panel-image-grid {
    overflow: hidden;
}

.panel-image-container {
    padding: 0px;
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.panel-image-grid .animation-helper {
    overflow: hidden;
}

.photo-item {
    transform: scale(1) translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
    position: absolute;
    transition: all 0.5s ease-out 0ms, width 1ms ease 0s;
    border: 1px solid #000;
}

.photo-item img {
    display: block;
    width: 100%;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    will-change: transform;
    cursor: pointer;
}

.animation-helper {
    position: relative;
}

.hover-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    cursor: pointer;
    background-color: transparent;
}

.photo-item:hover img {
    transform: scale(1.3);
}

.photo-item:hover .hover-overlay,
.prw-item:hover .hover-overlay {
    background-color: rgba(2, 2, 2, 0.63);
}

.photo-item .details-container {
    transform: translate(0,-50%) translate(0,0);
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}

.photo-item .details-container {
    user-select: none;
    cursor: pointer;
}

.photo-item:hover .details-container {
    opacity: 1;
    -webkit-transform: translate(0,-50%) translate(0,20px);
    transform: translate(0,-50%) translate(0,20px);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background-color: rgba(0,0,0,0.7);
}

.popup .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    opacity: 1;
    will-change: opacity;
}

.popup.popup-image .inner-popup {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

.popup .inner-popup {
    padding: 40px;
}

.popup img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.btn-icon {
    border: none;
    border-radius: 50%;
    display: block;
    width: 50px;
    height: 50px;
    color: #000 !important;
    z-index: 1200;
}






/*util*/
.ebb-hidden {
    display: none;
}

.pulse-scale-1-1 {
    animation: pulse-scale-1-1 3s infinite;
}

.pulse-scale-1-2 {
    animation: pulse-scale-1-2 3s infinite;
}


@keyframes pulse-scale-1-1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-scale-1-2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.colorPulse {
    animation: colorPulse 3s infinite;
}

@keyframes colorPulse {
    0% {
        color: var(--menu-color-hover);
    }

    50% {
        background-color: var(--menu-color-1)
    }

    100% {
        background-color: red;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: 1;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
} 