/*===========================
		COMMON css
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --bs-blue: 216, 98%, 52%;
    --bs-indigo: 263, 90%, 51%;
    --bs-purple: 261, 51%, 51%;
    --bs-pink: 330, 67%, 52%;
    --bs-red: 354, 70%, 54%;
    --bs-orange: 27, 98%, 54%;
    --bs-yellow: 45, 100%, 51%;
    --bs-green: 152, 69%, 31%;
    --bs-teal: 162, 73%, 46%;
    --bs-cyan: 190, 90%, 50%;
    --bs-white: 0, 0%, 100%;
    --bs-black: 0, 0%, 0%;
    --bs-gray: 208, 7%, 46%;
    --bs-gray-dark: 210, 10%, 23%;
    --bs-gray-100: 225, 40%, 98%;
    --bs-gray-200: 228, 31%, 94%;
    --bs-gray-300: 231, 26%, 89%;
    --bs-gray-400: 233, 23%, 85%;
    --bs-gray-500: 234, 17%, 76%;
    --bs-gray-600: 233, 7%, 55%;
    --bs-gray-700: 233, 7%, 46%;
    --bs-gray-800: 232, 8%, 38%;
    --bs-gray-900: 235, 9%, 25%;

    --bs-primary: 216, 98%, 52%;
    --bs-primary-light-100: 216, 98%, 90%;
    --bs-primary-light-200: 216, 98%, 80%;
    --bs-primary-light-300: 216, 98%, 70%;
    --bs-primary-dark-100: 216, 98%, 25%;
    --bs-primary-dark-200: 216, 98%, 15%;
    --bs-secondary: 208, 7%, 46%;
    --bs-secondary-light-100: 208, 7%, 90%;
    --bs-secondary-light-200: 208, 7%, 80%;
    --bs-secondary-light-300: 208, 7%, 70%;
    --bs-secondary-dark-100: 208, 7%, 25%;
    --bs-secondary-dark-200: 208, 7%, 15%;
    --bs-success: 152, 69%, 31%;
    --bs-success-light-100: 152, 69%, 90%;
    --bs-success-light-200: 152, 69%, 85%;
    --bs-success-light-300: 152, 69%, 80%;
    --bs-info: 194, 67%, 47%;
    --bs-info-light-100: 194, 67%, 90%;
    --bs-info-light-200: 194, 67%, 85%;
    --bs-info-light-300: 194, 67%, 80%;
    --bs-warning: 45, 100%, 51%;
    --bs-warning-light-100: 45, 100%, 90%;
    --bs-warning-light-200: 45, 100%, 85%;
    --bs-warning-light-300: 45, 100%, 80%;
    --bs-danger: 354, 70%, 54%;
    --bs-danger-light-100: 354, 70%, 90%;
    --bs-danger-light-200: 354, 70%, 85%;
    --bs-danger-light-300: 354, 70%, 80%;
    --bs-light: 210, 17%, 98%;
    --bs-light-light-100: 210, 17%, 95%;
    --bs-light-light-200: 210, 17%, 90%;
    --bs-light-light-300: 210, 17%, 85%;
    --bs-dark: 210, 11%, 15%;
    --bs-dark-light-100: 210, 11%, 45%;
    --bs-dark-light-200: 210, 11%, 35%;
    --bs-dark-light-300: 210, 11%, 25%;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, hsla(var(--bs-white), 0.15), hsla(var(--bs-white), 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 14px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: 210, 11%, 15%;
    --bs-body-bg: 210, 40%, 96%;
}

html {
    scroll-behavior: smooth;
    font-size: var(--bs-body-font-size);
}


body {
    font-family: "Inter", sans-serif !important;
    font-weight: normal;
    font-style: normal;
    color: hsl(var(--bs-gray));
    overflow-x: hidden;
    background: hsl(var(--bs-body-bg));
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    text-decoration: none;
    outline: none;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

a { color: hsl(var(--bs-gray-dark));
}

}

a:hover {
    color: hsl(var(--bs-primary));
	transition: all 0.3s ease;
}

button,
a {
	transition: all 0.3s ease;
}

    a,
    a:focus,
    a:hover {
        text-decoration: none;
		transition: all 0.3s ease;
    }

i,
span,
a {
    /*display: inline-block;*/
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    margin: 0px;
}

.img-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.para-width-500 {
    max-width: 500px;
    width: 100%;
}

@media (max-width: 767px) {
    .container {
        padding: 0 30px;
    }
}

/* ========== cart style ========== */
.card-style {
    background: hsl(var(--bs-white));
    box-sizing: border-box;
    padding: 25px 30px;
    position: relative;
    border: 1px solid hsl(var(--bs-gray-200));
    box-shadow: 0px 10px 20px rgba(200, 208, 216, 0.3);
    border-radius: 10px;
}

@media (max-width: 767px) {
    .card-style {
        padding: 20px;
    }
}

.card-style .jvm-zoom-btn {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    right: 30px;
    bottom: 30px;
    cursor: pointer;
}

    .card-style .jvm-zoom-btn.jvm-zoomin {
        bottom: 70px;
    }

.card-style .dropdown-toggle {
    border: none;
    background: none;
}

    .card-style .dropdown-toggle::after {
        display: none;
    }

.card-style .dropdown-menu {
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
}

    .card-style .dropdown-menu li:hover a {
        color: hsl(var(--bs-primary)) !important;
    }

    .card-style .dropdown-menu li a {
        display: block;
    }

/* ======= Border Radius ========= */
.radius-4 {
    border-radius: 4px;
}

.radius-10 {
    border-radius: 10px;
}

.radius-30 {
    border-radius: 30px;
}

.radius-50 {
    border-radius: 50px;
}

.radius-full {
    border-radius: 50%;
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: hsl(var(--bs-primary));
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: hsl(var(--bs-white));
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .scroll-top:hover {
        color: hsl(var(--bs-white));
        background: hsla(var(--bs-primary), 0.8);
    }

.form-control:focus {
    box-shadow: none;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus,
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus,
.form-check-input:focus,
.radio-style.radio-success .form-check-input:focus,
.radio-style.radio-warning .form-check-input:focus,
.radio-style.radio-danger .form-check-input:focus {
    box-shadow: none;
}

.hover-underline:hover {
    text-decoration: underline;
}

/* ============= typography css ============= */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 { color: hsl(var(--bs-gray-dark));
    margin: 0;
	margin-bottom: .5rem;
}

h1,
.h1 {
    font-size: 2.4;
    font-weight: 700;
}

h2,
.h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3,
.h3 {
    font-size: 1.6rem;
    font-weight: 500;
}

h4,
.h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

h5,
.h5 {
    font-size: 1rem;
    font-weight: 700;
}

h6,
.h6 {
    font-size: 1rem;
    font-weight: 600;
}

.text-bold {
    font-weight: 700;
}

.text-semi-bold {
    font-weight: 600;
}

.text-medium {
    font-weight: 500;
}

.text-regular {
    font-weight: 400;
}

.text-light {
    font-weight: 300;
}

.text-sm {
    font-size: 14px;
    line-height: 22px;
}

/* ========== breadcrumb ============ */
.breadcrumb-wrapper {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper {
        justify-content: flex-start;
    }
}

.breadcrumb-wrapper .breadcrumb li {
    font-size: 14px;
    color: hsl(var(--bs-primary));
}

    .breadcrumb-wrapper .breadcrumb li a {
        color: hsl(var(--bs-gray));
    }

        .breadcrumb-wrapper .breadcrumb li a:hover {
            color: hsl(var(--bs-primary));
        }

/* ========== Buttons css ========== */
/* buttons base styles */
.main-btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 15px 45px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
    overflow: hidden;
}

    .main-btn:hover {
        color: inherit;
    }
	
.btn {
    padding: 5px 13px;
    font-weight: 500;
}

.btn-sm {
    padding: 5px 13px;
    font-weight: 400;
}

/* buttons hover effect */
.btn-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .btn-hover::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 0%;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        top: 50%;
        left: 50%;
        padding: 50%;
        z-index: -1;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
        -moz-transform: translate3d(-50%, -50%, 0) scale(0);
        -ms-transform: translate3d(-50%, -50%, 0) scale(0);
        -o-transform: translate3d(-50%, -50%, 0) scale(0);
        transform: translate3d(-50%, -50%, 0) scale(0);
    }

    .btn-hover:hover::after {
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1.3);
        -moz-transform: translate3d(-50%, -50%, 0) scale(1.3);
        -ms-transform: translate3d(-50%, -50%, 0) scale(1.3);
        -o-transform: translate3d(-50%, -50%, 0) scale(1.3);
        transform: translate3d(-50%, -50%, 0) scale(1.3);
    }

/* primary buttons */
.btn-primary,
.primary-btn {
    background: hsl(var(--bs-primary));
    color: hsl(var(--bs-white));
    border-color: hsl(var(--bs-primary));
}
	.btn-primary:hover,
    .primary-btn:hover {
        color: hsl(var(--bs-white));
    	background: hsl(var(--bs-primary-dark-100));
		border-color: hsl(var(--bs-primary-dark-100));
    }

.btn-primary-outline,
.primary-btn-outline {
    background: transparent;
    color: hsl(var(--bs-primary));
    border-color: hsl(var(--bs-primary));
}

	.btn-primary-outline,
    .primary-btn-outline:hover {
        color: hsl(var(--bs-white));
        background: hsl(var(--bs-primary));
    }
	

	.btn-primary:focus, .btn-primary.focus {
	  color: hsl(var(--bs-white));
	  background-color: hsl(var(--bs-primary));
	  border-color: hsl(var(--bs-primary-dark-100));
	  box-shadow: 0 0 0 0.2rem hsla(var(--bs-primary), 0.5);
	}

.btn-primary.disabled, .btn-primary:disabled {
  color: hsl(var(--bs-white));
  background-color: hsl(var(--bs-primary));
  border-color: hsl(var(--bs-primary));
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: hsl(var(--bs-white));
  background-color: hsl(var(--bs-primary-dark-100));
  border-color: hsl(var(--bs-primary-dark-100));
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem hsla(var(--bs-primary), 0.5);
}


.btn-secondary,
.secondary-btn {
    background: hsl(var(--bs-secondary));
    color: hsl(var(--bs-white));
    border-color: hsl(var(--bs-secondary));
}

	.btn-secondary:hover,
	.secondary-btn:hover {
        color: hsl(var(--bs-white));
    	background: hsl(var(--bs-secondary-dark-100));
		border-color: hsl(var(--bs-secondary-dark-100));
	}
	

.btn-secondary-outline,
.secondary-btn-outline {
    background: transparent;
    color: hsl(var(--bs-secondary));
    border-color: hsl(var(--bs-secondary));
}

	.btn-primary-outline,
    .primary-btn-outline:hover {
        color: hsl(var(--bs-white));
        background: hsl(var(--bs-secondary));
    }

