/* 15/1/25 */
#footer {
    margin: 0;
}

.support-online {
    position: relative;
}

.support-online>ul {
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 15px);
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 5px;
}

.support-online:hover ul {
    opacity: 1;
    visibility: visible;
}

.support-online>ul>li>a {
    display: flex;
    align-items: center;
    padding: 3px 10px;
    padding-right: 5px;
    background: var(--main-color);
    border-radius: 4px;
    color: #fff;
    transition: .3s;
    width: unset;
}

.support-online>ul>li>a>i {
    margin-right: 5px;
}

.support-online>ul>li>a:hover {
    background: var(--sec-color);
}

.support-online>ul>li>a>img {
    max-width: 30px;
}

.social_fixed-phone li {
    position: relative;
}

.social_fixed-phone li>ul {
    position: absolute;
    bottom: calc(100% + 10px);
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 345px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.social_fixed-phone>ul>li {
    position: unset;
}

.social_fixed-phone li>ul>li {
    width: fit-content;
}

.social_fixed-phone li>ul>li>a {
    border: unset;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 5px;
    padding-right: 5px;
    background: var(--main-color);
    border-radius: 4px;
    color: #fff;
    transition: .3s;
    width: max-content;
}

.social_fixed-phone li>ul>li>a>i {
    margin-right: 5px;
}

.social_fixed-phone li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.social_fixed-phone {
    z-index: 999999;
}

@media (max-width: 991px) {
    .footerMap {
        margin-bottom: 55px;
    }
}