div#contactBox {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    z-index: 1000;
}


div#contactBox svg {
    transition: 0.5s transform ease;
    -webkit-transition: 0.5s transform ease;
}

div#contactBox.is-open {
    transform: translateY(123px);
}

div#contactBox.is-open svg {
    transform: rotate3d(1, 0, 0, 180deg);
}

.cb-desktop-bar {
    background: #0a0a0a26;
    width: 100%;
    padding: 10px;
    text-align: center;
    max-height: 123px;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(3px);
}

div#cbToggle {
    text-align: left;
    padding-left: 50px;
}

span.cb-close-icon {
    background: #0a0a0a26;
    display: inline-block;
    width: 55px;
    height: 26px;
    border-radius: 8px 8px 0 0;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
}

.cb-desktop-bar img {
    border-radius: 8px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

div#mobContactBox {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 8px;
    z-index: 1000;
}

/*mob*/
#mobCall {
    width: 48px;
    height: 48px;
    right: 50px;
    align-items: center;
    animation: pulse-box 1.25s cubic-bezier(.66, 0, 0, 1) infinite;
    background: #4caf50;
    border: none;
    border-radius: 50%;
    bottom: 10px;
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

#mobCall svg {
    fill: #fff;
    height: 24px;
    width: 24px;
}

/* Chrome, Safari, Edge, Opera */
@-webkit-keyframes pulse-box {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(76, 175, 80, .5);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .5);
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
        box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
    }
}

/* Firefox */
@-moz-keyframes pulse-box {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(76, 175, 80, .5);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .5);
    }

    100% {
        -moz-box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
        box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
    }
}

/* Standard Final */
@keyframes pulse-box {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .5);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
    }
}

/* Progress Bar */
.progress-box {
    position: fixed;
    top: 0;
    right: 0;
    height: 4px;
    width: 0;
    z-index: 999999;
    box-shadow: 0 0 10px rgba(1, 77, 161, 0.7);
    background: blue;
}

#mobContactBox #closeSvg {
    display: none;
}

#mobMenus {
    position: fixed;
    display: none;
    left: 40px;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    bottom: 58px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .3);
    flex-direction: column;
    max-height: 600px;
    overflow: hidden;
    overflow-y: auto;
    width: 300px;
    z-index: 100003;
}

#mobContactBox.show #mobMenus {
    display: flex;
}

#mobContactBox.show #callSvg {
    display: none;
}

#mobContactBox.show #closeSvg {
    display: block;
}

#mobMenus a:not(:last-child) {
    border-bottom: 1px solid #f0f0f1;
}

#mobMenus a {
    display: flex;
    flex-direction: row-reverse;
    padding: 12px;
    justify-content: center;
}