.btn-secondary:focus, .btn-secondary.focus,
.secondary-btn:focus, .secondary-btn.focus {
    background: hsl(var(--bs-secondary));
    color: hsl(var(--bs-white));
    border-color: hsl(var(--bs-secondary-dark-100));
	box-shadow: 0 0 0 0.2rem hsla(var(--bs-secondary), 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled,
.secondary-btn.disabled, .secondary-btn:disabled {
    background: var(--bs-secondary-light-300);
    color: hsl(var(--bs-white));
    border-color: hsl(var(--bs-secondary-light-300));
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    background: hsl(var(--bs-secondary));
    color: hsl(var(--bs-white));
    border-color: hsl(var(--bs-secondary));
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem hsla(var(--bs-secondary), 0.5);
}


/* success buttons */
.success-btn {
    background: hsl(var(--bs-success));
    color: hsl(var(--bs-white));
}

    .success-btn:hover {
        color: hsl(var(--bs-white));
    }

.success-btn-outline {
    background: transparent;
    color: hsl(var(--bs-success));
    border-color: hsl(var(--bs-success));
}

    .success-btn-outline:hover {
        color: hsl(var(--bs-white));
        background: hsl(var(--bs-success));
    }

/* danger buttons */
.danger-btn {
    background: hsl(var(--bs-danger));
    color: hsl(var(--bs-white));
}

    .danger-btn:hover {
        color: hsl(var(--bs-white));
    }

.danger-btn-outline {
    background: transparent;
    color: hsl(var(--bs-danger));
    border-color: hsl(var(--bs-danger));
}

    .danger-btn-outline:hover {
        color: hsl(var(--bs-white));
        background: hsl(var(--bs-danger));
    }

/* warning buttons */
.warning-btn {
    background: hsl(var(--bs-warning));
    color: hsl(var(--bs-white));
}

    .warning-btn:hover {
        color: hsl(var(--bs-white));
    }

.warning-btn-outline {
    background: transparent;
    color: hsl(var(--bs-warning));
    border-color: hsl(var(--bs-warning));
}

    .warning-btn-outline:hover {
        color: hsl(var(--bs-white));
        background: hsl(var(--bs-warning));
    }

/* info buttons */
.info-btn {
    background: hsl(var(--bs-green));
    color: hsl(var(--bs-white));
}

    .info-btn:hover {
        color: hsl(var(--bs-white));
    }

.info-btn-outline {
    background: transparent;
    color: hsl(var(--bs-green));
    border-color: hsl(var(--bs-green));
}

    .info-btn-outline:hover {
        color: hsl(var(--bs-white));
        background: hsl(var(--bs-green));
    }

/* dark buttons */
.dark-btn {
    background: hsl(var(--bs-gray-dark));
    color: hsl(var(--bs-white));
}

    .dark-btn:hover {
        color: hsl(var(--bs-white));
    }

.dark-btn-outline {
    background: transparent; color: hsl(var(--bs-gray-dark));
    border-color: hsl(var(--bs-gray-dark));
}

    .dark-btn-outline:hover {
        color: hsl(var(--bs-white));
        background: hsl(var(--bs-gray-dark));
    }

/* light buttons */
.light-btn {
    background: hsl(var(--bs-gray-100)); 
	color: hsl(var(--bs-gray-dark));
}

    .light-btn:hover { color: hsl(var(--bs-gray-dark));
    }

.light-btn-outline {
    background: transparent; color: hsl(var(--bs-gray-dark));
    border-color: hsl(var(--bs-gray-100));
}

    .light-btn-outline:hover { color: hsl(var(--bs-gray-dark));
        background: hsl(var(--bs-gray-100));
    }

/* active buttons */
.active-btn {
    background: hsl(var(--bs-primary));
    color: hsl(var(--bs-white));
}

    .active-btn:hover {
        color: hsl(var(--bs-white));
    }

.active-btn-outline {
    background: transparent;
    color: hsl(var(--bs-primary));
    border-color: hsl(var(--bs-primary));
}

    .active-btn-outline:hover {
        color: hsl(var(--bs-white));
        background: hsl(var(--bs-primary));
    }

/* deactive buttons */
.deactive-btn {
    background: hsl(var(--bs-gray-300));
    color: hsl(var(--bs-primary));
}

    .deactive-btn:hover {
        color: hsl(var(--bs-primary));
    }

.deactive-btn-outline {
    background: transparent;
    color: hsl(var(--bs-primary));
    border-color: hsl(var(--bs-gray-300));
}

    .deactive-btn-outline:hover {
        color: hsl(var(--bs-primary));
        background: hsl(var(--bs-gray-300));
    }

/* =========  square-btn ========= */
.square-btn {
    border-radius: 0px;
}

/* =========  rounded-md ========= */
.rounded-md {
    border-radius: 10px;
}

/* =========  rounded-full ========= */
.rounded-full {
    border-radius: 30px;
}

/* ========== buttons group css ========= */
.buttons-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

    .buttons-group li {
        margin: 10px;
    }


/* ============ alerts css ============ */
.alert-box {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .alert-box {
        padding-left: 0px !important;
    }
}

.alert-box .left {
    max-width: 75px;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: hsl(var(--bs-danger));
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .alert-box .left {
        display: none;
    }
}

.alert-box .left h5 {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: hsl(var(--bs-white));
}

.alert-box .alert {
    margin-bottom: 0px;
    padding: 25px 40px;
}

@media (max-width: 767px) {
    .alert-box .alert {
        padding: 20px;
    }
}

/* Alert Primary */
.primary-alert .left {
    background: hsl(var(--bs-primary));
}

.primary-alert .alert {
    color: hsl(var(--bs-primary));
    border: 1px solid hsl(var(--bs-danger));
    background: hsla(var(--bs-danger), 0.2);
    width: 100%;
}

    .primary-alert .alert .alert-heading {
        color: hsl(var(--bs-primary));
        margin-bottom: 15px;
    }

/* Alert Danger */
.danger-alert .left {
    background: hsl(var(--bs-danger));
}

.danger-alert .alert {
    color: hsl(var(--bs-danger));
    border: 1px solid hsl(var(--bs-danger));
    background: hsla(var(--bs-danger), 0.2);
    width: 100%;
}

    .danger-alert .alert .alert-heading {
        color: hsl(var(--bs-danger));
        margin-bottom: 15px;
    }

/* Alert warning */
.warning-alert .left {
    background: hsl(var(--bs-warning));
}

.warning-alert .alert {
    color: hsl(var(--bs-warning));
    border: 1px solid hsl(var(--bs-warning));
    background: hsla(var(--bs-warning), 0.2);
    width: 100%;
}

    .warning-alert .alert .alert-heading {
        color: hsl(var(--bs-warning));
        margin-bottom: 15px;
    }

/* Alert warning */
.warning-alert .left {
    background: hsl(var(--bs-warning));
}

.warning-alert .alert {
    color: hsl(var(--bs-warning));
    border: 1px solid hsl(var(--bs-warning));
    background: hsla(var(--bs-warning), 0.2);
    width: 100%;
}

    .warning-alert .alert .alert-heading {
        color: hsl(var(--bs-warning));
        margin-bottom: 15px;
    }

/* Alert info */
.info-alert .left {
    background: hsl(var(--bs-green));
}

.info-alert .alert {
    color: hsl(var(--bs-green));
    border: 1px solid hsl(var(--bs-green));
    background: hsla(var(--bs-green), 0.2);
    width: 100%;
}

    .info-alert .alert .alert-heading {
        color: hsl(var(--bs-green));
        margin-bottom: 15px;
    }

/* Alert success */
.success-alert .left {
    background: hsl(var(--bs-success));
}

.success-alert .alert {
    color: hsl(var(--bs-success));
    border: 1px solid hsl(var(--bs-success));
    background: hsla(var(--bs-success), 0.2);
    width: 100%;
}

    .success-alert .alert .alert-heading {
        color: hsl(var(--bs-success));
        margin-bottom: 15px;
    }

/* Alert secondary */
.secondary-alert .left {
    background: hsl(var(--bs-secondary));
}

.secondary-alert .alert {
    color: hsl(var(--bs-secondary));
    border: 1px solid hsl(var(--bs-secondary));
    background: hsla(var(--bs-secondary), 0.2);
    width: 100%;
}

    .secondary-alert .alert .alert-heading {
        color: hsl(var(--bs-secondary));
        margin-bottom: 15px;
    }

/* Alert gray */
.gray-alert .left {
    background: hsl(var(--bs-gray));
}

.gray-alert .alert {
    color: hsl(var(--bs-gray));
    border: 1px solid hsl(var(--bs-gray));
    background: hsla(var(--bs-gray), 0.2);
    width: 100%;
}

    .gray-alert .alert .alert-heading {
        color: hsl(var(--bs-gray));
        margin-bottom: 15px;
    }

/* Alert black */
.black-alert .left {
    background: #000;
}

.black-alert .alert {
    color: #000;
    border: 1px solid hsl(var(--bs-black));
    background: rgba( var(--bs-black), 0.2);
    width: 100%;
}

    .black-alert .alert .alert-heading {
        color: #000;
        margin-bottom: 15px;
    }

/* Alert orange */
.orange-alert .left {
    background: var(--bs-orange);
}

.orange-alert .alert {
    color: var(--bs-orange);
    border: 1px solid var(--bs-orange);
    background: hsla(var(--bs-orange), 0.2);
    width: 100%;
}

    .orange-alert .alert .alert-heading {
        color: var(--bs-orange);
        margin-bottom: 15px;
    }

/* ========== cards css =========== */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: hsl(var(--bs-white));
    background-clip: border-box;
    border: 1px solid hsl(var(--bs-gray-300));
    border-radius: 0.35rem;
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit;
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: calc(0.35rem - 1px);
            border-top-right-radius: calc(0.35rem - 1px);
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: calc(0.35rem - 1px);
            border-bottom-left-radius: calc(0.35rem - 1px);
        }

        .card > .card-header + .list-group,
        .card > .list-group + .card-footer {
            border-top: 0;
        }

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: hsl(var(--bs-light));
    border-bottom: 1px solid hsl(var(--bs-gray-300));
}

    .card-header:first-child {
        border-radius: calc(0.35rem - 1px) calc(0.35rem - 1px) 0 0;
    }

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: hsl(var(--bs-light));
    border-top: 1px solid hsl(var(--bs-gray-300));
}

    .card-footer:last-child {
        border-radius: 0 0 calc(0.35rem - 1px) calc(0.35rem - 1px);
    }

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.35rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
    flex-shrink: 0;
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.35rem - 1px);
    border-top-right-radius: calc(0.35rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.35rem - 1px);
    border-bottom-left-radius: calc(0.35rem - 1px);
}

.card-deck .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-deck {
        display: flex;
        flex-flow: row wrap;
        margin-right: -0.75rem;
        margin-left: -0.75rem;
    }

        .card-deck .card {
            flex: 1 0 0%;
            margin-right: 0.75rem;
            margin-bottom: 0;
            margin-left: 0.75rem;
        }
}

.card-group > .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-img-top,
                .card-group > .card:not(:last-child) .card-header {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:last-child) .card-img-bottom,
                .card-group > .card:not(:last-child) .card-footer {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-img-top,
                .card-group > .card:not(:first-child) .card-header {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:first-child) .card-img-bottom,
                .card-group > .card:not(:first-child) .card-footer {
                    border-bottom-left-radius: 0;
                }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

        .card-columns .card {
            display: inline-block;
            width: 100%;
        }
}

.accordion {
    overflow-anchor: none;
}

    .accordion > .card {
        overflow: hidden;
    }

        .accordion > .card:not(:last-of-type) {
            border-bottom: 0;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .accordion > .card:not(:first-of-type) {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

        .accordion > .card > .card-header {
            border-radius: 0;
            margin-bottom: -1px;
        }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: hsl(var(--bs-gray-300));
    border-radius: 0.35rem;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: left;
        padding-right: 0.5rem;
        color: hsl(var(--bs-gray-600));
        content: "/";
    }

    .breadcrumb-item + .breadcrumb-item:hover::before {
        text-decoration: underline;
    }

    .breadcrumb-item + .breadcrumb-item:hover::before {
        text-decoration: none;
    }

.breadcrumb-item.active {
    color: hsl(var(--bs-gray-600));
}


/* ======= icon-card ======== */
.icon-card {
    display: flex;
    align-items: center;
    background: hsl(var(--bs-white));
    padding: 30px 20px;
    border: 1px solid hsl(var(--bs-gray-300));
    box-shadow: 0 .15rem 1.75rem 0 hsla(var(--bs-gray),.15) !important;
    border-radius: 10px;
}

    .icon-card.icon-card-3 {
        display: block;
        padding: 0px;
    }

        .icon-card.icon-card-3 .card-content {
            display: flex;
            padding: 20px;
            padding-bottom: 0;
        }

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .icon-card h6 {
        font-size: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .icon-card h3 {
        font-size: 20px;
    }
}

.icon-card.icon-card-2 {
    display: block;
}

    .icon-card.icon-card-2 .progress {
        height: 7px;
    }

        .icon-card.icon-card-2 .progress .progress-bar {
            border-radius: 4px;
        }

.icon-card .icon {
    max-width: 46px;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 20px;
    background: hsla(var(--bs-primary), 0.1);
    color: hsl(var(--bs-primary));
    font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .icon-card .icon {
        margin-right: 10px;
    }
}

.icon-card .icon.purple {
    background: hsla(var(--bs-purple), 0.1);
    color: var(--bs-purple);
}

.icon-card .icon.success {
    background: hsla(var(--bs-success), 0.1);
    color: hsl(var(--bs-success));
}

.icon-card .icon.primary {
    background: hsla(var(--bs-primary), 0.1);
    color: hsl(var(--bs-primary));
}

.icon-card .icon.orange {
    background: hsla(var(--bs-orange), 0.1);
    color: var(--bs-orange);
}

.icon-card .icon.opacity-100.purple {
    background: var(--bs-purple);
    color: hsl(var(--bs-white));
}

.icon-card .icon.opacity-100.success {
    background: hsl(var(--bs-success));
    color: hsl(var(--bs-white));
}

.icon-card .icon.opacity-100.primary {
    background: hsl(var(--bs-primary));
    color: hsl(var(--bs-white));
}

.icon-card .icon.opacity-100.orange {
    background: var(--bs-orange);
    color: hsl(var(--bs-white));
}

.icon-card .icon.opacity-100.deep-blue {
    background: var(--bs-blue);
    color: hsl(var(--bs-white));
}

.top-selling-table tr th,
.top-selling-table tr td {
    vertical-align: middle;
    padding: 10px 5px;
}

.top-selling-table tr .min-width {
    min-width: 80px;
    white-space: nowrap;
}

.top-selling-table .form-check-input[type="checkbox"] {
    margin-left: 5px;
}

.top-selling-table .product {
    display: flex;
    align-items: center;
    min-width: 150px;
}

    .top-selling-table .product .image {
        border-radius: 4px;
        overflow: hidden;
        margin-right: 15px;
        max-width: 50px;
        width: 100%;
        height: 50px;
    }

        .top-selling-table .product .image img {
            width: 100%;
        }

    .top-selling-table .product p {
        width: 100%;
    }

@media (max-width: 767px) {
    .referrals-table-card .title .right {
        width: 100%;
    }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
    .referrals-table-card .title .right {
        width: auto;
    }
}

.referrals-table-card .referrals-table td {
    padding: 10px;
}

/* ===== lead-table ===== */
.lead-table th,
.lead-table td {
    padding: 10px 5px;
}

.lead-table .name {
    min-width: 120px;
}

.lead-table .email {
    min-width: 130px;
}

.lead-table .project {
    min-width: 150px;
}

.lead-table .status {
    min-width: 120px;
    text-align: center;
}

.lead-table .action {
    min-width: 60px;
}

.clients-table-card .table .employee-info {
    min-width: 150px;
}

.clients-table th,
.clients-table td {
    padding: 5px;
}

    .clients-table th.min-width,
    .clients-table td.min-width {
        min-width: 150px;
    }

.clients-table .employee-image {
    margin-right: 0px;
}

/* =========== Progress bar css ========== */

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: 0.75rem;
    background-color: hsl(var(--bs-light));
    border-radius: 0.35rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: hsl(var(--bs-white));;
    text-align: center;
    white-space: nowrap;
    background-color: hsl(var(--bs-primary));
    transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, hsla(var(--bs-white), 0.15) 25%, transparent 25%, transparent 50%, hsla(var(--bs-white), 0.15) 50%, hsla(var(--bs-white), 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: 1s linear infinite progress-bar-stripes;
    animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none;
    }
}



