/*General Style */
@import url("../css/bootstrap.min.css");
@import url("../fonts/font-awesome-6/css/all.min.css");
/*---------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
/*----------------------------------------
font-family: "Onest", sans-serif;
------------------------------------------*/
:root {
    --primary: #395AA1;
    --secondary: #D1782B;
    --white: #ffffff;
    --black: #191919;
    --textColor: #333333;
    --lightgray: #f5f5f5;
    --text666: #666666;
    --text999: #999999;
    --green: #39A13B;
    --red: #EB0E0E;
    --yellow: #F59E0B;
    --lightred: rgba(235,14,14,0.1);
    --lightyellow: rgba(245,158,11,0.1);
    --lightgreen: rgba(57,161,59,0.1);
    --lightyellow2: #FDF1DF;
    --lightgray: #F2F2F2;
    --lightgray2: #EAEAEA;
    --lightsecondary: #eef5fb;
    --bodyFont: "Onest", sans-serif;
    --primaryrgb: 57,90,161;
    --secondaryrgb: 209,102,43;
    --redrgb: 235,14,14;
    --yellowrgb: 245,158,11;
    --greenrgb: 57,161,59;
}
html{
    overflow-x: hidden;
}
.grid_1200 {
    overflow: hidden;
}
body {
    margin: 0px;
    padding: 0px;
    -ms-overflow-style: scrollbar;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
    background-color: var(--lightgray);
    font-family: var(--bodyFont);
    color: var(--textColor);
}
/* Typography */
a,
a:visited,
a:active {
    color: var(--primary);
    text-decoration: none;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
a:visited:hover,
a:active:hover,
a:visited:focus,
a:active:focus {
    color: var(--secondary);
}
a:hover,
a:focus {
    text-decoration: none;
    color: var(--textColor);
    outline: 0;
}
img {
    max-width: 100%;
    height: auto;
}
::selection {
    color: var(--white);
    background-color: var(--primary);
}
::-moz-selection {
    color: var(--white);
    background-color: var(--primary);
}
h1 {
    font-size: 28px;
    line-height: 1.2;
}
h2 {
    font-size: 18px;
    line-height: 1.2;
}
h3 {
    font-size: 18px;
    line-height: 1.2;
}
h4 {
    font-size: 16px;
    line-height: 1.2;
}
h5 {
    font-size: 16px;
    line-height: 1.2;
}
h1,
h2,
h3,
h4,
h5 {
    margin: 0 0 10px;
    letter-spacing: 2%;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}
p,
ol,
ul {
    margin: 0 0 10px;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}

/* ------------------------------------------------------------------
    Form
------------------------------------------------------------------- */
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="month"],
input[type="number"],
input[type="time"],
input[type="url"],
input[type="week"],
input[type="email"],
input[type="search"],
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="file"],
textarea,
select.form-control,
select {
    font-weight: 400;
    padding: 13px 15px !important;
    font-size: 16px !important;
    line-height: 20px;
    color: var(--textColor) !important;
    background-color: var(--white) !important;
    border: 1px solid #d2d2d2 !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-radius: 10px !important;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    height: inherit;
    display: block;
    margin: 0;
    position: relative;
    z-index: 1;
    direction: ltr;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 1;
    outline: none;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
input[type="date"] {
    line-height: 18px;
}
textarea.form-control {
    height: 150px;
}
select.form-control:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="file"]:focus,
input[type="search"]:focus,
textarea.form-control:focus,
textarea:focus,
select:focus {
    border-color: var(--secondary) !important;
    outline: 0;
    box-shadow: none;
}
input[type="submit"],
button[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    opacity: 0.6;
    font-size: 15px;
    font-weight: 500;
    color: var(--textColor);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    opacity: 0.6;
    font-size: 15px;
    font-weight: 500;
    color: var(--textColor);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    opacity: 0.6;
    font-size: 15px;
    font-weight: 500;
    color: var(--textColor);
}
.form-control:focus {
    box-shadow: none;
}
.form-group {
    margin-bottom: 15px;
}
.form-group:last-child {
    margin-bottom: 0;
}
body select {
    cursor: pointer;
    background-image: url(../images/select_arrow.svg);
    background-position: right center;
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-size: 40px;
    color: var(--textColor);
    padding-right: 35px !important;
}
body select option {
    color: var(--textColor);
    /* font-weight: 600; */
}
/*Buttons*/
.btn_holder {
    margin-top: 35px;
    text-align: center;
}
.btn_holder.left {
    text-align: left;
}
input[type="submit"], button[type="submit"], .my_btn {
    position: relative;
    background-color: var(--primary);
    color: var(--white) !important;
    text-transform: capitalize;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    padding: 15px 20px;
    min-width: 140px;
    font-weight: 500;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    border: none;
    opacity: 1;
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.my_btn.active,
.my_btn.active:hover {
    background-color: var(--textColor);
}
.my_btn.md {
    min-width: 145px;
    line-height: 24px;
    padding: 14px 20px;
}
.my_btn.sm {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    padding: 10px 15px;
    min-width: 134px;
}
input[type="submit"]:hover,
button[type="submit"]:hover,
.my_btn:hover {
    background-color: var(--secondary);
}
.my_btn.black {
    background-color: var(--secondary);
}
.my_btn.black:hover {
    background-color: var(--primary);
}
.my_btn.gray {
    background-color: #efefef;
    color: var(--textColor) !important;
}
.my_btn.gray:hover {
    background-color: var(--white);
    color: #ffffff !important;
}
.my_btn.green {
    background-color: var(--green);
    color: var(--white) !important;
}
.my_btn.lightred_btn {
    color: var(--primary) !important;
    background-color: rgba(236, 33, 39, .08);
}
.my_btn.lightred_btn:hover {
    color: var(--white) !important;
    background-color: var(--primary);
}
.my_btn.border_btn {
    border: 1px solid var(--white);
    color: var(--white) !important;
    background-color: transparent;
}
.my_btn.border_btn:hover {
    background-color: var(--primary);
}
.my_btn.full_width {
    width: 100%;
}
.my_btn +.my_btn {
    margin-left: 5px;
}
.my_btn i {
    margin-right: 5px;
}
.fit_img {
    width: 100%;
    height: auto;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
    mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
.fit_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

/*  */
.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown a:after,
.sidebar-wrapper ul li a i,
.sidebar-wrapper .sidebar-menu ul li a {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
/*----------------page-wrapper----------------*/
/* .page-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
} */
/*----------------sidebar-wrapper----------------*/
.sidebar-wrapper .sidebar-content {
    width: 300px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding-top: 100px;
}
.sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.sidebar-wrapper a {
    text-decoration: none;
}
.sidebar-content.desktop {
    overflow-y: hidden;
}
/*--------------------sidebar-header----------------------*/
canvas {
    width: 100% !important;
    display: block !important;
}
nav#sidebar {
    z-index: 99999;
    position: relative;
}
.sidebar-wrapper .sidebar-header {
    padding: 15px 25px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    display: block;
    width: 300px;
    height: 100px;
    background-color: var(--white);
    box-shadow: -14px 2px 14px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.sidebar-wrapper .sidebar-header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*-----------------------sidebar-search------------------------*/
.sidebar-wrapper .sidebar-search > div {
    padding: 10px 20px;
}
/*----------------------sidebar-menu-------------------------*/
.sidebar-wrapper .sidebar-menu {
    padding: 0 0 60px;
    height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}
.sidebar-wrapper .sidebar-menu::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.25);
}
.sidebar-wrapper .sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px 5px 20px;
    display: inline-block;
}
.sidebar-wrapper .sidebar-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.sidebar-wrapper .sidebar-menu ul li a {
    display: flex;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: 10px 45px 10px 18px;
    min-height: 48px;
    align-items: self-start;
    gap: 10px;
    align-items: center;
}
.sidebar-wrapper .sidebar-menu ul li a i {
    font-size: 18px;
    width: 20px;
    flex: 0 0 20px;
    text-align: center;
}
.sidebar-wrapper .sidebar-menu ul li a svg,
.sidebar-wrapper .sidebar-menu ul li a img {
    opacity: 0.6;
    width: 20px;
    height: 20px;
    padding: 0 2px;
    margin-top: 2px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.sidebar-wrapper .sidebar-menu ul li a i.fa-svg {
    opacity: 0.6;
    margin-top: 2px;
    width: 16px;
    height: 20px;
    flex: 0 0 16px
}
.sidebar-wrapper .sidebar-menu ul li a i.fa-svg::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .second-submenu > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    font-style: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .second-submenu > a:after {
    right: 0;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .second-submenu.active > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
    transform: translateY(-50%) rotate(-180deg);
    color: rgba(255, 255, 255, 1);
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown:hover .second-submenu:hover > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown:hover > a:after {
    color: rgba(255, 255, 255, 1);
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .third_submenu li > a:before,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 7px;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 8px;
    margin-top: 2px;
    vertical-align: top;
    display: none;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .third_submenu li > a:before {
    font-weight: 400;
    margin-right: 5px;
}
.sidebar-wrapper .sidebar-menu ul li a span.badge {
    font-weight: 500;
    border-radius: 10px;
}
.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
    float: right;
    padding-top: 3px;
    padding: 0;
    margin: 2px 0 0 2px;
    line-height: 1;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center !important;
    text-align: center;
    font-size: 10px;
}
.sidebar-wrapper .sidebar-menu ul li.alert_info {
    border-bottom: none;
}
.sidebar-wrapper .sidebar-menu ul li.alert_info a {
    min-height: 70px;
    background-color: var(--red) !important;
}
.sidebar-wrapper .sidebar-menu ul li.alert_info a span {
    display: block !important;
    line-height: 1.3;
    font-weight: 700;
}
.sidebar-wrapper .sidebar-menu ul li.alert_info a span span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu {
    display: none;
    transition: padding-left 0.25s ease;
}
.closemenu .sidebar-wrapper .sidebar-menu .sidebar-submenu {
    padding-left: 0;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu .third_submenu {
    display: none;
    padding-top: 2px;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu li a {
    min-height: inherit;
    background-color: var(--black);
    color: var(--white);
    padding: 10px 40px;
    gap: 2px;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu li a:hover {
    color: var(--primary);
    background-color: rgba(var(--primaryrgb),0.5);
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu li a i {
    font-size: 14px;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu .third_submenu ul li {
    padding: 0 0 0 22px;
    margin-bottom: 10px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu .third_submenu ul li:last-child {
    margin-bottom: 0;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu .third_submenu ul li a {
    gap: 5px;
}
/*  */
.sidebar-wrapper .sidebar-content .sidebar-menu ul li.profile_info {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
}
.sidebar-wrapper .sidebar-content .sidebar-menu ul li.profile_info a span {
    display: block !important;
    line-height: 1.3;
}
.sidebar-wrapper .sidebar-content .sidebar-menu ul li.profile_info a span span {
    font-size: 12px;
    color: var(--text999);
    font-weight: 400;
    display: block;
}
.sidebar-wrapper .sidebar-content .sidebar-menu ul li.profile_info a img {
    width: 36px;
    height: 36px;
    border-radius: 30px;
    opacity: 1;
    object-fit: contain;
    margin: 0;
}
.closemenu .sidebar-wrapper .sidebar-menu > ul > li.profile_info > a {
    padding: 10px 12px;
}
/*------scroll bar---------------------*/
::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: transparent;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #9c9c9c;
}

/*-----------------------------page-wrapper-------------------------------------------------*/
.page-wrapper .sidebar-wrapper .sidebar-content {
    background: var(--black);
}
.page-wrapper .sidebar-wrapper .sidebar-search input.search-menu,
.page-wrapper .sidebar-wrapper .sidebar-search .input-group-text {
    border-color: transparent;
    box-shadow: none;
}
.page-wrapper .sidebar-wrapper .sidebar-header .user-info .user-role,
.page-wrapper .sidebar-wrapper .sidebar-header .user-info .user-status,
.page-wrapper .sidebar-wrapper .sidebar-search input.search-menu,
.page-wrapper .sidebar-wrapper .sidebar-search .input-group-text,
.page-wrapper .sidebar-wrapper .sidebar-brand > a,
.page-wrapper .sidebar-wrapper .sidebar-menu > ul > li > a,
.page-wrapper .sidebar-footer > a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
}
.page-wrapper .sidebar-wrapper .sidebar-menu > ul > li:hover > a,
.page-wrapper .sidebar-wrapper .sidebar-brand > a:hover {
    background-color: var(--primary);
    color: var(--white);
}
.page-wrapper .sidebar-wrapper .sidebar-menu > ul > li.active > a {
    background-color: var(--primary);
    color: var(--white);
}
.page-wrapper .sidebar-wrapper .sidebar-menu li.active > a,
.page-wrapper .sidebar-wrapper .sidebar-menu li .second-submenu.active > a,
.page-wrapper .sidebar-wrapper .sidebar-menu > ul > li ul li:hover > a,
.page-wrapper .sidebar-wrapper ul li:hover a i,
.page-wrapper .sidebar-wrapper .sidebar-menu li.active a i {
    color: var(--white);
}
.badge-primary {
    background-color: var(--primary);
}
.badge-green {
    background-color: var(--red);
}
.badge-danger {
    background-color: var(--red);
}


/*  */
.main_header {
    padding: 27px 30px;
    background-color: var(--primary);
    box-shadow: 14px 2px 14px rgba(0, 0, 0, 0.08);
    min-height: 80px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    flex: 0 0 100%;
    width: 100%;
    max-width: calc(100% - 300px);
    z-index: 120;
}
.main_header .rightMenu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.main_header .rightMenu .icon_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
}
.main_header .rightMenu .icon_menu > li {
    position: relative;
}
.main_header .rightMenu .icon_menu > li > a {
    font-size: 18px;
    color: var(--white);
    min-height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_header .rightMenu .icon_menu > li > a:hover {
    opacity: 1;
    color: var(--secondary);
}
.header_search {
    position: relative;
    width: 340px;
}
.header_search input {
    border: none !important;
    padding-right: 50px !important;
}
.header_search button {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 1;
    padding: 0;
    min-width: inherit;
    width: 42px;
    height: 42px;
    background-color: transparent;
    color: var(--text666) !important;
    font-size: 18px;
}
.header_search button:hover {
    color: var(--primary) !important;
    background-color: rgba(var(--primaryrgb),0.2);
}
.rightMenu .icon_menu > li > a .badge {
    position: absolute;
    top: auto;
    display: inline-block;
    margin: 0;
    transform: translate(50%, -50%);
    color: var(--white);
    background-color: var(--green);
    font-size: 13px;
    min-width: 20px;
    min-height: 20px;
    padding: 0;
    line-height: 20px;
    border-radius: 10px;
}
.page_header {
    width: 100%;
    max-width: calc(100% - 300px);
    margin-left: 300px;
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 2;
    padding: 18px 25px;
    border-bottom: 1px solid #E8E8E8;
    background-color: var(--white);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.page_header h1 {
    margin-bottom: 0;
}
.closemenu .page_header {
    max-width: calc(100% - 60px);
}
.main_body {
    width: 100%;
    max-width: calc(100% - 300px);
    min-height: calc(100vh - 170px);
    margin-left: 300px;
    margin-top: 170px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.main_body .form {
    margin-bottom: 10px;
}
/* profile menu */
.user_profile {
    position: relative;
}
.user_profile .admin_info {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.user_profile .admin_info * {
    line-height: 1;
}
.user_profile .user_img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
}
.user_profile .user_img i {
    font-size: 24px;
    color: var(--white);
    transition: 300ms;
}
.user_profile .user_img i:hover {
    color: var(--secondary);
}

/* menu (the right one) */
.user_menu {
    position: absolute;
    top: calc(100% + 17px);
    right: 0;
    width: 220px;
    min-height: 100px;
    background: var(--white);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: 300ms;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0px 14px rgba(0, 0, 0, .15);
}
.user_menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
/* menu links */
[id*="dpMenu_dd"] ul {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10;
    background: #fff;
    margin-bottom: 0;
    padding: 8px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}
[id*="dpMenu_dd"]ul li {
    list-style: none;
}
[id*="dpMenu_dd"] ul li a {
    text-decoration: none;
    color: var(--textColor);
    display: flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 8px;
}
[id*="dpMenu_dd"] ul li a .badge {
    margin-left: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 11px;
    padding: 3px 6px;
}
[id*="dpMenu_dd"] ul li a:hover {
    color: var(--white);
    background-color: var(--primary);
}
[id*="dpMenu_dd"] ul li a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}
.user_detail {
    padding: 15px;
    color: var(--textColor);
}
.user_detail .avatar {
    width: 46px;
    height: 46px;
    margin-right: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
}
.user_detail div {
    line-height: 1;
}
.admin_info span,
.user_detail .fw-medium {
    font-size: 15px;
    line-height: 1.2;
    display: block;
    user-select: none;
}
.admin_info small,
.user_detail small {
    font-size: 12px;
    line-height: 1;
    color: var(--text999);
    opacity: 0.7;
    user-select: none;
}

/*  */
.main_body .card {
    border-radius: 8px;
    background-color: var(--white);
    border: none;
    box-shadow: 0px 10px 15px rgba(25,25,25, 0.05);
    height: 100%;
    padding: 20px;
}
.main_body .card-body {
    padding: 0;
}
.main_body .card-body p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    color: var(--text666);
}
.main_body .card .card-body p:last-child{
    margin-bottom: 0;
}

/* Radio */
.form-group {
    margin-bottom: 20px;
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-group > label {
    font-weight: 500;
    line-height: 1.2;
    color: #333;
    margin-bottom: 6px !important;
    display: block;
}
label.error,
select> label.error,
.form-group > label.error{
    font-size: 13px;
    color: var(--primary);
    font-weight: 400;
    margin: 5px 0 0 0 !important;
}
.form-group > label span {
    color: var(--primary);
}
.form-group > span {
    font-size: 13px;
    display: block;
    margin-top: 2px;
}
.card h1
.card h2,
.card h3,
.card h4,
.card p {
    margin-bottom: 15px;
}
.card h3 {
    font-size: 20px;
}
.card h4 {
    font-size: 16px;
}
.radiobox {
    display: flex;
    align-items: center;
}
.radiobox label {
    margin: 0 25px 12px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 1.4;
    user-select: none;
}
.radiobox label:last-child {
    margin-right: 0;
}
.radiobox.d-block label:last-child {
    margin: 0;
}
.radiobox .input_radio {
    box-shadow: 0px 0px 0px 1.3px #747474;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 3px solid #fff;
    margin-left: 1px;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.radiobox .input_radio:checked {
    box-shadow: 0px 0px 0px 1.3px #ec2127;
    background-color: #ec2127;
}
.card .checkbox {
    position: relative;
}
.card .checkbox.d-inline {
    margin-right: 20px;
}
.card .checkbox.d-inline:last-child {
    margin-right: 0;
}
.card label + .checkbox {
    padding-top: 5px;
}
.card .checkbox label {
    margin-bottom: 0 !important;
}
.card .checkbox:first-child {
    border-top: none;
    padding-top: 0;
}
.card .checkbox > i {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 34px;
    opacity: 0.3;
    transform: translateY(-50%);
}
.checkbox {
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
}
.checkbox:last-child {
    margin-bottom: 0;
}
.checkbox input[type="checkbox"].styled:checked + label::after {
    display: none;
}
.checkbox input[type="checkbox"] + label {
	display: inline-block;
	line-height: 20px;
    position: relative;
	padding-left: 28px;
    margin-bottom: 0px;
    user-select: none;
    min-width: 20px;
    min-height: 20px;
}
.checkbox input[type="checkbox"] + label {
	cursor: pointer;
    margin-bottom: 5px;
}
.toggle_box .tglabel_text span {
	font-size: 12px;
    color: #747474;
    margin-top: 3px;
}
.toggle_box label {
    cursor: text;
}
.checkbox p {
	font-size: 12px !important;
	line-height: 20px !important;
	padding-left: 30px;
    margin-bottom: 0px !important;
}
.checkbox input[type="checkbox"] + label i {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    font-size: 13px;
}
.checkbox input[type="checkbox"] + label i {
    color: transparent;
}
.checkbox input[type="checkbox"]:checked + label i {
    color: #fff;
}
.checkbox input[type=checkbox] {
    display: none !important;
}
.checkbox input[type="checkbox"] + label::before {
	content: "";
	border: 1px solid #adadad;
	border-radius: 4px;
	display: inline-block;
	width: 20px;
	height: 20px;
	color: transparent;
	transition: .1s;
	font-size: 12px;
	padding-left: 1px;
	text-align: center;
	line-height: 19px;
    font-weight: 400;
    position: absolute;
	left: 0;
	top: 0;
}
.checkbox input[type="checkbox"].border-danger + label::before {
	border-color: #dc3545;
}
.checkbox input[type=checkbox]:checked + label:before {
    background-color: #ec1f27;
    border-color: #ec1f27;
}
/*  */
.multicheckbox {
    max-height: 399px;
    overflow-y: scroll;
}
.multicheckbox ul {
    column-count: 5;
    column-gap: 7px;
    margin-bottom: 0;
}
.multicheckbox ul li {
    margin-bottom: 7px;
}
.multicheckbox ul li .checkbox label {
    margin-bottom: 0;
    font-size: 13px;
    letter-spacing: 0;
}
.ageNumber {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.tb_space {
    margin-top: -15px;
}
.tb_space > div {
    padding-top: 15px;
    padding-bottom: 15px;
}
.tb_space > div .card {
    margin-bottom: 0;
}
hr + .tb_space {
    margin-top: 0;
}
.sm_space {
    margin: 0 -5px;
}
.sm_space > div {
    padding: 0 5px;
}

hr{
    border-color: var(--text999);
}
/*  */
.toggle_box {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
    line-height: 1;
    min-height: 22px;
}
.toggle_box:last-child {
    margin-bottom: 0;
}
.toggle_box .tglabel_text,
.toggle_box label {
    padding-left: 50px;
	display: block;
	line-height: 20px;
    position: relative;
    color: var(--textColor);
    user-select: none;
}
.toggle_box a.tglabel_text:hover {
    color: var(--primary);
}
.toggle_box .togglebtn {
    position: relative;
}
.toggle_box .togglebtn .checkbox_toggle {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    width: 40px;
    height: 22px;
}
.toggle_box .togglebtn .knobs {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: 0.3s ease all;
}
.toggle_box .togglebtn .layer {
    width: 40px;
    height: 22px;
    background-color: rgba(var(--secondaryrgb),0.2);
    transition: 0.3s ease all;
    z-index: 1;
    border-radius: 100px;
    transition: 0.3s ease all;
    position: relative;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}
.toggle_box .togglebtn .knobs:before {
    content: "\f00d";
    font-family: 'Font Awesome 6 Free';
    color: var(--white);
    font-weight: bold;
    background-color: var(--secondary);
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
    transition: 0.3s ease all;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}
.toggle_box .togglebtn .checkbox_toggle:checked + label + .knobs:before,
.toggle_box .togglebtn .checkbox_toggle:checked + .knobs:before {
    left: 4px;
    content: "\f00c";
    background-color: var(--primary);
}
.toggle_box .togglebtn .checkbox_toggle:checked + label ~ .layer,
.toggle_box .togglebtn .checkbox_toggle:checked ~ .layer {
    background-color: #d5eef8;
}
.toggle_box .togglebtn.sm .checkbox_toggle:checked + label + .knobs:before,
.toggle_box .togglebtn.sm .checkbox_toggle:checked + .knobs:before {
    left: 20px;
}

/*  */
.custom_select {
    position: relative;
    flex: 0 0 300px;
}
.custom_select select {
    display: none; /*hide original SELECT element:*/
}
.custom_select .select-selected {
    display: flex;
    align-items: center;
    user-select: none;
    padding: 7px 42px 7px 16px;
    background-color: var(--white);
    border: 1px solid var(--lightgray);
    border-radius: 10px;
    color: var(--black);
    opacity: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    min-height: 46px;
    cursor: pointer;
    letter-spacing: 0;
}
.custom_select .select-selected:after {
    content: '\f107';
    color: var(--textColor);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) rotate(0deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.custom_select .select-selected.select-arrow-active:after {
    transform: translateY(-66%) rotate(180deg);
    top: 56%;
}
.custom_select .select-items {
    position: absolute;
    background-color: var(--white);
    top: calc(100% + 0px);
    left: 0;
    right: 0;
    z-index: 5;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0px 10px 15px rgba(25,25,25, 0.12);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    visibility: visible;
    opacity: 1;
    max-height: 210px;
    overflow-y: scroll;
    border: 1px solid var(--lightgray2);
}
.custom_select .select-items div {
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 8px;
    border: solid transparent;
    cursor: pointer;
    user-select: none;
    border-radius: 8px;
    margin-bottom: 1px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.custom_select .select-items div:hover,
.custom_select .same-as-selected {
    color: var(--primary);
    background-color: rgba(var(--primaryrgb),0.1);
}
.custom_select .select-hide {
    opacity: 0;
    visibility: hidden;
    top: calc(100% + 12px);
}
.dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    vertical-align: middle;
    background: var(--text999);
}
.select-selected {
    display: flex;
    align-items: center;
    gap: 10px;
}
.select-items div {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Colors */
.dot.green  { background: var(--green); }
.dot.blue   { background: var(--primary); }
.dot.yellow { background: var(--yellow); }
.dot.red   { background: var(--red); }


@media(max-width:1600px) {
    .main_body {
        padding: 20px;
    }
    .main_body .card {
        padding: 20px;
    }
    .card .form-group {
        margin-bottom: 15px;
    }
    .card .form-group:last-child {
        margin-bottom: 0;
    }
    .my_btn.sm {
        line-height: 20px;
    }
    input[type="submit"], button[type="submit"], .my_btn {
        font-size: 14px;
        line-height: 26px;
        padding: 8px 20px;
        min-width: 120px;
    }
    .form_styling .bootstrap-tagsinput input {
        padding: 8px 13px !important;
    }
    input[type="color"], input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="month"], input[type="number"], input[type="time"], input[type="url"], input[type="week"], input[type="email"], input[type="search"], input[type="text"], input[type="password"], input[type="tel"], input[type="file"], textarea, select.form-control, select {
        padding: 10px 13px !important;
        font-size: 14px !important;
        line-height: 16px;
    }
    .custom_select .select-selected {
        min-height: 44px;
    }
    .multicheckbox {
        max-height: 300px;
    }
    .multicheckbox ul {
        column-count: 4;
        column-gap: 5px;
    }
    .multicheckbox ul li {
        margin-bottom: 5px;
    }
}
@media(max-width:1199px) {
    .multicheckbox ul {
        column-count: 3;
    }
    .multicheckbox ul li .checkbox label {
        font-size: 12px;
    }
}
@media(max-width:575px) {
    .multicheckbox ul {
        column-count: 2;
        column-gap: 3px;
    }
    .multicheckbox ul li {
        margin-bottom: 3px;
    }
}
@media(max-width:420px) {
    .multicheckbox ul {
        column-count: 1;
    }
}

/* Sidebar Menu Responsive */
.sidebar-wrapper .sidebar-content {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.closemenu .sidebar-wrapper .sidebar-content {
    flex: 0 0 60px;
    width: 60px;
}
.closemenu .sidebar-wrapper .sidebar-content:hover{
    flex: 0 0 300px;
    width: 300px;
}
.closemenu .main_body {
    max-width: calc(100% - 60px);
    margin-left: 60px;
}
.closemenu .sidebar-wrapper .sidebar-content:hover .sidebar-menu .sidebar-dropdown a:after {
    opacity: 1;
    transition: opacity 0.25s ease;
}
.closemenu .sidebar-wrapper .sidebar-content .sidebar-menu .sidebar-submenu .third_submenu ul li {
    padding: 0;
}
.closemenu .sidebar-wrapper .sidebar-content:hover .sidebar-menu .sidebar-submenu .third_submenu ul li {
    padding: 0 0 0 24px;
}
.closemenu .sidebar-wrapper .sidebar-menu .sidebar-dropdown a:after {
    opacity: 0;
}
.closemenu .sidebar-wrapper .sidebar-content .sidebar-menu ul li a span {
    opacity: 0;
}
.closemenu .sidebar-wrapper .sidebar-menu > ul > li > a {
    padding: 8px 18px;
}
.sidebar-wrapper .sidebar-content .sidebar-menu ul li a span,
.closemenu .sidebar-wrapper .sidebar-content:hover .sidebar-menu ul li a span{
    opacity: 1;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}
.sidebar-wrapper button#sideBtn {
    font-size: 18px;
    font-weight: 700;
    position: fixed;
    width: 300px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--primary);
    background-color: var(--white);
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    border-radius: 100%;
    z-index: 13;
    left: 0;
    bottom: 0;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 0;
    padding: 5px 18px;
}
.closemenu .sidebar-wrapper button#sideBtn {
    width: 60px;
    padding: 5px 10px;
    justify-content: center;
}

/* Text animation */
.sidebar-wrapper button#sideBtn span {
    opacity: 1;
    width: 100%;
    text-align: left;
    transform: translateX(0);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-size: 16px;
    font-weight: 600;
}
.closemenu  .sidebar-wrapper button#sideBtn span {
    opacity: 0;
    transform: translateX(-10px);
}
.sidebar-wrapper button#sideBtn i {
    position: absolute;
    top: 50%;
    right: 18px;
    transition: all 0.25s ease-in-out;
    transform: translateY(-50%) scaleX(1);
}
.closemenu .sidebar-wrapper button#sideBtn i {
    transform: translateY(-50%) scaleX(-1);
}

@media(max-width:991px){
    .main_header .rightMenu {
        gap: 15px;
    }
    .main_header .rightMenu .icon_menu {
        gap: 15px;
    }
    .main_header .rightMenu .icon_menu > li > a {
        font-size: 16px;
        min-height: 40px;
    }
    .rightMenu .icon_menu > li > a .badge {
        font-size: 11px;
        min-width: 16px;
        min-height: 16px;
        line-height: 16px;
    }
    .user_profile .user_img {
        width: 36px;
        height: 36px;
    }
    .sidebar-wrapper .sidebar-header {
        padding: 18px 20px 16px 62px;
        width: 300px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main_header {
        padding: 12px 15px;
        min-height: 70px;
    }
    .sidebar-wrapper .sidebar-content {
        flex: 0 0 300px;
        width: 300px;
        left: -300px;
        padding-top: 70px;
    }
    .closemenu .sidebar-wrapper .sidebar-content {
        flex: 0 0 300px;
        width: 300px;
        left: 0;
    }
    .closemenu .sidebar-wrapper .sidebar-menu .sidebar-dropdown a:after,
    .closemenu .sidebar-wrapper .sidebar-content .sidebar-menu ul li a span {
        opacity: 1;
    }
    .sidebar-wrapper .sidebar-menu {
        padding: 10px 10px 20px;
    }
    .closemenu .sidebar-wrapper .sidebar-menu {
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    }
    .closemenu .main_body,
    .main_body {
        padding: 15px;
        max-width: 100%;
        margin-left: 0;
        margin-top: 70px;
    }
    .closemenu .sidebar-wrapper .sidebar-content:hover + button#sideBtn,
    .closemenu .sidebar-wrapper button#sideBtn, .sidebar-wrapper button#sideBtn {
        left: 15px;
        top: 17px;
        width: 36px;
        height: 36px;
        border-radius: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ededed;
    }
    .closemenu .sidebar-wrapper .sidebar-menu .sidebar-submenu,
    .closemenu .sidebar-wrapper .sidebar-content:hover .sidebar-menu .sidebar-submenu {
        padding-left: 22px;
    }
    .sidebar-wrapper button#sideBtn i {
        font-size: 22px;
        color: var(--black);
    }
    .sidebar-wrapper button#sideBtn .fa-chevron-left:before {
        content: "\f0c9";
    }
    .sidebar-wrapper button#sideBtn .fa-chevron-right:before {
        content: "\f00d";
    }
    .page_header {
        margin-bottom: 15px;
    }
    hr {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .radiobox .input_radio {
        flex: 0 0 16px;
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    .checkbox {
        margin-bottom: 5px;
    }
    .checkbox input[type="checkbox"] + label::before {
        width: 16px;
        height: 16px;
    }
    .checkbox input[type="checkbox"] + label i {
        top: 2px;
        left: 3px;
        font-size: 12px;
    }
    .checkbox input[type="checkbox"] + label {
        line-height: 16px;
        padding-left: 22px;
    }
    .my_btn.sm {
        font-size: 13px;
        line-height: 18px;
        padding: 10px 13px;
        min-width: inherit;
    }
    .my_btn i {
        margin-right: 3px;
    }
    .actim_btn .my_btn {
        width: 120px;
    }
    body {
        font-size: 14px;
        overflow-x: hidden;
    }
    .main_body .card .card-body h3 {
        margin-bottom: 8px;
    }
}
@media(max-width:767px){
    .sidebar-wrapper .sidebar-header {
        width: 210px;
        height: 70px;
    }
    .main_header {
        max-width: calc(100% - 210px);
    }
    .form_styling .bootstrap-tagsinput input {
        padding: 6px 10px !important;
    }
    input[type="color"], input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="month"], input[type="number"], input[type="time"], input[type="url"], input[type="week"], input[type="email"], input[type="search"], input[type="text"], input[type="password"], input[type="tel"], input[type="file"], textarea, select.form-control, select {
        padding: 8px 10px !important;
        font-size: 14px !important;
        line-height: 16px;
        -webkit-border-radius: 6px !important;
        -moz-border-radius: 6px !important;
        border-radius: 6px !important;
    }
    input::-moz-placeholder,
    textarea::-moz-placeholder,
    select::-moz-placeholder {
        font-size: 14px;
    }
    input:-ms-input-placeholder,
    textarea:-ms-input-placeholder,
    select:-ms-input-placeholder {
        font-size: 14px;
    }
    input::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder,
    select::-webkit-input-placeholder {
        font-size: 14px;
    }
    .user_detail {
        padding: 10px;
    }
    [id*="dpMenu_dd"] ul li a {
        padding: 5px 8px;
        border-radius: 6px;
    }
    [id*="dpMenu_dd"] ul li a i {
        margin-right: 5px;
    }
}
@media(max-width:575px){
    .main_header .rightMenu .icon_menu {
        display: none;
    }
    .main_header {
        padding: 10px 10px 10px 5px;
        min-height: 60px;
        max-width: calc(100% - 190px);
    }
    .sidebar-wrapper .sidebar-header {
        width: 190px;
        height: 60px;
        padding: 12px 10px 12px 52px;
        box-shadow: none;
    }
    .closemenu .sidebar-wrapper .sidebar-content:hover + button#sideBtn, .closemenu .sidebar-wrapper button#sideBtn, .sidebar-wrapper button#sideBtn {
        left: 10px;
        top: 12px;
    }
    .closemenu .main_body, .main_body {
        margin-top: 60px;
        min-height: inherit;
    }
    .radiobox {
        display: block;
    }
    .radiobox label {
        margin: 0 0 12px 0;
    }
    .my_btn +.my_btn {
        margin-left: 2px;
    }
    .my_btn.sm {
        font-size: 13px;
        line-height: 18px;
        padding: 8px 13px;
        border-radius: 6px;
    }
    .addressInput .textbtn, 
    .form_styling .card .textbtn,
    #productForm .card .textbtn {
        margin-top: -25px;
        font-size: 12px;
        margin-right: 9px;
    }
    input[type="color"], input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="month"], input[type="number"], input[type="time"], input[type="url"], input[type="week"], input[type="email"], input[type="search"], input[type="text"], input[type="password"], input[type="tel"], input[type="file"], textarea, select.form-control, select {
        font-size: 13px !important;
        line-height: 16px;
    }
    input::-moz-placeholder,
    textarea::-moz-placeholder,
    select::-moz-placeholder {
        font-size: 13px;
    }
    input:-ms-input-placeholder,
    textarea:-ms-input-placeholder,
    select:-ms-input-placeholder {
        font-size: 13px;
    }
    input::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder,
    select::-webkit-input-placeholder {
        font-size: 13px;
    }
    .sidebar-wrapper .sidebar-menu ul li a {
        padding: 5px 20px 5px 10px;
        min-height: 34px;
        border-radius: 6px;
        gap: 5px;
    }
    .sidebar-wrapper .sidebar-menu ul li a i {
        margin-top: 0px;
    }
    .closemenu .sidebar-wrapper .sidebar-content:hover .sidebar-menu .sidebar-submenu .third_submenu ul li {
        padding: 0 0 0 19px;
    }
    .main_body .card {
        border-radius: 6px;
    }
    .closemenu .main_body {
        position: relative;
    }
    .main_body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, .3);
        backdrop-filter: blur(4px);
        z-index: 4;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }
    .closemenu .main_body::before {
        width: 100%;
    }
    .sidebar-wrapper .sidebar-content {
        padding-top: 60px;
    }
}
/* min-width */
@media(min-width:576px){
    .mobileshow {
        display: none;
    }
}

