/* Global */

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

textarea{
    font-size: 14px;
}

/* Loader */

.loader {
    display: none;
    color: #000;
    font-size: 25px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* Sidebar Menu */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0; 
    left: 0;
    background-color: #DB5428;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 20px;
    box-shadow: 0px 7.5px 15px rgba(96, 125, 139, 0.1);
}
  
.sidenav a {
    padding: 0;
    text-decoration: none;
    font-size: 15px;
    color: #FFFFFF;
    display: block;
    border-bottom: 2px #FFFFFF;
    opacity: 75%;
}
  
.sidenav a:hover {
    opacity: 100%;
    color: white;
    font-weight: bold;
}

.sidenav .hover-img-home.active{
    opacity: 100%;
    color: white;
    font-weight: bold;
    /* transform: scale(1.1); */
    background-color: #B94924;
    margin: 4px;
    border-radius: 12px;
}

.img-nav {
    height: 50px;
    margin-bottom: 10px;
}

.hover-img-home{
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-home:hover {
    transform: scale(1.1);
}

.hover-img-account img {
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-account img:hover {
    transform: scale(1.1);
}

.hover-img-conversation img {
    transition: all 0.3s ease-in-out;
}

.hover-img-conversation img:hover {
    transform: scale(1.1);
}

.hover-img-whatsapp img {
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-whatsapp img:hover {
    transform: scale(1.1);
}

.hover-img-package img {
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-package img:hover {
    transform: scale(1.1);
}

.hover-img-sms img {
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-sms img:hover {
    transform: scale(1.1);
}

.hover-img-data img {
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-data img:hover {
    transform: scale(1.1);
}

.hover-img-call img {
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-call img:hover {
    transform: scale(1.1);
}

.hover-img-robot img {
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-robot img:hover {
    transform: scale(1.1);
}

.hover-img-ivr img {
    transition: all 0.3s ease-in-out;
  }
  
.hover-img-ivr img:hover {
    transform: scale(1.1);
}

.divider{
    padding-left: 20px;
    padding-right: 20px;
    margin-top: -30px;
}

.divider-title{
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 12px;
}
 
.img-logo{
    margin-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 25px;
    height: 40px;
    width: auto;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 36px;
    margin-left: 50px;
    font-size: 25px!important;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    color: black;
    background-color: #FFFFFF;
    padding: 0;
    border: none;
  }
  
.openbtn:hover {
    color: #DB5428;
}

.btn-group-sm>.btn, .btn-sm{
    --bs-btn-font-size : 0.7rem;
}

/* Main Content */
.main {
    transition: margin-left .5s; /* If you want a transition effect */
    padding: 0;
    background-color: white;
}

/* Navbar */

nav{
    background-color: #FFFFFF;
}

.navbar-brand{
    padding: 0.5rem;
}

.pp-link{
    font-family: 'Heebo', sans-serif;
    font-weight: 300;
    color: #607D8B;
}

.dropdown-toggle::after{
    display: none;
}

.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center{
    margin-right: 10px;
}

.logout-title{
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 20px;
    margin-bottom: 0;
    padding-right: 50px;
}

.logout-subtitle{
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    color: #000;
    font-size: 15px;
    margin-bottom: 0;
    padding-right: 40px;
}

.logout-button{
    display: inline-block;
    color: #fff !important;
}

.profile-bg{
    background-color: #DB5428;
    padding-bottom: 1px;
    border-radius: 5px;
}

.dropstart .dropdown-toggle::before{
    display: none;
}

/* Login */

.hero-login{
    /* background-image: url("../image/gradient.png"); */
    background-image: linear-gradient(#fde1e199, #FFFFFF);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    background-color: #f8f9fa;
}

.title-login{
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 40px;
}

.title-home{
    font-family: 'Heebo', sans-serif;
    margin-top: 20px;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 40px;
    margin-bottom: 20px;
}

.subtitle-home{
    margin-bottom: 20px;
    color: #f1f7b4;
}

.card-title-home{
    margin-bottom: 20px;
    color: #FFFFFF;
}

.card-subtitle-home{
    font-weight: 400;
}

.card-background-home{
    background-image: url("../image/gradient-rotated.png");
    background-position: center;
    border-radius: 15px;
}

.card-background-red{
    background-image: url("../image/gradient-red.png");
    background-position: center;
    border-radius: 15px;
    background-size: cover;
    margin-bottom: 20px;
}

.card-background-blue{
    background-image: url("../image/gradient-blue.png");
    background-position: center;
    border-radius: 15px;
    background-size: cover;
    margin-bottom: 20px;
}
.card-background-green{
    background-image: url("../image/gradient-green.png");
    background-position: center;
    border-radius: 15px;
    background-size: cover;
    margin-bottom: 20px;
}
.card-background-magenta{
    background-image: url("../image/gradient-magenta.png");
    background-position: center;
    border-radius: 15px;
    background-size: cover;
    margin-bottom: 20px;
}
.card-background-gray{
    background-image: url("../image/gradient-gray.png");
    background-position: center;
    border-radius: 15px;
    background-size: cover;
    margin-bottom: 20px;
}

.card-login{
    background: #FFFFFF;
    /* box-shadow: 0px 4px 15px -1px rgba(0, 0, 0, 0.15); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid #FAD5C9;
}

.card-title-login{
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    text-align: center;
    color: #656565;
    margin-top: 10px;
    margin-bottom: 30px;
}

.form-login{
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
}

.link-login{
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    display: block;
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.login-button{
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
}

/* Title */

.title{
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 30px;
    color: #41434D;
    margin-top: 20px;
}

.sub-title{
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 15px;
    color: #607D8B;
}

.page-link:hover{
    color: #ec783f!important;
}

.active>.page-link, .page-link.active{
    background-color: #ec783f!important;
    border-color: #ec783f!important;
}

.btn-refresh:hover{
    background-color: #ec783f!important;
}

.btn:hover{
    color: #000!important;
}

.btn-title-play{
    margin-top: 5px;
    background-color: #28A745;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 110%;
}

.btn-title-pause{
    margin-top: 5px;
    background-color: #B21C14;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 110%;
}

.btn-td-deactivate{
    margin-top: 5px;
    background-color: #B21C14;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
}

.btn-title-upload{
    margin-top: 45px;
    background-color: #ec783f;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 5px;
    width: 100%;
}

.btn-title-download{
    margin-top: 10px;
    background-color: #fbd85c;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 100%;
}

.btn-title-back-menu{
    margin-top: 10px;
    background-color: black;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 100%;
}

.btn-title-report{
    margin-top: 5px;
    background-color: #FF99B9;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 110%;
}

.btn-title-settings{
    margin-top: 45px;
    background-color: #919191;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 100%;
}

.btn-title-clean{
    margin-top: 10px;
    background-color: #a14fee;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 100%;
}

.btn-title-connector{
    margin-top: 5px;
    background-color: #000000;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 110%;
}

.btn-title-history{
    margin-top: 5px;
    background-color: #000000;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 0;
    width: 102%;
}

.btn-title-data-top{
    border-radius: 0;
    margin-top: 45px;
    background-color: #F0F1F3;
    font-family: 'Open Sans';
    font-weight: 400;
    color: 5D6679;
    margin-right: 0;
    width: 100%;
    height: 50px;
}

.btn-title-data-top:hover{
    background-color: #DB5428 !important;
    color: #FFFFFF !important;
}

.btn-title-data-bottom{
    border-radius: 18px;
    /* margin-top: 10px; */
    background-color: #F0F1F3;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #5D6679;
    margin-right: 0;
    width: 100%;
    height: auto;
}

.btn-title-data-bottom:hover{
    background-color: #DB5428 !important;
    color: #FFFFFF !important;
}

.btn-filter-data{
    border-radius: 18px;
    background-color: #F0F1F3;
    font-family: 'Open Sans';
    font-weight: 400;
    color: 5D6679;
}

.btn-filter-data:hover{
    background-color: #DB5428 !important;
    color: #FFFFFF !important;
}

.btn-title-redirect-bottom{
    border-radius: 5px;
    margin-top: 10px;
    background-color: #F0F1F3;
    font-family: 'Open Sans';
    font-weight: 400;
    color: 5D6679;
    height: 45px;
}

.btn-title-redirect-bottom:hover{
    background-color: #DB5428 !important;
    color: #FFFFFF !important;
}

.btn-submit{
    background-color: #DB5428 !important;
    color: white;
    border-radius: 16px;
}

.btn-submit:hover{
    background-color: white !important;
    color: #DB5428 !important;
    border-radius: 16px;
    border: 1px solid #DB5428 !important;
}

.bg-orange{
    background-color: #DB5428 !important;
    color: white !important;
}

.btn-submit-outline{
    background-color: white !important;
    color: #DB5428 !important;
    border-radius: 16px;
    border: 1px solid #DB5428 !important;
}

.btn-submit-outline:hover{
    background-color: #DB5428 !important;
    color: white !important;
}


.btn-reject{
    background-color: white !important;
    color: #F04438;
    border: 1px solid #F04438 !important;
}

.btn-reject:hover{
    background-color: #F04438 !important;
    color: white !important;
    border: 1px solid #F04438 !important;
}

.btn-approve{
    background-color: white !important;
    color: #12B76A;
    border: 1px solid #12B76A !important;
}

.btn-approve:hover{
    background-color: #12B76A !important;
    color: white !important;
    border: 1px solid #12B76A !important;
}

.custom-checkbox{
    border-radius: 100px !important;
    border: 2px solid #DB5428 !important;
}

.custom-checkbox:checked{
    background-color: #DB5428 !important;
    color: white !important;
}

.custom-btn-back{
    border: 0px;
    color: #DB5428 !important;
    border-color: #DB5428 !important;
}

.custom-outline-call{
    background-color: white !important;
    font-size: 14px !important;
    margin-top: 5px;
    border: 1px solid #DB5428 !important;
    color: #DB5428 !important;
    border-radius: 100px;

}

.custom-outline-call:hover{
    background-color: #DB5428 !important;
    border: 1px solid white !important;
    color: white !important;

}

.custom-btn-cron{
    background-color: #F0F1F3;
    color: #E18308;
    border-radius: 0px !important;
}

.custom-btn-cron:hover{
    background-color: #DB5428;
    color: white !important;
}

.btn-min-width{
    min-width: 50%;
}

.btn-conversation-tags{
    color: #DB5428 !important;
    border-color: #DB5428 !important;
}

.btn-conversation-tags:hover{
    background-color: #DB5428;
}

/* Title */

.table-card{
    box-shadow: 0px 7.5px 15px rgba(96, 125, 139, 0.1);
    border-radius: 5px;
}

.table-card-header{
    background: #F8F9FC;
}

.card-header{
    font-family: 'Open Sans';
    font-weight: 700;
    color: #41434D;
}

.card-text{
    font-family: 'Open Sans';
    font-weight: 400;
}

.card-text-muted{
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 13px;
}

.card-text-conversation-footer{
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 13px;
}

.form-select {
    width:auto;
    display:inline-block;
    font-family: 'Open Sans';
    font-weight: 400;
}

.form-control {
    width:100% !important;
    display:inline-block;
    font-family: 'Open Sans';
    font-weight: 400;
}

th{
    font-family: 'Open Sans';
    font-weight: 700;
    color:#41434D;
    font-size: 14px;
}

td{
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    color:#41434D;
    font-size: 14px;
}

.table-striped>tbody>tr:nth-child(odd)>td, 
.table-striped>tbody>tr:nth-child(odd)>th {
   background-color: #FFEEC2;
}

.table-status{
    color: #F09C4A!important;
}

.table-status-waiting{
    color: #0B58DC!important;
}

.table-status-on-progress{
    color: #F09C4A!important;
}

.table-status-cancelled{
    color: #B21C14!important;
}

.table-status-finish{
    color: #1BC943!important;
}

.table-status-voicemail{
    color: #a14fee!important;
}

.page-link{
    font-family: 'Open Sans';
    font-weight: 400;
    color:#41434D;
    font-size: 14px;
}

/* Timeline */

ul.timeline-ticket {
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
}

ul.timeline-ticket:before {
    content: ' ';
    background: #E6ECF8;
    display: inline-block;
    position: absolute;
    left: 7px;
    width: 4px;
    height: 100%;
    z-index: 400;
    border-radius: 1rem;
}

li.timeline-item-blue {
    margin: 20px 0;
    background-color: #E6ECF8;
    padding: 1.2rem !important;
}

li.timeline-item-red {
    margin: 20px 0;
    background-color: #E6ECF8;
    padding: 1.2rem !important;
}

li.timeline-item-green {
    margin: 20px 0;
    background-color: #E6ECF8;
    padding: 1rem 1.2rem !important;
}

li.timeline-item-yellow {
    margin: 20px 0;
    background-color: #E6ECF8;
    padding: 1.2rem !important;
}

.timeline-arrow {
    border-top: 0.5rem solid transparent;
    border-right: 0.5rem solid #E6ECF8;
    border-bottom: 0.5rem solid transparent;
    display: block;
    position: absolute;
    left: 16px;
}

li.timeline-item-blue::before {
    content: ' ';
    background: #FEFFFF;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #0274F5;
    left: 2px;
    width: 14px;
    height: 14px;
    z-index: 400;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

li.timeline-item-red::before {
    content: ' ';
    background: #FEFFFF;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #ff1100;
    left: 2px;
    width: 14px;
    height: 14px;
    z-index: 400;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

li.timeline-item-green::before {
    content: ' ';
    background: #FEFFFF;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #1BC943;
    left: 2px;
    width: 14px;
    height: 14px;
    z-index: 400;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

li.timeline-item-yellow::before {
    content: ' ';
    background: #FEFFFF;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #FFC107;
    left: 2px;
    width: 14px;
    height: 14px;
    z-index: 400;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

  
/* Modal */

.modal-header{
    background-color: #ffffff;
}

.modal-title{
    color: #000000;
    font-size: 18px;
}

.modal-subtitle{
    font-family: 'Open Sans';
    font-weight: 600;
    color: #41434D;
    font-size: 16px;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 0.75rem);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #fff;
    content: "Browse";
    background-color: #DB5428;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0;
}

.chat-screen {
    min-height: 975px;
    max-height: 975px;
    overflow-y: scroll;
    background-color: #F7F7F7;
    padding: 10px;
}

.chat-screen-right {
    min-height: 875px;
    max-height: 875px;
    overflow-y: scroll;
    background-color: #F7F7F7;
    padding: 10px;
}

.chat-card{
    color: #000;
}

.chat-card .active .card-body {
    border: 4px solid #e08769;
    border-radius: 5px;
}

.text-divider {
    width: 100%; 
    text-align: center; 
    border-bottom: 1px solid #828282; 
    color: #828282;
    line-height: 0.1em;
    margin: 10px 0 20px; 
} 
 
.text-divider span { 
     background:#F7F7F7; 
     padding:0 10px; 
}

.custom-text-msg{
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
    margin-left: 5px;
}

.chat-right-others{
    background-color: #F2FDF2 !important;
}

.chat-right-self{
    background-color: #FFF8E4 !important;
}

.card-chat-right{
    background-color: #FAEEEA !important;
}
  
.message {
    margin-bottom: 10px;
}
  
.message-content {
    padding: 8px;
    border-radius: 5px;
}
  
.customer .message-content {
    background-color: #f1f0f0;
}
  
.cashier .message-content {
    background-color: #d1ecf1;
}

.accordion-body{
    padding: 10px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: #DB5428;
}

.nav-pills{
    padding: 0px;
}

.nav-pills .nav-link-card.active, .nav-pills .show>.nav-link-card{
    background-color: #e08769;
    border: none;
    color: #000;
}

.nav-pills .nav-link{
    border: 1px solid #607D8B66;
    color: #607D8B66;
}

.nav-pills .nav-link-card{
    border: none;
    color: #000;
    padding: 5px 5px;
}

.nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link{
    width: 98%;
}

.nav-link-conversation{
    width: 98%;
    font-size: 13px;
    padding: 6px 8px;
}

.image-nav-conversation .nav-link img {
    transition: color 0.3s ease;
}

.nav-link-right{
    color: #000;
    background-color: #F7F7F7 !important;
    font-size: 12px;
}

.nav-link-right:hover{
    color: #DB5428 !important;
}

.nav-link-right.active{
    color: #DB5428 !important;
    background-color: #fff !important;
    border-top: 5px solid;
    border-top-color: #DB5428 !important;
}
  
.image-nav-conversation.active .nav-link img,
.image-nav-conversation .nav-link:hover img {
    color: #fff;
}

.ticket-icon{
    filter: grayscale(100%) brightness(70%);
}

.accordion-button.collapsed{
    margin-bottom: 0px;
}

.accordion-button:not(.collapsed)
{
    color: #fff;
    background-color: #DB5428;
}

.item {
    position:relative;
    display:inline-block;
}

.badge-right{
    margin-top: 2px;
}

.notify-badge-online{
    position: absolute;
    right:-3.5px;
    top:30px;
    background:#1BC943;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-online-right{
    position: absolute;
    right:43%;
    top:30px;
    background:#1BC943;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-online-agent{
    position: absolute;
    right:-3.5px;
    top:15px;
    background:#1BC943;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-online-chat{
    position: absolute;
    right:10%;
    top:25px;
    background:#1BC943;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-idle{
    position: absolute;
    right:-3.5px;
    top:30px;
    background:#FFE759;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-idle-right{
    position: absolute;
    right:43%;
    top:30px;
    background:#FFE759;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-idle-agent{
    position: absolute;
    right:-3.5px;
    top:15px;
    background:#FFE759;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-idle-chat{
    position: absolute;
    right:10%;
    top:25px;
    background:#FFE759;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-offline{
    position: absolute;
    right:-3.5px;
    top:30px;
    background:#DF2926;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-offline-right{
    position: absolute;
    right:43%;
    top:30px;
    background:#DF2926;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-offline-agent{
    position: absolute;
    right:-3.5px;
    top:15px;
    background:#DF2926;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.notify-badge-offline-chat{
    position: absolute;
    right:10%;
    top:25px;
    background:#DF2926;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:7px 7px;
    font-size:20px;
}

.right-details{
    max-height: 1100px;
    overflow-y: scroll;
}

.overflow-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overflow-wrap {
    white-space: normal;
    word-wrap: break-word;
}

.form-control-plaintext{
    font-size: 15px;
}

.form-control-plaintext-conversation{
    font-size: 13px;
    padding: 0;
}

.col-form-label{
    font-size: 15px;
}

.col-form-label-conversation{
    font-size: 14px;
}

.default-message{
    font-family: 'Open Sans';
    font-weight: 600;
    color: #DF2926;
    font-size: 12px;
    margin-top: 10px;
}

.success-message{
    font-family: 'Open Sans';
    font-weight: 600;
    color: #1BC943;
    font-size: 12px;
    margin-top: 10px;
}

.card-header-modal{
    font-family: 'Open Sans';
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(105.64deg, #DB5428 40.27%, #FFB59D 106.23%);
    font-size: 23px;
    padding-top: 10px;
    padding-bottom: 30px;
}

.card-modal{
    border-radius: 6px;
}

.card-body-floating h1{
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 30px;
    color: #DF2926;
}

.card-floating{
    margin-top: -40px;
}

.card-body-floating h4{
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 13px;
    color: #DF2926;
}

.content{
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 13px;
    color: #DF2926;
    text-align: left;
    margin-top: 6px;
}

.form-select-modal{
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 12px;
    text-align: left;
    float: left;
    background: #FFFFFF;
    border: 1px solid rgba(96, 125, 139, 0.4);
    border-radius: 6px; 
    width: 100%;
}

.status-data-sucess{
    font-size: 12px;
    white-space: nowrap;
    width: 100%;
    padding: 4px;
    border-radius: 20px;
    border: 1px solid #10A760;
    background-color: #E7F8F0;
    color: #10A760;
}

.status-data-secondary{
    font-size: 12px;
    white-space: nowrap;
    width: 100%;
    padding: 4px;
    border-radius: 20px;
    border: 1px solid #575757;
    background-color: #e3e3e3;
    color: #000000;
}

.status-data-primary{
    font-size: 12px;
    white-space: nowrap;
    width: 100%;
    padding: 4px;
    border-radius: 20px;
    border: 1px solid #1366D9;
    background-color: #E8F1FD;
    color: #1366D9;
}

.status-data-danger{
    font-size: 12px;
    white-space: nowrap;
    width: 100%;
    padding: 4px;
    border-radius: 20px;
    border: 1px solid #DA3E33;
    background-color: #FEECEB;
    color: #DA3E33;
}

.status-data-warning{
    font-size: 12px;
    white-space: nowrap;
    width: 100%;
    padding: 4px;
    border-radius: 20px;
    border: 1px solid #F79009;
    background-color: #FEF4E6;
    color: #F79009;
}

.title-form-modal{
    font-size: 14px;
    color: black;
    margin-bottom: 10px;
}

.chart-box{
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    padding: 20px;
}

.info-box{
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.info-box:hover{
    transform: scale(1.05);
}

.title-info-box-subtitle{
    opacity: 45%; 
    font-weight: bold;
    font-family: 'Open Sans';
}

.title-info-box{
    font-weight: bold; 
    font-size: 18px;
    font-family: 'Open Sans';
}

.custom-title-icon{
    padding: 5px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.text-redirect{
    color: #DA3E33;
    font-weight: bold;
}

.text-redirect:hover{
    text-decoration: underline;
}


/* Footer */

footer p{
    padding-top: 1rem;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.link-unstyled, .link-unstyled:link, .link-unstyled:hover {
    color: inherit;
    text-decoration: inherit;
}


/* WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar for horizontal scrolling */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track background color */
    border-radius: 30px;
}

::-webkit-scrollbar-thumb {
    background-color: #DA3E33; /* Scrollbar thumb color */
    border-radius: 30px;
    border: 2px solid #f1f1f1; /* Adds padding around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #DA3E33; /* Thumb color on hover */
}

/* Firefox */
* {
    scrollbar-width: thin; /* Makes the scrollbar thinner */
    scrollbar-color: #DA3E33 #f1f1f1; /* Thumb color | Track color */