@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animated--fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
}


/* =========== Gradient  ========== */

.bg-gradient-primary {
    background-color: hsl(var(--bs-primary));
    background-image: linear-gradient(180deg, var(--bs-primary) 10%, var(--bs-primary-dark-200) 100%);
    background-size: cover;
}

.bg-gradient-secondary {
    background-color: hsl(var(--bs-secondary));
    background-image: linear-gradient(180deg, var(--bs-secondary) 10%, var(--bs-secondary-dark-200) 100%);
    background-size: cover;
}

.bg-gradient-success {
    background-color: hsl(var(--bs-success));
    background-image: linear-gradient(180deg, var(--bs-success) 10%, var(--bs-success-light-200) 100%);
    background-size: cover;
}

.bg-gradient-info {
    background-color: hsl(var(--bs-info));
    background-image: linear-gradient(180deg, var(--bs-info) 10%, var(--bs-info-light-200) 100%);
    background-size: cover;
}

.bg-gradient-warning {
    background-color: hsl(var(--bs-warning));
    background-image: linear-gradient(180deg, var(--bs-warning) 10%, var(--bs-warning-light-200) 100%);
    background-size: cover;
}

.bg-gradient-danger {
    background-color: hsl(var(--bs-danger));
    background-image: linear-gradient(180deg, var(--bs-danger) 10%, var(--bs-danger-light-200) 100%);
    background-size: cover;
}

.bg-gradient-light {
    background-color: hsl(var(--bs-light));
    background-image: linear-gradient(180deg, var(--bs-light) 10%, hsl(var(--bs-light-light-200)) 100%);
    background-size: cover;
}

.bg-gradient-dark {
    background-color: hsl(var(--bs-dark));
    background-image: linear-gradient(180deg, var(--bs-dark) 10%, var(--bs-dark-light-200) 100%);
    background-size: cover;
}

/* =========== form elements css ========== */
/* ===== input style ===== */
.input-style-1 {
    position: relative;
    margin-bottom: 30px;
}

    .input-style-1 label {
        font-size: 14px;
        font-weight: 500; color: hsl(var(--bs-gray-dark));
        display: block;
        margin-bottom: 10px;
    }

    .input-style-1 input,
    .input-style-1 textarea {
        width: 100%;
        background: hsla(var(--bs-gray), 0.5);
        border: 1px solid hsl(var(--bs-gray-200));
        border-radius: 4px;
        padding: 16px;
        color: hsl(var(--bs-gray));
        resize: none;
        transition: all 0.3s;
    }

        .input-style-1 input:focus,
        .input-style-1 textarea:focus {
            border-color: hsl(var(--bs-primary));
            background: hsl(var(--bs-white));
        }

        .input-style-1 input[type="date"], .input-style-1 input[type="time"],
        .input-style-1 textarea[type="date"],
        .input-style-1 textarea[type="time"] {
            background: transparent;
        }