.tooltip_wrapper {
    font-size: 20px;
    position: relative;
    display: inline-block;
  }
.tooltip_wrapper .tooltip {
    background-color: var(--primary);
    color: var(--white);
    display: block;
    position: absolute;
    bottom: 100%;
    left: -50%;
    margin-left: 27px;
    width: 250px;
    padding: 10px 12px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px) translateX(-50%);
    transition: all .25s ease-out;
    box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.2);
    font-size: 13px;
}
.tooltip_wrapper:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0px) translateX(-50%);
}
.tooltip_wrapper .tooltip:after {
    content: " ";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -18px;
    border-left: solid transparent 12px;
    border-right: solid transparent 12px;
    border-top: solid var(--primary) 12px;
}
/*  */
.tooltip_wrapper .tooltip.right {
    left: 25px;
    transform: translateY(6px) translateX(-100%);
    margin: 0px;
}
.tooltip_wrapper:hover .tooltip.right {
    left: 25px;
    transform: translateY(0) translateX(-100%);
    margin: 0px;
}
.tooltip_wrapper .tooltip.right:after {
    left: 98%;
}
/*  */
.tooltip_wrapper .tooltip.left {
    left: -10px;
    transform: translateY(6px) translateX(0);
    margin: 0px;
}
.tooltip_wrapper:hover .tooltip.left {
    left: -10px;
    transform: translateY(0) translateX(0);
    margin: 0px;
}
.tooltip_wrapper .tooltip.left:after {
    left: 25px;
}
.tooltip_wrapper .tooltip ul {
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #333333;
}
.tooltip_wrapper .tooltip ul:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.tooltip_wrapper .tooltip ul li {
    display: flex;
    justify-content: space-between;
}
.tooltip_wrapper .tooltip ul li strong {
    min-width: 40px;
    display: inline-block;
    text-align: right;
    margin-left: 10px;
}
@media(max-width:575px){
    .tooltip_wrapper .tooltip {
        width: 240px;
        padding: 8px 10px;
        font-size: 11px;
    }
}
/*  */
.arrow_list {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    margin-bottom: 0;
}
.arrow_list li {
    flex: 0 0 100%;
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
}
.arrow_list li::before {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
}
.arrow_list.col_two li {
    flex: 0 0 50%;
    padding-right: 10px;
}
.arrow_list.col_three li {
    flex: 0 0 33.333%;
    padding-right: 10px;
}
.arrow_list.col_four li {
    flex: 0 0 25%;
    padding-right: 10px;
}
.arrow_list.col_five li {
    flex: 0 0 20%;
    padding-right: 10px;
}
@media(max-width:1199px){
    .arrow_list.col_four li {
        flex: 0 0 33.333%;
    }
    .arrow_list.col_five li {
        flex: 0 0 25%;
    }
}
@media(max-width:767px){
    .arrow_list.col_two li {
        flex: 0 0 100%;
        padding-right: 0;
    }
    .arrow_list.col_three li,
    .arrow_list.col_four li {
        flex: 0 0 50%;
    }
    .arrow_list.col_five li {
        flex: 0 0 33.333%;
    }
}
@media(max-width:575px){
    .arrow_list li {
        padding-left: 14px;
        margin-bottom: 6px;
    }
    .arrow_list.col_three li,
    .arrow_list.col_four li {
        flex: 0 0 100%;
        padding-right: 0;
    }
    .arrow_list.col_five li {
        flex: 0 0 50%;
    }
}
@media(max-width:460px){
    .arrow_list.col_five li {
        flex: 0 0 100%;
        padding-right: 0;
    }
}
/****/


