/*================================================================================
	Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
	Version: 2.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */


/* 
** ===============================
** BEGIN: Adding Fonts
** ===============================
*/

html, body {
    font-family: 'Poppins', sans-serif !important;
    background: #F8FAFB !important;
}

body {
    color: #353742;
    font-family: 'Poppins', sans-serif !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Poppins', sans-serif !important;
}

p {
    font-family: 'Poppins', sans-serif !important;
}

input, button, select, optgroup, textarea {
    font-family: 'Poppins', sans-serif !important;
}

.tooltip{
    font-family: 'Poppins', sans-serif !important;
}

.navigation-main {
    font-family: 'Poppins', sans-serif !important;
    background: #F8FAFB !important;
}

.header-navbar {
    font-family: 'Poppins', sans-serif !important;
    background: #F8FAFB !important;
}

html .content.app-content {
    font-family: 'Poppins', sans-serif !important;
    background: #F8FAFB !important;
}
/* =============================== END: Adding Fonts =============================== */


.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* 
** =========================================
** BEGIN: SweetAlert2 Notification Styles 
** =========================================
*/

body.swal2-toast-shown .swal2-container {
    width: 370px;
    max-width: 100%;
    padding: 0 35px;
}

.swal2-popup {
    border-radius: 20px;
    bottom: 100px;
    box-shadow: 0 0 40px #00000030 !important;
}

h2#swal2-title {
    text-align: center;
    font-weight: 400;
    color: #484668;
}

.swal2-container.swal2-top-right.swal2-backdrop-show {
    background: #516ff721;
    width: 100%;
    pointer-events: none;
}

body.swal2-toast-shown .swal2-container {
    width: 100% !important;
}
/* ======================= END: SweetAlert2 Notification Styles ======================= */




/* 
** ===============================
** BEGIN: Scrollbar Effects
** ===============================
*/

.hover-scroll {
    overflow-y: auto;
    scrollbar-width: thin; 
    scrollbar-color: transparent transparent; 
    padding-right: 4px; 
    transition: all 500ms ease-in-out;
    overflow-x: hidden;
}
.hover-scroll:hover { scrollbar-color: rgba(107, 105, 124, 0.3) transparent; }
.hover-scroll::-webkit-scrollbar { width: 4px; }
.hover-scroll::-webkit-scrollbar-track {background: transparent; }
.hover-scroll::-webkit-scrollbar-thumb { 
    background: transparent;
    border-radius: 2px;
    transition: all 500ms ease-in-out; 
    min-height: 20px;
    /* Minimum thumb height */
}
.hover-scroll:hover::-webkit-scrollbar-thumb { background: rgba(22, 21, 22, 0.5); }
.hover-scroll:hover::-webkit-scrollbar-thumb:hover { background: rgba(27, 25, 34, 0.5); }

/* =============================== END: Scrollbar Effects =============================== */



/** ================================== password eye style ==========**/