.input-style-2 {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

    .input-style-2 label {
        font-size: 14px;
        font-weight: 500; color: hsl(var(--bs-gray-dark));
        display: block;
        margin-bottom: 10px;
    }

    .input-style-2 input,
    .input-style-2 textarea {
        width: 100%;
        background: hsla(var(--bs-gray), 0.5);
        border: 1px solid hsl(var(--bs-gray-200));
        border-radius: 4px;
        padding: 16px;
        color: hsl(var(--bs-gray));
        resize: none;
        transition: all 0.3s;
    }

        .input-style-2 input:focus,
        .input-style-2 textarea:focus {
            border-color: hsl(var(--bs-primary));
            background: hsl(var(--bs-white));
        }

        .input-style-2 input[type="date"], .input-style-2 input[type="time"],
        .input-style-2 textarea[type="date"],
        .input-style-2 textarea[type="time"] {
            background: transparent;
        }

            .input-style-2 input[type="date"]::-webkit-inner-spin-button,
            .input-style-2 input[type="date"]::-webkit-calendar-picker-indicator {
                opacity: 0;
            }

            .input-style-2 input[type="date"] ~ .icon {
                z-index: -1;
            }

    .input-style-2 .icon {
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 17px;
    }

.input-style-3 {
    position: relative;
    margin-bottom: 30px;
}

    .input-style-3 label {
        font-size: 14px;
        font-weight: 500; color: hsl(var(--bs-gray-dark));
        display: block;
        margin-bottom: 10px;
    }

    .input-style-3 input,
    .input-style-3 textarea {
        width: 100%;
        background: hsla(var(--bs-gray), 0.5);
        border: 1px solid hsl(var(--bs-gray-200));
        border-radius: 4px;
        padding: 16px;
        padding-left: 45px;
        color: hsl(var(--bs-gray));
        resize: none;
        transition: all 0.3s;
    }

        .input-style-3 input:focus,
        .input-style-3 textarea:focus {
            border-color: hsl(var(--bs-primary));
            background: hsl(var(--bs-white));
        }

    .input-style-3 .icon {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        padding: 16px;
    }

/* ========= select style ========== */
.select-style-1 {
    margin-bottom: 30px;
}

    .select-style-1 label {
        font-size: 14px;
        font-weight: 500; color: hsl(var(--bs-gray-dark));
        display: block;
        margin-bottom: 10px;
    }

    .select-style-1 .select-position {
        position: relative;
    }

        .select-style-1 .select-position::after {
            border-bottom: 2px solid var(--bs-gray);
            border-right: 2px solid var(--bs-gray);
            content: "";
            display: block;
            height: 10px;
            width: 10px;
            margin-top: -5px;
            pointer-events: none;
            position: absolute;
            right: 16px;
            top: 50%;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: all 0.15s ease-in-out;
            transition: all 0.15s ease-in-out;
        }

        .select-style-1 .select-position.select-sm::after {
            margin-top: -8px;
        }

        .select-style-1 .select-position.select-sm select {
            padding-top: 8px;
            padding-bottom: 8px;
            font-size: 14px;
        }

        .select-style-1 .select-position select {
            width: 100%;
            background: transparent;
            border: 1px solid hsl(var(--bs-gray-200));
            border-radius: 10px;
            padding: 16px;
            padding-right: 38px;
            color: hsl(var(--bs-gray));
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

            .select-style-1 .select-position select:focus {
                border-color: hsl(var(--bs-primary));
                outline: none;
            }

            .select-style-1 .select-position select.light-bg {
                background: hsla(var(--bs-gray), 0.5);
            }

                .select-style-1 .select-position select.light-bg:focus {
                    background: hsl(var(--bs-white));
                }

            .select-style-1 .select-position select.radius-30 {
                border-radius: 30px;
            }

.select-style-2 {
    margin-bottom: 30px;
}

    .select-style-2 .select-position {
        position: relative;
    }

        .select-style-2 .select-position.select-sm::after {
            margin-top: -8px;
        }

        .select-style-2 .select-position.select-sm::before {
            margin-top: 0;
        }

        .select-style-2 .select-position.select-sm select {
            padding-top: 8px;
            padding-bottom: 8px;
            font-size: 14px;
        }

        .select-style-2 .select-position::before, .select-style-2 .select-position::after {
            content: "";
            display: block;
            height: 8px;
            width: 8px;
            pointer-events: none;
            position: absolute;
            right: 16px;
            top: 50%;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: all 0.15s ease-in-out;
            transition: all 0.15s ease-in-out;
        }

        .select-style-2 .select-position::before {
            margin-top: 0px;
            border-bottom: 1px solid var(--bs-gray);
            border-right: 1px solid var(--bs-gray);
        }

        .select-style-2 .select-position::after {
            margin-top: -8px;
            border-top: 1px solid var(--bs-gray);
            border-left: 1px solid var(--bs-gray);
        }

        .select-style-2 .select-position select {
            width: 100%;
            background: transparent;
            border: 1px solid hsl(var(--bs-gray-200));
            border-radius: 10px;
            padding: 16px;
            padding-right: 38px;
            color: hsl(var(--bs-gray));
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

            .select-style-2 .select-position select:focus {
                border-color: hsl(var(--bs-primary));
                outline: none;
            }

            .select-style-2 .select-position select.light-bg {
                background: rgba(239, 239, 239, 0.5);
            }

                .select-style-2 .select-position select.light-bg:focus {
                    background: hsl(var(--bs-white));
                }

            .select-style-2 .select-position select.select-sm {
                padding-top: 8px;
                padding-bottom: 8px;
                font-size: 14px;
            }

.select-style-3 {
    margin-bottom: 30px;
}

    .select-style-3 .select-position {
        position: relative;
    }

        .select-style-3 .select-position::after {
            border-bottom: 2px solid var(--bs-gray);
            border-right: 2px solid var(--bs-gray);
            content: "";
            display: block;
            height: 10px;
            width: 10px;
            margin-top: -7px;
            pointer-events: none;
            position: absolute;
            right: 0px;
            top: 50%;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: all 0.15s ease-in-out;
            transition: all 0.15s ease-in-out;
        }

        .select-style-3 .select-position.select-sm::after {
            margin-top: -8px;
        }

        .select-style-3 .select-position.select-sm select {
            padding-top: 8px;
            padding-bottom: 8px;
            font-size: 14px;
        }

        .select-style-3 .select-position select {
            width: 100%;
            background: transparent;
            border: transparent;
            border-radius: 10px;
            padding-right: 38px;
            color: var(--bs-black);
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

            .select-style-3 .select-position select:focus {
                border-color: hsl(var(--bs-primary));
                outline: none;
            }

            .select-style-3 .select-position select.light-bg {
                background: hsla(var(--bs-gray), 0.5);
            }

.toggle-switch {
    padding-left: 60px;
    min-height: 30px;
}

    .toggle-switch .form-check-input {
        width: 50px;
        height: 28px;
        margin-left: -60px;
        cursor: pointer;
    }

    .toggle-switch label {
        margin-top: 6px;
        font-size: 14px; color: hsl(var(--bs-gray-dark));
        cursor: pointer;
        user-select: none;
    }

.checkbox-style {
    padding-left: 40px;
    min-height: 28px;
}

    .checkbox-style .form-check-input {
        width: 28px;
        height: 28px;
        border-radius: 4px;
        margin-left: -40px;
        cursor: pointer;
    }

        .checkbox-style .form-check-input:disabled {
            cursor: auto;
        }

            .checkbox-style .form-check-input:disabled ~ label {
                cursor: auto;
            }

    .checkbox-style label {
        margin-top: 6px;
        cursor: pointer;
        user-select: none;
    }

    .checkbox-style.checkbox-success .form-check-input:checked {
        background-color: hsl(var(--bs-success));
        border-color: hsl(var(--bs-success));
    }

    .checkbox-style.checkbox-warning .form-check-input:checked {
        background-color: hsl(var(--bs-warning));
        border-color: hsl(var(--bs-warning));
    }

    .checkbox-style.checkbox-danger .form-check-input:checked {
        background-color: hsl(var(--bs-danger));
        border-color: hsl(var(--bs-danger));
    }

.radio-style {
    padding-left: 40px;
    min-height: 28px;
}

    .radio-style .form-check-input {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        margin-left: -40px;
        cursor: pointer;
    }

        .radio-style .form-check-input:disabled {
            cursor: auto;
        }

            .radio-style .form-check-input:disabled ~ label {
                cursor: auto;
            }

    .radio-style label {
        margin-top: 6px;
        cursor: pointer;
        user-select: none;
    }

    .radio-style.radio-success .form-check-input:checked {
        background-color: hsl(var(--bs-success));
        border-color: hsl(var(--bs-success));
    }

    .radio-style.radio-warning .form-check-input:checked {
        background-color: hsl(var(--bs-warning));
        border-color: hsl(var(--bs-warning));
    }

    .radio-style.radio-danger .form-check-input:checked {
        background-color: hsl(var(--bs-danger));
        border-color: hsl(var(--bs-danger));
    }

@media (max-width: 767px) {
    .button-group .main-btn {
        width: 100%;
    }
}

.buy-sell-form .input-group {
    display: flex;
}

    .buy-sell-form .input-group input {
        width: 60%;
        background: transparent;
        border: 1px solid hsl(var(--bs-gray-200));
        border-radius: 4px;
        padding: 8px 16px;
        font-size: 14px;
        color: hsl(var(--bs-gray));
    }

        .buy-sell-form .input-group input:focus {
            border-color: hsl(var(--bs-primary));
        }

    .buy-sell-form .input-group .select-style-1 {
        width: 40%;
    }

        .buy-sell-form .input-group .select-style-1 .select-position::after {
            width: 8px;
            height: 8px;
        }

    .buy-sell-form .input-group select {
        border: 1px solid hsl(var(--bs-gray-200));
        border-radius: 0px 4px 4px 0px;
        padding: 8px 16px;
        padding-right: 24px;
        font-size: 14px;
        color: hsl(var(--bs-gray));
    }

.buy-sell-form .buy-sell-btn .main-btn {
    display: block;
    width: 100%;
    font-weight: 500;
}

    .buy-sell-form .buy-sell-btn .main-btn:hover {
        box-shadow: 0px 5px 20px hsla(var(--bs-black), 0.1);
    }

    .buy-sell-form .buy-sell-btn .main-btn.success-btn {
        background: hsl(var(--bs-success));
    }

    .buy-sell-form .buy-sell-btn .main-btn.danger-btn {
        background: hsl(var(--bs-danger));
    }

.buy-sell-form .field-group-2 label {
    font-size: 12px;
}

.buy-sell-form .field-group-2 .input-group input {
    font-size: 12px;
    width: 70%;
}

.buy-sell-form .field-group-2 .input-group span {
    font-size: 12px;
    padding: 8px 16px;
    width: 30%;
    background: hsl(var(--bs-gray-200));
    text-align: center;
    border-radius: 0px 4px 4px 0px;
    border: 1px solid hsl(var(--bs-gray-200));
}

.buy-sell-form .input-group-2 label {
    font-size: 12px;
    color: hsl(var(--bs-gray));
    margin-bottom: 8px;
    display: block;
}

.buy-sell-form .input-group-2 .select-position::after {
    width: 8px;
    height: 8px;
}

.buy-sell-form .input-group-2 select {
    padding: 8px 12px;
    font-size: 12px;
    color: hsl(var(--bs-gray));
    border: 1px solid hsl(var(--bs-gray-200));
    border-radius: 4px;
    width: 100%;
}

/* ============= Input group ============= */

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control,
    .input-group > .form-control-plaintext,
    .input-group > .custom-select,
    .input-group > .custom-file {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        margin-bottom: 0;
    }

        .input-group > .form-control + .form-control,
        .input-group > .form-control + .custom-select,
        .input-group > .form-control + .custom-file,
        .input-group > .form-control-plaintext + .form-control,
        .input-group > .form-control-plaintext + .custom-select,
        .input-group > .form-control-plaintext + .custom-file,
        .input-group > .custom-select + .form-control,
        .input-group > .custom-select + .custom-select,
        .input-group > .custom-select + .custom-file,
        .input-group > .custom-file + .form-control,
        .input-group > .custom-file + .custom-select,
        .input-group > .custom-file + .custom-file {
            margin-left: -1px;
        }

        .input-group > .form-control:focus,
        .input-group > .custom-select:focus,
        .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
            z-index: 3;
        }

        .input-group > .custom-file .custom-file-input:focus {
            z-index: 4;
        }

        .input-group > .form-control:not(:first-child),
        .input-group > .custom-select:not(:first-child) {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

    .input-group > .custom-file {
        display: flex;
        align-items: center;
    }

        .input-group > .custom-file:not(:last-child) .custom-file-label,
        .input-group > .custom-file:not(:first-child) .custom-file-label {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

    .input-group:not(.has-validation) > .form-control:not(:last-child),
    .input-group:not(.has-validation) > .custom-select:not(:last-child),
    .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input-group.has-validation > .form-control:nth-last-child(n + 3),
    .input-group.has-validation > .custom-select:nth-last-child(n + 3),
    .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.input-group-prepend,
.input-group-append {
    display: flex;
}

    .input-group-prepend .btn,
    .input-group-append .btn {
        position: relative;
        z-index: 2;
    }

        .input-group-prepend .btn:focus,
        .input-group-append .btn:focus {
            z-index: 3;
        }

        .input-group-prepend .btn + .btn,
        .input-group-prepend .btn + .input-group-text,
        .input-group-prepend .input-group-text + .input-group-text,
        .input-group-prepend .input-group-text + .btn,
        .input-group-append .btn + .btn,
        .input-group-append .btn + .input-group-text,
        .input-group-append .input-group-text + .input-group-text,
        .input-group-append .input-group-text + .btn {
            margin-left: -1px;
        }

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append {
    margin-left: -1px;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: hsl(var(--bs-gray-700));
    text-align: center;
    white-space: nowrap;
    background-color: hsl(var(--bs-gray-100));
    border: 1px solid hsl(var(--bs-gray-200));
    border-radius: 0.35rem;
}

    .input-group-text input[type="radio"],
    .input-group-text input[type="checkbox"] {
        margin-top: 0;
    }

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
    height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
    height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
    padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .input-group-btn > .btn,
.input-group > .input-group-btn > .input-group-text,
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* ============= notification css ============= */
.single-notification {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--bs-gray-100);
}

    .single-notification.readed {
        opacity: 0.7;
    }

    .single-notification:first-child {
        padding-top: 0px;
    }

    .single-notification:last-child {
        padding-bottom: 0px;
        border-bottom: 0px;
    }

    .single-notification .checkbox {
        max-width: 50px;
        width: 100%;
        padding-top: 10px;
    }

@media (max-width: 767px) {
    .single-notification .checkbox {
        display: none;
    }
}

.single-notification .checkbox input {
    background-color: hsl(var(--bs-gray-100));
    border-color: hsl(var(--bs-gray-200));
}

    .single-notification .checkbox input:checked {
        background-color: hsl(var(--bs-primary));
        border-color: hsl(var(--bs-primary));
    }

.single-notification .notification {
    display: flex;
    width: 100%;
}

@media (max-width: 767px) {
    .single-notification .notification {
        flex-direction: column;
    }
}

.single-notification .notification .image {
    max-width: 50px;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    color: hsl(var(--bs-white));
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-right: 15px;
}

@media (max-width: 767px) {
    .single-notification .notification .image {
        margin-bottom: 15px;
    }
}

.single-notification .notification .image img {
    width: 100%;
}

.single-notification .notification .content {
    display: block;
    max-width: 800px;
}

    .single-notification .notification .content h6 {
        margin-bottom: 15px;
    }

    .single-notification .notification .content p {
        margin-bottom: 10px;
    }

.single-notification .action {
    display: inline-flex;
    justify-content: flex-end;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .single-notification .action {
        display: none;
    }
}

.single-notification .action button {
    border: none;
    background: transparent;
    color: hsl(var(--bs-gray));
    margin-left: 20px;
    font-size: 18px;
}

    .single-notification .action button.delete-btn:hover {
        color: hsl(var(--bs-danger));
    }

.single-notification .action .dropdown-toggle::after {
    display: none;
}

/* ========== header css ========== */
.header {
    padding: 5px 0;
    background: hsl(var(--bs-white));
}

    .header .header-left .menu-toggle-btn .main-btn {
        padding: 0px 15px;
        height: 46px;
        line-height: 46px;
        border-radius: 10px;
    }

    .header .header-left .header-search form {
        max-width: 270px;
        position: relative;
    }

        .header .header-left .header-search form input {
            width: 100%;
            border: 1px solid var(--bs-gray-100);
            background: hsla(var(--bs-gray), 0.5);
            border-radius: 10px;
            height: 46px;
            padding-left: 44px;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

            .header .header-left .header-search form input:focus {
                border-color: hsl(var(--bs-primary));
                background: hsl(var(--bs-white));
            }

        .header .header-left .header-search form button {
            position: absolute;
            border: none;
            background: transparent;
            left: 16px;
            top: 0;
            height: 46px;
            color: hsl(var(--bs-gray));
            font-weight: 700;
        }

    .header .header-right {
        display: flex;
        justify-content: flex-end;
    }

        .header .header-right button {
            border: 1px solid var(--bs-gray-100);
            background: hsla(var(--bs-gray), 0.5);
            border-radius: 10px;
            height: 46px;
            width: 46px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

            .header .header-right button::after {
                display: none;
            }

            .header .header-right button span {
            }

        .header .header-right .dropdown-menu {
            width: 350px;
            border: 1px solid var(--bs-gray-100);
            padding: 10px 10px;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
            top: 24px !important;
            right: 0;
            position: absolute;
            transform: translate3d(0px, 60px, 0px);
            border-radius: 10px;
        }

            .header .header-right .dropdown-menu li {
                padding: 3px 0px;
                -webkit-transition: all 0.3s ease-out 0s;
                -moz-transition: all 0.3s ease-out 0s;
                -ms-transition: all 0.3s ease-out 0s;
                -o-transition: all 0.3s ease-out 0s;
                transition: all 0.3s ease-out 0s;
                border-bottom: 1px solid var(--bs-gray-100);
                position: relative;
                z-index: 2;
            }

                .header .header-right .dropdown-menu li:hover a {
                    color: hsl(var(--bs-primary));
                    background: hsla(var(--bs-primary), 0.05);
                }

                .header .header-right .dropdown-menu li:last-child {
                    border-bottom: none;
                }

                .header .header-right .dropdown-menu li a {
                    padding: 8px 12px;
                    display: flex;
                    color: rgba(0, 0, 0, 0.7);
                    border-radius: 6px;
                }

                    .header .header-right .dropdown-menu li a .image {
                        max-width: 35px;
                        width: 100%;
                        height: 35px;
                        border-radius: 50%;
                        overflow: hidden;
                        margin-right: 12px;
                    }

                        .header .header-right .dropdown-menu li a .image img {
                            width: 100%;
                        }

                    .header .header-right .dropdown-menu li a .content {
                        width: 100%;
                    }

                        .header .header-right .dropdown-menu li a .content h6 {
                            font-size: 14px;
                            margin-bottom: 5px;
                            font-weight: 600;
                            line-height: 1;
                        }

                        .header .header-right .dropdown-menu li a .content p {
                            font-size: 14px;
                            color: rgba(0, 0, 0, 0.7);
                            margin-bottom: 0px;
                            line-height: 1.4;
                        }

                        .header .header-right .dropdown-menu li a .content span {
                            font-size: 12px;
                            color: rgba(0, 0, 0, 0.5);
                        }

        .header .header-right .dropdown-box {
            position: relative;
        }

        .header .header-right .notification-box,
        .header .header-right .header-message-box {
            position: relative;
        }

            .header .header-right .notification-box .dropdown-menu.dropdown-menu-end {
                transform: translate3d(0px, 60px, 0px);
            }

            .header .header-right .header-message-box .dropdown-menu.dropdown-menu-end {
                transform: translate3d(0px, 60px, 0px);
            }

        .header .header-right .profile-box {
            display: flex;
            position: relative;
        }

            .header .header-right .profile-box button {
                width: auto;
            }

            .header .header-right .profile-box .dropdown-menu {
                width: 230px;
            }

                .header .header-right .profile-box .dropdown-menu.dropdown-menu-end {
                    transform: translate3d(0px, 60px, 0px);
                }

                .header .header-right .profile-box .dropdown-menu li {
                    border-bottom: none;
                }

                    .header .header-right .profile-box .dropdown-menu li a {
                        font-size: 14px;
                        display: flex;
                        align-items: center;
                    }

                        .header .header-right .profile-box .dropdown-menu li a i {
                            margin-right: 15px;
                            font-weight: 700;
                        }

            .header .header-right .profile-box .profile-info {
                margin: 0 5px;
            }

                .header .header-right .profile-box .profile-info .info {
                    display: flex;
                    align-items: center;
                }

                    .header .header-right .profile-box .profile-info .info .image {
                        border: 2px solid #f9f9f9;
                        -webkit-box-shadow: 0px 21px 25px rgba(218, 223, 227, 0.8);
                        -moz-box-shadow: 0px 21px 25px rgba(218, 223, 227, 0.8);
                        box-shadow: 0px 21px 25px rgba(218, 223, 227, 0.8);
                        width: 46px;
                        height: 46px;
                        border-radius: 50%;
                        margin-left: 16px;
                        position: relative;
                    }

                        .header .header-right .profile-box .profile-info .info .image .status {
                            width: 16px;
                            height: 16px;
                            border-radius: 50%;
                            border: 2px solid hsl(var(--bs-gray-200));
                            background: hsl(var(--bs-success));
                            position: absolute;
                            bottom: 0;
                            right: 0;
                            top: auto;
                        }

                        .header .header-right .profile-box .profile-info .info .image img {
                            width: 100%;
                            border-radius: 50%;
                        }

/* ========== Dashboards css ================= */
@media (max-width: 767px) {
    #doughnutChart1 {
        height: 250px !important;
    }
}

.legend3 li {
    margin-right: 25px;
}

    .legend3 li div {
        white-space: nowrap;
    }

    .legend3 li .bg-color {
        position: relative;
        margin-left: 12px;
        border-radius: 50%;
    }

        .legend3 li .bg-color::after {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: inherit;
            left: -12px;
            top: 5px;
        }

    .legend3 li .text {
        margin-left: 10px;
    }

        .legend3 li .text p {
            display: flex;
            align-items: center;
            width: 100%;
        }

.todo-list-wrapper ul li.todo-list-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    margin-bottom: 25px;
}

    .todo-list-wrapper ul li.todo-list-item:last-child {
        margin-bottom: 0px;
    }

    .todo-list-wrapper ul li.todo-list-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
    }

@media (max-width: 767px) {
    .todo-list-wrapper ul li.todo-list-item {
        display: block;
    }

        .todo-list-wrapper ul li.todo-list-item .todo-status {
            margin-top: 20px;
        }
}

.todo-list-wrapper ul li.todo-list-item.success::before {
    background: hsl(var(--bs-success));
}

.todo-list-wrapper ul li.todo-list-item.primary::before {
    background: hsl(var(--bs-primary));
}

.todo-list-wrapper ul li.todo-list-item.orange::before {
    background: var(--bs-orange);
}

.todo-list-wrapper ul li.todo-list-item.danger::before {
    background: hsl(var(--bs-danger));
}

/* ============ signin css ============= */
.auth-row {
    background: hsl(var(--bs-white));
    border-radius: 4px;
    overflow: hidden;
}

.auth-cover-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    position: relative;
    z-index: 1;
    height: 100%;
}

@media (max-width: 767px) {
    .auth-cover-wrapper {
        padding: 30px 20px;
    }
}

.auth-cover-wrapper .auth-cover .title {
    text-align: cover;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .auth-cover-wrapper .auth-cover .title h1 {
        font-size: 24px;
    }
}

.auth-cover-wrapper .auth-cover .cover-image {
    max-width: 100%;
    margin: auto;
}

    .auth-cover-wrapper .auth-cover .cover-image img {
        width: 100%;
    }

.auth-cover-wrapper .auth-cover .shape-image {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 5%;
}

.signin-wrapper {
    background: hsl(var(--bs-white));
    padding: 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signin-wrapper {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .signin-wrapper {
        padding: 30px;
    }
}

.signin-wrapper .form-wrapper {
    width: 100%;
}

.signin-wrapper .singin-option button {
    font-size: 16px;
    font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .signin-wrapper .singin-option button {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signin-wrapper .singin-option button {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .signin-wrapper .singin-option button {
        width: 100%;
    }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
    .signin-wrapper .singin-option button {
        width: auto;
    }
}

.signin-wrapper .singin-option a:hover {
    text-decoration: underline;
}

/* ============ signup css ============= */
.auth-row {
    background: hsl(var(--bs-white));
    border-radius: 4px;
    overflow: hidden;
}

.auth-cover-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    position: relative;
    z-index: 1;
    height: 100%;
}

@media (max-width: 767px) {
    .auth-cover-wrapper {
        padding: 30px 20px;
    }
}

.auth-cover-wrapper .auth-cover .title {
    text-align: cover;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .auth-cover-wrapper .auth-cover .title h1 {
        font-size: 24px;
    }
}

.auth-cover-wrapper .auth-cover .cover-image {
    max-width: 100%;
    margin: auto;
}

    .auth-cover-wrapper .auth-cover .cover-image img {
        width: 100%;
    }

.auth-cover-wrapper .auth-cover .shape-image {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 5%;
}

.signup-wrapper {
    background: hsl(var(--bs-white));
    padding: 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signup-wrapper {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .signup-wrapper {
        padding: 30px;
    }
}

.signup-wrapper .form-wrapper {
    width: 100%;
}

.signup-wrapper .singup-option button {
    font-size: 16px;
    font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .signup-wrapper .singup-option button {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signup-wrapper .singup-option button {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .signup-wrapper .singup-option button {
        width: 100%;
    }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
    .signup-wrapper .singup-option button {
        width: auto;
    }
}

.signup-wrapper .singup-option a:hover {
    text-decoration: underline;
}

/* =========== settings css ============== */
.settings-card-1 .profile-info .profile-image {
    max-width: 75px;
    width: 100%;
    height: 75px;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

    .settings-card-1 .profile-info .profile-image img {
        width: 100%;
        border-radius: 50%;
    }

    .settings-card-1 .profile-info .profile-image .update-image {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 30px;
        height: 30px;
        background: hsl(var(--bs-gray-100));
        border: 2px solid var(--bs-white);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        cursor: pointer;
        z-index: 99;
    }

        .settings-card-1 .profile-info .profile-image .update-image:hover {
            opacity: 0.9;
        }

        .settings-card-1 .profile-info .profile-image .update-image input {
            opacity: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            cursor: pointer;
            z-index: 99;
        }

        .settings-card-1 .profile-info .profile-image .update-image label {
            cursor: pointer;
            z-index: 99;
        }

/* =========== Invoice Css ============= */
.invoice-card .invoice-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .invoice-card .invoice-header {
        flex-direction: column;
    }
}

.invoice-card .invoice-header .invoice-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .invoice-card .invoice-header .invoice-logo {
        order: -1;
        margin-bottom: 30px;
    }
}

.invoice-card .invoice-header .invoice-logo img {
    width: 100%;
}

@media (max-width: 767px) {
    .invoice-card .invoice-header .invoice-date {
        margin-top: 30px;
    }
}

.invoice-card .invoice-header .invoice-date p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

    .invoice-card .invoice-header .invoice-date p span {
        font-weight: 500;
    }

.invoice-card .invoice-address {
    padding-top: 30px;
    display: flex;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .invoice-card .invoice-address {
        display: block;
    }
}

.invoice-card .invoice-address .address-item {
    margin-right: 30px;
    min-width: 250px;
}

    .invoice-card .invoice-address .address-item h5 {
        margin-bottom: 15px;
    }

    .invoice-card .invoice-address .address-item h1 {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .invoice-card .invoice-address .address-item p {
        margin-bottom: 10px;
    }

@media (max-width: 767px) {
    .invoice-card .invoice-action ul li {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .invoice-card .invoice-action ul li a {
        width: 100%;
    }
}

.invoice-table th,
.invoice-table td {
    padding: 10px 8px;
}

.invoice-table .service {
    min-width: 150px;
}

.invoice-table .desc {
    min-width: 150px;
}

.invoice-table .qty {
    min-width: 150px;
}

.invoice-table .amount {
    min-width: 100px;
}

/* ============== Icons Css ===========*/
.icons-wrapper .icons,
.icons-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

    .icons-wrapper .icons > div,
    .icons-wrapper .icons li,
    .icons-wrapper ul > div,
    .icons-wrapper ul li {
        display: flex;
        align-items: center;
        margin: 10px;
        flex-basis: 215px;
    }

@media (max-width: 400px) {
    .icons-wrapper .icons > div,
    .icons-wrapper .icons li,
    .icons-wrapper ul > div,
    .icons-wrapper ul li {
        flex-basis: 100%;
    }
}

.icons-wrapper .icons > div i,
.icons-wrapper .icons li i,
.icons-wrapper ul > div i,
.icons-wrapper ul li i {
    max-width: 45px;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-gray-100);
    border-radius: 4px;
    background: transparent; color: hsl(var(--bs-gray-dark));
    font-size: 20px;
    margin-right: 10px;
}

.icons-wrapper .icons > div span,
.icons-wrapper .icons li span,
.icons-wrapper ul > div span,
.icons-wrapper ul li span { color: hsl(var(--bs-gray-dark));
    user-select: all;
}

/* ============ Calendar Css ============= */
.calendar-card .fc {
    height: 450px;
}

    .calendar-card .fc#calendar-full {
        height: 600px;
    }

    .calendar-card .fc table {
        border: none;
    }

    .calendar-card .fc .fc-toolbar-title {
        font-size: 16px;
        font-weight: 500;
    }

    .calendar-card .fc .fc-button {
        background: transparent;
        border: none;
        color: hsl(var(--bs-gray));
        text-transform: capitalize;
    }

        .calendar-card .fc .fc-button:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
            color: hsl(var(--bs-primary));
        }

    .calendar-card .fc th {
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-right: 0px;
    }

        .calendar-card .fc th a {
            color: hsl(var(--bs-gray));
            font-weight: 400;
        }

    .calendar-card .fc .fc-day {
        border-width: 4px;
        background: hsl(var(--bs-white));
    }

        .calendar-card .fc .fc-day.fc-day-today .fc-daygrid-day-frame {
            background: hsla(var(--bs-primary), 0.8);
        }

            .calendar-card .fc .fc-day.fc-day-today .fc-daygrid-day-frame a {
                color: hsl(var(--bs-white));
            }

        .calendar-card .fc .fc-day .fc-daygrid-day-frame {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            background: #f9f9f9;
            border-radius: 6px;
        }

            .calendar-card .fc .fc-day .fc-daygrid-day-frame a {
                color: hsl(var(--bs-gray));
            }

.calendar-card .fc-theme-standard td,
.calendar-card .fc-theme-standard th {
    border-color: transparent;
}


/* =========== Sidebar css =========== */

.dropdown .dropdown-menu {
    font-size: 0.85rem;
}

    .dropdown .dropdown-menu .dropdown-header {
        font-weight: 800;
        font-size: 0.65rem;
        color: #b7b9cc;
    }

.dropdown.no-arrow .dropdown-toggle::after {
    display: none;
}

.sidebar .nav-item .dropdown-toggle::after,
.topbar .nav-item .dropdown-toggle::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: normal;
    content: '\F286';
    font-family: bootstrap-icons !important;
}

.sidebar .nav-item .dropdown-toggle.show::after,
.topbar .nav-item .dropdown-toggle.show::after {
    content: '\F282';
}

.sidebar .nav-item .nav-link,
.topbar .nav-item .nav-link {
    position: relative;
}

    .sidebar .nav-item .nav-link .badge-counter,
    .topbar .nav-item .nav-link .badge-counter {
        position: absolute;
        transform: scale(0.7);
        transform-origin: top right;
        right: .25rem;
        margin-top: -.25rem;
    }

    .sidebar .nav-item .nav-link .img-profile,
    .topbar .nav-item .nav-link .img-profile {
        height: 2.5rem;
        width: 2.5rem;
        font-size: 24px;
    }

.topbar {
    height: 4.375rem;
}

.navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.topbar #sidebarToggleTop {
    height: 2.5rem;
    width: 2.5rem;
    padding: 0;
    font-size: 24px;
}

    .topbar #sidebarToggleTop span {
        font-size: 0.65rem;
        display: none;
    }

    .topbar #sidebarToggleTop:hover {
        background-color: hsl(var(--bs-gray-100));
    }

    .topbar #sidebarToggleTop:active {
        background-color: hsl(var(--bs-gray-300));
    }