/*************************** Section Styling ***************************/

/* Score Content Box */
.score_content {
    background-color: var(--lightgray2);
    padding: 12px;
    border-radius: 16px;
}
.score_content .row {
    --bs-gutter-x: 0.8rem;
    margin-top: 0;
}
.score_content .row > div {
    margin-top: 0;
}
.score_content .card {
    padding: 12px;
    letter-spacing: 0;
    height: 100%;
    margin: 0;
}
.score_content .card { overflow: visible !important; }
.score_content .card .score_signal {
    width: 16px;
    height: 16px;
    border-radius: 16px;
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 15px;
    background-color: var(--text999);
}
.trend_time {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    
    font-size: 14px;
    padding: 0 0 0 10px;
    color: var(--text999);
    line-height: 1;
    margin-bottom: 10px;
}
.trend_time .custom_select {
    flex: 1;
    min-width: 54px;
}
.trend_time .custom_select .select-selected {
    padding: 4px 25px 4px 10px;
    min-height: 32px;
    border: none;
    background-color: var(--lightgray2);
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    font-weight: 500;
    min-width: 60px;
}
.trend_time .custom_select .select-items,
.trend_time .custom_select .select-items div {
    padding: 3px 6px;
    border-radius: 6px;
}
.trend_time .custom_select .select-items {
    border: 1px solid var(--lightgray2);
}
.score_content .card .select-items::-webkit-scrollbar {
    width: 4px;
}
.score_content .card .select-items::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #cfcfcf;
}
.trend_time .custom_select .select-selected:after {
    font-size: 14px;
    right: 10px;
}
.score_content .card .card-body h4 {
    font-size: 13px;
    color: var(--textColor);
    letter-spacing: 0;
    margin-bottom: 10px;
}
.score_content .card .card-body .score_number {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: end;
    gap: 10px;
    line-height: 38px;
    margin-bottom: 22px;
    margin-top: 22px;
}
.score_content .card .card-body .score_number span {
    font-size: 14px;
    color: var(--text999);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    font-weight: 400;
}
.score_content .card .card-body .score_number span i {
    font-size: 24px;
    line-height: 14px;
}
.score_content .card .card-body p {
    font-size: 16px;
    color: var(--textColor);
    margin-bottom: 10px;
}
.score_content .card .card-body p strong {
    color: var(--primary);
    margin-right: 5px;
}
.score_content .card .card-body small {
    font-size: 12px;
    line-height: 1.2;
}
.score_content .card .card-body small i {
    font-size: 15px;
    line-height: 1.2;
    color: var(--text666);
    margin-left: 2px;
}


