@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

/* import icons*/
/* @import url(../css/icons/style.css); */

:root {
    --primary: #1261B1;
    --grey-font: #FEFEFE;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
    font-family: 'Cairo', sans-serif;
    color: #120404;
    font-weight: 600;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    border: none;
    background: none;
    padding: 0;
}

input,
button:focus {
    outline: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}
.btn.focus, .btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.grey-color {
    color: #666;
}
.bg-grey {
    background-color: #F5F5F5;
}
.bg-grey2 {
    background-color: #FBFBFB;
}
.def-bg {
    background-color: var(--grey-font) !important;
}
.bg-lite {
	background-color: rgb(249 201 28 / 20%);
}
.bg-lite-blue {
    background-color: rgba(18, 97, 177, 0.05);
}
.text-grey {
	color: #666 !important;
}
.text-red {
    color: #C32727 !important;
}
.primary-color {
    color: var(--primary) !important;
}
.def-color {
    color: var(--grey-font);
}
.grey-text {
    color: var(--grey-font);
    opacity: .7;
}
.small-text {
    font-size: 0.8125rem;
    line-height: 1.1375rem;
}
.sm-text {
    font-size: 0.75rem;
}
.med-text {
    font-size: 0.875rem;
    line-height: 1.1475rem;
}
.dark-color {
    color: #120404;
}
.light-color {
    color: #120404;
    opacity: .7;
}
.fw-600 {
    font-weight: 600;
}
.fw-500 {
    font-weight: 500;
}
.shadow {
    box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 0.25) !important;
}
.shadow-1 {
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25) !important;
}
.shadow-2 {
    box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.25);
}
.rounded-xl {
    border-radius: 1.25rem !important;
}
.rounded-lg {
    border-radius: 1rem !important;
}
.rounded-md {
    border-radius: .5rem !important;
}
.border-bottom {
    border-bottom: 1px solid rgba(18, 4, 4, 0.10);
}
.primary-border-dashed {
    border: 1px dashed var(--primary);
}
.cursor-pointer {
    cursor: pointer;
}
.border-primary {
    border: 1px solid var(--primary);
}

.gap-35 {
    gap: 1.25rem;
}
.gap-45 {
    gap: 2rem;
}
.gap-46 {
    gap: 2.5rem;
}
.flex-1 {
    flex: 1;
}
.mb-25 {
    margin-bottom: 1.25rem !important;
}
.mb-45 {
    margin-bottom: 2rem !important;
}
.mt-45 {
    margin-top: 2rem !important;
}
.mb-46 {
    margin-bottom: 2.5rem !important;
}
.mb-6 {
    margin-bottom: 4rem !important;
}
.pt-45 {
    padding-top: 2rem;
}
.px-45 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.px-46 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.p-46 {
    padding: 2.5rem;
}
.py-45 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.p-35 {
    padding: 1.25rem;
}
.pb-35 {
    padding-bottom: 1.25rem;
}
.opacity-50 {
    opacity: .5;
}
.opacity-60 {
    opacity: .6;
}
.opacity-70 {
    opacity: .7;
}
.opacity-80 {
    opacity: .8;
}
.hide {
    display: none !important;
}
.cursor-def {
    cursor: default !important;
}
.min-width-auto {
    min-width: auto !important;
}

.sec-padding {
    padding: 3.75rem 0;
}
.sec-padding-top {
    padding-top: 3.75rem !important;
}
.sec-padding-bottom {
    padding-bottom: 3.75rem !important;
}

.round-30 {
    border-radius: 1.875rem;
}

.icon-arrow-right.left {
    display: inline-block;
    transform: scaleX(-1);
}

/** main btn **/
.main-btn {
    display: inline-block;
    border-radius: 5px;
    background-color: var(--primary);
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 600;
    color: var(--grey-font);
    padding: .75rem 2rem;
    min-width: 9rem;
    border: 1px solid var(--primary);
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-out;
}
.main-btn.white {
    background-color: var(--grey-font);
    color: var(--primary);
    border-color: var(--grey-font);
}
.main-btn.red {
    background-color: #D03E2A;
    color: #fff;
    border-color: #D03E2A;
}
.main-btn.outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.main-btn.red.outline {
    background-color: transparent;
    border: 1px solid #D03E2A;
    color: #D03E2A;
}
.main-btn.green.outline {
    background-color: transparent;
    border: 1px solid #109064;
    color: #109064;
}
.main-btn.outline-white {
    background-color: transparent;
    border: 1px solid var(--grey-font);
    color: var(--grey-font);
}
.main-btn:hover {
    background-color: #17a988;
    border-color: #17a988;
    color: #fff;
}
span.main-btn.outline.green:hover {
    background-color: transparent;
    border: 1px solid #109064;
    color: #109064;
}

/** section title **/
.section-title {
    margin-bottom: 2rem;
}
.section-title h2,
.section-title2 h2 {
    position: relative;
    font-size: 2.0625rem;
    line-height: 2.8875rem;
    font-weight: 600;
    color: #120404;
}
.section-title span {
    color: var(--primary);
}
.section-title.circle {
    position: relative;
    padding-right: 4.5rem;
}
.section-title.circle::before {
    content: '';
    width: 7.5rem;
    height: 7.5rem;
    border: 5px solid rgba(65, 123, 176, 0.20);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* Section title2 */
.section-title2 h2 {
    font-size: 2.5rem;
    color: #120404;
    text-align: start;
    line-height: 3.5rem;
    padding-bottom: 0;
}
.section-title2 p {
    color: #68625F;
    font-size: 1.2rem;
    line-height: 1.6625rem;
    margin-bottom: .5rem;
}
.section-title2 .line1, .section-title2 .line2 {
    display: block;
    background: rgba(104, 98, 95, 0.70);
    width: 1.6rem;
    height: 2px;
    border-radius: .5rem;
}
.section-title2 .line2 {
    width: 2.5rem;
    margin-top: .5rem;
}

.dropdown .droplist {
    min-width: 220px;
    padding: 0;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -webkit-transition: all 0.4s 0s ease-out;
    -o-transition: all 0.4s 0s ease-out;
    transition: all 0.4s 0s ease-out;
}
.dropdown .droplist li a {
    position: relative;
    z-index: 11;
    color: #151515;
    font-weight: 600;
    font-size: .9rem;
    padding: 0.8rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}
.dropdown .droplist li:hover a {
    color: #151515;
    background-color: #ECECEC;
}
.dropdown .droplist li a:hover {
    color: #151515;
}
.dropdown:hover .droplist {
    visibility: visible;
    opacity: 1;
}


/***
    Vertical Card
***/
.cards-wrapper {
    padding: 2rem;

}
.vertical-card {
	margin-bottom: 1.5rem;
	overflow: hidden;
    border: 0;
}
.vertical-card .card-img {
    background-color: #F1F3F6;
    border-radius: .625rem;
    overflow: hidden;
}
.vertical-card .card-img img {
    width: 100%;
    max-height: 13rem;
    object-fit: contain;
    object-position: center;
}
.vertical-card .card-body {
    padding: 1.5rem 0;
}
.vertical-card .card-title {
    color: #120404;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4rem;
}
.vertical-card .card-footer {
    border-radius: 0;
    border: 0;
    padding: 0;
    background-color: transparent;
}
.vertical-card .card-footer .main-btn {
	font-size: .8125rem;
    font-weight: 700;
    line-height: 1.1375rem;
    padding: .7rem 1rem;
    text-align: center;
    width: 100%;
    border-radius: .25rem;
}
.vertical-card .card-footer .main-btn i {
    font-size: 1.25rem;
    vertical-align: middle;
    margin-right: .5rem;
}
.vertical-card .card-footer .main-btn i span::before {
    color: var(--grey-font);
}

/***
    Nav tabs
***/
.def-tabs.nav-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    gap: 1.5rem
}
.def-tabs.nav-tabs .nav-item .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #120404;
    border: 0;
    background-color: transparent;
    padding: 1rem;
}
.def-tabs.nav-tabs .nav-item .nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}
.def-tabs.nav-tabs .nav-item .nav-link i {
    font-size: 1.5rem;
    margin-left: .5rem;
    vertical-align: middle;
}
.def-tabs.nav-tabs .nav-item .nav-link i span::before {
    color: rgb(40, 48, 63);
}
.def-tabs.nav-tabs .nav-item .nav-link .icon-heart::before,
.def-tabs.nav-tabs .nav-item .nav-link .icon-lock::before {
    color: rgb(40, 48, 63);
    opacity: .4;
}
.def-tabs.nav-tabs .nav-item .nav-link.active i span::before,
.def-tabs.nav-tabs .nav-item .nav-link.active .icon-heart::before,
.def-tabs.nav-tabs .nav-item .nav-link.active .icon-lock::before {
    color: var(--primary);
}