.topbar .navbar-search {
    width: 25rem;
}

    .topbar .navbar-search input {
        font-size: 0.85rem;
        height: auto;
    }

.topbar .topbar-divider {
    width: 0;
    border-right: 1px solid #e3e6f0;
    height: calc(4.375rem - 2rem);
    margin: auto 1rem;
}

.topbar .nav-item .nav-link {
    height: 4.375rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
}

    .topbar .nav-item .nav-link:focus {
        outline: none;
    }

.topbar .nav-item:focus {
    outline: none;
}

.topbar .dropdown {
    position: static;
}

    .topbar .dropdown .dropdown-menu {
        width: calc(100% - 1.5rem);
        right: 0.75rem;
    }

.topbar .dropdown-list {
    padding: 0;
    border: none;
    overflow: hidden;
}

    .topbar .dropdown-list .dropdown-header {
        background-color: #4e73df;
        border: 1px solid #4e73df;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        color: hsl(var(--bs-white));
    }

    .topbar .dropdown-list .dropdown-item {
        white-space: normal;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        border-left: 1px solid #e3e6f0;
        border-right: 1px solid #e3e6f0;
        border-bottom: 1px solid #e3e6f0;
        line-height: 1.3rem;
    }

        .topbar .dropdown-list .dropdown-item .dropdown-list-image {
            position: relative;
            height: 2.5rem;
            width: 2.5rem;
        }

            .topbar .dropdown-list .dropdown-item .dropdown-list-image img {
                height: 2.5rem;
                width: 2.5rem;
            }

            .topbar .dropdown-list .dropdown-item .dropdown-list-image .status-indicator {
                background-color: hsl(var(--bs-gray-100));
                height: 0.75rem;
                width: 0.75rem;
                border-radius: 100%;
                position: absolute;
                bottom: 0;
                right: 0;
                border: 0.125rem solid var(--bs-white);
            }

        .topbar .dropdown-list .dropdown-item .text-truncate {
            max-width: 10rem;
        }

        .topbar .dropdown-list .dropdown-item:active {
            background-color: hsl(var(--bs-gray-100));
            color: #3a3b45;
        }

@media (min-width: 576px) {
    .topbar .dropdown {
        position: relative;
    }

        .topbar .dropdown .dropdown-menu {
            width: auto;
            right: 0;
        }

    .topbar .dropdown-list {
        width: 20rem !important;
    }

        .topbar .dropdown-list .dropdown-item .text-truncate {
            max-width: 13.375rem;
        }
}

.topbar.navbar-dark .navbar-nav .nav-item .nav-link {
    color: hsla(var(--bs-white), 0.8);
}

    .topbar.navbar-dark .navbar-nav .nav-item .nav-link:hover {
        color: hsl(var(--bs-white));
    }

    .topbar.navbar-dark .navbar-nav .nav-item .nav-link:active {
        color: hsl(var(--bs-white));
    }

.topbar.navbar-light .navbar-nav .nav-item .nav-link {
    color: #d1d3e2;
}

    .topbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
        color: #b7b9cc;
    }

    .topbar.navbar-light .navbar-nav .nav-item .nav-link:active {
        color: #858796;
    }



.sidebar-dark {
    background-color: hsl(var(--bs-dark));
}

.sidebar-light {
    background-color: hsl(var(--bs-light));
}


/*Sidebar*/

