html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


.colWithBG {
    background-image: url("/images/sidebg.jpg");
    background-size: cover;
}


.jumbotron {
    background: rgb(23,35,60);
    background: linear-gradient(335deg, rgba(23,35,60,1) 0%, rgba(56,96,173,1) 30%, rgba(67,108,188,1) 54%, rgba(234,246,255,1) 94%);
}
/*
.btn-success {
    background-color: #7cad3e;
    border: none;
}

.btn-primary {
    background-color: rgb(35,100,119);
    border: none;
}*/


.card {
    border-radius: 5px;
}

.hover:hover {
    background-color: #43BC56;
}

.hover-prim:hover {
    background-color: #9191ff;
}

.profile-pic {
    background-image: url("/Branding/Default/icon.png");
    background-position: center;
    background-size: cover;
}

.icon-text {
    color: #01AFF1
}

.inpLbl {
    max-width: 180px;
    min-width: 165px;
    /*background-color:;*/
}

.form-control:disabled, .form-control[readonly] {
    background-color: #fffbfb;
    opacity: 1;
}

.mainBtn {
    /*width: 180px;*/
    /*max-width: 170px;*/
    min-width: 10px;
}

.quickNav {
    height: 60px;
    width: 60px;
    background-color: rgb(143, 163, 201);
}

    .quickNav:hover {
        background-color: rgb(29, 45, 79);
    }


.AnimateSpin {
    width: 100px;
    height: 100px;
    animation-name: spin;
    animation-duration: 1200ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    /* transform: rotate(3deg); */
    /* transform: rotate(0.3rad);/ */
    /* transform: rotate(3grad); */
    /* transform: rotate(.03turn);  */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.overlay {
    position: fixed;
    margin-top: -90px;
    width: 100%;
    height: 120%;
    background: rgba(46, 46, 46,0.5);
    /*    visibility: hidden;*/
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
}

.legal-text {
    font-size: 12px;
    color: darkslategrey;
}



.chatbox-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    z-index: 1000;
}

.chatbox {
    width: 100%;
    height: 500px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.chatbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.chatbox-toggle {
    width: 30px;
    height: 30px;
    background-color: white;
    border: none;
    border-radius: 50%;
    color: #007bff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.chatbox-iframe {
    width: 100%;
    height: 100%;
    border: none;
    flex-grow: 1;
}

.chatbox-expanded .chatbox {
    transform: translateY(0);
}
