.contact-popup-bg{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 25%);
    z-index: 100;
    display: none;
    opacity: 0;
    transition: .3s;
}

.contact-popup-bg.active{
    display: block;
}

.contact-popup{
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 150;
}

.contact-popup .contact-popup-button{
    cursor: pointer;
    display: flex;
    border: 2px solid rgb(237 29 36 / 80%);
    background: rgb(237 29 36 / 80%);
    padding: 5px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
}

.contact-popup .contact-popup-button img{
    height: 32px;
    width: 32px;
    display: block;
    margin-top: 2px;
    position: absolute;
    transition: .2s;
}

.contact-popup .contact-popup-button .main-btn{
    opacity: 1;
}

.contact-popup .contact-popup-button .close-btn{
    opacity: 0;
    width: 32px;
    height: 32px;
    margin-top: 0;
}


.contact-popup.active .contact-popup-button .main-btn{
    opacity: 0;
}

.contact-popup.active .contact-popup-button .close-btn{
    opacity: 1;
    transform: rotate(90deg);
}






.contact-popup .contact-popup-items{
    flex-direction: column;
    justify-content: flex-end;
    display: none;
    transition: .3s;
    transform: translateY(0px);
    margin-right: 10px;
}

.contact-popup .contact-popup-items.active{
    display: flex;
}

.contact-popup .contact-popup-items.active.up{
    transform: translateY(-10px);
}

.contact-popup .contact-popup-items .contact-popup-item{
    transition: .3s;
    margin-bottom: 10px;
    text-decoration: none;
    display: flex;
    color: #000;
    align-items: center;
}

.contact-popup .contact-popup-items .contact-popup-item:hover .contact-popup-item-text{
    transition: .15s;
    box-shadow: 4px 4px 5px 0px rgb(0 0 0 / 12%);
}


.contact-popup .contact-popup-items .contact-popup-item:hover{
    transform: translateX(-5px);
}

.contact-popup .contact-popup-item-icon{
    border-radius: 50%;
    overflow: hidden;
}

.contact-popup .contact-popup-item-icon img{
    height: 48px;
    width: 48px;
}

.contact-popup .contact-popup-item-text{
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    margin-right: 15px;
    min-width: 135px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

@media screen and (max-width: 991px) {
    .contact-popup {
        right: 15px;
        bottom: 15px;
    }
}