.inner-tabs.nav-tabs .nav-item .main-btn.active {
    background-color: var(--primary);
    color: var(--grey-font);
}

/***
	Header
***/
header {
    position: relative;
    background-color: #fff;
}

header.sticky {
    position: fixed;
    top: 0;
    right: 0;
	background: #fff;
    -webkit-animation-name: stickyheader;
    animation-name: stickyheader;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    width: 100%;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7.5rem;
}
header nav .logo img {
    width: 7.5rem;
}
header nav .bars {
	color: rgba(18, 4, 4, 0.70);
    cursor: pointer;
    display: none;
}
header nav .bars span {
    height: 2px;
    width: 21px;
    margin: 5px 0;
    background-color: var(--primary);
    display: block;
}
header nav .dropdown-toggle {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border: 0 !important;
    outline: none !important;
}
header nav .dropdown-toggle::after {
    display: none;
}
header nav .dropdown-toggle .icon-arrow-down {
    transition: all .3s;
}
header nav .dropdown-toggle.show .icon-arrow-down {
    transform: scaleY(-1);
}
header nav .dropdown-toggle:hover {
    background-color: transparent;
}
header.sticky nav .bars {
	color: #000;
}
header nav .links-list {
    margin-left: auto;
    margin-right: 1.5rem;
}
header nav .links-list > ul .list-item {
    margin-left: 2.5rem;
    position: relative;
}
header nav .links-list > ul .list-item:last-child {
    margin-left: 0;
}
header nav .links-list > ul .list-item > .link {
    padding: .6rem 0;
    display: block;
}

header nav .links-list > ul .list-item .link {
    color: #120404;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
    position: relative;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 600;
    opacity: .7;
}

header nav .links-list > ul .list-item .link.active {
    color: #120404;
    border-bottom: 2px solid #120404;
    opacity: 1;
}
header nav .links-list > ul .list-item .link:hover {
    color: #120404;
    opacity: 1;
}
header.white-header nav .links-list > ul .list-item .link {
    color: var(--primary);
    opacity: 1;
}
header nav .nav-account .dropdown-menu {
    background-color: #fff;
    border: 0;
    top: .75rem !important;
    padding: 0;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}
header nav .nav-account .notification .dropdown-menu {
    border-radius: .75rem;
    width: 15.5rem;
    /* left: -0.75rem !important; */
}
header nav .nav-account .notification .icon-notification,
header nav .nav-account .icon-cart {
    font-size: 2rem;
}
header nav .nav-account .notification .dropdown-menu li {
    padding: 1.25rem .9rem;
}
header nav .nav-account .notification .dropdown-menu li:nth-child(even) {
    background-color: rgba(18, 97, 177, 0.10);
}
header nav .nav-account .notification .dropdown-menu li img {
    width: 2rem;
    height: 2rem;
}
header nav .nav-account .notification .dropdown-menu li p {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #120404B2;
    line-height: 1.1375rem;
}
header nav .nav-account .notification .dropdown-menu li p b {
    font-weight: 700;
    color: var(--primary);
}
header nav .nav-account .notification .dropdown-menu li .time {
    color: #120404;
    font-weight: 600;
    font-size: 0.6875rem;
    white-space: nowrap;
}
header nav .nav-account .notification .dropdown-menu li.show-all {
    padding-top: .75rem;
    padding-bottom: .75rem;
    text-align: center;
}
header nav .nav-account .notification .dropdown-menu li.show-all a {
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 600;
    display: block;
}
header nav .nav-account .login .icon-user-outline {
    font-size: 2rem;
}
header:not(.white-header) nav .nav-account .login .icon-user > span::before {
    color: var(--grey-font);
}
header.white-header nav .nav-account .icon-notification [class^='path']::before,
header.white-header nav .nav-account .icon-cart [class^='path']::before {
    color: var(--primary);
}
header nav .nav-account .account .dropdown-menu {
    min-width: 11rem;
    width: auto;
    padding: .25rem 0 !important;
}
header nav .nav-account .account .dropdown-toggle i {
    /* margin-left: .35rem; */
    /* font-size: .9rem; */
    vertical-align: middle;
}
header nav .nav-account .account .dropdown-toggle img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-right: 1rem;
}
header nav .nav-account .account .dropdown-menu li {
    padding: .5rem 1rem;
    transition: background-color .3s;
}
header nav .nav-account .account .dropdown-menu li:hover {
    background-color: rgba(18, 97, 177, 0.10);
}
header nav .nav-account .account .dropdown-menu li a {
    color: #120404;
}
header nav .nav-account .account .dropdown-menu li a i {
    font-size: 1.5rem;
}

