.m-quick-contact__switch {
    width: 48px;
    height: 48px;
    background-color: #FF6700;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 3px;
    transition: all .5s ease;
    overflow: hidden;
    padding-left: 11px;
}

.m-quick-contact__switch.-open {
    width: 123px;
    padding-left: 16px;
}

.m-quick-contact__switch .m-quick-contact__switch-icon {
    position: static;
    margin: 0;
    width: auto;
    height: auto;
    display: block;
}

.m-quick-contact__switch .m-quick-contact__switch-icon > * {
    width: 26px;
    height: 24px;
}

.m-quick-contact__switch .m-quick-contact__switch-icon > .-close.-hidden {
    display: none;
}

.m-quick-contact__switch .m-quick-contact__switch-icon > .-open {
    transform: scale(1.4);
    transform-origin: center;
    display: none;
}

.m-quick-contact__switch .m-quick-contact__switch-icon > .-open.-show {
    display: inline-block;
}

.m-quick-contact__switch .m-quick-contact__switch-text {
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    margin-left: 8px;
    /* display: none; */
    white-space: nowrap;
    opacity: 0;
    transition: opacity .3s ease-out .1s;
}

.m-quick-contact__switch.-open .m-quick-contact__switch-text {
    display: block;
    opacity: 1;
}