.cm_direct_contact_floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 3px;
    padding-right: 50px;
    z-index: 999999999999999999999999999999 !important;
    cursor: pointer;
}

.cm_direct_contact_floating_btn span {
    font-family: var(--font) !important;
    font-size: 18px;
    font-weight: 900;
}

.cm_direct_contact_floating_btn::after {
    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M15.0857864%2C11.5%20L6.79289322%2C19.7928932%20C6.40236893%2C20.1834175%206.40236893%2C20.8165825%206.79289322%2C21.2071068%20C7.18341751%2C21.5976311%207.81658249%2C21.5976311%208.20710678%2C21.2071068%20L17.2071068%2C12.2071068%20C17.5976311%2C11.8165825%2017.5976311%2C11.1834175%2017.2071068%2C10.7928932%20L8.20710678%2C1.79289322%20C7.81658249%2C1.40236893%207.18341751%2C1.40236893%206.79289322%2C1.79289322%20C6.40236893%2C2.18341751%206.40236893%2C2.81658249%206.79289322%2C3.20710678%20L15.0857864%2C11.5%20Z%22%20transform%3D%22rotate(-90%2012%2011.5)%22%2F%3E%0A%3C%2Fsvg%3E%0A');
    content: "";
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

.cm_direct_contact_floating_btn:hover {
    background-color: var(--secondary-dark);
}

.cm_direct_contact_floating_btn:active {
    background-color: var(--secondary-darker);
}



.cm_direct_contact_modal {
    z-index: 99999999999999999999999999999999999999;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);   
}

.cm_direct_contact_modal .cm_direct_contact_modal_body {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 400px;
    height: 400px;
    justify-content: center;
    gap: 20px;
}
.cm_direct_contact_modal .cm_direct_contact_modal_body > *{
    text-align:center;
    padding: 0px!important;
}
.cm_direct_contact_modal .cm_direct_contact_modal_body .cm_modal_actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cm_direct_contact_modal .cm_direct_contact_modal_body .cm_modal_actions .cm_btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.cm_direct_contact_modal .cm_direct_contact_modal_body .cm_modal_actions .cm_btn > img{
    width: 25px;
}
.cm_close_contactmodal{
    cursor: pointer;
}