@-webkit-keyframes stickyheader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes stickyheader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/**
    main form
**/
.main-form .form-label {
    color: #120404;
    margin-bottom: 1rem;
}
.main-form .form-control,
.main-form .form-select {
    font-size: 0.85rem;
    font-weight: 600;
    background-color: rgba(201, 201, 201, 0.17);
    color: rgba(18, 4, 4, 0.70);
    padding: .6875rem 1.25rem;
    border-radius: .25rem;
    border: none;
}
.main-form .form-control::-ms-input-placeholder {
    color: rgba(18, 4, 4, 0.30);
}
.main-form .form-control::placeholder {
    color: rgba(18, 4, 4, 0.30);
}
.main-form.white .form-control,
.main-form.white .form-select,
.main-form .bootstrap-tagsinput {
    height: 3.125rem;
    padding: .85rem 1.25rem;
    background-color: #fff;
    font-size: .875rem;
    color: rgba(18, 4, 4, 0.80);
    border-radius: .25rem;
    box-shadow:  0px 0px 4px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.3);
}
.main-form textarea {
    height: 14rem !important;
}
.main-form .form-control[readonly],
.main-form .form-control[disabled] {
    background-color: #F5F5F5;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.main-form .input-icon {
    position: relative;
}
.main-form .input-icon .form-control,
.main-form .input-icon .form-select {
    padding-right: 2.75rem;
}
.main-form .input-icon .form-select {
    padding-left: 2rem;
}
.main-form .input-icon i, .main-form .input-icon svg {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: rgba(0, 0, 0, .6);
}
.main-form .main-btn[disabled] {
    opacity: .6;
    cursor: not-allowed;
}
.main-form .attachment-list li {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .25rem;
    background-color: #F0F0F0;
    line-height: 2.5rem;
    text-align: center;
}
.main-form .otp-input {
    height: 3.125rem;
    width: 3.125rem;
    border: 1px solid #E4E4E4;
    outline: none;
    text-align: center;
    font-size: 1.75em;
    border-radius: 0.3rem;
    background-color: #E4E4E4;
    color: #000;
    outline: none;
    /*Hide number field arrows*/
    -moz-appearance: textfield;
}
.main-form .otp-input[type="number"]::-webkit-outer-spin-button,
.main-form .otp-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.main-form .otp-input:disabled {
    color: #000;
}
.main-form .otp-input:focus {
    border: 1px solid #C32727;
    background-color: #fff;
}

/*** Custom File ***/
.main-form .custom-file-upload input {
    z-index: 2;
    color: transparent;
}
.main-form .custom-file-upload input::-webkit-file-upload-button,
.main-form .custom-file-upload input::file-selector-button {
    visibility: hidden;
}
.main-form .custom-file-upload .no-file-chosen {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1rem;
}
.main-form .custom-file-upload .main-btn {
    position: absolute;
    font-size: .875rem;
    padding: .35rem 1.2rem;
    min-width: auto;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: default;
}
.main-form .custom-file-upload .main-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* iti */
.main-form .iti {
    width: 100%;
}
.main-form .form-control.iti__tel-input {
    padding-left: 100px !important;
    padding-right: 1rem !important;
}
html[dir="rtl"] .main-form .iti__country-container {
    direction: ltr;
}
.main-form .input-icon .form-control.iti__tel-input {
    padding-right: 2.75rem !important;
    text-align: right;
}
.main-form .iti__country-container .iti__selected-country {
    border-right: 1px solid #d1d1d1;
    padding-right: .5rem;
}

/*** Filepond ***/
.filepond--root {
    font-family: 'Cairo', sans-serif !important;
}
.filepond--root .filepond--credits[style] {
    display: none !important;
}

/*** File Uploader ***/
#image-preview {
    width: 6.25rem;
    height: 6.25rem;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url(../img/default-avatar.png);
    background-position: center;
    background-size: cover;
    color: #ecf0f1;
    border-radius: 50%;
}
#image-preview input {
    line-height: 200px;
    font-size: 200px;
    position: absolute;
    opacity: 0;
    z-index: 10;
    display: none;
}
#image-preview label {
    position: absolute;
    z-index: 5;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.50);
    width: 100%;
    height: 2rem;
    font-size: 1.25rem;
    bottom: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

/*** Tags Input ***/
.main-form .bootstrap-tagsinput {
    display: block;
}
.main-form .bootstrap-tagsinput .tag {
    background-color: var(--primary);
    padding: .1rem .5rem;
    border-radius: 5px;
    margin-right: 0;
    margin-left: .5rem;
}


/***
    checkbox & radio
***/
.check-container {
    display: block;
    position: relative;
    padding-right: 2.1875rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.check-container input {
    display: none;
}
.check-container .radiobtn,
.check-container .checkmark {
    position: absolute;
    top: 2px;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 50%;
}
.check-container .checkmark {
    border-radius: 5px;
}
.check-container input:checked ~ .radiobtn,
.check-container input:checked ~ .checkmark {
    border-color: var(--primary);
    background-color: var(--primary);
}
.check-container .radiobtn:after,
.check-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.check-container .radiobtn:after,
.check-container .checkmark:after {
    top: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
}
.check-container .checkmark:after {
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    background: white;
}
.check-container input:checked ~ .radiobtn:after,
.check-container input:checked ~ .checkmark:after {
    display: block;
}

/*** Checkbox btn ***/
.checkbox-btn > span {
    display: inline-block;
    padding: .5rem 1rem;
    color: rgba(18, 4, 4, 0.80);
    border: 1px solid rgba(0, 0, 0, 0.50);
    border-radius: .25rem;
    box-shadow: 0px 0px 4px -1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}
.checkbox-btn input {
    display: none;
}
.checkbox-btn input:checked ~ span,
.checkbox-btn input:checked ~ span {
    color: var(--primary);
    border: 2px solid var(--primary);
}

/****/
.check-card {
    flex: 1;
}
.check-card label {
    border: 2px dashed rgba(0, 0, 0, 0.20);
    border-radius: .425rem;
    cursor: pointer;
}
.check-card input:checked ~ label {
    border-color: var(--primary);
}
.check-card label i {
    position: absolute;
    top: .75rem;
    right: .75rem;
    opacity: 0;
    visibility: hidden;
}
.check-card input:checked ~ label i {
    opacity: 1;
    visibility: visible;
}
.check-card label i .path1:before {
    opacity: 1;
}
.check-card label i .path2:before {
    color: white;
}

/***
    steps
***/
.step-app>.step-steps>li {
    padding: 0;
    position: relative;
    background-color: transparent;
    border: 0;
}
.step-app>.step-steps>li:hover,
.step-app>.step-steps>li.active,
.step-app>.step-steps>li.done {
    background-color: transparent;
}
.step-app>.step-steps>li:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 1.5625rem;
    width: 80%;
    height: 3px;
    background-color: var(--primary);
    right: 15%;
    opacity: .5;
}
.step-app>.step-steps>li.done::before {
    background-color: #00A887;
}
.step-app>.step-steps>li .circle {
    position: relative;
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 100%;
    background-color: #1261B1;
    opacity: .5;
    margin-bottom: 1.25rem;
}
.step-app>.step-steps>li.active .circle {
    border: 1px solid #1261B1;
    background-clip: content-box;
    padding: .3rem;
    opacity: 1;
}
.step-app>.step-steps>li.done .circle {
    background-color: #00A887;
    opacity: 1;
}
.step-app>.step-steps>li.done .circle::before {
    content: '\e967';
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.step-app>.step-steps>li.active > *,
.step-app>.step-steps>li.done > * {
    opacity: 1 !important;
}
.step-app>.step-steps>li.active .state {
    color: var(--primary);
}
.step-app>.step-steps>li.done .state {
    color: #00A887 !important;
}
.step-app .step-footer .main-btn {
    width: 49%;
}

/***
    main slider
***/
.hero-section {
    position: relative;
    background-image: url(../img/hero-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 27rem;
    transition: background-image 0.5s ease-in-out;
}
.hero-section .hero-slides {
    padding: 2rem 0;
}
.hero-section .hero-slides .hero-title {
    color: #FEFEFE;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3.5rem;
    margin-bottom: 0;
}
.hero-section .owl-dots {
    margin-top: -2rem !important;
    text-align: start;
    position: relative;
}

/***
    Owl Dots
***/
.owl-theme .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    background: #FEFEFE;
    opacity: 50%;
    margin: 0 4px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #FEFEFE;
    opacity: 1;
}
.owl-theme .owl-dots .owl-dot.active span {
    width: 1.75rem;
}

/** Section filter **/
.section-filter {
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);
}
.section-filter .form-control,
.section-filter .form-select {
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: 3.5rem;
    border-radius: .4375rem;
}
.section-filter .form-group > .main-btn {
    position: absolute;
    top: 50%;
    left: .3rem;
    transform: translateY(-50%);
    border-radius: .375rem;
}
.section-filter .form-group .left-side {
    position: absolute;
    top: 50%;
    left: .3rem;
    transform: translateY(-50%);
    border: 0;
}
.section-filter .form-group .left-side .form-select {
    border: none;
    height: auto;
}

