.select-btn .arrow-down {
    transition: 0.3s;
}

.select-btn.open .arrow-down {
    transform: rotate(-90deg);
}


.language-select-btn .arrow-down {
  transition: 0.3s;
}

.language-select-btn.open .arrow-down {
  transform: rotate(-90deg);
}

.list-items {
    position: relative;
    background-color: white;
    margin-top: 5px;
    padding: 5px;
}

.select-btn.open ~ .list-items {
    display: block;
}

.language-select-btn.open ~ .list-items {
  display: block;
}

.list-items .item {
    display: flex;
    align-items: center;
    list-style: none;
    height: 35px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 15px;
    border-radius: 8px;

}

.list-items .item:hover {
    background-color: #e7edfe;
}

.item .item-text {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

/* END MULTY SELECT STYLES */



.text-text-value {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0%;
}