@charset "utf-8";
#float-contact {
    position: fixed;
    bottom: 1.5em;
    right: 7em;
    width: 250px;
    z-index: 100;
    display: none;
}
#float-contact.__is-visible {
    display: block;
}
#float-contact div {
    position: relative;
}
#float-contact div button {
    position: absolute;
    background-color: #000;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
#float-contact div button span {
    width: 74%;
    height: 2px;
    background: #fff;
    position: absolute;
}
#float-contact div button span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}
#float-contact div button span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}


#float-contact2 {
    position: fixed;
    bottom: 6em;
    right: 1.5em;
    width: 3.5em;
    z-index: 100;
    display: none;
}
#float-contact2.__is-visible {
    display: block;
}

@media screen and (max-width: 749px) {
    #float-contact {
        width: 45%;
        max-width: 346px;
        right: 1em;
        top: unset;
        bottom: 5em;
    }
    #float-contact div button {
        width: 2em;
        height: 2em;
        top: -8%;
        right: -4%;
    }
    #float-contact2 {
        right: 1em;
        bottom: 5em;
        width: 3.2em;
    }
    #float-contact2.__is-visible {
        display: none!important;
    }
}