/***
    main sidebar
***/
.main-sidebar {
    border-radius: .5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.25rem;
}
.main-sidebar.def-bg {
    box-shadow: 0px 0px 4.694px -1.565px rgba(0, 0, 0, 0.25);
}
.main-sidebar .sidebar-title {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #D2D2D2;
}
.main-sidebar .list-items {
    padding: .5rem 0;
    background-color: #FCFDFD;
}
.main-sidebar .list-items > li {
    padding: .5rem 1.25rem;
    transition: all .3s;
}
.main-sidebar .list-items > li:hover {
    background-color: rgba(217, 217, 217, 0.30);
}
.main-sidebar .list-items > li:hover p {
    color: var(--primary);
    opacity: 1;
}
.main-sidebar .list-items > li > p i::before {
    color: #120404;
    opacity: .8;
    font-size: .9rem;
}
.main-sidebar .list-items > li .sublist {
    min-width: 9.5rem;
    position: absolute;
    top: -0.5rem;
    right: 99%;
    padding: 1.25rem 2.5rem;
    border-radius: .25rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: #FCFDFD;
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.25);
    background-color: #FCFDFD;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.main-sidebar .list-items > li:hover .sublist {
    opacity: 1;
    visibility: visible;
}
.main-sidebar .list-items > li .sublist .sublist-items {
    gap: 6.25rem;
}
.main-sidebar .separator hr {
    border-top-color: #adadad;
}
.main-sidebar .scrollable {
    max-height: 48.5rem;
    overflow-y: auto;
}
.main-sidebar .scrollable::-webkit-scrollbar-track,body::-webkit-scrollbar-track {
    background-color: #ddd
}
.main-sidebar .scrollable::-webkit-scrollbar,body::-webkit-scrollbar {
    width: 6px;
    background-color: #ddd
}
.main-sidebar .scrollable::-webkit-scrollbar-thumb,body::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

/***
    suppliers section
***/
.suppliers-section .vertical-card {
    margin-bottom: 2.5rem;
}

/***
    products section
***/
.products-section .main-sidebar .sidebar-title {
    background-color: var(--grey-font);
}
.products-section .main-sidebar .list-items {
    background-color: #FBFBFB;
}
.products-section .vertical-card .card-img img {
    max-height: 18.5rem;
}

/*** Product details ***/
.product-details-area .pdetails-images .thumbs-wrapper {
    width: 30%;
}
.product-details-area .pdetails-images .slider-container {
    width: 68%;
}
.product-details-area .pdetails-largeimages {
    height: 100%;
}
.product-details-area .pdetails-largeimages .slick-list,
.product-details-area .pdetails-largeimages .slick-track {
    height: 100%;
}
.product-details-area .pdetails-largeimages .pdetails-singleimage,
.product-details-area .pdetails-thumbs .pdetails-singlethumb {
    outline: none;
}
.product-details-area .pdetails-thumbs .pdetails-singlethumb {
    cursor: pointer;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.product-details-area .pdetails-thumbs .pdetails-singlethumb.slick-current img {
    border: 2px solid rgba(18, 97, 177, 0.60);
}
.product-details-area .pdetails-largeimages .pdetails-singleimage img {
	max-width: 100%;
    height: 100%;
    background-color: var(--grey-font);
    object-fit: contain;
    border-radius: .8125rem;
}
.product-details-area .pdetails-thumbs img {
	max-width: 100%;
    background-color: var(--grey-font);
    border-radius: .625rem;
    margin: 2px 0;
}
.product-details-area .details-content .props-list li .prop {
    opacity: .7;
    min-width: 6.7rem;
}

/***
    principle-section
***/
.principle-section .principle-list {
    margin-right: 20.6rem;
}
.principle-section .principle-list .item .title span {
    font-size: 4.375rem;
    color: var(--primary);
    margin-left: .5rem;
    display: inline-block;
    line-height: 6.125rem;
}
.principle-section .shape {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
}

/***
    clients section
***/
.clients-section {
    background-color: #f1f3f5;
    padding: 7rem 0;
}
.clients-section .client {
    margin: 0 2.5rem;
}
.clients-section .client img {
    width: auto;
    margin: 0 auto;
}

/***
    packages section
***/
.packages-section .package-card {
    background-color: #fff;
    color: #120404;
    padding: 2.5rem 1.5rem 2rem;
    box-shadow: 0px 0px 11px -2px rgba(18, 97, 177, 0.25);
    border-radius: .8rem;
}
.packages-section .package-card.bg-blue {
    background-color: var(--primary);
    color: #fff;
    margin-top: -1.25rem;
}
.packages-section .package-card .monthly .price {
    font-size: 3rem;
    line-height: 4.2rem;
}
.packages-section .package-card .monthly .price sup {
    font-size: 1rem;
    top: -1.25em;
}
.packages-section .package-card .list li i {
    font-size: 1.5rem;
}
.packages-section .package-card .list li i.icon-check-circle .path1:before {
    opacity: 1;
}
.packages-section .package-card .list li i.icon-check-circle .path2:before {
    color: white;
}
.packages-section .package-card.bg-blue .list li i.icon-check-circle .path1:before {
    color: #fefefe;
}
.packages-section .package-card.bg-blue .list li i.icon-check-circle .path2:before {
    color: var(--primary);
}

/***
    about
***/
.about-section {
    padding-top: 5.8rem;
}
.about-section .container {
    z-index: 2;
}
.about-section .shape {
    position: absolute;
    bottom: 4rem;
    left: 0;
    text-align: left;
}
.about-section .icon-img {
    width: 4.375rem;
    height: 4.375rem;
}

/*** Features ****/
.features-section .feature-card {
    background-color: #fff;
    padding: 1.875rem;
    height: 100%;
    box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.25);
    border-radius: .9375rem;
}
.features-section .feature-card .card-img {
    width: 5rem;
    height: 5rem;
}
.features-section .feature-card .card-content {
    flex: 1;
}