/* Stable */
.score_content .card.stable .card-body .score_number span {
    color: var(--green);
}
.score_content .card.stable .score_signal {
    background-color: var(--green);
}

/* Alert Colors */
.score_content .card.alert .card-body .score_number span {
    color: var(--red);
}
.score_content .card.alert .score_signal {
    background-color: var(--red);
}

/* Rise */
.score_content .card.rise .card-body .score_number span {
    color: var(--yellow);
}
.score_content .card.rise .score_signal {
    background-color: var(--yellow);
}

/*  */
.chart-content {
    height: 220px; /* increase this */
}
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 10px;
}
.time-filter {
    display: flex;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}
.time-btn {
    background: none;
    border: none;
    padding: 8px 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: var(--lightgray);
    color: var(--text666);
    line-height: 14px;
    border-right: 1px solid rgba(0,0,0,0.1);
}
.time-btn:last-child {
    border-right: none;
}
.time-btn.active {
    background-color: var(--primary);
    color: white;
}
.chart-content {
    margin-bottom: 10px;
}

/* energy_cta */

/* Custom styles to match the design precisely */
.unrealized-energy-card {
    padding: 30px 50px;
    background-color: var(--lightyellow);
    border-radius: 8px;
    border: 1px solid var(--yellow);
    box-shadow: 0px 10px 15px rgba(25, 25, 25, 0.05);
}
.unrealized-energy-card > .row > div:first-child {
    border-right: 1px solid var(--black);
}
.unrealized-energy-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}
.unrealized-energy-card p {
    margin-bottom: 0;
    font-weight: 500;
}
.unrealized-energy-card h3 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 0;
}
.unrealized-energy-card h3 + p {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
}
.unrealized-energy-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
    text-transform: inherit;
}
.text-orange {
    color: #f39200 !important;
}
.bg-orange {
    background-color: #f39200 !important;
}
.icon-box {
    min-width: 80px;
    height: 80px;
    font-size: 50px;
}
.vertical-divider {
    width: 1px;
    height: 60px;
    background-color: #999;
    opacity: 0.5;
}
.tracking-tight {
    letter-spacing: -0.5px;
}


