.atlas-dropdown {
    background-color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
    z-index: 1;
}

button.atlas-dropdown-toggle {
    white-space: nowrap;
    border-radius: 3px;
    padding: 1px 5px;
}

.atlas-dropdown-popup {
    background-color: inherit;
    display: none;
    position: absolute;
    top: 3.5vw;
    padding: 0.7vw 1vw;
    cursor: default;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .15);
    overflow-y: auto;
    overflow-x: visible;
    max-height: calc(97vh - 180px);
}

ul.atlas-dropdown-popup > li {
    list-style-type: none;
}
ul.atlas-dropdown-popup > li > * {
    width: 100%;
}

.atlas-dropdown.active .atlas-dropdown-popup {
    display: flex;
}
.atlas-dropdown.active > button > svg:last-child {
    transform: rotate(180deg);
}

.atlas-dropdown-popup > li {
    padding: .5vw 0;
    white-space: nowrap;
}


.lang-selector > button{
    font-weight: 600;
}
.lang-selector > .atlas-dropdown-popup > li > label {
    cursor: pointer;
}

.header .atlas-dropdown-popup {
    top: 120%;
    overflow: visible;
}

.app-header .atlas-dropdown {
    background-color: #212428;
}
.app-header .atlas-dropdown-popup {
    width: 390px;
}












.atlas-dropdown-popup input {
    background: transparent;
    width: 100%;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: #ffffff;
}
.atlas-dropdown-popup input::placeholder {
    color: #ffffff;
}
.atlas-dropdown-popup #find_result {
    display: none;
    margin: 15px 0 0;
    padding-top: 15px;
    border-top: solid 1px #3E4045;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    color: #ffffff;
    max-height: 400px;
    overflow-y: auto;
}

.atlas-dropdown-popup .app-header-popup-header {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 2px 0 0;
    border-bottom: solid 1px #3e4045;
}
.atlas-dropdown-popup .app-header-popup-header li {
    display: flex;
    margin: 0 0 14px;
    font-size: 1.4rem;
    gap: 10px;
    align-items: center;
}
.atlas-dropdown-popup .app-header-popup-header li > * {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}
.atlas-dropdown-popup .app-header-popup-header .add-structure {
    display: flex;
    gap: 8px;
}
.atlas-dropdown-popup .app-header-popup-header .add-structure .icon {
    margin: 0;
}
.atlas-dropdown-popup .app-header-popup-header .add-structure label {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
}

.atlas-dropdown-popup .app-header-popup-content {
    padding: 2px 0;
    margin: 0;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-item {
    position: relative;
    margin: 0;
    padding: 8px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    border-bottom: solid 1px #3e4045;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-item > span {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
    flex-grow: 1;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-item span.icon-color {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 100%;
    display: block;
    flex-grow: 0;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-item span.button {
    width: 40px;
    min-width: 40px;
    height: 22px;
    position: relative;
    border-radius: 40px;
    background-color: #62656B;
    flex-grow: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-item.active span.button {
    background-color: #187ED7;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-item span.button:after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 18px;
    height: 18px;
    background-color: #FFFFFF;
    border-radius: 100px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-item.active span.button:after {
    left: 18px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub {
    display: none;
    margin: 0px;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub.active {
    display: block;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub .label-sub {
    margin: auto;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub .label-sub .lab-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub .label-sub .lab-text span {
    flex-grow: unset;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub .label-sub .lab-text .count {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #187ED7;
    flex-grow: unset;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #FFFFFF !important;
    text-align: center;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub .label-sub.active svg {
    transform: rotate(180deg);
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub .app-header-popup-content-sub-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: auto;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub .app-header-popup-content-sub-list .app-header-popup-content-item {
    padding-left: 32px;
}
.atlas-dropdown-popup .app-header-popup-content .app-header-popup-content-sub .app-header-popup-content-sub-list .app-header-popup-content-item .icon-color {
    width: 3px!important;
    height: 3px!important;
    min-width: 3px;
    background-color: #ffffff!important;
}