.support {
    display: flex;
    flex-direction: column;
    margin-right: 64px;
    border-bottom: none;
}
.support__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
}
.support__title {
    font-family: FactorA-Bold, sans-serif;
    font-size: 18px;
    line-height: 120%;
    margin-left: 8px;
}
.support__phone {
    font-weight: bold;
    margin-left: 12px;
}
.support__select__toggle-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.support__working-time, .support__working-days {
    font-size: 12px;
    line-height: 1.5;
    color: #575C66;
    margin-left: 8px;
}

.support__select {
    position: relative;
}

.support__select.-open .support__select__options {
    display: block;
      background: #fff;
      border: 1px solid #D1D4DB;
}

.support__select__trigger {
    position: relative;
    font-size: 14px;
    padding-right: 8px;
}

.support__select__options {
    overflow-y: auto;
    max-height: calc(52px * 5.6);
    position: absolute;
    top: 40px;
    z-index: 1;
    border-radius: 6px;
    display: none;
    width: 258px;
    padding: 4px 0;
    box-shadow: 5px 8px 25px rgba(137, 141, 154, 0.2);
    box-sizing: border-box;
}
.support__select__options__item {
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.support__select__trigger__value {
    padding: 16px 8px;
    cursor: pointer;
    box-sizing: border-box;
}
.support__select__options .support__select__options__item:hover {
    background-color: rgba(166, 176, 179, 0.2);
}
.support__select__trigger__value .flag-icon {
    margin-right: 4px;
}
.support__select__options__item .flag-icon {
    margin-right: 8px;
}