/* Custom Insight Card Styles */
.insight-card {
    border: 1px solid;
    transition: transform 0.2s;
    padding: 20px;
    border-radius: 8px;
}
/* Specific background tints */
.bg-danger-subtle { background-color: #F4E9E9 !important; }
.bg-warning-subtle { background-color: #F8F0E0 !important; }
.bg-success-subtle { background-color: #E3EEE8 !important; }
/* Border colors */
.bg-danger {background-color: var(--red)!important;}
.border-danger { border-color: var(--red) !important; }
.bg-warning{background-color: var(--yellow)!important;}
.border-warning { border-color: var(--yellow) !important; }
.bg-success{background-color: var(--green)!important;}
.border-success { border-color: var(--green) !important; }
/* Text & Icons */
.text-danger { color: var(--red) !important; }
.text-warning { color: var(--yellow) !important; }
.text-success { color: var(--green) !important; }
.text-primary-emphasis { color: #4F5E84 !important; }
.insight-card hr {
    margin: 15px 0;
}
.insight-card i.text-danger,
.insight-card i.text-success,
.insight-card i.text-warning {
    font-size: 20px;
}
.border-danger hr {
    border-color: var(--red);
}
.border-warning hr {
    border-color: var(--yellow);
}
.border-success hr {
    border-color: var(--green);
}
.insight-card h3 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 0;
}
.insight-card h6 {
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
}
.insight-card .badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
}
.insight-card small {
    flex: 0 0 300px;
    width: 80px;
}
.insight-card > div {
    gap: 10px;
}


/* Custom formatting for the Calculator */
.feedstock h2 {
    text-transform: inherit;
    color: var(--black);
    letter-spacing: 0;
}
.feedstock h3 {
    font-size: 18px;
    text-transform: inherit;
    color: var(--black);
    letter-spacing: 0;
}
.feedstock h4 {
    font-size: 24px;
    text-transform: inherit;
    letter-spacing: 0;
}
.tracking-wide {
    letter-spacing: 0.05rem;
}
.form-control-lg {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}
.btn-primary {
    white-space: nowrap;
    font-size: 0.9rem;
}
.divider-v {
    width: 1px;
    height: 60px;
    background-color: #dee2e6;
}
.copyrights {
    display: flex;
    gap: 35px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.copyrights h2 {
    color: var(--black);
    font-weight: 500;
}
.copyrights * {
    margin-bottom: 0;
}
.copyrights a {
    text-decoration: underline;
}




/*  */
.range-bar {
    display: flex;
    height: 12px;
    border-radius: 6px;
    overflow: visible;
    position: relative;
    margin-bottom: 20px;
}

.segment {
    position: relative;
    height: 100%;
}

.segment:first-child { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
.segment:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }

.segment span {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #999;
    white-space: nowrap;
}

.value-badge {
    position: absolute;
    top: -15px;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.value-badge .marker {
    width: 2px;
    height: 25px;
    background: #333;
    margin: 0 auto;
}

.text-light-gray { color: #dee2e6; }

/* Drag and Drop Visual Feedback */
.sortable-ghost {
    opacity: 0.4;
    background-color: #f8f9fa !important;
}

/* Tab Styling */
.parameters ul.nav-pills {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--lightgray);
    display: inline-flex;
}
.nav-pills .nav-link {
    color: var(--primary) !important;
    background-color: var(--white);
    border-radius: 0;
    font-size: 18px;
    min-width: 130px;
}
.nav-pills .nav-link.active {
    color: var(--white) !important;
    background-color: var(--primary)
}

/* Range Bar & Segments */
.range-bar {
    display: flex;
    height: 16px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 15px;
}
.segment {
    position: relative;
    height: 100%;
}
.segment span {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--text666);
    white-space: nowrap;
}

/* Floating Indicator */
.value-badge {
    position: absolute;
    top: -12px;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
}
.value-badge .marker {
    width: 2px;
    height: 28px;
    background: #333;
    margin: 0 auto;
}

/* Trend Badges */
.trend-badge {
    padding: 8px 12px;
    font-weight: bold;
    font-size: 12px;
    min-width: 88px;
    text-transform: uppercase;
}
.trend-badge.text-success {
    background-color: var(--green) !important;
    color: var(--white) !important;
}
.trend-badge.text-danger {
    background-color: var(--red) !important;
    color: var(--white) !important;
}
.trend-badge.bg-warning {
    background-color: var(--yellow) !important;
    color: var(--white) !important;
}


.text-light-gray { color: #ced4da; }
.draggable-row:hover { background-color: #fafafa !important; }