/***
	CTA section
***/
.cta-section {
    padding: 6.25rem 0 4.375rem;
    background-image: url(../img/cta-bg.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    opacity: .8;
}
.cta-section .title {
    color: var(--grey-font);
}
.cta-section p {
    color: rgba(254, 254, 254, 0.70);
    margin-bottom: 2.75rem;
}

/***
    Testimonial section
***/
.testimonial-section {
    background-image: url(../img/testimonial-bg.png);
    background-repeat: no-repeat;
    background-position: 50% center;
    background-size: cover;
    padding: 7rem 0 10rem;
}
.testimonial-section .section-title {
    margin-bottom: 5rem;
}
.testimonial-section .testi-card {
    gap: 1.8rem;
}
.testimonial-section .testi-card .testi-img img {
    width: 12.8125rem;
}
.testimonial-section .testi-card .testi-content {
    flex: 1;
}
.testimonial-section .testi-card .testi-content p {
    font-size: 0.8125rem;
    color: rgba(18, 4, 4, 0.50);
    line-height: 1.1375rem;
}
.testimonial-section .testi-card .user-name {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: .5;
}
.testimonial-section .testi-card .user-title {
    color: rgba(18, 4, 4, 0.50);;
}
.testimonial-section .owl-dots {
    margin-top: 5rem !important;
}
.testimonial-section .owl-theme .owl-dots .owl-dot span {
    background: var(--primary);
}
.testimonial-section .owl-theme .owl-dots .owl-dot.active span,
.testimonial-section .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
    opacity: 1;
}

/***
    Footer
***/
footer {
    position: relative;
    padding: 3.875rem 0;
    color: rgba(254, 254, 254, 0.70);
    background-color: var(--primary);
}
footer .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
footer .footer-content {
    padding-bottom: 25px;
}
footer .footer-title .title {
    margin-bottom: 1.5rem;
    color: #FEFEFE;
}
footer .footer-col .links-list li {
    margin-bottom: .75rem;
}
footer .footer-col li > a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
footer .footer-col li > a:hover {
    color: #ccc;
}
footer .copyrights p {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(254, 254, 254, 0.50);
    margin-top: 8.25rem;
}


/***
	page banner
***/
.page-banner {
	position: relative;
	background-image: url(../img/banner-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center;
	padding: 6.25rem 0;
}
.page-banner:before {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 177, 0.70);
}
.page-banner .banner-content {
	position: relative;
	z-index: 1;
}
.page-banner .page-banner-title {
	font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 700;
    color: var(--grey-font);
    margin-bottom: 1rem;
}
.page-banner .banner-desc {
	font-size: 1rem;
    line-height: 1.4rem;
    color: var(--grey-font);
    opacity: .8;
}
.page-banner .teacher .teacher-img {
    width: 4.25rem;
    height: 4.25rem;
    background-color: #909090;
    border: 2px solid #D9D9D9;
    border-radius: 100%;
    overflow: hidden;
}
.page-banner .teacher .teacher-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.page-banner .course-info .breadcrumb li i {
    font-size: 1.5rem;
    margin-left: .5rem;
}
.page-banner .course-info .breadcrumb-item::before {
    color: var(--grey-font);
    opacity: .7;
}
.page-banner .course-info .subscribe {
    gap: 1.375rem;
}
.page-banner .course-info .price {
    color: var(--grey-font);
    font-size: 1.25rem;
}
.page-banner .course-info .price del {
    font-size: 1rem;
    color: var(--grey-font);
    opacity: .5;
    margin-left: .5rem;
}
.page-banner .progress-container {
    position: relative;
    display: inline-block;
}
.page-banner .progress-container .progress-circle {
    transform: rotate(-90deg);
}
.page-banner .progress-container .progress-background {
    fill: none;
    stroke: rgba(254, 254, 254, .4);
    stroke-width: 4;
}
.page-banner .progress-container .progress-bar {
    fill: none;
    stroke: #FEFEFE;
    stroke-width: 4;
    transition: stroke-dashoffset 0.5s ease;
}
.page-banner .progress-container .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page-banner .progress-container .progress-text .value {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 2rem;
}
.page-banner .progress-container .progress-text .remaining {
    color: #FEFEFE;
    opacity: .4;
}

/***
    Login
***/
.login-page {
    position: relative;
    background-image: url(../img/login-bg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}
.login-page::before {
    background-color: var(--primary);
    bottom: 0;
    content: "";
    right: 0;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .7;
}
.login-page .login-section {
    padding: 4rem 0;
}
.login-page .login-section .back-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .25rem;
    background-color: rgba(18, 97, 177, 0.07);
}
.login-page .login-section .back-btn i:before {
    color: rgba(0, 0, 0, 0.8);
}

/***
    Pagination
***/
.pagination {
    gap: 1.25rem
}
.pagination .btn {
    height: 3.125rem;
    border-radius: .5625rem;
    background-color: var(--primary);
    box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.25);
    padding: .3rem 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
}
.pagination .btn.disabled {
    background-color: rgba(247, 247, 247, 0.80);
}
.pagination .btn i::before {
    color: var(--grey-font);
}
.pagination .btn.disabled i::before {
    color: rgba(0,0,0,.4);
}
.next-prev .btn {
    border-radius: .25rem;
    padding: .6rem 1.625rem;
    border: 1px solid var(--primary);
}
.next-prev .btn.next {
    background-color: var(--primary);
    color: #fff;
}
.next-prev .btn.prev {
    background-color: #fff;
    color: var(--primary);
}

/***
    Start Modal
***/
.def-modal .modal-dialog:not(.modal-dialog-centered) {
    margin-top: 2rem;
}
.def-modal .modal-content {
    padding: 3.5rem 3.5rem 2rem;
    border-radius: 1rem;
    background-color: var(--grey-font);
    box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 0.25);
}
.def-modal .modal-icon {
    margin-bottom: 1.25rem;
}
.def-modal .modal-icon img {
    width: 7.5rem;
}
.def-modal .modal-footer .main-btn {
    flex: 1;
}


/***
    Notification section 
***/
.notifications-section .notification-item {
    padding: 1rem 1.5rem;
    border-radius: .375rem;
    background: #FEFEFE;
    gap: 1.25rem;
}
.notifications-section .notification-item .item-content {
    margin-top: .75rem;
    flex: 1;
}
.notifications-section .notification-item .item-content .title span {
    color: var(--primary);
}
.notifications-section .notification-item .item-img img {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    object-fit: contain;
}
.notifications-section .notification-item .item-content p {
    max-width: 70%;
}

/************************ 
    Dashboard
************************/
.dashboard-wrapper .dashboard-content .burger-menu {
    cursor: pointer;
}
.dashboard-wrapper .dashboard-content .burger-menu span {
    height: 2px;
    width: 25px;
    margin: 6px 0;
    background-color: var(--primary);
    display: block;
}
.dashboard-wrapper .sidebar {
    background-color: var(--primary);
    width: 18.5rem;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    padding: 4.5rem 1.5rem;
    padding-bottom: 0;
    z-index: 999;
}
.dashboard-wrapper .sidebar .logo {
    padding-bottom: 1.15rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(254, 254, 254, 0.25);
}
.dashboard-wrapper .sidebar .side-nav li a {
    display: block;
    color: #fff;
    padding: .7rem 1.25rem;
    font-size: 1.125rem;
    border-radius: 5px;
    margin-bottom: 2px;
    transition: all .3s;
}
.dashboard-wrapper .sidebar .side-nav li a.active,
.dashboard-wrapper .sidebar .side-nav li a:hover {
    background: rgba(254, 254, 254, 0.20);
}
.dashboard-wrapper .sidebar .main-btn {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.56rem;
    background-color: rgba(18, 4, 4, 0.20);
    display: block;
}
.dashboard-wrapper .sidebar .main-btn:hover {
    background-color: #17a988;
}
.dashboard-wrapper .sidebar .shape {
    position: relative;
    right: -1.5rem;
}
.dashboard-wrapper .sidebar .shape img {
    max-width: 5.5rem;
}
.dashboard-wrapper .sidebar::-webkit-scrollbar-track,body::-webkit-scrollbar-track {
    background-color: #ddd
}
.dashboard-wrapper .sidebar::-webkit-scrollbar,body::-webkit-scrollbar {
    width: 6px;
    background-color: #ddd
}
.dashboard-wrapper .sidebar::-webkit-scrollbar-thumb,body::-webkit-scrollbar-thumb {
    background-color: #1261b199;
}

