.phone {
    height: 3.5rem;
    display: flex;
    align-items: center;
}
.phone:hover {
    color: var(--accent-color);
}

.phone__text {
    color: var(--secondary-text-color, #FFF);
    font-weight: 400;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    margin: 0 0.6rem 0 0;
    font-size: 1.3rem;
    opacity: 0.4;
}

.phone_container {
    display: flex;
    height: 100%;
    align-items: center;
}

.phone__num_dropdown svg {
    display: none;
}

.phone__num {
    margin: 0 0 0 6px;
    color: var(--secondary-text-color);
    transition: all 0.4s ease-in-out;
    font-size: 1.3rem;
}

.dropdown__container.phone__dropdown {
    width: auto;
    left: auto;
    right: 0;
}

.phone__dropdown_hidden {
    display: none;
}

.phone__dropdown-item {
    display: block;
    padding: 0.5rem 2rem;
    text-decoration: none;
    transition: color 0.25s;
    color: var(--main-text-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.phone__dropdown-item:hover {
    color: var(--accent-color);
}

.phone__item {
    display: flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.phone__item:hover {
    color: var(--accent-color);
}

.wrapper-back-ring {
    margin: 2px;
}

.wrapper-back-ring button {
    transition: all 0.4s ease-in-out;
}
.wrapper-back-ring button:hover {
    color: var(--accent-color)
}

@media (max-width: 1200px) {
    .phone__dropdown_hidden {
        display: block;
    }
}

@media (max-width: 767px) {
    .phone__text {
        flex-direction: column;
    }
    .phone {
        margin: 10px 0;
    }
}