* {
    margin: 0;
    padding: 0;
}

a.cd-phone {
    background: rgba(218, 144, 87, 0.9) url(../img/cd-phone.svg) no-repeat center 50%;
    background-size: 28px;
    position: fixed;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    right: 22px;
    bottom: 22px;
    z-index: 9;
    -webkit-transition: all .3s;
    transition: all .3s;
}

a.cd-phone span {
    position: absolute;
    width: auto;
    border: 2px solid #de9b67;
    padding: 0 10px;
    text-align: center;
    border-radius: 25px;
    background-color: #de9b67;
    bottom: 25px;
    right: 0;
    color: #fff;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

a.cd-phone:hover span {
    bottom: 25px;
    right: 80px;
    opacity: 1;
}

a.cd-phone.remove {
    opacity: 0;
    -webkit-transform: translateY(170%);
    -moz-transform: translateY(170%);
    transform: translateY(170%);
    -webkit-transition: -webkit-transform 1s .2s, opacity 1s .2s;
    -moz-transition: -moz-transform 1s .2s, opacity 1s .2s;
    transition: transform 1s .2s, opacity 1s .2s;
}

.close-container {
    padding: 4px;
    display: inline-block;
    position: fixed;
    bottom: 68px;
    right: 22px;
    background-color: #080808;
    border-radius: 25px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.close-container p.close {
    position: relative;
    width: 16px;
    height: 16px;
    overflow: hidden;
}

.close-container p.close::before,
.close-container p.close::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff;
}

.close-container p.close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-container p.close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.close-container p.close::before,
.close-container p.close::after {
    height: 4px;
    margin-top: -2px;
}

.close-container.remove {
    opacity: 0;
    -webkit-transform: translateY(460%);
    -moz-transform: translateY(460%);
    transform: translateY(460%);
    -webkit-transition: -webkit-transform 1s .2s, opacity 1s .2s;
    -moz-transition: -moz-transform 1s .2s, opacity 1s .2s;
    transition: transform 1s .2s, opacity 1s .2s;
}

@media only screen and (min-width:1024px) {
    a.cd-phone {
        width: 70px;
        height: 70px;
        right: 30px;
        bottom: 30px;
    }

    .close-container {
        bottom: 76px;
        right: 30px;
    }
}

@media only screen and (max-width:768px) {
    a.cd-phone span {
        display: none;
    }
    .close-container {
        display: none;
    }
}
@media only screen and (max-width: 375px) {
    a.cd-phone {
        left: 22px;
        right: auto;
    }
}