.dashboard-wrapper .dashboard-content {
    min-height: 100vh;
    padding: 5rem 4.125rem;
    background-color: #F5F5F5;
    margin-right: 18.5rem;
}
.dashboard-wrapper .dashboard-content .dashboard-title {
    margin-bottom: 2.875rem;
}
.dashboard-wrapper .dashboard-content .stat-card {
    background-color: #FEFEFE;
    border-radius: .375rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}
.dashboard-wrapper .dashboard-content .stat-card .stat-num {
    color: var(--primary);
    font-size: 1.75rem;
    line-height: 2.45rem;
}
.dashboard-wrapper .dashboard-content .stat-card .stat-icon,
.dashboard-wrapper .dashboard-content .box-icon {
    min-width: 3.5rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.875rem;
    background-color: rgba(18, 97, 177, 0.05);
    border-radius: .3125rem;
}
.dashboard-wrapper .dashboard-content .stats-chart {
    background-color: #fff;
    border-radius: 5px;
    padding: 1.5rem 2.75rem;
}
.dashboard-wrapper .dashboard-content .stats-chart .chart-header {
    margin-bottom: 3.5rem;
}
.dashboard-wrapper .dashboard-content .stats-chart .chart-header .main-form .form-select {
    padding-top: .5rem;
    padding-bottom: .5rem;
    height: 2.5rem;
    border-color: rgba(18, 97, 177, 0.50);
    color: #0C4284;
    font-size: .8125rem;
}

/** Content Box **/
.dashboard-wrapper .dashboard-content .content-box .box-header {
    padding: 1.5rem 2.5rem;
}
.dashboard-wrapper .dashboard-content .content-box .box-header .products-filter .form-select {
    color: #120404;
    border: 0;
    min-width: 7rem;
    background-color: transparent;
    box-shadow: none;
    font-size: 1.25rem;
    padding: 0;
    width: fit-content;
}

.dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-select,
.dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-control,
.dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .main-btn {
    height: 3.5rem;
}
.dashboard-wrapper .dashboard-content .content-box .box-header .main-btn {
    min-width: auto;
    padding: .7rem 1rem;
}
.dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-select,
.dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-control {
    min-width: 10rem;
    width: fit-content;
}
.dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-select.toggle-filter {
    margin-left: 5.25rem;
    min-width: 6rem;
    width: fit-content;
}

.dashboard-wrapper .dashboard-content .content-box .box-search .main-form {
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);
}
.dashboard-wrapper .dashboard-content .content-box .box-search .form-control,
.dashboard-wrapper .dashboard-content .content-box .box-search .form-select {
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: 3.5rem;
    border-radius: .4375rem;
}
.dashboard-wrapper .dashboard-content .content-box .box-search .form-group .main-btn {
    position: absolute;
    top: 50%;
    left: .3rem;
    transform: translateY(-50%);
    border-radius: .375rem;
}

.dashboard-wrapper .dashboard-content .content-box .rfq-box-header {
    padding: 1.75rem 2rem;
}
.dashboard-wrapper .dashboard-content .content-box .box-header .company-logo img {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.dashboard-wrapper .dashboard-content .content-box .total-box {
    height: 2.75rem;
    border: 1px solid var(--primary);
    border-radius: .25rem;
    padding: .5rem 1.75rem;
    min-width: 6.75rem;
    color: var(--primary);
}
.dashboard-wrapper .dashboard-content .content-box .back-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .25rem;
    background-color: var(--primary);
}
.dashboard-wrapper .dashboard-content .content-box .box-header .main-btn .icon-chat span::before {
    color: #FEFEFE;
}

/*** rfq ***/
.dashboard-wrapper .dashboard-content .rfq-details-form .submit-app-form .main-btn.submit {
    height: 3.125rem;
}

/***
    Company-profile
***/
.company-profile-section .banner {
    padding: 1.4rem 2rem;
    height: 15.3rem;
    background-image: url(../img/company-bg.jpg);
    background-size: cover;
    position: relative;
}
.company-profile-section .banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 97, 177, 0.70);
}
.company-profile-section .banner .back-btn {
    background-color: #FEFEFE !important;
}
.company-profile-section .banner .back-btn i::before {
    color: var(--primary);
}
.company-profile-section .banner .social a {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: .25rem;
    background-color: #FEFEFE;
}
.company-profile-section .banner .social a i:before {
    color: var(--primary);
}
.company-profile-section .profile-header {
    padding: .75rem 2rem 1rem;
    background-color: #fff;
}
.company-profile-section .profile-header .profile-logo img {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: .3rem;
    object-fit: contain;
    background-color: #fff;
    margin-top: -3.375rem;
}
.company-profile-section .profile-body {
    padding: 1.25rem 2rem;
    background-color: #FCFCFC;
}
.company-profile-section .profile-body .contact-box i {
    border-radius: .25rem;
    background: rgba(18, 97, 177, 0.10);
    padding: .2rem;
    font-size: 1.25rem;
}
.company-profile-section .profile-body .contact-box i.icon-call::before {
    opacity: .6;
}

/** supplier profile **/
.supplier-profile .profile-header {
    padding: 1.3rem 2rem;
    background-color: #FCFCFC;
}
.supplier-profile .profile-body {
    padding: 1.25rem;
    border-radius: .625rem;
}
.supplier-profile .profile-body .tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--grey-font);
    font-size: .8125rem;
    border-radius: .42rem;
    padding: 3px 6px;
}

/***
    Chat
***/
.chat-area .chatlist, .chat-area .chatbox {
    background-color: #FEFEFE;
    box-shadow: 0px 0px 5.395px -2.697px rgba(0, 0, 0, 0.25);
    border-radius: .625rem;
    overflow: hidden;
}
.chat-area .chatlist .chatlist-head,
.chat-area .chatbox .chatbox-head {
    padding: 1.3rem 1.25rem 1rem;
}
.chat-area .chatlist .chatlist-body,
.chat-area .chatbox .chatbox-body {
    padding: 1rem 1.25rem;
    height: 70vh;
    overflow-y: auto;
}
.chat-area .chatbox .chatbox-body {
    height: calc(70vh - 4.5rem);
}
.chat-area .chatlist .chatlist-body ul li {
    padding: .5rem;
    transition: all .3s;
}
.chat-area .chatlist .chatlist-body ul li.active,
.chat-area .chatlist .chatlist-body ul li:hover {
    border-radius: .3rem;
    background-color: rgba(18, 97, 177, 0.07);
}
.chat-area .chatlist .chatlist-body ul li .msg-info {
    flex: 1;
}
.chat-area .chatlist .chatlist-body ul li .msg-info .msg-info-text {
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -o-line-clamp: 1;
    -ms-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.chat-area .chatlist .chatlist-body ul li .msg-info small {
    font-size: .9rem;
}
.chat-area .chatlist .chatlist-body ul li .msg-img img {
    width: 1.9rem ;
    height: 1.9rem ;
    border-radius: 50%;
    background-color: #d3d3d380;
}
.chat-area .chatlist .chatlist-body ul li.active .msg-img img {
    background-color: #fff;
}

.chat-area .scrollable::-webkit-scrollbar-track,body::-webkit-scrollbar-track {
    background-color: transparent
}
.chat-area .scrollable::-webkit-scrollbar,body::-webkit-scrollbar {
    width: 4px;
    background-color: transparent
}
.chat-area .scrollable::-webkit-scrollbar-thumb,body::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
}