.formrow-input { position: relative;  display: inline-block;  background: white; }
.formrow-image { position: relative;  display: inline-block; }
.password-input {border: none; outline: none; font-size: 16px; width: 100%; background: transparent; }
        
    .password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
        
    .toggle-checkbox {display: none;}
    
    /* Hide password by default */
    .password-input {
        -webkit-text-security: disc;
    }
    
    /* Show password when checkbox is checked */
    .toggle-checkbox:checked ~ .password-input {
        -webkit-text-security: none;
    }
        
    /* Eye icon styles */
    .eye-icon { width: 18px; height: 18px; fill: #666; transition: fill 0.2s ease;}
    .password-toggle:hover .eye-icon { fill: #8c8787; }
    
    /* Show closed eye when password is hidden */
    .eye-open {  display: block;}  
    .eye-closed { display: none;}
    
    /* Switch icons when checkbox is checked */
    .toggle-checkbox:checked ~ .password-toggle .eye-open { display: none;}
    .toggle-checkbox:checked ~ .password-toggle .eye-closed {  display: block; }

/** ============= password eye style END ======================**/



/* 
** ====================================
** BEGIN: Global Radio Button Styles
** ====================================
*/

.mb-radio [type="radio"]:checked,
.mb-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.mb-radio [type="radio"]:checked + label,
.mb-radio [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.mb-radio [type="radio"]:checked + label:before,
.mb-radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.mb-radio [type="radio"]:checked + label:after,
.mb-radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #516FF7;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.mb-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.mb-radio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* =============================== END: Global Radio Button Styles =============================== */



/* 
** ===================================
** BEGIN: Global Checkbox Styles
** ===================================
*/

.mb-checkbox-item input[type=checkbox] {
    opacity: 0;
    z-index: -1;
    position: absolute;
    top: 0;
}

.mb-checkbox-item input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 2em;
  height: 1.5em;
  line-height: 1.5;
  cursor: pointer;
  font-size: 16px;
}

.mb-checkbox-item input[type=checkbox] + label::before,
.mb-checkbox-item input[type=checkbox] + label::after {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
}

.mb-checkbox-item input[type=checkbox] + label::before {
    content: " ";
    border: 1px solid #a5a5a5;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    background: #a5a5a5;
}

.mb-checkbox-item input[type=checkbox] + label::after {
	content: " ";
	border: 2px solid #ffffff;
	border-top: none;
	border-right: none;
	line-height: 1.5;
	height: 0.4rem;
	left: 0.3rem;
	top: 0.5rem;
	width: 1rem;
}

/* :checked */
.mb-checkbox-item input[type=checkbox]:checked + label::before {
  background: #516FF7;
  border-color:  #516FF7;
  border-radius: 50px;
}

.mb-checkbox-item input[type=checkbox] + label::after {
  transform: scale(0);
}

.mb-checkbox-item input[type=checkbox]:checked + label::after {
    transform: scale(0) rotate(-45deg);
}

/* Transition */
.mb-checkbox-item label::before,
.mb-checkbox-item label::after {
  transition: 0.25s all ease;
}
.mb-checkbox-item:not(:last-child) {
    margin-bottom: 10px;
}
.mb-checkbox-item:not(:last-child) {
    margin-bottom: 10px;
}
/* =============================== END: Global Checkbox Styles =============================== */


.checkbox-full-row {
    flex-direction: column;
    align-items: flex-start !important;
}
.checkbox-full-row {
    padding-top: 15px;
    padding-bottom: 15px;
}
.checkbox-full-row .fromrow-label {
    width: 100%;
    font-size: 16px;
    margin-bottom: 15px;
}
.equal-col.user-email-row .formrow-input {
    width: 60%;
}

.equal-col.user-email-row .fromrow-label {
    width: 40%;
}

.equal-col .fromrow-left, .equal-col .fromrow-right {
    width: 50%;
}

.equal-col .fromrow-left .fromrow-label, .equal-col .fromrow-right .fromrow-label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.equal-col .fromrow-left .fromrow-label .f-lebel, .equal-col .fromrow-right .fromrow-label .f-lebel{
    font-size: 16px;
}
.equal-col .fromrow-left .formrow-input, .equal-col .fromrow-right .formrow-input {
    width: 94%;
}


/* 
** ===============================
** BEGIN: Sidebar Styles
** ===============================
*/

.main-menu.menu-light .sidebar-contentscroll .navigation > li.open:not(.menu-item-closing) > a { background: #ffffff;}
.navbar-floating .navbar-container:not(.main-menu-content) { padding: 1.2rem 0rem;}
.main-menu.menu-light .navigation { background: #ffffff !important;}
.main-menu.menu-light .navigation > li > a { font-size: 20px; color: #353742 !important;}
.main-menu {background-color: white;border-right: 1px solid #eaeaea;width: 260px;max-width: 260px;}
.navbar-header {padding: 16px 0;border-bottom: 1px solid #f0f0f0;}
.sidebar-header-section {text-align: center;padding: 25px 0 8px 0;}
.sidebar-brand-container {padding: 0;}
.sidebar-separator {
    width: 90%;
    margin: 14.4px auto 4px auto;
    border-bottom: 1px solid #DFE1E3 !important;
    border-radius: 1px;
    height: 0;
}

.storyteller-title { color: #516FF7; font-size: 32px; font-weight: 600; line-height: 38px; letter-spacing: 0; margin-bottom: 0;}
.subtitle { color: #353742;font-size: 18px; opacity: 1;}


/** Sidebar: User Profile Section **/
.main-menu.menu-light .navigation > li ul li > a {
    padding: 10px 15px 10px 10px !important;
} 
.vertical-layout.vertical-menu-modern .main-menu .navigation .menu-content > li > a svg, 
.vertical-layout.vertical-menu-modern .main-menu .navigation .menu-content > li > a i {
    margin-right: 1rem;
}


/** Sidebar: Scroll **/
.sidebar-contentscroll { overflow-y: auto; height: calc(100% - 270px);}


/* Hide scrollbars but allow scrolling */
.main-menu-content {
	overflow-y: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
	height: calc(100% - 160px);
}
.main-menu-content::-webkit-scrollbar {display: none; /* Chrome, Safari, Opera */}
.main-menu.menu-light .navigation > li ul .active {box-shadow: none;background: #516FF7;color: #fff;}
.shadow-bottom {display: none;}

.menu-content li a svg path {
    stroke: #353742;
}

.menu-content li a.active svg path {
    stroke: #FFF;
}
/* ========================= END: Sidebar Styles ========================= */



/* 
** ===============================
** BEGIN: Header Styles
** ===============================
*/

html .content.app-content {
    padding: calc(2rem + 4.45rem + 1.3rem) 2rem 150px;
}

.header-profile-row { width: 100%; padding: 0px 0px 0px 0px;  }
.header-navbar .navbar-container { border-bottom: 1px solid #DFE1E3 !important;}
.header-separator {
	width: 99%;
	margin: 1.6px auto 3.2px auto;
	border-bottom: 2px solid #DFE1E3;
	border-radius: 1px;
	height: 0;
}

.header-profile-title {
    font-size: 32px;
    font-weight: 400;
    color: #353742;
    letter-spacing: 0;
    line-height: 50px;
}

.header-profile-actions {
	display: flex;
	align-items: center;
	gap: 16.2px;
	flex-wrap: wrap;
}
/* =============================== END: Header Styles =============================== */



.mb-transition, .user-listbtn, .admin-user-offcanvas .btn-close {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.user-list-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
.list-headright { display: flex; align-items: center;}
.list-headright .ur-item,
.user-list-blockright .ur-item  { padding: 0 10px;}
.user-listblock { 
    display: flex;
    align-items: center; 
    justify-content: flex-start;
    flex-direction: row;
    margin-left: 4px;
}
.user-listblock {
    background: #FFF;
    padding: 20px 30px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
.user-listblock:hover {
    box-shadow: 0px 0px 10px 0px rgba(77, 74, 77, 0.3);
    cursor: pointer;
}

.user-list-blockright{ display: flex; align-items: center;}
.business-user-name { display: flex; align-items: center;}

.user-details-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.usertitle {
    font-size: 20px;
    display: inline-block;
    padding-left: 20px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}
.usersubtitle {
    font-size: 14px;
    color: #9392A6;
    padding-left: 20px;
    margin-top: 2px;
    line-height: 1.1;
}
.usersubtitle{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.ur-item {
    font-size: 16px;
    color: #484668;
}
.ur-item-label {
    font-size: 14px;
   color: #9392A6;
    padding-left: 10px; 

}

.list-headright .ur-item,
.user-list-blockright .ur-item  { 
    width: 110px;
}
.user-list-header { 
    padding: 20px 30px 20px 0px;
}


.ur-item.User-dropdwon,
.ur-item.title-dropdown {
    width: 40px;
}
.ur-item.title-dropdown:hover {
    width: 35px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F8FAFB;
}

.button-dropdown {
    position: absolute;
    top: 55%;
    left: 75%;
    transform: translateX(-50%);
    transition: all 300ms ease-in-out;
    transform: translate(-50%, 70%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}
.button-dropdown.show {
    top: 57%;
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 20%);
    pointer-events: auto;
}
.button-dropdown ul {
    padding: 0;
    margin: 0;
    background: #F8FAFB;
    box-shadow: 1px 1px 10px #ccc;
    border-radius: 4px;
}
.button-dropdown ul a {
    display: block;
    padding: 6px 10px;
    width: 110px;
    color: #333;
}

.user-listbtn { background: #516FF7; font-size: 16px; color: #FFF; 
    padding: 8px 30px;
    border-radius: 10px;
}
.user-listbtn:hover {
    background: #3f5de4;
    box-shadow: 1px 1px 10px #3f5de4;
}
.user-listblock:not(:last-child) { margin-bottom: 20px;}


.ur-item.name-User {
    min-width: 280px;
}
.business-user-name {
    min-width: 260px !important;
}

.business-user-main.hover-scroll{
    overflow-x: auto;
}
.ur-item.name-User {
    min-width: 280px;
}
.ur-item {
    width: 110px;
}
.user-list-main {
    width: fit-content;
}

.business-user-main {
    padding: 20px 0;
}
.business-user-outer {
    overflow: hidden;
}
.business-user-main {
    padding: 20px 0;
    width: 100%;
    overflow-x: auto;
}



/* 
** ===============================
** calculation start 
** ===============================
*/

.user-delete-btn {
    background-color: #ffecec;
    color: #f44336;
    border: none;
    margin-right: -75px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
  
.user-delete-btn:hover {
    background-color: #ffd6d6; /* slightly darker on hover */
}

.gbl-bluebtn { 
    background: #516FF7;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 300ms ease;
}
.gbl-bluebtn:hover { 
    background: #4260e7;
}
.gbl-bluebtn:disabled {
    background-color: #A4B7FF;
    cursor: not-allowed;
    box-shadow: none;
}

.system-creditbtn { margin-top: 20px;}

.gbl-whitebody-wrap { background: #FFF; padding: 40px;margin: 20px 0;}
.gbl-whitebody-title { font-size: 28px; font-weight: 400;}
.gbl-whitebody-divider{ height: 1px; background: #DFE1E3; margin: 20px 0;}
.gbl-whitebody-divider.narrow {height: 1px;background: #DFE1E3;margin: 10px 0;}

.gbl-formrow { display: flex; align-items: center;}
.gbl-formrow { margin-bottom: 10px;}

.formrow-input input, .formrow-input textarea { border: solid 1px #E5E8EB; padding: 10px 15px; border-radius: 10px;}
.formrow-input input, .formrow-input textarea { width: 100%;}
.formrow-input.ip-small input { width: 100%; max-width: 120px;}
.formrow-input input:focus, .formrow-input input:focus-visible, .formrow-input textarea:focus, .formrow-input textarea:focus-visible  { outline: none;}
.formrow-input { width: 75%;}
.formrow-input .formrow-checkbox input { margin: 10px 0 20px; max-width: 25px;}
.fromrow-label { width: 25%;}
.f-lebel { color: #353742;}
.inner-inline-col { display: flex; align-items: center;}
.gbl-blue-button {
    background: #516FF7;
    color: #FFF; 
    padding: 10px 15px;
    border-radius: 10px;
}
.full-widthcol .fromrow-label, 
.full-widthcol .formrow-input,
.full-widthcol .formrow-image {
    width: 100%;
}



/* 
** ====================================
** System Log Start
** ====================================
*/

.user-list-main.system-log-list {
    width: auto;
}


.user-list-main.system-log-list .business-user-name {
    min-width: 375px !important;
}

.user-list-main.system-log-list .business-user-name .usertitle, .user-list-main.prompt-list .business-user-name .usertitle {
    min-width: 350px !important;
}

.user-list-main.system-log-list .business-user-name .usersubtitle {
    min-width: 350px !important;
}

.user-list-main.system-log-list .user-listblock {
    padding: 15px 30px !important;
    width: max-content;
}

.user-list-main.system-log-list .user-list-blockright .system-log-user {
    width: 275px;
    position: relative;
}

.user-list-main.system-log-list .user-list-blockright .system-log-user .log-time.log-user-email {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 250px;
}
 
.user-list-main.system-log-list .user-list-blockright .ur-item {
    width: 250px;
}
.email-tooltip {
    position: absolute;
    bottom: 0%;
    left: 0;
    transform: translateY(-50%);
    background: #333;
    color: #FFF;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease-in-out;
}
.business-user-name{position: relative;}
.business-user-name .email-tooltip  {
    left: 40px;
}
.business-user-name:hover .email-tooltip {
    bottom: -30%;
    left: 40px;
    visibility: visible;
    opacity: 1;
}
.system-log-user:hover .email-tooltip {
    bottom: -30%;
    visibility: visible;
    opacity: 1;
}
.email-tooltip span {
    width: 6px;
    height: 6px;
    background: #333333;
    display: block;
    transform: rotate(45deg) translateX(-50%);
    position: absolute;
    bottom: -5px;
    left: 50%;
    z-index: 0;
}


/* 
** ====================================
** User details offcanvas popup Start
** ====================================
*/

input::placeholder,
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
  color: #353742;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
  color: #353742;
}

.admin-user-offcanvas .offcanvas { padding: 20px;}
.admin-user-offcanvas .offcanvas-end { width: 450px;}
.admin-user-offcanvas .offcanvas-header { padding: 0;}
.admin-user-offcanvas .offcanvas-title { display: flex; align-items: center;}
.offcancas-header-title { font-size: 30px;font-weight: 600; color: #516FF7; padding-left: 10px;}
.admin-user-offcanvas .btn-close { opacity: 0.4 !important; background-size: 15px !important;}
.admin-user-offcanvas .btn-close:hover { opacity: 1 !important; background-size: 15px !important;}
.user-rowtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.equal-col .fromrow-label,
.equal-col .formrow-input {
    width: 50%;
}

.checkbox-col .fromrow-label {
    width: 40%;
}
.checkbox-col .formrow-checkbox {
    width: 60%;
}

.checkbox-col .formrow-checkbox select {
    width: 60%;
}

.checkbox-col .formrow-checkbox input {
    width: 15px;
    height: 15px;
    margin-top: 2px;
}
.checkbox-col .formrow-checkbox span {
    font-size: 13px;
    margin-left: 10px;
}

.equal-col .formrow-input select,
.equal-col .formrow-input input,
.equal-col .formrow-input textarea{
    width: 100%;
}

.equal-col .formrow-input select:focus,
.equal-col .formrow-input select:focus-visible, 
.equal-col .formrow-input input:focus,
.equal-col .formrow-input input:focus-visible {
    outline: none;
}
.accro-title {
    font-size: 20px;
    color: #353742;
    font-weight: 500;
}
.gbl-select, 
.equal-col .formrow-input input { border: solid 1px #E5E8EB; border-radius: 5px; padding: 10px; font-size: 16px;}
.user-offcancas-content {background: #FAFCFF;}
.user-offcancas-inner {padding: 20px;} 
.equal-col .f-lebel { font-size: 16px;}
.credit-row .gbl-bluebtn {
    margin-left: 10px;
}
.gbl-formrow.full-widthcol { flex-direction: column;}
.full-widthcol .fromrow-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.f-leble-btn input { color: #247CFF; font-size: 16px;}

.credit-footer-btn .gbl-bluebtn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}
.credit-footer-btn {
    margin-top: 15px;
}
.credit-footer-btn .button-group {
    width: 100%;
    font-size: 18px;
}
.imgiocn {
    width: 75px;
    height: 75px;
    border-radius: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F7FC;
}
.upload-imgblock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    border: solid 1px #E5E8EB;
    height: 145px;
    border-radius: 8px;
	cursor: pointer;
}

.admin-user-offcanvas .offcanvas-body {
    padding: 15px 0px !important;
}
.accro-arrow {
    cursor: pointer;
}

.user-offcancas-content {
    max-height: 800px;
    overflow: hidden;
    transition: max-height 0.3s ease-in;
}
.user-offcancas-content.close {
    max-height: 0px;
}
.accro-arrow svg {
    transform: rotate(180deg);
    transition: all 300ms ease-in-out;
}
.user-rowtitle.active svg {
    transform: rotate(0deg);
}



/* ---- Button Loader div ----- */
.button-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.generating-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    background-color: #610707; 
    padding: 17px 90px;
    font-size: 18px;
    /*min-width: 215px;*/
	width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: none;
}

.generating-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    background-color: #FFF; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
}

.loading-spinner {
    width: 25px;
    height: 25px;
    border: 4px solid #e2e8f0;
    border-top-color: #516FF7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
/* ----- Button Loader Div End ----- */


/* ----- Image Loader ----- */
.loader-block {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-block {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.loader-block.show {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.upload-imgblock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.upload-imgblock .loader-block, .voiceimage-block .loader-block {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-imgblock .loader-block, .voiceimage-block .loader-block {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.upload-imgblock .loader-block.show, .voiceimage-block .loader-block.show{
    opacity: 1;
    position: relative;
    visibility: visible;
}

.upload-imgblock .imgiocn.hide, .voiceimage-block.hide {
    display: none;
}

/* ----- Image Loader End ----- */

/** admin Header search **/
.search-container {
    position: relative;
    padding-right: 10px;
}
.search-container input {
    width: 100% !important;
    float: inherit !important;
    display: flex !important;
}
.search-input::placeholder {
    transition: all 200ms ease-in-out;
    opacity: 1;
}
.search-input:focus::placeholder {
    color: transparent;
    opacity: 0;
}
.search-container input {
    border: solid 1px #DFE1E3;
    padding: 10px 15px 10px 40px;
    border-radius: 5px;
}
.search-container svg {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 20px !important;
}


.event-dropdown-container {
    margin-right: 10px;
}
.event-dropdown-container select {
    border: solid 1px #DFE1E3;
    padding: 7px 10px;
    border-radius: 5px;
    width: 100% !important;
    float: inherit !important;
    display: flex !important;
}



.header-profile-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.header-tools-right {
    display: flex;
    align-items: center;
}
.navbar-container .search-input:focus, .navbar-container .search-input:focus-visible {
    outline: none !important;
}

.ur-item.title-dropdown .button-dropdown {
    position: absolute;
    top: -10px;
    right: 60px;
    transition: all 300ms ease-in-out;
    transform: translate(0%, 0%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    left: inherit;
    min-width: 150px;
}
.ur-item.title-dropdown {
    position: relative;
    width: 40px !important;
}
.ur-item.title-dropdown .button-dropdown.show {
    top: -10px;
    right: 40px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    left: inherit;
    transform: translate(0px, 0px);
}
.ur-item.title-dropdown svg {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 50px;
}
.ur-item.title-dropdown:hover {
    padding: 0px;  
}
.ur-item.title-dropdown:hover svg {
    background: #F8FAFB; 
}
.ur-item.title-dropdown .button-dropdown ul a{
    display: block;
}
.ur-item.title-dropdown .button-dropdown ul li:not(:last-child){
    border-bottom: solid 1px #eaeaea;
}



/** system credit checkbox row **/

.system-checkrow  .formrow-checkbox {
    display: flex;
    align-items: center;
    padding-top: 5px;
}
.system-checkrow .formrow-checkbox input {
    width: auto !important;
    margin-right: 5px !important;
}


/** usercredit-tabs-main slide Start **/
.usertab-header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.slide-header-left {
    display: flex;
    align-items: center;
}
.slide-header-content {
    display: flex;
    align-items: center;
}
.slder-header-right {
    padding-right: 0;
}

.slder-header-right button.user-delete-btn {
    margin-right: 10px !important;
}
.module-name {
    font-size: 28px;
    font-weight: 500;
    color:  #2F2B3D;
    line-height: 28px;
    padding: 3px 6px 0px;
}
.slide-btn {
    padding-right: 15px;
    cursor: pointer;
}
.gbl-bluebtn.slide-delete-btn a{
    color: #FF5667 !important;
}
.gbl-bluebtn.slide-delete-btn {
    background: #FFEDED !important;
    border-radius: 50px;
}
.userslide-content {
    position: relative;
}
.userslide-content .tab-content {
    padding: 20px 0;
}
.userslide-content .nav-tabs .nav-link {
    color: #2F2B3D;
    font-size: 22px;
    font-weight: 600;
}
.userslide-content .nav-tabs .nav-link.active {
    color: #516FF7;
}
.tabsave-btn {
    position: absolute;
    right: 0px;
    z-index: 1;
}
.tabsave-btn a {
   color: #FFF;
}
.setting-blocktitle {
    font-size: 20px;
    color: #353742;
    font-weight: 500;
    padding-bottom: 15px;
}
.block-name {
    font-size: 16px;
    color: #484668;
    display: flex;
    flex-direction: row;
}
.block-desc {
    font-size: 14px;
    color: #9392A6;
}
.block-name svg {
    padding: 2px 2px 2px 0px;
    margin-right: 2px;
}
.user-content-row {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    padding: 30px;
}
.settings-col {
    width: 33.33%;
}
.settings-blockrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 10px;
    justify-content: flex-start;
    gap: 20px;
}

.setting-credit-title {
    font-size: 20px;
    font-weight: 500;
    color: #353742;
    padding-bottom: 10px;
}
.setting-credit-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
}
.setting-credit-col {
    width: 50%;
}
.slder-header-right button {
    margin-right: 0 !important;
}
.setting-credit-row .checkbox-col .formrow-checkbox span {
    font-size: 15px;
    margin-left: 10px;
}
.topcol-userid input[type="text"] {
    width: 100%;
}
.fourcols .settings-blockrow, 
.twocols .settings-blockrow {
    gap: 20px;
}

.fourcols .settings-block {
    width: 25%;
}
/** tab2 storyteller 2 **/
.mb-tabonly .usertitle {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 350px;
}
.mb-tabonly .user-list-blockright {
    width: 100%;
    justify-content: flex-end;
}
.status-line {
    width: 5px;
    min-width: 5px;
    background: #484668;
    height: 25px;
    display: block;
    margin-right: 10px;
}
.logtab .usertitle {
    padding-left: 0;
}
.logtab .user-details-div {
    padding-left: 15px;
}
.usertitle-desc {
    color: #9392A6;
    font-size: 12px;
}
.admin-usernav { margin-bottom: 0;}
.userslide-content .narrow{ margin-top: 0px;}
.admin-usernav  .nav-link:after { height: 2px; background: #516FF7 !important;}

.status-line.blue {background: #516FF7;}
.status-line.green {background: #23AF00;}
.status-line.red {background: #FF485A;}
.mb-tabonly{
     box-shadow: 0px 0px 5px 0px rgb(114 117 139 / 30%) !important;
}
.user-listblock.logtab {
     padding: 10px 20px;
     box-shadow: 0px 0px 5px 0px rgb(114 117 139 / 30%);
}
.user-listblock.logtab:not(:last-child) { margin-bottom: 10px;}
.logtab .ur-item-div .ur-item {
    min-width: 140px;
}
.stroryteller-tab {
    padding: 10px 20px;
}    
.stroryteller-tab:not(:last-child) {
    margin-bottom: 10px;
}
.slder-header-right {
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.tabview-users .offcanvas-body {
    padding: 0 10px !important;
}
 
#storyteller .button-dropdown ul a {
    width: inherit !important;
    white-space: nowrap;
}


/** sidebar menu **/
.sidebar-contentscroll .main-menu-content {
    height: initial !important;
}
.sidebar-contentscroll {
    overflow-y: auto;
    height: calc(100% - 120px);
}

/** scroll behaviour tab **/
body{
    overflow-x: hidden;
}
.content-wrapper {
    position: relative;
}
.app-content.content.admin-users-main {
    padding-bottom: 0;
    height: calc(100vh - 0px);
}
html .content.app-content {
    padding: calc(2rem + 4.45rem + 1.3rem) 2rem 0px;
}
/** scroll behaviour tab End **/

/** Voice & Prompt page Start **/
.voice-main .user-list-header, .prompt-main .user-list-header, .coupon-main .user-list-header {
    width: 100%;
}
.voice-main .list-headright, .prompt-main .list-headright, .coupon-main .list-headright {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}
.voice-main .user-list-main, .prompt-main .user-list-main, .coupon-main .user-list-main {
    width: fit-content;
    min-width: calc(100% - 2px);
    margin-right: 5px !important;
}
.voice-main .user-list-blockright, .prompt-main .user-list-blockright, .coupon-main .user-list-blockright {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}
.voice-main .ur-item-div, .prompt-main .ur-item-div, .coupon-main .ur-item-div {
    min-width: 50px;
    padding: 0 10px;
}
.voice-tablehead {
    padding: 0 10px;
}
.ur-item.voice-empty {
    min-width: 140px;
}
.col-item {
    min-width: 140px;
}
.smallcol {
    min-width: 50px;
}
.playicon {
    background: #516ff7;
    width: 45px;
    height: 45px;
    padding: 10px;
    border-radius: 50px;
}
.pauseicon {
    background: #516ff7;
    width: 45px;
    height: 45px;
    padding: 0px;
    border-radius: 50px;
}
.voice-main .title-dropdown {
    position: relative;
}
.voice-main .button-dropdown {
    position: absolute;
    top: -28px;
    left: -60px;
    transform: translateX(-50%);
    transition: all 300ms ease-in-out;
    transform: translate(-50%, 70%);
    visibility: hidden;
    pointer-events: auto;
    opacity: 0;
    z-index: 1;
    min-width: 150px;
}
.voice-main .title-dropdown .button-dropdown.show{
    visibility: visible;
    opacity: 1;
}
.avtarimage {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}

.form-check-primary .form-check-input:checked {
    background-color: #516FF7;
}
.form-check-primary .form-check-input:not(:disabled):checked, .form-check-primary .form-check-input:not(:disabled):focus {
    border-color: #516ff7;
}

.voice-main .business-user-main {
    overflow-x: auto;
    overflow-y: hidden;
}
.voice-main .user-listblock {
    padding: 15px 30px;
}
.voice-main .user-list-main:not(:last-child){
margin-bottom: 15px;
}

.voice-main .user-listblock {
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 20%);
}
.voice-main .voice-tablehead, .voice-main .name-User {
font-size: 20px;color: #9897A3;
}
.voice-main .col-item.audio-icons { min-width: 60px;}
.voice-main .col-item.butoon-item { min-width: 110px;}
/** usercredit-tabs-main slide End **/


/** coupon page Start **/
.coupon-main .expiration-header {
    width: 150px;
}
.coupon-main .expiration-value {
    width: 150px;
}
.coupon-main .expiration-value .title-subscr {
    width: 150px;
}
/** coupon page End **/



/** voice sidebar **/
.voiceimage-upload {
    width: 100%;
    display: flex;
    justify-content: center;
}
.voiceimage-block svg {
    width: 40px;
}

.voiceimage-block {
    border: solid 1px #E5E8EB;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
}
.button-tools {
    text-align: right;
}
.button-tools span {
    display: inline-block;
    padding: 0 5px;
    color: #516ff7;
    cursor: pointer;
}
.audioplay-row {
    width: 100%;
    border: solid 1px #E5E8EB;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.playpause svg {
    background: #516ff7;
    width: 30px;
    height: 30px;
    padding: 7px;
    border-radius: 50px;
    cursor: pointer;
}
.playpause svg.v-pause  {
    background: #516ff7;
    width: 30px;
    height: 30px;
    padding: 0px;
    border-radius: 50px;
    cursor: pointer;
}

/* 
** ===============================
** BEGIN: Responsive Styles
** ===============================
*/

@media screen and (min-width: 1200px){
.tabview-users .offcanvas-end {
    width: calc(100% - 280px);
}
}

@media (max-width: 1199.98px){
    .tabview-users .offcanvas-end { width: calc(100% - 40px); }
}


@media (max-width: 991.98px) {

	.header-profile-title {font-size: 28px;}
	.credits-pill {font-size: 16px;padding: 5.6px 19.2px 5.6px 12.8px;}
	.upgrade-btn {font-size: 16px;padding: 6.4px 28.8px;}

}
  
@media (max-width: 767.98px) {

	.header-profile-title {font-size: 24px;}
	.header-profile-actions {width: 100%;justify-content: space-between;}
	.credits-pill {font-size: 15.2px;}
	.upgrade-btn {font-size: 15.2px;padding: 5.6px 25.6px;}
    .generate-image-content { padding: 0 1rem 0 1.6rem;}

    /** tab style **/
    .user-content-row {flex-direction: column;}
    .settings-col { width: 100%;}
    .setting-credit-row {flex-direction: column; }
    .setting-credit-col {width: 100%;}
    .user-content-row { padding: 30px 0;}


}
  
@media (max-width: 575.98px) { 
	
	.header-profile-title {font-size: 21.6px; width: 100%;}
	.header-profile-actions {gap: 12.8px;}
	.credits-pill {font-size: 14.4px;padding: 4.8px 16px 4.8px 11.2px;}
	.credits-dot {width: 16px;height: 16px;margin-right: 8px;}
	.upgrade-btn {font-size: 14.4px;padding: 4.8px 19.2px;}
	.navbar-container {padding-left: 0 !important;padding-right: 0 !important;}

    .module-name {
    font-size: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 150px;
}
.slide-btn {padding-right: 5px;}
.slide-btn svg {width: 25px;}
.usericon svg {width: 20px;}
.slder-header-right {padding-right: 0;display: flex;align-items: center;}
.userslide-content .nav-tabs .nav-link {font-size: 18px;padding: 10px 10px;}
.tabsave-btn {position: relative;right: 0;z-index: 1;display: block; text-align: right;}
.tabsave-btn .gbl-bluebtn { width: auto;text-align: right;
 display: inline-block;
}
.header-profile-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


}
/* =============================== END: Responsive Styles =============================== */