.sidebar {
    width: 6.5rem;
    min-height: 100vh;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

    .sidebar .nav-item {
        position: relative;
    }

        .sidebar .nav-item:last-child {
            margin-bottom: 1rem;
        }

        .sidebar .nav-item .nav-link {
            text-align: center;
            padding: 0.75rem 1rem;
            width: 6.5rem;
        }

            .sidebar .nav-item .nav-link span {
                font-size: 0.65rem;
                display: block;
            }

        .sidebar .nav-item.active .nav-link {
            font-weight: 700;
        }

        .sidebar .nav-item .dropdown-menu {
            position: absolute;
            left: calc(6.5rem + 1.5rem / 2);
            z-index: 1;
            top: 2px;
        }

            .sidebar .nav-item .dropdown-menu .collapse-inner {
                border-radius: 0.35rem;
                box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
            }

        .sidebar .nav-item .collapsing {
            display: none;
            transition: none;
        }

            .sidebar .nav-item .dropdown-menu .collapse-inner,
            .sidebar .nav-item .collapsing .collapse-inner {
                padding: .5rem 0;
                min-width: 10rem;
                font-size: 0.85rem;
                margin: 0 0 1rem 0;
            }

                .sidebar .nav-item .dropdown-menu .collapse-inner .collapse-header,
                .sidebar .nav-item .collapsing .collapse-inner .collapse-header {
                    margin: 0;
                    white-space: nowrap;
                    padding: .5rem 1.5rem;
                    text-transform: uppercase;
                    font-weight: 800;
                    font-size: 0.65rem;
                    color: hsl(var(--bs-gray-500));
                }

                .sidebar .nav-item .dropdown-menu .collapse-inner .collapse-item,
                .sidebar .nav-item .collapsing .collapse-inner .collapse-item {
                    padding: 0;
                    margin: 0 0.5rem;
                    display: block;
                    color: hsl(var(--bs-gray-900));
                    text-decoration: none;
                    border-radius: 0.35rem;
                    white-space: nowrap;
                }

                    .sidebar .nav-item .dropdown-menu .collapse-inner .collapse-item:hover,
                    .sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
                        background-color: hsl(var(--bs-gray-100));
                    }

                    .sidebar .nav-item .dropdown-menu .collapse-inner .collapse-item:active,
                    .sidebar .nav-item .collapsing .collapse-inner .collapse-item:active {
                        background-color: hsl(var(--bs-gray-300));
                    }

                    .sidebar .nav-item .dropdown-menu .collapse-inner .collapse-item.active,
                    .sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
                        color: hsl(var(--bs-primary));
                        font-weight: 700;
                    }

    .sidebar #sidebarToggle {
        width: 2.5rem;
        height: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
        cursor: pointer;
    }

        .sidebar #sidebarToggle::after {
            font-weight: normal;
            content: '\F284';
            font-family: bootstrap-icons !important;
            margin-right: 0.1rem;
        }

        .sidebar #sidebarToggle:hover {
            text-decoration: none;
        }

        .sidebar #sidebarToggle:focus {
            outline: none;
        }

    .sidebar.toggled {
        width: 0 !important;
        overflow: hidden;
        z-index: 5;
    }

    .sidebar.toggled.expanded {
        overflow: visible;
        width: 6.5rem !important;
    }

    .sidebar .nav-item .dropdown-toggle::after {
        content: none;
    }

    .sidebar .nav-item .dropdown-toggle.show::after {
        content: none;
    }

        .sidebar.toggled .nav-item .dropdown-menu {
            position: absolute;
            left: calc(4.0rem + 1.5rem / 2) !important;
            padding: 0 3.000rem;
            transform: initial !important;
            z-index: 1;
            top: 2px;
            -webkit-animation-name: growIn;
            animation-name: growIn;
            -webkit-animation-duration: 200ms;
            animation-duration: 200ms;
            -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
            animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
            background: transparent;
            border: 0;
            min-width: 275px;
        }

            .sidebar.toggled .nav-item .dropdown-menu .collapse-inner {
                box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
                border-radius: 0.35rem;
            }

        .sidebar.toggled .nav-item .collapsing {
            display: none;
            transition: none;
        }

        .sidebar.toggled #sidebarToggle::after {
            content: '\F285';
            font-family: bootstrap-icons !important;
            margin-left: 0.25rem;
        }

        .sidebar.toggled .sidebar-card {
            display: none;
        }

    .sidebar .sidebar-brand {
        height: 4.375rem;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 800;
        padding: 1.5rem 1rem;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.05rem;
        z-index: 1;
    }

        .sidebar .sidebar-brand .sidebar-brand-icon i {
            font-size: 2rem;
        }

        .sidebar .sidebar-brand .sidebar-brand-text {
            display: none;
        }

    .sidebar hr.sidebar-divider {
        margin: 0 1rem 1rem;
    }

    .sidebar .sidebar-heading {
        text-align: center;
        padding: 0 1rem;
        font-weight: 800;
        font-size: 0.65rem;
    }

    .sidebar .sidebar-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.875rem;
        border-radius: 0.35rem;
        color: hsla(var(--bs-white), 0.8);
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 1rem;
        padding: 1rem;
        background-color: rgba(0, 0, 0, 0.1);
    }

        .sidebar .sidebar-card .sidebar-card-illustration {
            height: 3rem;
            display: block;
        }

        .sidebar .sidebar-card .sidebar-card-title {
            font-weight: bold;
        }

        .sidebar .sidebar-card p {
            font-size: 0.75rem;
            color: hsla(var(--bs-white), 0.5);
        }

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
    .sidebar .nav-item > .dropdown-menu {
        display: none;
    }

    .sidebar .nav-item:hover > .nav-link {
    }

    .sidebar .nav-item:hover > .dropdown-menu {
        display: block;
        position: absolute;
        left: calc(4.0rem + 1.5rem / 2) !important;
        padding: 0 3.000rem;
        transform: initial !important;
        z-index: 1;
        top: 2px;
        -webkit-animation-name: growIn;
        animation-name: growIn;
        -webkit-animation-duration: 200ms;
        animation-duration: 200ms;
        -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
        animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
        background: transparent;
        border: 0;
        min-width: 275px;
    }

    .sidebar .nav-item > .dropdown-menu {
        margin-top: 0;
    }
}
/* ============ desktop view .end// ============ */


@media (min-width: 768px) {
    .sidebar {
        width: 14rem !important;
    }

        .sidebar .nav-item .dropdown-menu {
            position: relative;
            left: 0;
            z-index: 1;
            top: 0;
            -webkit-animation: none;
            animation: none;
        }

            .sidebar .nav-item .dropdown-menu .collapse-inner {
                border-radius: 0;
                box-shadow: none;
            }

        .sidebar .nav-item .collapsing {
            display: block;
            transition: height 0.15s ease;
        }

        .sidebar .nav-item .dropdown-menu,
        .sidebar .nav-item .collapsing {
            margin: 0 1rem;
        }

        .sidebar .nav-item .nav-link {
            display: block;
            width: 100%;
            text-align: left;
            padding: 1rem;
            width: 14rem;
        }

            .sidebar .nav-item .nav-link i {
                font-size: 1.00rem;
                margin-right: 0.25rem;
            }

            .sidebar .nav-item .nav-link span {
                font-size: 0.85rem;
                display: inline;
            }

            .sidebar .nav-item .nav-link[data-bs-toggle="dropdown"]::after {
                width: 1rem;
                text-align: center;
                float: right;
                vertical-align: 0;
                border: 0;
                font-weight: normal;
                content: '\F286';
                font-family: bootstrap-icons !important;
            }

            .sidebar .nav-item .nav-link[data-bs-toggle="dropdown"].collapsed::after {
                content: '\F282';
            }

        .sidebar.toggled .nav-item .nav-link[data-bs-toggle="dropdown"]::after {
            content: none;
        }

        .sidebar .sidebar-heading {
            text-align: left;
        }

        .sidebar.toggled {
            overflow: visible;
            width: 6.5rem !important;
        }

            .sidebar.toggled .nav-item .dropdown-menu {
                position: absolute;
                left: calc(4.0rem + 1.5rem / 2) !important;
                padding: 0 3.000rem;
                transform: initial !important;
                z-index: 1;
                top: 2px;
                -webkit-animation-name: growIn;
                animation-name: growIn;
                -webkit-animation-duration: 200ms;
                animation-duration: 200ms;
                -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
                animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
                background: transparent;
                border: 0;
                min-width: 275px;
            }

                .sidebar.toggled .nav-item .dropdown-menu .collapse-inner {
                    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
                    border-radius: 0.35rem;
                }

            .sidebar.toggled .nav-item .collapsing {
                display: none;
                transition: none;
            }

            .sidebar.toggled .nav-item .dropdown-menu,
            .sidebar.toggled .nav-item .collapsing {
                margin: 0;
            }

            .sidebar.toggled .nav-item:last-child {
                margin-bottom: 1rem;
            }

            .sidebar.toggled .nav-item .nav-link {
                text-align: center;
                padding: 0.75rem 1rem;
                width: 6.5rem;
            }

                .sidebar.toggled .nav-item .nav-link span {
                    font-size: 0.65rem;
                    display: block;
                }

                .sidebar.toggled .nav-item .nav-link i {
                    margin-right: 0;
                }

                .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
                    display: none;
                }

            .sidebar.toggled .sidebar-heading {
                text-align: center;
            }
}

.sidebar-light hr.sidebar-divider {
    border-top: 1px solid var(--bs-gray-100);
}

.sidebar-light .sidebar-heading {
    color: #b7b9cc;
}

.sidebar-light .nav-item .nav-link {
    color: #858796;
}

    .sidebar-light .nav-item .nav-link i {
        color: #d1d3e2;
    }

    .sidebar-light .nav-item .nav-link:active, .sidebar-light .nav-item .nav-link:focus, .sidebar-light .nav-item .nav-link:hover {
        color: hsl(var(--bs-gray-700));
    }

        .sidebar-light .nav-item .nav-link:active i, .sidebar-light .nav-item .nav-link:focus i, .sidebar-light .nav-item .nav-link:hover i {
            color: hsl(var(--bs-gray-700));
        }

    .sidebar-light .nav-item .nav-link[data-toggle="collapse"]::after {
        color: #b7b9cc;
    }

.sidebar-light .nav-item.active .nav-link {
    color: hsl(var(--bs-gray-700));
}

    .sidebar-light .nav-item.active .nav-link i {
        color: hsl(var(--bs-gray-700));
    }

.sidebar-light #sidebarToggle {
    background-color: hsl(var(--bs-gray-100));
}

    .sidebar-light #sidebarToggle::after {
        color: #b7b9cc;
    }

    .sidebar-light #sidebarToggle:hover {
        background-color: #dddfeb;
    }


.sidebar-dark hr.sidebar-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-dark .sidebar-heading {
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-dark .nav-item .nav-link {
    color: hsla(var(--bs-white), 0.8);
}

    .sidebar-dark .nav-item .nav-link i {
        color: rgba(255, 255, 255, 0.3);
    }

    .sidebar-dark .nav-item .nav-link:active, .sidebar-dark .nav-item .nav-link:focus, .sidebar-dark .nav-item .nav-link:hover,
    .sidebar-dark .nav-item:hover > .nav-link {
        color: hsl(var(--bs-white));
    }

        .sidebar-dark .nav-item .nav-link:active i, .sidebar-dark .nav-item .nav-link:focus i, .sidebar-dark .nav-item .nav-link:hover i,
        .sidebar-dark .nav-item:hover > .nav-link i {
            color: hsl(var(--bs-white));
        }

    .sidebar-dark .nav-item .nav-link[data-bs-toggle="dropdown"]::after {
        color: hsla(var(--bs-white), 0.5);
    }

.sidebar-dark .nav-item.active .nav-link {
    color: hsl(var(--bs-white));
}

    .sidebar-dark .nav-item.active .nav-link i {
        color: hsl(var(--bs-white));
    }


.sidebar-dark.toggled .nav-item .dropdown-menu .collapse-inner {
    background-color: hsl(var(--bs-gray-800));
    background-image: linear-gradient(180deg, hsl(var(--bs-gray-800)) 10%, hsl(var(--bs-gray-900)) 100%);
    background-size: cover;
}

    .sidebar-dark.toggled .dropdown-menu::after .collapse-inner {
        color: hsla(var(--bs-white),0.5); 
    }

    .sidebar-dark.toggled .dropdown-menu:hover .collapse-inner {
        background-color: hsl(var(--bs-secondary));
    }


.sidebar-dark.toggled .dropdown-menu .collapse-inner .dropdown-item, 
.sidebar-dark.toggled .nav-item .collapsing .collapse-inner .dropdown-item {
    color: hsla(var(--bs-white),0.8);
}

.sidebar-dark.toggled .dropdown-menu .collapse-inner .dropdown-item:hover, 
.sidebar-dark.toggled .nav-item .collapsing .collapse-inner .dropdown-item:hover {
    color: hsl(var(--bs-white));
	background-color: transparent;
}

.sidebar-dark.toggled .dropdown-menu .collapse-inner .collapse-item:hover,
.sidebar-dark.toggled .collapsing .collapse-inner .collapse-item:hover {
	background-color: hsla(var(--bs-gray-200),0.2);
}

.sidebar-dark.toggled .dropdown-menu .collapse-inner .collapse-item:hover a,
.sidebar-dark.toggled .collapsing .collapse-inner .collapse-item:hover a{
	color: hsl(var(--bs-white));
}

.sidebar-dark.toggled .dropdown-menu .collapse-inner .collapse-item:active,
.sidebar-dark.toggled .collapsing .collapse-inner .collapse-item:active {
	background-color: hsla(var(--bs-gray-200),0.2);
}

.sidebar-dark.toggled .dropdown-menu .collapse-inner .collapse-item.active,
.sidebar-dark.toggled .collapsing .collapse-inner .collapse-item.active {
	color: hsl(var(--bs-primary));
	font-weight: 700;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 11;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 1400px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .overlay {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1599px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .overlay.active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

.main-wrapper {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    min-height: 100vh;
    position: relative;
    display: flex;
}

@media only screen and (min-width: 992px) and (max-width: 1600px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .main-wrapper {
    }
}

@media (max-width: 767px) {
    .main-wrapper {
        padding-bottom: 110px;
    }
}

.main-wrapper.active {
    margin-left: 0px;
}

.main-wrapper .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 767px) {
    .main-wrapper .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.main-wrapper footer {
    padding: 20px 0;
    justify-items: flex-end;
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 1;
    font-size: 10px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .main-wrapper footer .terms {
        margin-bottom: 10px;
        text-align: center;
    }
}

.main-wrapper footer .terms a {
    color: hsl(var(--bs-gray));
}


/* Content-wrapper */
#wrapper #content-wrapper {
    width: 100%;
    overflow-x: hidden;
}

    #wrapper #content-wrapper #content {
        flex: 1 0 auto;
    }

/* Footer */
body.sidebar-toggled footer.sticky-footer {
    width: 100%;
}

footer.sticky-footer {
    padding: 1rem 0;
    flex-shrink: 0;
}

.promo-box {
    box-shadow: 0px 10px 20px rgba(200, 208, 216, 0.3);
    padding: 24px 16px;
    text-align: center;
    max-width: 210px;
    margin: 0 auto;
    margin-top: 32px;
    border-radius: 4px;
}

    .promo-box h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .promo-box p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .promo-box .main-btn {
        padding: 12px;
        width: 100%;
    }

/* ========== DEFAULT CSS ======== */
/* ======= Margin Top ======= */
.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

.mt-205 {
    margin-top: 205px;
}

.mt-210 {
    margin-top: 210px;
}

.mt-215 {
    margin-top: 215px;
}

.mt-220 {
    margin-top: 220px;
}

.mt-225 {
    margin-top: 225px;
}

/* ======= Margin Bottom ======= */
.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

.mb-205 {
    margin-bottom: 205px;
}

.mb-210 {
    margin-bottom: 210px;
}

.mb-215 {
    margin-bottom: 215px;
}

.mb-220 {
    margin-bottom: 220px;
}

.mb-225 {
    margin-bottom: 225px;
}

/* ======= Margin Left ======= */
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

.ml-205 {
    margin-left: 205px;
}

.ml-210 {
    margin-left: 210px;
}

.ml-215 {
    margin-left: 215px;
}

.ml-220 {
    margin-left: 220px;
}

.ml-225 {
    margin-left: 225px;
}

/* ======= Margin Right ======= */
.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}

