.header__fixed {
    display: none;
}

@media (max-width: 767px) {
    .header__fixed {
        display: flex;
    }
}

.header__fixed {
    background-color: #30a0f6 !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 15px 16px;
    z-index: 9999;
}


.fixed-header__left {
    gap: 10px;
    display: flex;
}

.fixed-header__icon {
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.fixed-header__icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

a.fixed-header__button {
    background: #e31e24;
    border-radius: 3px;
    font-weight: 400;
    font-size: 15px;
    color: #fff !important;
    padding: 12px 28px !important;
    border: 0;
    display: inline-block;
    font-weight: 600;
}

a.fixed-header__button:hover {
    transform: unset !important;
    color: #fff !important;
}

a.fixed-header__button:focus {
    outline: 0;
}

.fixed-header__icon_type_mail {
    padding: 3px;
}

.fixed-header__icon_type_mail img {
    filter: invert(1);
    width: 21px;
    height: 21px;
}