.chat-area .chatbox .chatbox-body .msg {
    display: flex;
    align-items: flex-end;
    gap: .5rem;
}
.chat-area .chatbox .chatbox-body .msg.left-msg {
    flex-direction: row-reverse;
}
.chat-area .chatbox .chatbox-body .msg .msg-img img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    background: #F1F3F6;
    border-radius: 50%;
}
.chat-area .chatbox .chatbox-body .msg .msg-info .msg-text {
    background-color: #F6F6F6;
    width: fit-content;
    max-width: 30rem;
    padding: .875rem;
    border-radius: .8125rem .8125rem 0 .8125rem;
}
.chat-area .chatbox .chatbox-body .msg.left-msg .msg-info .msg-text {
    border-radius: .8125rem .8125rem .8125rem 0;
    background-color: var(--primary);
}
.chat-area .chatbox .chatbox-body .msg .time {
    font-size: .6rem;
    display: block;
}
.chat-area .chatbox .chatbox-body .msg.left-msg .time {
    text-align: end;
}
.chat-area .chatbox .chatbox-body .msg .attachment img {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: contain;
    border-radius: .45rem;
    background-color: #fff;
}
.chat-area .chatbox .chatbox-body .msg .review {
    margin-top: .625rem;
}
.chat-area .chatbox .chatbox-body .msg .review span {
    font-size: .7rem;
}
.chat-area .chatbox .chatbox-footer {
    height: 4.375rem;
    padding: .5rem 1.25rem;
    box-shadow: 0px 0px 8.992px -2.697px rgba(0, 0, 0, 0.25);
}
.chat-area .chatbox .chatbox-footer .icon-plus::before {
    color: var(--primary);
}
.chat-area .chatbox .chatbox-footer .send-msg {
    position: relative;
    flex: 1;
}
.chat-area .chatbox .chatbox-footer .send-msg .form-control {
    height: 3.25rem;
    background: #F6F6F6;
    border: 0;
    border-radius: .25rem;
    padding: .25rem 1rem;
}
.chat-area .chatbox .chatbox-footer .send-msg .form-control::-ms-input-placeholder {
    color: rgba(18, 4, 4, 0.40);
    font-size: .75rem;
}
.chat-area .chatbox .chatbox-footer .send-msg .form-control::placeholder {
    color: rgba(18, 4, 4, 0.40);
    font-size: .75rem;
}
.chat-area .chatbox .chatbox-footer .send-msg .send-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .4rem;
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .3rem;
    background-color: var(--primary);
    box-shadow: 0px 0px 0.899px 0px rgba(0, 0, 0, 0.25);
}

/***
    Form Tabs
***/
.form-tabs-section {
    position: relative;
    padding: 0;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    border-radius: .6875rem;
    background-color: var(--grey-font);
}
.company-data .form-tabs-section {
    border-radius: 1rem;
    box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 0.25);
}
.company-data .def-tabs.nav-tabs {
    border-bottom: 3px solid rgba(18, 4, 4, 0.15);
}
.company-data .def-tabs.nav-tabs .nav-item {
    flex: 1;
}
.company-data .def-tabs.nav-tabs .nav-item .nav-link {
    font-size: 1.75rem;
    color: rgba(18, 4, 4, 0.35);
    margin-bottom: -3px;
    width: 100%;
    line-height: 2.45rem;
    padding: 1.25rem 1rem;
}
.company-data .def-tabs.nav-tabs .nav-item .nav-link.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