.mr-205 {
    margin-right: 205px;
}

.mr-210 {
    margin-right: 210px;
}

.mr-215 {
    margin-right: 215px;
}

.mr-220 {
    margin-right: 220px;
}

.mr-225 {
    margin-right: 225px;
}

/* ======= Padding Top ======= */
.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

.pt-205 {
    padding-top: 205px;
}

.pt-210 {
    padding-top: 210px;
}

.pt-215 {
    padding-top: 215px;
}

.pt-220 {
    padding-top: 220px;
}

.pt-225 {
    padding-top: 225px;
}

/* ======= Padding Bottom ======= */
.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

.pb-205 {
    padding-bottom: 205px;
}

.pb-210 {
    padding-bottom: 210px;
}

.pb-215 {
    padding-bottom: 215px;
}

.pb-220 {
    padding-bottom: 220px;
}

.pb-225 {
    padding-bottom: 225px;
}

/* ======= Padding Left ======= */
.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}

.pl-205 {
    padding-left: 205px;
}

.pl-210 {
    padding-left: 210px;
}

.pl-215 {
    padding-left: 215px;
}

.pl-220 {
    padding-left: 220px;
}

.pl-225 {
    padding-left: 225px;
}

/* ======= Padding Right ======= */
.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}

.pr-205 {
    padding-right: 205px;
}

.pr-210 {
    padding-right: 210px;
}

.pr-215 {
    padding-right: 215px;
}

.pr-220 {
    padding-right: 220px;
}

.pr-225 {
    padding-right: 225px;
}

/* ======= bg-primary shades ========= */
.bg-primary {
    background: hsl(var(--bs-primary));
}

.bg-primary-100 {
    background: hsla(var(--bs-primary), 0.1);
}

.bg-primary-200 {
    background: hsla(var(--bs-primary), 0.2);
}

.bg-primary-300 {
    background: hsla(var(--bs-primary), 0.3);
}

.bg-primary-400 {
    background: hsla(var(--bs-primary), 0.4);
}

.bg-primary-500 {
    background: hsla(var(--bs-primary), 0.5);
}

.bg-primary-600 {
    background: hsla(var(--bs-primary), 0.6);
}

.bg-primary-700 {
    background: hsla(var(--bs-primary), 0.7);
}

.bg-primary-800 {
    background: hsla(var(--bs-primary), 0.8);
}

.bg-primary-900 {
    background: hsla(var(--bs-primary), 0.9);
}

/* ======= bg-secondary shades ========= */
.bg-secondary-100 {
    background: hsla(var(--bs-secondary), 0.1);
}

.bg-secondary-200 {
    background: hsla(var(--bs-secondary), 0.2);
}

.bg-secondary-300 {
    background: hsla(var(--bs-secondary), 0.3);
}

.bg-secondary-400 {
    background: hsla(var(--bs-secondary), 0.4);
}

.bg-secondary-500 {
    background: hsla(var(--bs-secondary), 0.5);
}

.bg-secondary-600 {
    background: hsla(var(--bs-secondary), 0.6);
}

.bg-secondary-700 {
    background: hsla(var(--bs-secondary), 0.7);
}

.bg-secondary-800 {
    background: hsla(var(--bs-secondary), 0.8);
}

.bg-secondary-900 {
    background: hsla(var(--bs-secondary), 0.9);
}

/* ======= bg-success shades ========= */
.bg-success-100 {
    background: hsla(var(--bs-success), 0.1);
}

.bg-success-200 {
    background: hsla(var(--bs-success), 0.2);
}

.bg-success-300 {
    background: hsla(var(--bs-success), 0.3);
}

.bg-success-400 {
    background: hsla(var(--bs-success), 0.4);
}

.bg-success-500 {
    background: hsla(var(--bs-success), 0.5);
}

.bg-success-600 {
    background: hsla(var(--bs-success), 0.6);
}

.bg-success-700 {
    background: hsla(var(--bs-success), 0.7);
}

.bg-success-800 {
    background: hsla(var(--bs-success), 0.8);
}

.bg-success-900 {
    background: hsla(var(--bs-success), 0.9);
}

/* ======= bg-danger shades ========= */
.bg-danger-100 {
    background: hsla(var(--bs-danger), 0.1);
}

.bg-danger-200 {
    background: hsla(var(--bs-danger), 0.2);
}

.bg-danger-300 {
    background: hsla(var(--bs-danger), 0.3);
}

.bg-danger-400 {
    background: hsla(var(--bs-danger), 0.4);
}

.bg-danger-500 {
    background: hsla(var(--bs-danger), 0.5);
}

.bg-danger-600 {
    background: hsla(var(--bs-danger), 0.6);
}

.bg-danger-700 {
    background: hsla(var(--bs-danger), 0.7);
}

.bg-danger-800 {
    background: hsla(var(--bs-danger), 0.8);
}

.bg-danger-900 {
    background: hsla(var(--bs-danger), 0.9);
}

/* ======= bg-warning shades ========= */
.bg-warning-100 {
    background: hsla(var(--bs-warning), 0.1);
}

.bg-warning-200 {
    background: hsla(var(--bs-warning), 0.2);
}

.bg-warning-300 {
    background: hsla(var(--bs-warning), 0.3);
}

.bg-warning-400 {
    background: hsla(var(--bs-warning), 0.4);
}

.bg-warning-500 {
    background: hsla(var(--bs-warning), 0.5);
}

.bg-warning-600 {
    background: hsla(var(--bs-warning), 0.6);
}

.bg-warning-700 {
    background: hsla(var(--bs-warning), 0.7);
}

.bg-warning-800 {
    background: hsla(var(--bs-warning), 0.8);
}

.bg-warning-900 {
    background: hsla(var(--bs-warning), 0.9);
}

/* ======= bg-info shades ========= */
.bg-info-100 {
    background: hsla(var(--bs-info), 0.1);
}

.bg-info-200 {
    background: hsla(var(--bs-info), 0.2);
}

.bg-info-300 {
    background: hsla(var(--bs-info), 0.3);
}

.bg-info-400 {
    background: hsla(var(--bs-info), 0.4);
}

.bg-info-500 {
    background: hsla(var(--bs-info), 0.5);
}

.bg-info-600 {
    background: hsla(var(--bs-info), 0.6);
}

.bg-info-700 {
    background: hsla(var(--bs-info), 0.7);
}

.bg-info-800 {
    background: hsla(var(--bs-info), 0.8);
}

.bg-info-900 {
    background: hsla(var(--bs-info), 0.9);
}

/* ======= bg-dark shades ========= */
.bg-dark-100 {
    background: hsla(var(--bs-dark), 0.1);
}

.bg-dark-200 {
    background: hsla(var(--bs-dark), 0.2);
}

.bg-dark-300 {
    background: hsla(var(--bs-dark), 0.3);
}

.bg-dark-400 {
    background: hsla(var(--bs-dark), 0.4);
}

.bg-dark-500 {
    background: hsla(var(--bs-dark), 0.5);
}

.bg-dark-600 {
    background: hsla(var(--bs-dark), 0.6);
}

.bg-dark-700 {
    background: hsla(var(--bs-dark), 0.7);
}

.bg-dark-800 {
    background: hsla(var(--bs-dark), 0.8);
}

.bg-dark-900 {
    background: hsla(var(--bs-dark), 0.9);
}

/* ======= bg-purple shades ========= */
.bg-purple-100 {
    background: hsla(var(--bs-purple), 0.1);
}

.bg-purple-200 {
    background: hsla(var(--bs-purple), 0.2);
}

.bg-purple-300 {
    background: hsla(var(--bs-purple), 0.3);
}

.bg-purple-400 {
    background: hsla(var(--bs-purple), 0.4);
}

.bg-purple-500 {
    background: hsla(var(--bs-purple), 0.5);
}

.bg-purple-600 {
    background: hsla(var(--bs-purple), 0.6);
}

.bg-purple-700 {
    background: hsla(var(--bs-purple), 0.7);
}

.bg-purple-800 {
    background: hsla(var(--bs-purple), 0.8);
}

.bg-purple-900 {
    background: hsla(var(--bs-purple), 0.9);
}

/* ======= bg-orange shades ========= */
.bg-orange-100 {
    background: hsla(var(--bs-orange), 0.1);
}

.bg-orange-200 {
    background: hsla(var(--bs-orange), 0.2);
}

.bg-orange-300 {
    background: hsla(var(--bs-orange), 0.3);
}

.bg-orange-400 {
    background: hsla(var(--bs-orange), 0.4);
}

.bg-orange-500 {
    background: hsla(var(--bs-orange), 0.5);
}

.bg-orange-600 {
    background: hsla(var(--bs-orange), 0.6);
}

.bg-orange-700 {
    background: hsla(var(--bs-orange), 0.7);
}

.bg-orange-800 {
    background: hsla(var(--bs-orange), 0.8);
}

.bg-orange-900 {
    background: hsla(var(--bs-orange), 0.9);
}

/* ======== Background Colors ========== */
.primary-bg {
    background-color: hsl(var(--bs-primary));
}

.secondary-bg {
    background-color: hsl(var(--bs-secondary));
}

.success-bg {
    background-color: hsl(var(--bs-success));
}

.danger-bg {
    background-color: hsl(var(--bs-danger));
}

.warning-bg {
    background-color: hsl(var(--bs-warning));
}

.info-bg {
    background-color: hsl(var(--bs-green));
}

.dark-bg {
    background-color: hsl(var(--bs-gray-dark));
}

.light-bg {
    background-color: hsl(var(--bs-gray-100));
}

.active-bg {
    background-color: hsl(var(--bs-primary));
}

.deactive-bg {
    background-color: hsl(var(--bs-gray-300));
}

.deactive-bg {
    background-color: hsl(var(--bs-gray-300));
}

.gray-bg {
    background-color: hsl(var(--bs-gray));
}

.purple-bg {
    background-color: var(--bs-purple);
}

.orange-bg {
    background-color: var(--bs-orange);
}

.deep-blue-bg {
    background-color: var(--bs-blue);
}

/* ======== Text Colors ========== */
.text-primary {
    color: hsl(var(--bs-primary)) !important;
}

.text-secondary {
    color: hsl(var(--bs-secondary)) !important;
}

.text-success {
   	color: hsl(var(--bs-success)) !important;
}

.text-danger {
   	color: hsl(var(--bs-danger)) !important;
}

.text-warning {
    color: hsl(var(--bs-warning)) !important;
}

.text-info {
    color: hsl(var(--bs-green)) !important;
}

.text-dark {
    color: hsl(var(--bs-gray-dark)) !important;
}

.text-light {
    color: hsl(var(--bs-gray-100)) !important;
}

.text-active {
    color: hsl(var(--bs-primary)) !important;
}

.text-deactive {
    color: hsl(var(--bs-gray-300)) !important;
}

.text-deactive {
    color: hsl(var(--bs-gray-300)) !important;
}

.text-gray {
    color: hsl(var(--bs-gray)) !important;
}

.text-gray-100 {
    color: hsl(var(--bs-gray-100)) !important;
}

.text-gray-200 {
    color: hsl(var(--bs-gray-200)) !important;
}

.text-gray-300 {
    color: hsl(var(--bs-gray-300))) !important;
}

.text-gray-400 {
    color: hsl(var(--bs-gray-400)) !important;
}

.text-gray-500 {
    color: hsl(var(--bs-gray-500)) !important;
}

.text-gray-600 {
    color: hsl(var(--bs-gray-600)) !important;
}

.text-gray-700 {
    color: hsl(var(--bs-gray-700)) !important;
}

.text-gray-800 {
    color: hsl(var(--bs-gray-800)) !important;
}

.text-gray-900 {
    color: hsl(var(--bs-gray-900)) !important;
}

.text-orange {
    color: hsl(var(--bs-orange)) !important;
}

/* ========= Font Weight =========== */
.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/************************************************
*			    Icone Sidebar   		        *
************************************************/

[id ^= "ddmenu"] .bi::before,
[id ^= "ddmenu"] [class^="bi-"]::before,
[id ^= "ddmenu"] [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.500rem;
}

[id ^= "ddmenu_Anagraf"] .bi-::before {
    content: "\F4DB";
}

[id ^= "ddmenu_Magaz"] .bi-::before {
    content: "\F2CC";
}

[id ^= "ddmenu_Priv"] .bi-::before {
    content: "\F538";
}

[id ^= "ddmenu_Catalog"] .bi-::before {
    content: "\F194";
}

[id ^= "ddmenu_Contab"] .bi-::before {
    content: "\F614";
}

[id ^= "ddmenu_Stamp"] .bi-::before {
    content: "\F501";
}

[id ^= "ddmenu_Utilit"] .bi-::before {
    content: "\F3E5";
}

[id ^= "ddmenu_AnyAuct"] .bi-::before {
    content: "\F310";
}



