/*
Created on : Sept 01, 2023
Author     :IT Solutions Pvt Ltd
Version	   : 3
*/
/*============================
 [Table of CSS]
 	1. Global variable css
	2. Background Color
	3. Color and Font
	4. Headings and Typographic Classes / .title, .uppercase etc
	5. Button
	6. Margins and Paddings
	7. Position
	8. Custom Checkbox and radio
	9. Reset Css
	10. Cus Scroll
	11. Ellipsis
    12. Animation
    13. FLOATING LABEL
    14. ACCORDION
/*-----------------
1. Global variable css
-----------------------*/

.shadow-light {
    box-shadow: 0 0 10px rgba(0,0,0,.05);
}

.opacity-25 {opacity: 0.25;}
.opacity-half {opacity: 0.5;}
.opacity-75 {opacity: 0.75;}
.opacity-1 {opacity: 1;}
.vw-100 {width: 100vw;}
.vh-100 {height: 100vh;}
.w-lg-30 {max-width: 30%}
.mw-lg-65 {max-width: 65%}

.outline-none {outline: none !important;}
.border-r-5 {border-radius: 5px !important;}
.w-16 {width: 16px;}
.bg-red {background-color: #EC1C23;}

.z-index-9999 {
    z-index: 9999; 
}
.hover-white {
    color: #FFF !important;
}

.web_customer_says {
    overflow: inherit;
}
.overflow-x-hidden {
    overflow-x: hidden;
}
.fit-image {
    object-fit: cover;
}
.grayscale{filter: grayscale(100%);}

:root {
	--gradient-btn:  -webkit-linear-gradient(0deg, #0e7ab2 0%, #e00201 100%);
    --primary-clr: #ce0e41;
    --primary-clr-hover: #920c2f;
    --secondary-clr: #156ec4;
    --amazon-clr: #FFA41C;
    --orange-clr: #F27C39;
    --text-clr: #333232;
    --accent-clr: #8f8d8d;
    --lightgrey-clr:#c8c8c8;
    --ff-heading: 'Roboto', sans-serif;
    --ff-para: 'Merriweather', serif;
}

/*-----------------
2. Background Color
-----------------------*/
.bg-primary-clr {background: var(--primary-clr) !important;}
.bg-secondary {background: var(--secondary-clr) !important;}
.bg-lightgrey {background: var(--lightgrey-clr) !important;}
.bg-lightgrey2 {background: rgba(216, 216, 216, 0.2) !important;}
.bg-white {background: #fff !important;}
.bg-lightred {background: #fff3f4 !important;}
.bg-lightred2 {background: #ffdee1 !important;}
.bg-lightblue {background: #ACC8FE !important;}
.bg-t {background: transparent !important;}

/*-----------------
3. Color and Fonts 
-----------------------*/
.primary-clr {color: var(--primary-clr);}
.secondary-clr {color: var(--secondary-clr);}
.text-clr {color: var(--text-clr) !important;}
.text-clr2 {color: #666666 !important;}
.white {color: #fff !important;}
.black {color: #000 !important;}
.lightgrey-clr {color: var(--lightgrey-clr);}
.green{color:#38BC68;}
.f-headind {font-family: var(--ff-heading);}
.f-para {font-family: var(--ff-para);}

/*-----------------
4. Headings and Typographic Classes / .title, .uppercase etc
-----------------------*/
/* - Font size classes - */
.big {font-size: 3.6rem;line-height: 4.8;}
.bigger {font-size: 4.8rem;line-height: 1.2;}
.super {font-size: 6rem;line-height: 1.2;margin-bottom: 0;}
.f-6 {font-size: 0.6rem !important;}
.f-7 {font-size: 0.7rem !important;}
.f-8 {font-size: 0.8rem !important;}
.f-9 {font-size: 0.9rem !important;}
.f-10 {font-size: 1rem !important;}
.f-11 {font-size: 1.1rem !important;}
.f-12 {font-size: 1.2rem !important;}
.f-13 {font-size: 1.3rem !important;}
.f-14 {font-size: 1.4rem !important;}
.f-15 {font-size: 1.5rem !important;}
.f-16 {font-size: 1.6rem !important;}
.f-18 {font-size: 1.8rem !important;}
.f-20 {font-size: 2rem !important;}
.f-22 {font-size: 2.2rem !important;}
.f-24 {font-size: 2.4rem !important;}
.f-25 {font-size: 2.5rem !important;}
.f-26 {font-size: 2.6rem !important;}
.f-28 {font-size: 2.8rem !important;}

.f-10px {font-size: 10px !important;}
.f-11px {font-size: 11px !important;}
.f-12px {font-size: 12px !important;}
.f-13px {font-size: 13px !important;}
.f-14px {font-size: 14px !important;}
.f-15px {font-size: 15px !important;}
.f-16px {font-size: 16px !important;}
.f-17px {font-size: 17px !important;}
.f-18px {font-size: 18px !important;}
.f-19px {font-size: 19px !important;}
.f-20px {font-size: 20px !important;}

/* - Font weight classes - */
.bold {font-weight: bold;}
.regular {font-weight: normal !important;;}
.bold-500 {font-weight: 500 !important;;}
.bold-600 {font-weight: 600 !important;;}
.bold-700 {font-weight: 700 !important;;}

.l-h-1 {line-height: 1;}
.l-h-2 {line-height: 1.2 !important;}
.l-h-3 {line-height: 1.3;}
.l-h-4 {line-height: 1.4;}
.l-h-5 {line-height: 1.5;}
.l-h-6 {line-height: 1.6;}
.l-h-7 {line-height: 1.7;}
.l-h-8 {line-height: 1.8;}
.l-h-9 {line-height: 1.9;}
.l-h2 {line-height: 2;}
.l-h3 {line-height: 3;}

.w-120px {width: 120px}
.w-20px {width: 20px}


.h-20px {height: 20px}
.h-80px {height: 80px}
.h-100px {height: 100px}
.h-120px {height: 120px}
.h-150px {height: 150px}
.h-130px {height: 130px}
.h-180px {height: 180px !important;}
.h-200px {height: 200px !important;}
.h-210px {height: 210px !important;}
.h-230px {height: 230px !important;}
.h-250px {height: 250px} 

/*-----------------
6. Margins and Paddings
-----------------------*/
.mt-n1 {margin-top: -0.25rem !important;}
.mb-n1 {margin-bottom: -0.25rem !important;}
.ml-n1 {margin-left: -0.25rem !important;}
.mr-n1 {margin-right: -0.50rem !important;}
.mt-n2 {margin-top: -0.50rem !important;}
.mb-n2 {margin-bottom: -0.50rem !important;}
.ml-n2 {margin-left: -0.50rem !important;}
.mr-n2 {margin-right: -0.50rem !important;}
.mt-n3 {margin-top: -0.75rem !important;}
.mb-n3 {margin-bottom: -0.75rem !important;}
.ml-n3 {margin-left: -0.75rem !important;}
.mr-n3 {margin-right: -0.75rem !important;}
.mt-n4 {margin-top: -1rem !important;}
.mb-n4 {margin-bottom: -1rem !important;}
.ml-n4 {margin-left: -1rem !important;}
.mr-n4 {margin-right: -1rem !important;}

/*-----------------
11.Ellipsis
-----------------------*/
.ellipsis-line1 {  
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-line2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis-line3 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis-line4 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.ellipsis-line5 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}


/* --------------------- Common CSS - START --------------------- */

.b-r-5 {border-radius: 5px !important;}
.b-r-10 {border-radius: 10px !important;}
.b-r-15 {border-radius: 15px !important;}
.b-r-50 {border-radius: 50px;}

.b-r-left-5 {
	border-radius: 5px 0px 0px 5px;
}
.b-r-left-10 {
	border-radius: 10px 0px 0px 10px;
}
.b-r-left-15 {
    border-radius: 15px 0px 0px 15px;
}

.b-r-top-5 {
	border-radius: 5px 5px 0px 0px;
}
.b-r-top-10 {
	border-radius: 10px 10px 0px 0px !important;
}
.b-r-top-15 {
    border-radius: 15px 15px 0px 0px;
}

.b-r-right-5 {
	border-radius: 0px 5px 5px 0px !important;
}
.b-r-right-10 {
	border-radius: 0px 10px 10px 0px;
}
.b-r-right-15 {
    border-radius: 0px 15px 15px 0px;
}

.b-r-bottom-5 {
	border-radius: 0px 0px 5px 5px;
}
.b-r-bottom-10 {
	border-radius: 0px 0px 10px 10px;
}
.b-r-bottom-15 {
	border-radius: 0px 0px 15px 15px;
}

.bg-lightred3 {
    background-color: #fff9f9;
}

.border-primary-clr {
	border: 1px solid var(--primary-clr);
}
.border-red-clr {
	color: var(--primary-clr);
}

.outline {
	border: 1px solid var(--primary-clr);
}
.text-transform-none {
    text-transform: none;
}

.mt-3rem {
    margin-top: 3rem;
}

.display_flex{
	display: flex;
}

.bottom-1{
	bottom: 1%;
}
.bottom-2{
	bottom: 2%;
}
.bottom-3{
	bottom: 3%;
}
.bottom-4{
	bottom: 4%;
}
.bottom-5{
	bottom: 5%;
}

.min-width-0 {
	min-width: 0;
}

.h-100vh {
    height: 100vh;
}

.h-100px {
	height: 100px;
}
.h-120px {
	height: 120px;
}
.h-140px {
	height: 140px;
}
.h-145px {
	height: 145px;
}
.h-160px {
	height: 160px;
}

.h-8vw {
	height: 8vw;
}
.h-9vw {
	height: 9vw;
}
.h-10vw {
	height: 10vw;
}
.h-14vw {
	height: 14vw;
}
.h-15vw {
	height: 15vw;
}
.h-16vw {
	height: 16vw;
}
.h-17vw {
	height: 17vw;
}
.h-18vw {
	height: 18vw;
}
.h-19vw {
	height: 19vw;
}
.h-20vw {
	height: 20vw;
}
.h-25vw {
	height: 25vw;
}

.w-100px {
	width: 100px;
}
.w-120px {
	width: 120px;
}

.w-8vw {
	width: 8vw;
}
.w-9vw {
	width: 9vw;
}
.w-10vw {
	width: 10vw;
}
.w-11vw {
	width: 11vw;
}
.w-12vw {
	width: 12vw;
}
.w-13vw {
	width: 13vw;
}

.box_shadow{
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
}
.grey-clr {
	color: #838383;
}


.z-index-1 {
	z-index: 1;
}
.z-index-2 {
	z-index: 2;
}
.z-index-3 {
	z-index: 3;
}

.cursor_pointer{
	cursor:pointer;
}

.bg_img {
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
}
.shadow {
    box-shadow: 0 0 10px rgb(0 0 0 / 16%);
}
.shadow_2 {
    box-shadow: 0 0 15px rgb(0 0 0 / 29%);
}
select.goog-te-combo {
    width: 100% !important;
    border: none !important;
    background: lightcyan !important;
    padding: 10px !important;
    border-radius: 15px !important;
}
.goog-te-combo {
    width: 100% !important;
    border: none !important;
    background: lightcyan !important;
    padding: 10px !important;
    border-radius: 15px !important;
}
.img_reflection_bottom {
	-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, transparent) , to(rgba(250, 250, 250, 0.1)));
}

/* * STYLE 1 */
.style-1::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
.style-1::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}
.style-1::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
/** STYLE 2 **/
.style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.style-2::-webkit-scrollbar
{
	width: 6px;
	height: 6px;
	background-color: #F5F5F5;
}

.style-2::-webkit-scrollbar-thumb
{
	background-color: var(--primary-clr);
}


.style-3::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.style-3::-webkit-scrollbar
{
	width: 4px;
	background-color: #F5F5F5;
}

.style-3::-webkit-scrollbar-thumb
{
	background-color: #ECD6D8;
}

.flip-box {
  background-color: transparent;
  min-height: 250px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-back {
  transform: rotateY(180deg);
  background: white;
  min-height: 250px;
}

.close.float {
    position: absolute;
    right: -5px;
    top: -12px;
    background: white;
    opacity: 1;
    height: 25px;
    width: 25px;
    border-radius: 50px;
    border: 1px solid #cccccc;
	z-index: 9;
	outline: none;
}

.overflow-x-auto {
	overflow-x: auto;
}
.overflow-y-auto {
	overflow-x: auto;
}
.top-1 {
    top: 1px;
}
.top-2 {
    top: 2px;
}
.top-3 {
    top: 3px;
}
.top-4 {
    top: 4px;
}
.top-5 {
    top: 5px;
}
.top-n1 {
    top: -1px;
}
.top-n2 {
    top: -2px;
}
.top-n3 {
    top: -3px;
}
.top-n4 {
    top: -4px;
}
.top-n5 {
    top: -5px;
}

.right-1 {
    right: 1px;
}
.right-2 {
    right: 2px;
}
.right-3 {
    right: 3px;
}
.right-4 {
    right: 4px;
}
.right-5 {
    right: 5px;
}


.remove_after:after {
    display: none;
}
.shadow_none {
    box-shadow: none !important;
}

.form_input_grp {
    display: flex;
    line-height: 40px;
}
.form_input_grp > input {
    height: 20px;
    width: 20px;
}
.form_input_grp > label {
    padding-left: 10px;
}
.form_input_grp > label {
    padding-left: 10px;
}


.brant-text {
    display: inline-block;
}
.brant-text .logo_registered {
    margin-left: 2px;
}

.after_none:after , .before_none:before{
    display: none;
}

.radio_selection > input[type=radio]:checked + label {
    color: var(--primary-clr);
}

button.close {
    outline: none;
}
body{
    overflow-x: hidden;
}

body[data-layout=horizontal] .page-content {    margin-top: 80px;    margin-bottom: 20px;
}

/* --------------------- Common CSS - END --------------------- */


/* --------------------- Website Common CSS - START --------------------- */

.card lable, .modal lable {
    font-weight: bold;
    font-size: 13px;
}
.card-title {
    font-size: 16px;
}
select {
    -webkit-appearance: menulist !important;
}
.btn.btn-primary {
    margin-bottom: 8px;
}
#sidebar-menu {
    padding: 0px;
}
.vertical-menu {
	top: 0px;
}
.page-content {
    padding: calc(70px + 24px) calc(24px* .75) 60px calc(24px* .75);
}
.logout_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 15px;
	z-index: 999;
}

/* --------------------- Website Common CSS - END --------------------- */


/* --------------------- Login CSS - START --------------------- */

.login_div {
    background: linear-gradient(0deg,rgb(0 0 0 / 71%),rgb(0 0 0 / 0%)),url("../../razor/images/login_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

/* --------------------- Login CSS - END --------------------- */


/* --------------------- Main Menu CSS - START --------------------- */

.nav-item.active > .mega-dropdown-menu {
    display: block;
    width: 100vw;
    left: 0;
    position: fixed;
	z-index: 0;
}
.nav-item.active > a, .nav-item.active:hover > a {
    background: var(--primary-clr) !important;
}
.topnav .dropdown:hover {
    background: var(--amazon-clr);
}
.nav-item.active > a, .topnav .dropdown:hover > a {
    color: white !important;
}
.topnav .dropdown:hover>.dropdown-menu {
    width: 100vw;
    left: 0;
    position: fixed;
}

.topnav .navbar-nav .nav-item:first-of-type .nav-link {
    padding-left: 1rem !important;
}
/* --------------------- Main Menu CSS - END --------------------- */


.tool-bar .btn.btn-default {
    /*width: 100px;*/
}/*  ###################### NEW  css start here ########################## */
/* .page-content {background: url(../../assets/images/background.jpg) no-repeat;background-size: cover;background-position: center;} */

/*.page-content {
    background: url(../../assets/images/Bg-img-2.jpg);
    background-position: center;
    background-size: contain;
}*/

.table th {font-weight: 600;}
.table>thead {color:#fff; vertical-align: bottom; background: var(--primary-clr);}
.bg_gradiant {vertical-align: bottom; background: linear-gradient(119.54deg ,#044263 0%,#0e7ab2 100%);} 
.data_box_info .card-header {background: #0e7ab2;color: #fff;}

.table-col-small td, .table-col-small th {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

/*  ###################### 
 2023 CSS START HERE
########################## */
.table--first-col-active tr th {
    background: #def2fc;
}

.table--first-col-width-30 tr th:first-child {
    width: 35%;
    max-width: 300px;
}
.help-block {
    display: none;
}
.form-group {
    margin-bottom: 1rem;
}

/* themes  COLOR */
.vertical-menu {
    background: var(--secondary-clr) !important;
    top: 64px;
}
body[data-sidebar=dark] .menu-title,
body[data-sidebar=dark] #sidebar-menu ul li a,
body[data-sidebar=dark] #sidebar-menu ul li a i,
body[data-sidebar=dark] #sidebar-menu ul li ul.sub-menu li a {
    color: #fff;
}
body[data-sidebar=dark] .navbar-brand-box {
    background: var(--secondary-clr);
    padding: 10px 1.5rem;
}
.logo img {
    margin-top:0;
}
.formSelectPagination {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.47rem 1.75rem 0.47rem 0.75rem;
    outline: none;
}

.modal-body{
    position: relative;
}

.modal span.select2.select2-container {
    width: 100% !important;
}
.select2-container{
    min-width: 100%;
}
.select2-dropdown{
    z-index: 9999 !important;
}

.cust_select .select2-container {
    z-index: 999 !important;
}

.vertical-menu {
    z-index: 1000 !important;
}

.apexcharts-xaxis text, .apexcharts-yaxis text {
    /* font-family: var(--bs-font-sans-serif)!important; */
    fill: black;
    font-weight: bold;
}

.ham-menu span {
    display: block;
    background: #fff;
    width: 32px;
    height: 2px;
    border-radius: 50px;
}

.mobile-header {
    background: #156ec2;
    padding: 5px;
}

.ham-menu span:nth-child(2) {
    margin: 7px 0;
}

.showmenu{
    display: block !important;
    z-index: 10000;
}

.vertbtn{
    display: unset;
}

.custom-v-flex .col-auto {
    width: 20%;
}

.custom-v1-flex .col-auto {
    width: 12.5%;
}

.es_f{
    font-weight: 600;
    font-size: 20px;
    color: rgb(0 0 0);
}

.es_p{
    font-size: 12px;
    margin-bottom: 0 !important;
}

/* .metismenu {
    overflow: auto;
    height: 85vh;
} */



.custom-rounded-top {
    border-radius: 10px 10px 0 0;
}

.accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: unset !important;
    height: unset !important;
    margin-left: auto;
    content: "\F0140";
    font-family: 'Material Design Icons';
    background-image: unset !important; 
    background-repeat: unset !important;
   background-size: unset !important; 
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    font-size: 30px;
}

.accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: unset; 
    height: unset;
    margin-left: auto;
    content: "\F0140";
    font-family: 'Material Design Icons';
    background-image: unset !important;
    background-repeat: unset !important; 
    background-size: unset !important;
    font-size: 20px;
}

.accordion-button:not(.collapsed) {
    color: #156ec4;
    background-color: #d0e8ff;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.logo-sm img {
    width: 100% !important;
    max-height: 64px !important;
    min-height: 64px !important;
    object-fit: cover;
}

.logo-lg img{
    width: 100% !important;
    /* max-height: 100% !important;
    min-height: 100% !important; */
}
/* .logo-lg img{
    width: 100% !important;
    max-height: 100% !important;
    min-height: 100% !important;
} */


body[data-sidebar=dark].vertical-collpsed .vertical-menu #sidebar-menu>ul ul {
    background-color: var(--secondary-clr);
}

body[data-sidebar=dark].vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>a {
    background: var(--secondary-clr);
    color: #fff;
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>ul a{
    white-space: normal;
}

body[data-sidebar=dark].vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>ul a {
    color: #d8d8d8;
    font-weight: 300;
}

#sidebar-menu ul li ul.sub-menu {
    padding: 0;
    background: #0761b8;
    padding: 10px 0;
}

.navbar-header{
    height: 64px;
}

.sub-menu{
    display: none;
}

.navbar-brand-box {
    height: 64px;
}

.page-title-box{
    display: none !important;
}

button#page-header-user-dropdown {
    font-size: 16px;
    color: #000;
}

.profile-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #156ec4;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-right: 5px;
    /* border: 2px solid #156ec4; */
}

.metismenu .mm-collapse:not(.mm-show) {
    display: none;
}


/* Handle on hover
.metismenu::-webkit-scrollbar-thumb:hover {
    background: #555;
} */

@media (max-width: 600px){
    .custom-v-flex .col-auto {
        width: 100%;
    }
}


/* .apexcharts-legend {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* align-items: center; */
    /* justify-content: center; */
/* } */

/*span.apexcharts-legend-marker {
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 5px;
}

.chart.sma-wise-chart .apexcharts-legend-text {
    display: block ! IMPORTANT;
}

.apexcharts-legend-series {
    display: flex;
    align-items: center;
} */

#preloader{
    z-index: 10001;
}

@media (max-width: 1200px){
    .metismenu {
        overflow: auto;
        height: 80vh;
    }
}

@media only screen and (max-width: 992px){
    a.logout_btn {
        display: none !important;
    }
    .mobile-logo{
        max-height: 60px !important;
    }
    .card-body {
        overflow-x: auto;
    }
}
.user_initials_icon {
    color: #fff;
    background: var(--primary-clr);
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
}

#detailsDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #dee2e6;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1050;
}

.voicebot-dash .card {
  box-shadow: 1px 1px 3px #cfcfcf;
  border-radius: 15px !important;
}

.voicebot-dash .card-body {
  border-radius: 15px !important;
}

#detailsDrawer.show {
  transform: translateX(0);
}
