a {
    text-decoration: none;
}

.back-button {
    background-color: #eeeeee;
    color: #777777;
    cursor: pointer;
    border-radius: 100%;
    border: none;
    outline: none;
    font-size: 13px;
    height: 25px;
    width: 25px;
    margin-right: 20px;
}

.fab {
    position: fixed;
    bottom: 35px;
    left: 35px;
    z-index: 999;
}
.fab-button {
    outline: 0;
    border: 0;
    border-radius: 50%;
    background-color: #F44336;
    color: #fff;
    cursor: pointer;
    border-radius: 100%;
    background: #F44336;
    border: none;
    outline: none;
    color: #FFF;  
}

.fab-button.fab-button-big {
    background-color: #F44336;
    font-size: 36px;
    height: 60px;
    width: 60px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: .3s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fab-button.fab-button-small {
    animation: showFabBtn 150ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform: scale(0);
    background-color: #2978d3;
    margin: 0 5px;
    font-size: 25px;
    height: 40px;
    width: 40px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: .3s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.fab-button.fab-button-small:nth-child(2) {
    animation-delay: 150ms
}
.fab-button.fab-button-small:nth-child(3) {
    animation-delay: 300ms
}
@keyframes showFabBtn {
    0% {
        transform: scale(0)
    }
    100% {
        transform: scale(1)
    }
}
.fab-button.fab-button-big:hover {
    box-shadow: 0 0 10px rgba(41,120,211,0.4)
}
.fab-button.fab-button-small:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.3)
}
.fab-sub-buttons {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    display: none;
    padding: 0 5px;
    align-items: center
}
.fab:hover .fab-sub-buttons {
    display: inline-flex
}

.pac-container {
    z-index: 10000 !important;
}

.notification-badge-container {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    z-index: 998;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
}

.floating-chat-button 
{
    position: fixed;
    visibility: visible;
    opacity: 100;
    right: 20px;
    bottom: 20px;
    z-index: 996;
    background: #7f379b;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.floating-chat-button i
{
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.floating-chat-button:hover
{
    background: #e963d4;
    color: #fff;
}

.floating-chat-button.active
{
    visibility: visible;
    opacity: 1;
}

#chatModal .divider:after,
#chatModal .divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}