/************************************************
*			Stili per PAGINAZIONE GRIDVIEW		*
************************************************/
.pagination-ys {
    display: table-row;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px; 
}

    .pagination-ys > td {
        padding: 0px !important;
    }

    .pagination-ys table {
        display: flex;
        padding-left: 15px;
    }
	
    	.pagination-ys table th, 
    	.pagination-ys table td{
            padding-left: 0;
            padding-right: 0;
        }

        .pagination-ys table > tbody > tr > td {
            border: none;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .pagination-ys table tbody tr:last-child > * {
            padding-bottom: 20px;
        }

        .pagination-ys table > tbody > tr > td > a,
        .pagination-ys table > tbody > tr > td > span {
            margin: 1px;
            position: relative;
            display: block;
            text-decoration: none;
            background-color: hsl(var(--bs-white));
            border: 1px solid hsl(var(--bs-gray-300));
            transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            padding: 0.375rem 0.75rem;
            border-top-left-radius: 0.25rem;
            border-bottom-left-radius: 0.25rem;
            border-top-right-radius: 0.25rem;
            border-bottom-right-radius: 0.25rem;
        }

        .pagination-ys table > tbody > tr > td > span {
            z-index: 3;
            color: #aea79f;
            background-color: hsl(var(--bs-light));
            border-color: hsl(var(--bs-gray-300));
            cursor: default;
        }

        .pagination-ys table > tbody > tr > td:first-child > a,
        .pagination-ys table > tbody > tr > td:first-child > span {
            margin-left: -1px;
        }

        .pagination-ys table > tbody > tr > td:last-child > a,
        .pagination-ys table > tbody > tr > td:last-child > span {
        }

        .pagination-ys table > tbody > tr > td > a:hover,
        .pagination-ys table > tbody > tr > td > span:hover,
        .pagination-ys table > tbody > tr > td > a:focus,
        .pagination-ys table > tbody > tr > td > span:focus {
            background-color: hsl(var(--bs-gray-100));
            border-color: hsl(var(--bs-gray-400));
            z-index: 2;
        }



/************************************************
*			Stili per LAYERS		*
************************************************/
/* Label */
.label {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    color: hsl(var(--bs-white));
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
	margin: 0.125rem;
}

    .label:empty {
        display: none;
    }

.label-warning {
    background-color: hsl(var(--bs-warning));
}

.label-success {
    background-color: hsl(var(--bs-success));
}

.label-info {
    background-color: hsl(var(--bs-info));
}

.label-default {
    background-color: hsl(var(--bs-gray-600));
}

.label-primary {
    background-color: hsl(var(--bs-primary));
}

.label-danger {
    background-color: hsl(var(--bs-danger));
}


/* Badge */
.badge {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    color: hsl(var(--bs-white));
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
	margin: 0.125rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .badge {
        transition: none;
    }
}

a.badge:hover, a.badge:focus {
    text-decoration: none;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.badge-pill {
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 10rem;
}

.badge-primary {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-primary));
}

a.badge-primary:hover, a.badge-primary:focus {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-primary-dark-100));
}

a.badge-primary:focus, a.badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem hsla(var(--bs-primary), 0.5);
}

.badge-secondary {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-secondary));
}

a.badge-secondary:hover, a.badge-secondary:focus {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-secondary-dark-100));
}

a.badge-secondary:focus, a.badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem hsla(var(--bs-secondary), 0.5);
}

.badge-success {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-success));
}

a.badge-success:hover, a.badge-success:focus {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-success-light-300));
}

a.badge-success:focus, a.badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem hsla(var(--bs-success), 0.5);
}

.badge-info {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-info));
}

a.badge-info:hover, a.badge-info:focus {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-info-light-300));
}

a.badge-info:focus, a.badge-info.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem hsla(var(--bs-info), 0.5);
}

.badge-warning {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-warning));
}

a.badge-warning:hover, a.badge-warning:focus {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-warning-light-300));
}

a.badge-warning:focus, a.badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem hsla(var(--bs-warning), 0.5);
}

.badge-danger {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-danger));
}

a.badge-danger:hover, a.badge-danger:focus {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-danger-light-300));
}

a.badge-danger:focus, a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem hsla(var(--bs-danger), 0.5);
}

.badge-light {
    color: hsl(var(--bs-dark));
    background-color: hsl(var(--bs-light));
}

a.badge-light:hover, a.badge-light:focus {
    color: hsl(var(--bs-dark));
    background-color: hsl(var(--bs-light-light-300));
}

a.badge-light:focus, a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem hsla(var(--bs-light), 0.5);
}

.badge-dark {
    color: hsl(var(--bs-white));
    background-color: hsl(var(--bs-dark));
}

a.badge-dark:hover, a.badge-dark:focus {
    color: #fff;
    background-color: hsl(var(--bs-dark-light-300));
}

a.badge-dark:focus, a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem hsla(var(--bs-dark), 0.5);
}

/* Table */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: hsl(var(--bs-gray-600));
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid hsl(var(--bs-gray-200));
}

.table thead th {
  vertical-align: middle;
  border-bottom: 2px solid hsl(var(--bs-gray-200));
}

.table tbody + tbody {
  border-top: 2px solid hsl(var(--bs-gray-200));
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid hsl(var(--bs-gray-200));
}

.table-bordered th,
.table-bordered td {
  border: 1px solid hsl(var(--bs-gray-200));
}

.table-bordered th {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: hsl(var(--bs-light));
    /*color: hsl(var(--bs-gray-dark));*/
}

.table-hover > tbody > tr:hover > * {
	--bs-table-accent-bg: hsl(var(--bs-light-light-100));
    color: hsl(var(--bs-gray-600));
	transition: all 0.3s ease;
}

.table-striped > tbody > tr.pagination-ys  > *,
.table-hover > tbody > tr.pagination-ys:hover > *,
.table-striped > tbody > tr  > th,
.table-hover > tbody > tr:hover > th {
	--bs-table-accent-bg: transparent;
    color: hsl(var(--bs-gray-600));
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: hsl(var(--bs-primary-light-100));
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: hsl(var(--bs-primary-light-300));
}

.table-hover .table-primary:hover {
  background-color: hsl(var(--bs-primary-light-200));
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: hsl(var(--bs-primary-light-200));
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: hsl(var(--bs-secondary-light-100));
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: hsl(var(--bs-secondary-light-300));
}

.table-hover .table-secondary:hover {
  background-color: hsl(var(--bs-secondary-light-200));
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: hsl(var(--bs-secondary-light-200));
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: hsl(var(--bs-success-light-100));
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: hsl(var(--bs-success-light-300));
}

.table-hover .table-success:hover {
  background-color: hsl(var(--bs-success-light-200));
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: hsl(var(--bs-success-light-200));
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: hsl(var(--bs-info-light-100));
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: hsl(var(--bs-info-light-300));
}

.table-hover .table-info:hover {
  background-color: hsl(var(--bs-info-light-200));
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: hsl(var(--bs-info-light-200));
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: hsl(var(--bs-warning-light-100));
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: hsl(var(--bs-warning-light-300));
}

.table-hover .table-warning:hover {
  background-color: hsl(var(--bs-warning-light-200));
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: hsl(var(--bs-warning-light-200));
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: hsl(var(--bs-danger-light-100));
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: hsl(var(--bs-danger-light-300));
}

.table-hover .table-danger:hover {
  background-color: hsl(var(--bs-danger-light-200));
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: hsl(var(--bs-danger-light-200));
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: hsl(var(--bs-light-light-100));
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: hsl(var(--bs-light-light-300));
}

.table-hover .table-light:hover {
  background-color: hsl(var(--bs-light-light-200));
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: hsl(var(--bs-light-light-200));
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: hsl(var(--bs-dark-light-100));
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: hsl(var(--bs-dark-light-300));
}

.table-hover .table-dark:hover {
  background-color: hsl(var(--bs-dark-light-200));
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: hsl(var(--bs-dark-light-200));
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: hsl(var(--bs-gray-800));
  border-color: hsl(var(--bs-gray-700));
}

.table .thead-light th {
  color: hsl(var(--bs-gray-700));
  background-color: hsl(var(--bs-gray-200));
  border-color: hsl(var(--bs-gray-200));
}

.table-dark {
  color: #fff;
  background-color: hsl(var(--bs-gray-800));
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: hsl(var(--bs-gray-700));
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: hsl(var(--bs-white));
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

/************************************************
*			BTN COLOR		*
************************************************/

.btn-success {
    color: white;
}

/************************************************
*			TEXT AREA FORM CONTROL		*
************************************************/
textarea.form-control {
    min-height: auto !important;
}


.os-padding {
    z-index: inherit !important;
}


/************************************************
*			AUTOCOMPLETE		*
************************************************/
ul[ id $= "completionListElem"] {
    z-index: 10003 !important;
}

/************************************************
*			ECCEZIONE DROPDOWN		*
************************************************/

.dropdown-item.noactive.active, .dropdown-item.noactive:active {
    background-color: transparent;
}

/************************************************
*			navtab categorie	*
************************************************/

.tab {
    padding: 15px;
}

.navcat.nav-tabs {
    padding: 0px;
    margin: 0;
    border: none;
}

    .navcat.nav-tabs li a {
        color: #666;
        background: hsl(var(--bs-gray-100));
        text-align: center;
        text-transform: capitalize;
        padding: 8px 20px 10px;
        margin: 0 10px -1px 0;
        border: 1px solid transparent;
        border-color: #e9ecef #e9ecef #dee2e6;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease 0.15s;
    }

        .navcat.nav-tabs li.active a,
        .navcat.nav-tabs li a:hover,
        .navcat.nav-tabs li.active a:hover {
            color: #000;
            background: hsl(var(--bs-white));
            border: 1px solid transparent;
            border-color: #e9ecef #e9ecef #dee2e6;
        }

        .navcat.nav-tabs li a:before {
            content: "";
            background: hsl(var(--bs-gray-100));
            height: 100%;
            width: 100%;
            border-radius: 3px 3px 0 0;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: -1;
            transition: all 0.3s ease-out 0s;
        }

        .navcat.nav-tabs li.active a:before,
        .navcat.nav-tabs li a:hover:before {
            top: 0;
        }

@media only screen and (max-width: 479px) {
    .navcat.nav-tabs {
        padding: 0;
        margin: 0 0 15px;
    }

        .navcat.nav-tabs li {
            width: 100%;
            text-align: center;
        }

            .navcat.nav-tabs li a {
                margin: 0 0 15px;
                border-radius: 5px;
            }
}

.catcolor {
    background-color: white;
}

/************************************************
*			aggiudicazione lotto colore	*
************************************************/

.aggiudicato {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: hsl(var(--bs-white));
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    border-color: hsl(var(--bs-success));
}

    .aggiudicato > .card-header {
        color: hsl(var(--bs-white));
        background-color: hsl(var(--bs-success));
    }

/************************************************
*			well	*
************************************************/
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: hsl(var(--bs-light));
    border: 1px solid hsl(var(--bs-gray-100));
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
}

/************************************************
*			UpperCase	*
************************************************/

.uppercase {
    display: block;
}

    .uppercase::first-letter {
        text-transform: uppercase;
    }

/************************************************
*			Logo ridimensionato home 	*
************************************************/

.img-fluid > img {
    width: 100%;
    height: auto;
}



/************************************************
*			    Animation 	                    *
************************************************/

@keyframes growIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animated--grow-in {
    animation-name: growIn;
    animation-duration: 200ms;
    animation-timing-function: transform cubic-bezier(.18,1.25,.4,1), opacity cubic-bezier(0,1,.4,1);
}

/* Fade In Animation */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animated--fade-in {
    animation-name: fadeIn;
    animation-duration: 200ms;
    animation-timing-function: opacity cubic-bezier(0,1,.4,1);
}


/* Borders */
.border-left-primary {
    border-left: 0.25rem solid hsl(var(--bs-primary))!important;
}

.border-bottom-primary {
    border-bottom: 0.25rem solid hsl(var(--bs-primary))!important;
}

.border-left-secondary {
    border-left: 0.25rem solid hsl(var(--bs-secondary))!important;
}

.border-bottom-secondary {
    border-bottom: 0.25rem solid hsl(var(--bs-secondary))!important;
}

.border-left-success {
    border-left: 0.25rem solid hsl(var(--bs-success))!important;
}

.border-bottom-success {
    border-bottom: 0.25rem solid hsl(var(--bs-success))!important;
}

.border-left-info {
    border-left: 0.25rem solid hsl(var(--bs-info))!important;
}

.border-bottom-info {
    border-bottom: 0.25rem solid hsl(var(--bs-info))!important;
}

.border-left-warning {
    border-left: 0.25rem solid hsl(var(--bs-warning))!important;
}

.border-bottom-warning {
    border-bottom: 0.25rem solid hsl(var(--bs-warning))!important;
}

.border-left-danger {
    border-left: 0.25rem solid hsl(var(--bs-danger))!important;
}

.border-bottom-danger {
    border-bottom: 0.25rem solid hsl(var(--bs-danger)) !important;
}

.border-left-light {
    border-left: 0.25rem solid hsl(var(--bs-light)) !important;
}

.border-bottom-light {
    border-bottom: 0.25rem solid hsl(var(--bs-light)) !important;
}

.border-left-dark {
    border-left: 0.25rem solid hsl(var(--bs-dark)) !important;
}

.border-bottom-dark {
    border-bottom: 0.25rem solid hsl(var(--bs-dark)) !important;
}

/************************************************
*			COLORE FRECCIE SLIDER LOTTI		*
************************************************/
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")!important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")!important;
}

/************************************************
*		          MENŮ HAMBURGER	        	*
************************************************/

@media all and (max-width: 991px) {
    .sidebar-brand > img {
        max-width: 120px;
    }
}

@media all and (max-width: 991px) {
    .navbar {
        padding: 0 1rem;
    }
}

/*Rettifica Modale*/
.modal-content{
	background-color:#fff;
}
