@import "https://use.fontawesome.com/releases/v5.3.1/css/all.css";

.cm-base{
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}
.cm-base a,
.cm-modal a{
    text-decoration: none!important;
}

a.cm-call-to-action{
    z-index: 99997;
    position: fixed;
    bottom: 50px;
    right: 30px;
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.20), 0 0 0px 6px #ff0042;
    background-image: linear-gradient(-45deg, #ff0042, #9d1538);
    border: 2px solid #fff;
}

a.cm-call-to-action.active{
    box-shadow: 3px 3px 6px rgba(0,0,0,0.20), 0 0 0px 6px #00a2ff;
    background-image: linear-gradient(-45deg, #00a2ff, #116697);
}

a.cm-call-to-action:hover,
a.cm-call-to-action:focus{
    color: #ffffff!important;
}

a.cm-call-to-action.hide{
    right: -90px;
}

a.cm-call-to-action::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.4em;
    content: "\f0f3";
    transform: rotate(30deg);
}

.cm-msg{
    z-index: 99996;
    position: fixed;
    overflow: hidden;
    bottom: 57px;
    right: 90px;
    border-radius: 20px;
    background-color: #000000;
    color: #ffffff;
    max-width: 200px;
    min-width: 200px;
    padding: 5px 10px;
    transition: all .3s ease-in-out; 
}

.cm-msg.hide{
    padding-left: 0;
    padding-right: 0;
    max-width: 0;
    min-width: 0;
    right: 50px;
}

.cm-msg-text{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
}


.cm-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    opacity: 0.8;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.cm-modal-backdrop.hide {
    /* display: none; */
    opacity: 0;
    z-index: 99-1;
    visibility: hidden;
}

.cm-modal {
    position: fixed;
    z-index: 99999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    outline: 0;
    display: block;
}

.cm-modal.hide {
    display: none;
}

.cm-modal-dialog {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.cm-modal-dialog iframe{
    width: 50vw;
    height: 70vh;
}

.cm-close-modal{
    position: absolute;
    z-index: 99999;
    top: 1.2rem;
    right: 2.2rem;
}

.cm-close-modal::before {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 1.3em;
    content: "\f057";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7a7a;
}




@media (max-width: 991.98px) {
    .cm-modal {
        left: 0;
        transform: translate(0, -50%);
    }
    .cm-modal-dialog iframe {
        width: 100vw;
    }
}