@font-face {
    font-family: CeraPro;
    src: url(/assets/fonts/CeraPro-Regular.ttf);
}

*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136, 0.3);
}

*::-webkit-scrollbar-thumb:hover {
    background: rgb(136, 136, 136, 0.7);
}

.close:focus {
    outline: none;
}

#enterprise-logo,
#enterprise-modal-logo {
    height: auto;
}

#enterprise-logo.keego {
    width: 140px;
    padding: 10px 0;
}

#enterprise-logo.miChat {
    padding: 0;
    height: 58.19px;
}

#enterprise-logo.zenbot {
    width: 165px;
}

#enterprise-logo.amalia {
    width: 200px;
}

#enterprise-modal-logo.keego {
    width: 120px;
    padding-top: 2px;
}

#enterprise-modal-logo.amalia {
    width: 165px;
}

#enterprise-name {
    font-size: 36px;
    font-family: 'CeraPro-Regular';
    font-weight: 600;
    padding-bottom: 5px;
    color: #00c0cb;
}

.keego a,
.miChat a,
.amalia a,
.zenbot a {
    font-weight: 600 !important;
    color: white !important;
}

button.keego,
a.keego,
input.keego {
    background-color: #00ae62 !important;
    border: 1px solid #999; 
    text-transform: uppercase;
    color: white !important;
}

button.keego:hover,
a.keego:hover,
input.keego:hover {
    background-color: #017945!important;
}

button.miChat,
a.miChat,
input.miChat {
    background-color: #00a9e4;
    border: 1px solid #999;
    text-transform: uppercase;
    color: white !important;
}

button.miChat:hover,
a.miChat:hover,
input.miChat:hover {
    background-color: #028dbd;
}

button.amalia,
a.amalia,
input.amalia {
    background-color: #00c0cb !important;
    border: 1px solid #999;
    text-transform: uppercase;
    color: white !important;
}

button.amalia:hover,
a.amalia:hover,
input.amalia:hover {
    background-color: #029ea7;
}

button.zenbot,
a.zenbot,
input.zenbot {
    background-color: #fea30e !important;
    border: none;
    text-transform: uppercase;
    color: white !important;
}

button.zenbot:hover,
a.zenbot:hover,
input.zenbot:hover {
    background-color: #e99610 !important;
}

.bg-green {
    background-color: #00ae62;
}

.bg-blue {
    background-color: #4f77e6 !important;
    color: white;
}

.bg-amalia {
    background-color: #00c0cb;
}

.rounded-lg {
    border-radius: 1rem !important;
}

.text-small {
    font-size: 0.9rem !important;
}

.custom-separator {
    width: 5rem;
    height: 6px;
    border-radius: 1rem;
}

.text-uppercase {
    letter-spacing: 0.2em;
}

/* HOT SPOTS */
.highlight-spot {
    position: absolute;
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #4f77e6;

    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-family: initial;
}

.highlight-spot:hover {
    cursor: pointer;
}

.highlight-spot:after {
    position: absolute;
    top: -10px;
    left: -10px;

    width: 40px;
    height: 40px;

    content: '';
    animation: pulsate 1s ease-out;
    -webkit-animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;

    opacity: .0;
    border: 3px solid #4f77e6;
    border-radius: 40px;
    -webkit-border-radius: 40px;
}

.top {
    top: 0;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.bottom {
    bottom: 0;
}

.center-y {
    top: 50%;
    transform: translateY(-50%);
}

.center-x {
    left: 0;
    right: 0;
    margin: 0 auto;
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(.1, .1);
        opacity: .0;
    }

    50% {
        opacity: .5;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: .0;
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(.1, .1);
        opacity: .0;
    }

    50% {
        opacity: .5;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: .0;
    }
}