/***
    table
***/
.def-table tr th, .def-table tr td {
    font-size: 1.125rem;
    padding: 1.125rem 1rem;
    color: #120404;
    font-weight: 600;
}
.def-table tr th:first-child, .def-table tr td:first-child {
    padding-right: 2.5rem;
}
.def-table tr th:last-child, .def-table tr td:last-child {
    padding-left: 2.5rem;
}
.def-table thead tr th {
    background-color: rgba(18, 97, 177, 0.05);
    border-bottom: 0;
    white-space: nowrap;
}
.def-table tbody td {
    border-bottom-color: rgba(0, 0, 0, 0.10);
    vertical-align: middle;
    padding-top: .7rem;
    padding-bottom: .7rem;
}
.def-table.no-border tbody td {
    border-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.def-table .actions .action {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .55rem;
    background-color: rgba(18, 97, 177, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.def-table .actions .action.edit {
    background-color: rgba(16, 144, 100, 0.10);
}
.def-table .actions .action.delete {
    background-color: rgba(195, 39, 39, 0.10);
}
.def-table .actions .action.edit i span::before {
    color: #00A887;
}
.def-table .actions .dropdown-menu {
    background-color: #fff;
    border: 0;
    box-shadow:  0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    text-align: center;
}
.def-table .actions .dropdown-menu .main-btn {
    min-width: 4.375rem;
    font-size: .875rem;
}
.def-table td .link-icon .checked {
    position: absolute;
    right: -1.5rem;
    top: .5rem;
}
.def-table.collapse-table .logo img {
    min-width: 9rem;
}
.def-table.collapse-table .collapse-btn svg,
.def-table.collapse-table .collapse-btn i {
    transition: all .3s;
}
.def-table.collapse-table .collapse-btn:not(.collapsed) svg,
.def-table.collapse-table .collapse-btn:not(.collapsed) i {
    transform: scaleY(-1);
}


/**
    Responsive
**/
@media (min-width: 1500px) {
    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}
@media (min-width: 1400px) {
	.container {
		max-width: 86%;
	}
}

@media (max-width: 1399px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    html {
        font-size: 14px;
    }
    .dashboard-wrapper .sidebar {
        transform: translateX(100%);
        transition: transform .3s;
    }
    .dashboard-wrapper .sidebar.active {
        transform: translateX(0);
    }
    .dashboard-wrapper .sidebar .close {
        position: absolute;
        top: 2rem;
        left: 1.5rem;
    }
    .dashboard-wrapper .sidebar .close i::before {
        color: white;
    }
    .dashboard-wrapper .dashboard-content {
        margin-right: 0;
        padding: 1.5rem 2rem;
    }
    .principle-section .shape img,
    .about-section .shape img {
        width: 75%;
    }
}

@media (min-width: 992px) {
    .gx-lg-45 {
        --bs-gutter-x: 2rem;
    }
    .gx-lg-6 {
        --bs-gutter-x: 5rem;
    }
    .teachers-section .teachers-filter .form-select {
        flex: auto;
        width: auto;
    }
    .dashboard-wrapper .dashboard-content .table-responsive {
        overflow: initial;
    }
}

@media(max-width: 991px) {
    html {
        font-size: 14px;
    }
    
    /* header */
    header nav .bars {
        display: block;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    header nav .links-list {
        display: none;
        background: #fff;
        padding: 1.75rem;
        width: 100%;
        position: absolute;
        top: 100%;
        right: 0;
        margin: 0;
        border-radius: .5rem;
		-webkit-box-shadow: rgb(0 0 0 / 12%) 0px 2px 10px;
        box-shadow: rgb(0 0 0 / 12%) 0px 2px 10px;
        z-index: 99;
    }
    header nav .links-list > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .dropdown .droplist {
        width: 100%;
    }
    header nav .links-list > ul .list-item {
        padding: 0;
        margin: 0;
    }
    header nav .links-list > ul .list-item .link {
        padding: .6rem 0;
    }
    header nav .nav-account {
        margin-right: auto;
        margin-left: 1rem;
    }
    .hero-section .owl-dots {
        margin-top: .6rem !important;
    }
    .main-sidebar .scrollable {
        max-height: 28rem;
    }
    .step-app>.step-steps>li:not(:last-child)::before {
        width: 70%;
        right: 25%;
    }
    .suppliers-section .main-sidebar .list-items > li .sublist {
        right: 1.25rem;
        top: 100%;
        max-width: 90%;
        padding: 1.25rem 1.5rem;
    }
    .suppliers-section .main-sidebar .list-items > li .sublist .sublist-items {
        gap: 3rem;
        flex-wrap: wrap;
    }
    .principle-section .shape, .about-section .shape {
        display: none;
    }
    .principle-section .principle-list {
        margin-right: 0;
    }
    .packages-section .package-card.bg-blue {
        margin-top: 0;
    }
    .testimonial-section {
        padding: 3rem 0;
    }
    .testimonial-section .section-title {
        margin-bottom: 3rem;
    }
    .dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-select.toggle-filter {
        margin-left: 2rem;
    }
}

@media(max-width: 767px) {
    .gap-45 {
        gap: 1.25rem;
    }
    .p-46 {
        padding: 1.75rem;
    }
    .section-title h2, .section-title2 h2 {
        font-size: 1.75rem;
        line-height: 2.45rem;
    }
    header nav .nav-account .notification .icon-notification, header nav .nav-account .icon-cart {
        font-size: 1.5rem;
    }
    header nav .nav-account .login .icon-user {
        font-size: 2.25rem;
    }
    header nav .logo img {
        width: 6rem;
    }
    header nav .nav-account .login .icon-user-outline {
        font-size: 1.5rem;
    }
    header nav .nav-account {
        gap: 1.25rem;
    }
    header nav .nav-account svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    .hero-section .hero-slides .hero-title {
        font-size: 2.25rem;
        line-height: 3.5rem;
    }
    .hero-section .hero-count p {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .hero-section .hero-count p span {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    .step-app>.step-steps>li:not(:last-child)::before {
        width: 60%;
        right: 35%;
    }
    .principle-section .principle-list .item .title span {
        font-size: 3.5rem;
        line-height: 5.125rem;
    }
    .dashboard-wrapper .dashboard-content {
        padding: 1.5rem 1.25rem;
    }
    .dashboard-wrapper .dashboard-content .content-box .rfq-box-header .company-logo {
        width: 100%;
    }
    .company-profile-section .profile-header {
        padding: 1rem 1.5rem;
    }
    .company-profile-section .profile-body {
        padding: 1.25rem 1.5rem;
    }
    .company-profile-section .profile-header .profile-logo img {
        width: 5.25rem;
        height: 5.25rem;
    }
    .chat-area .chatlist .chatlist-body {
        height: 20.5rem;
    }
    .mr-sm-auto {
        margin-right: auto;
    }
    .clients-section {
        padding: 6rem 0;
    }
    .clients-section .client {
        margin: 0 1.25rem;
    }
    .features-section .feature-card .card-img {
        width: 3.5rem;
        height: 3.5rem;
    }
    .testimonial-section {
        padding: 2rem 0;
    }
    .testimonial-section .section-title {
        margin-bottom: 2rem;
    }
    .testimonial-section .testi-card {
        gap: 1.2rem;
    }
    .testimonial-section .testi-card .testi-img img {
        width: 4.8125rem;
    }
    .testimonial-section .owl-dots {
        margin-top: 3rem !important;
    }
    .product-details-area .pdetails-images .slider-container {
        width: 100%;
    }
    .product-details-area .pdetails-largeimages,
    .product-details-area .pdetails-largeimages .pdetails-singleimage img,
    .product-details-area .pdetails-largeimages .slick-list, 
    .product-details-area .pdetails-largeimages .slick-track {
        height: auto;
    }
    .product-details-area .slick-dots li button:hover:before, 
    .product-details-area .slick-dots li button:focus:before {
        opacity: .25;
    }
    .product-details-area .slick-dots li.slick-active button:before {
        color: var(--primary);
    }
    footer .copyrights p {
        margin-top: 0;
        font-size: 1rem;
    }
}

@media(min-width: 576px) {
    .def-modal .modal-dialog {
        max-width: 525px;
    }
    .def-modal .modal-dialog:not(.modal-dialog-centered) {
        margin-top: 5rem;
    }
}

@media(max-width: 575px) {
    .px-45 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .px-46 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
	header nav .links-list > ul .list-item li a {
		white-space: normal;
	}
    header nav .nav-account {
        gap: .8rem;
    }
    header nav .logo img {
        width: 5.5rem;
    }
    header nav .dropdown-toggle {
        font-size: .9rem;
    }
    .hero-section .owl-dots {
        text-align: center;
    }
    .hero-section .hero-slides .hero-title {
        font-size: 1.75rem;
        line-height: 2.8rem;
    }
    .section-filter .form-control, .section-filter .form-select {
        font-size: .8rem;
    }
    .step-app>.step-steps>li .circle {
        width: 2.5rem;
        height: 2.5rem;
    }
    .step-app>.step-steps>li:not(:last-child)::before {
        top: 1.3rem;
    }
    .step-app>.step-steps>li h4 {
        font-size: 1rem;
    }
    .main-form .otp-input {
        width: 2.9rem;
        height: 2.9rem;
    }
    .dashboard-wrapper .dashboard-content .content-box .box-header {
        padding: 1.5rem;
    }
    .dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .main-form {
        width: 100%;
    }
    .dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-select.toggle-filter {
        width: 100%;
        margin: 0;
    }
    .dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-group {
        width: 100%;
        gap: 1rem !important;
    }
    .dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-group .form-select,
    .dashboard-wrapper .dashboard-content .content-box .box-header .services-filter .form-group .form-control {
        width: 100%;
    }
    .def-tabs.nav-tabs {
        gap: .5rem;
    }
    .company-data .def-tabs.nav-tabs .nav-item .nav-link {
        padding: .75rem 1rem;
    }
    .dashboard-wrapper .dashboard-content .content-box .rfq-box-header .total-items,
    .dashboard-wrapper .dashboard-content .content-box .rfq-box-header .items-num {
        width: 100%;
    }
    .dashboard-wrapper .dashboard-content .content-box .rfq-box-header .total-items > div,
    .dashboard-wrapper .dashboard-content .content-box .rfq-box-header .items-num > div {
        justify-content: space-between;
    }
    .company-profile-section .profile-header ul {
        justify-content: space-between;
        width: 100%;
        text-align: start !important;
    }
}
