.icon__chat{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    height: 77px;
    padding: 16px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 5;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0px 16px 47px 0px rgba(13, 66, 255, 0.40);
    cursor: pointer;
    transition: .3s all ease;
}

.icon__chat._active{
    bottom: -40px;
}



.icons_switcher{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 5;
    right: 22px;
    gap: 10px;
    transition: .3s all ease;
}

.icons_switcher._active{
    right: -25px;
}

.icons_switcher .switcher{
    position: relative;
}

.icons_switcher .icon_switcher{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #E6EAF0;
    background: #FFF; 
    cursor: pointer;
}


.icons_switcher .switcher_hidden{
    width: 465px;
    position: absolute;
    top: 0;
    left: -480px;
    padding: 20px 20px 30px 20px;
    border-radius: 12px;
    border: 1px solid #E6EAF0;
    background: #FFF; 
}

.icons_switcher .switcher_hidden .hidden_menu_close{
    display: flex;
    justify-content: right;
}

.icons_switcher .switcher_hidden .hidden_menu_close svg{
    cursor: pointer;
}

.icons_switcher .switcher_hidden .switcher_hidden__title{
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    margin-bottom: 10px;
}

.icons_switcher .switcher_hidden .switcher_hidden__line{
    width: 100%;
    height: 1px;
    background: #E6EAF0;
    margin-bottom: 10px;
}

.icons_switcher .switcher_hidden .switcher_hidden__title .title__icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 5.6px;
    background: #35383A; 
}

.icons_switcher .switcher_hidden .switcher_hidden__title h4{
    color: #35383A;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal; 
}


.icons_switcher .switcher_hidden .switcher_hidden__text{
    color: #35383A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}


.icons_switcher .switcher_hidden .switcher_hidden__range{
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-moz-range-track{
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    background: #E6EAF0;
    border-radius: 20px;
    border: 1px solid #f9f9f9;
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-moz-range-thumb{
    height: 28px;
    width: 28px;
    border: 1px solid #35383A;
    border-radius: 15px;
    background: #ffffff;
    cursor: pointer;
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-moz-range-progress {
    height: 100%;
    background: #0D42FF; 
    border-radius: 20px; 
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-webkit-slider-thumb{
    height: 28px;
    width: 28px;
    border: 1px solid #35383A;
    border-radius: 15px;
    background: #ffffff;
    position: relative;
    top: -8px;
    -webkit-appearance: none;
    cursor: pointer;
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-webkit-slider-runnable-track{
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    background: #E6EAF0;
    border-radius: 20px;
    border: 1px solid #f9f9f9;
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-webkit-progress-value{
    height: 100%;
    background: #0D42FF;
    border-radius: 20px;
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    background: #E6EAF0;
    border-radius: 20px;
    border: 1px solid #f9f9f9;
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-ms-thumb {
    height: 28px;
    width: 100px;
    border: 1px solid #35383A;
    border-radius: 15px;
    background: #ffffff;
    cursor: pointer;
}

.icons_switcher .switcher_hidden .switcher_hidden__range::-ms-fill-lower {
    background: #0D42FF;
    border-radius: 20px;
}


.icons_switcher .switcher_hidden .switcher_hidden__language_switchers{
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
}

.icons_switcher .switcher_hidden .switcher_hidden__language_switchers .language_switcher{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal; 
    text-decoration: none;
    border-radius: 9.6px;
}

.icons_switcher .switcher_hidden .switcher_hidden__language_switchers .language_switcher.blue{
    background: #0D42FF; 
}

.icons_switcher .switcher_hidden .switcher_hidden__language_switchers .language_switcher.gray{
    background: #828282; 
}

.icons_switcher .switcher_hidden .switcher_hidden__language_switchers .language_switcher.dark_gray{
    background: #3E3E3E;
}