html {
    direction: rtl;
}

:root {
    --primaryColor: #0096c0;
    --secondaryColor: #659590;
    --thirdColor: #a99466;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: 'Roboto', 'Cairo', sans-serif;
    background-color: #fafafa;
    min-height: 100vh;
}

body>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

a {
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: var(--primaryColor);
}

a:hover {
    color: var(--primaryColor);
    opacity: .9;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

.text-body .h1,
.text-body .h2,
.text-body .h3,
.text-body .h4,
.text-body .h5,
.text-body .h6,
.text-body h1,
.text-body h2,
.text-body h3,
.text-body h4,
.text-body h5,
.text-body h6 {
    margin-bottom: 1rem;
}

.red {
    color: red;
}

.capitalize {
    text-transform: capitalize;
}

.lh-18 {
    line-height: 1.8;
}

.badge {
    border-radius: 50px;
    font-weight: 400;
    padding: 6px 15px;
}

[type=email] {
    direction: rtl;
}

.bg-primary {
    background-color: var(--primaryColor) !important;
}

.bg-secondary {
    background-color: var(--secondaryColor) !important;
}

.bg-third {
    background-color: var(--thirdColor) !important;
}

.text-primary {
    color: var(--primaryColor) !important;
}

.text-secondary {
    color: var(--secondaryColor) !important;
}

.form-label {
    margin-bottom: 10px;
}

.form-control {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-control.form-control-md {
    padding: 10px 15px;
}

.form-control:focus {
    border-color: var(--primaryColor);
}

.form-select {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-select.form-select-md {
    padding: 10px 15px;
}

.form-select:focus {
    border-color: var(--primaryColor);
}

.form-check .form-check-input {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-check .form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.form-check .form-check-input:focus {
    border-color: var(--primaryColor);
}

.dropdown-menu {
    border: 0;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dropdown-item:active,
.dropdown-item:focus {
    background-color: #eee;
    color: #222;
}

.btn {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn.btn-md {
    padding: 10px 25px;
}

.btn.btn-primary {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    opacity: .9;
}

.btn.btn-outline-primary {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus {
    background-color: var(--primaryColor);
    color: #fff;
}

.btn.btn-secondary {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
}

.btn.btn-secondary::hover,
.btn.btn-secondary::focus {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    opacity: .9;
}

.btn.btn-outline-secondary {
    border-color: var(--secondaryColor);
    color: var(--secondaryColor);
}

.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus {
    background-color: var(--secondaryColor);
    color: #fff;
}

.btn.btn-light {
    color: #212529;
    background: linear-gradient( 180deg, #fff, #f9fafb);
    border-color: #c4cdd5;
    box-shadow: 0 1px 0 0 rgb(22 29 37 / 5%);
}

.card-v {
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    border-radius: 10px;
}

.card-v .card-v-body {
    padding: 40px;
}

@media (max-width: 575.98px) {
    .card-v .card-v-body {
        padding: 30px 25px;
    }
}

.nav-bar {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 16px;
}

.nav-bar .nav-bar-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.nav-bar .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #444;
}

.nav-bar .logo img {
    height: 85px;
}

.nav-bar .logo:hover {
    opacity: 1;
}

.navlinks {
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-color: #f5f5f5;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.navlinks .navlinks-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 65px;
}

.navlinks .navlinks-inner .navlinks-menu-btn {
    display: none;
    cursor: pointer;
    color: #444;
}

@media (max-width: 991.98px) {
    .navlinks .navlinks-inner .navlinks-menu-btn {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .navlinks .navlinks-inner .navlinks-menu {
        visibility: hidden;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 1030;
        opacity: 0;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
}

.navlinks .navlinks-inner .navlinks-menu .overlay {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .navlinks .navlinks-inner .navlinks-menu .overlay {
        display: block;
    }
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        position: absolute;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100%;
        background-color: #fff;
        padding: 20px 20px;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-menu-close {
    display: none;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-bottom: 10px;
    cursor: pointer;
    color: #666;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (max-width: 991.98px) {
    .navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-menu-close {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-menu-close:hover {
    opacity: .8;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner a {
    color: #444;
    cursor: pointer;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner a:not(:last-child) {
    margin-left: 20px;
}

@media (max-width: 991.98px) {
    .navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner a:not(:last-child) {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.navlinks .navlinks-inner .navlinks-menu.show {
    visibility: visible;
    opacity: 1;
}

.navlinks .navlinks-inner .navlinks-menu.show .navlinks-menu-inner {
    right: 0;
}

.navlinks .navlinks-inner .navlinks-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 16px;
}

.navlinks .navlinks-inner .navlinks-actions>*:not(:last-child) {
    margin-left: 10px;
}

.navlinks.active {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    z-index: 1030;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown {
    position: relative;
    z-index: 1030;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown:not(:last-child) {
    margin-left: 20px;
}

@media (max-width: 991.98px) {
    .navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown:not(:last-child) {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown .navlinks-dropdown-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #444;
    cursor: pointer;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown .navlinks-dropdown-btn .navlinks-dropdown-btn-icon {
    margin-right: 6px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown .navlinks-dropdown-btn .navlinks-dropdown-btn-icon i {
    font-size: 11px;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown .navlinks-dropdown-menu {
    display: none;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 44px;
    right: -10px;
    background-color: #f5f5f5;
    border-radius: 0 0 5px 5px;
    padding: 14px;
    min-width: 180px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    opacity: 0;
    -webkit-transform: perspective(200px) translateZ(-20px);
    transform: perspective(200px) translateZ(-20px);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (max-width: 991.98px) {
    .navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown .navlinks-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: #f5f5f5 !important;
    }
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown .navlinks-dropdown-menu a:not(:last-child) {
    margin-bottom: 12px;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown.active .navlinks-dropdown-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
}

.navlinks .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown.animated .navlinks-dropdown-menu {
    -webkit-transform: perspective(200px) translateZ(0);
    transform: perspective(200px) translateZ(0);
}

.navlinks.active .navlinks-inner .navlinks-menu .navlinks-menu-inner .navlinks-dropdown .navlinks-dropdown-menu {
    background-color: #fff;
}

.wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 750px;
    background-color: var(--secondaryColor);
    padding-top: 50px;
    padding-bottom: 200px;
}

.wrapper .wrapper-content {
    color: #fff;
    overflow: hidden;
}

.wrapper .wrapper-content .wrapper-img img {
    width: 100%;
}

.wrapper .wrapper-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.wrapper .wrapper-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wrapper .wrapper-wave .shape-fill {
    fill: #fafafa;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section.centered .section-header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section.centered .section-header .section-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section .section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section .section-header .section-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.section .section-header .section-title .section-title-text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.section .section-header .section-title::before {
    display: block;
    content: '';
    width: 25%;
    height: 5px;
    background-color: #ddd;
    margin-top: 16px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.section .section-header .section-title::after {
    display: block;
    content: '';
    width: 50%;
    height: 5px;
    background-color: #ddd;
    margin-top: 8px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.course-page .course {
    padding: 30px;
}

.course-page .course .course-img {
    height: auto;
}

.course-page .course .course-body {
    padding: 20px 0 0;
}

.course-page .course:hover .course-img img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.course-page .card-v .card-v-body {
    padding: 30px;
}

.courses-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.courses-row .course {
    margin: 10px;
    width: calc(100% / 3 - 20px);
    height: auto;
}

@media (max-width: 1749.98px) {
    .courses-row .course {
        width: calc(100% / 3 - 20px);
    }
}

@media (max-width: 1399.98px) {
    .courses-row .course {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 1099.98px) {
    .courses-row .course {
        width: calc(100% / 1 - 20px);
    }
}

@media (max-width: 991.98px) {
    .courses-row .course {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 767.98px) {
    .courses-row .course {
        width: calc(100% / 1 - 20px);
    }
}

.course {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    border-radius: 10px;
    height: 100%;
}

.course .course-header {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.course .course-header .course-price {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--thirdColor);
    color: #fff;
    padding: 7px 18px;
    border-radius: 5px;
    font-weight: 500;
}

.course .course-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 20px 30px;
}

.course .btn {
    margin-top: auto;
}

.course .course-img {
    display: block;
    width: 100%;
    height: 240px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.course .course-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
    -webkit-transform: perspective(200px) translateZ(0);
    transform: perspective(200px) translateZ(0);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.course .course-time {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 10px;
}

.course .course-title {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.course .course-text {
    color: #888;
    margin-bottom: 15px;
    line-height: 1.8;
}

.course:hover .course-img img {
    -webkit-transform: perspective(200px) translateZ(20px);
    transform: perspective(200px) translateZ(20px);
}

.client {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    height: 130px;
    border-radius: 5px;
}

.client .client-img {
    max-width: 100%;
    max-height: 100%;
}

.client .client-img img {
    width: 100%;
    height: 100%;
}

.client:hover {
    opacity: 1;
}

.swiper {
    --swiper-theme-color: var(--primaryColor);
    padding: 5px;
    margin-right: -5px;
    margin-left: -5px;
}

.swiper.centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper.centered .swiper-wrapper {
    width: auto;
    max-width: 100%;
}

.swiper .swiper-slide {
    height: auto;
}

.swiper .swiper-pagination {
    position: static;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    transform: translateX(0) !important;
}

.swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.swiper-navs .swiper-nav {
    padding: 12px 18px;
    background-color: var(--primaryColor);
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.swiper-navs .swiper-nav:first-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.swiper-navs .swiper-nav:last-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.swiper-navs .swiper-nav:hover {
    opacity: .8;
}

.sign {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
}

.sign.sign-reg {
    max-width: 700px;
}

.sign .sign-title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 25px;
}

.checkout .card-v .card-v-body {
    padding: 30px;
}

.checkout .checkout-course {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767.98px) {
    .checkout .checkout-course {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

.checkout .checkout-course .checkout-course-img {
    width: 28%;
    margin-left: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 1399.98px) {
    .checkout .checkout-course .checkout-course-img {
        width: 33%;
    }
}

@media (max-width: 767.98px) {
    .checkout .checkout-course .checkout-course-img {
        width: 100%;
        margin-bottom: 16px;
        margin-left: 0;
    }
}

.checkout .checkout-course .checkout-course-img img {
    width: 100%;
    border-radius: 5px;
}

.checkout .checkout-course .checkout-course-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.checkout .checkout-course .checkout-course-time {
    color: #888;
    margin-bottom: 8px;
    font-size: 13px;
}

.checkout .checkout-course .checkout-course-title {
    margin-bottom: 10px;
}

.checkout .checkout-course .checkout-course-text {
    font-size: 15px;
    color: #888;
}

.checkout .checkout-discount {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.checkout .checkout-price .checkout-price-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.checkout .checkout-price .checkout-price-item:not(:last-child) {
    margin-bottom: 14px;
}

.checkout .checkout-price .checkout-price-item.subtotal {
    color: #888;
}

.checkout .checkout-price .checkout-price-item.discount {
    color: var(--secondaryColor);
}

.checkout .checkout-price .checkout-price-item.total {
    font-size: 18px;
    font-weight: 600;
    padding-top: 12px;
    color: #000;
    border-top: 1px solid #eee;
}

.payment-method {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    padding: 20px 15px;
    z-index: 1;
}

.payment-method .payment-img {
    position: relative;
    margin-left: 10px;
    z-index: 1;
}

.payment-method .payment-img img {
    height: 25px;
}

.payment-method .payment-title {
    position: relative;
    font-weight: 500;
    z-index: 1;
}

.payment-method .form-check-label {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.payment-method .form-check-input {
    display: none;
    margin-top: 0;
    margin-left: auto;
    z-index: 1;
}

.payment-method .form-check-input+ ::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #eee;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.payment-method .form-check-input:checked+ ::after {
    border-color: var(--primaryColor);
}

.footer {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #252525;
    color: #fff;
    font-size: 14px;
    margin-top: auto;
}

.footer .footer-copyright {
    color: #aaa;
}

.footer .footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer .footer-links .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ccc;
}

.footer .footer-links .link:hover {
    color: #fff;
}

.footer .footer-links .link:not(:last-child) {
    margin-left: 10px;
}

.footer .footer-links .link:not(:last-child)::after {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #ccc;
    border-radius: 50%;
    margin-right: 10px;
}

.top-banner {
    background-color: var(--thirdColor);
    padding: 10px;
    color: #FFF;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.top-banner .text {
    text-align: center;
}


/* Start Pagination */

.page-item:not(:last-child) {
    margin-left: 10px;
}

.page-item .page-link {
    color: var(--primaryColor);
    border: 0;
    border-radius: 5px;
    padding: 5px 15px;
    background-color: transparent;
}

.page-item .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.page-content {
    line-height: 1.7;
}


/* Backend */

.back-sign-page {
    width: 100%;
    background-image: url('../../images/pattern.png');
    background-position: center;
    background-color: #ffffff;
    padding: 60px 0;
    line-height: 1.7;
}

input.validate-invalid {
    margin-bottom: 10px;
}

span.validate-invalid {
    color: red;
}

.trainee-card {
    position: relative;
}

.trainee-card .remove-btn {
    position: absolute;
    left: 0;
    top: 0;
    background: red;
    width: 25px;
    height: 25px;
    text-align: center;
    border-bottom-right-radius: 5px;
    cursor: pointer;
}

.trainee-card .remove-btn i {
    color: #fff;
}

.under-maintenance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 90vh;
    padding: 3rem;
}

.tb-w-1x {
    min-width: 1rem;
}

.tb-w-2x {
    min-width: 2rem;
}

.tb-w-3x {
    min-width: 3rem;
}

.tb-w-4x {
    min-width: 4rem;
}

.tb-w-5x {
    min-width: 5rem;
}

.tb-w-6x {
    min-width: 6rem;
}

.tb-w-7x {
    min-width: 7rem;
}

.tb-w-8x {
    min-width: 8rem;
}

.tb-w-9x {
    min-width: 9rem;
}

.tb-w-10x {
    min-width: 10rem;
}

.tb-w-11x {
    min-width: 11rem;
}

.tb-w-12x {
    min-width: 12rem;
}

.tb-w-13x {
    min-width: 13rem;
}

.tb-w-14x {
    min-width: 14rem;
}

.tb-w-15x {
    min-width: 15rem;
}

.tb-w-16x {
    min-width: 16rem;
}

.tb-w-17x {
    min-width: 17rem;
}

.tb-w-18x {
    min-width: 18rem;
}

.tb-w-19x {
    min-width: 19rem;
}

.tb-w-20x {
    min-width: 20rem;
}

.tb-w-21x {
    min-width: 21rem;
}

.tb-w-22x {
    min-width: 22rem;
}

.tb-w-23x {
    min-width: 23rem;
}

.tb-w-24x {
    min-width: 24rem;
}

.tb-w-25x {
    min-width: 25rem;
}

.tb-w-26x {
    min-width: 26rem;
}

.tb-w-27x {
    min-width: 27rem;
}

.tb-w-28x {
    min-width: 28rem;
}

.tb-w-29x {
    min-width: 29rem;
}

.tb-w-30x {
    min-width: 30rem;
}

.tb-w-31x {
    min-width: 31rem;
}

.tb-w-32x {
    min-width: 32rem;
}

.tb-w-33x {
    min-width: 33rem;
}

.tb-w-34x {
    min-width: 34rem;
}

.tb-w-35x {
    min-width: 35rem;
}

.tb-w-36x {
    min-width: 36rem;
}

.tb-w-37x {
    min-width: 37rem;
}

.tb-w-38x {
    min-width: 38rem;
}

.tb-w-39x {
    min-width: 39rem;
}

.tb-w-40x {
    min-width: 40rem;
}

.tb-w-41x {
    min-width: 41rem;
}

.tb-w-42x {
    min-width: 42rem;
}

.tb-w-43x {
    min-width: 43rem;
}

.tb-w-44x {
    min-width: 44rem;
}

.tb-w-45x {
    min-width: 45rem;
}

.tb-w-46x {
    min-width: 46rem;
}

.tb-w-47x {
    min-width: 47rem;
}

.tb-w-48x {
    min-width: 48rem;
}

.tb-w-49x {
    min-width: 49rem;
}

.tb-w-50x {
    min-width: 50rem;
}

table.dataTable>thead .sorting:before,
table.dataTable>thead .sorting_asc:before,
table.dataTable>thead .sorting_desc:before,
table.dataTable>thead .sorting_asc_disabled:before,
table.dataTable>thead .sorting_desc_disabled:before {
    right: auto;
    left: 1em;
}

table.dataTable>thead .sorting:after,
table.dataTable>thead .sorting_asc:after,
table.dataTable>thead .sorting_desc:after,
table.dataTable>thead .sorting_asc_disabled:after,
table.dataTable>thead .sorting_desc_disabled:after {
    right: auto;
    left: .5em;
}

table.dataTable>thead>tr>th:not(.sorting_disabled),
table.dataTable>thead>tr>td:not(.sorting_disabled) {
    padding-right: 1.25rem;
    padding-left: 30px;
}

.dataTables_wrapper {
    font-size: 1rem;
    direction: rtl;
}

.dataTables_wrapper .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.dataTables_wrapper .bottom .dataTables_paginate {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

@media (max-width: 991.98px) {
    .dataTables_wrapper .bottom .dataTables_paginate {
        width: 100%;
        margin-bottom: 1rem;
    }
    .dataTables_wrapper .bottom .dataTables_paginate ul.pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.dataTables_wrapper .bottom .dataTables_info {
    position: relative;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: .75rem;
    margin-right: auto;
    padding: 0 1.2rem 0 1.25rem;
}

@media (max-width: 991.98px) {
    .dataTables_wrapper .bottom .dataTables_info {
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .dataTables_wrapper .bottom .dataTables_info {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 1rem;
        padding: 0;
    }
    .dataTables_wrapper .bottom .dataTables_info::after {
        display: none;
    }
}

.dataTables_wrapper .bottom .dataTables_info::after {
    position: absolute;
    left: 0;
    content: '/';
    opacity: .5;
}

.dataTables_wrapper .bottom .dataTables_length {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

@media (max-width: 991.98px) {
    .dataTables_wrapper .bottom .dataTables_length {
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .dataTables_wrapper .bottom .dataTables_length {
        width: 100%;
        margin-left: 0;
    }
}

.dataTables_wrapper .bottom .dataTables_length .form-select {
    background-position: left .15rem center;
    background-size: 7px 9px;
    margin-right: .5rem;
}

.dataTables_wrapper .bottom .dataTables_length select {
    padding: .125rem .375rem;
    line-height: 1.125rem;
    min-height: 1.5rem;
    min-width: 45px;
    font-size: .875rem !important;
}

.top {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid #2125291a;
}

.top .dataTables_filter {
    text-align: start;
}

.top .dataTables_filter label {
    position: relative;
    display: block;
}

.top .dataTables_filter .form-control {
    width: 100%;
    margin-right: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(33, 37, 41, 0.3)'%3E%3Cpath d='M16.243 14.828s-.196.48-.542.826c-.361.361-.873.588-.873.588l-4.507-4.506A6.445 6.445 0 0 1 6.5 13 6.5 6.5 0 1 1 13 6.5a6.445 6.445 0 0 1-1.264 3.821l4.507 4.507zM6.5 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: 10px 12px !important;
    padding: 10px 10px 10px 2.25rem;
}

.table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
}

.table-bottom {
    padding: 20px 16px;
}

table {
    font-size: 16px;
}

table.dataTable {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

table thead th {
    padding-top: 1rem;
    padding-right: 1.25rem !important;
    padding-bottom: 1rem;
    padding-left: 1.25rem !important;
    border-top: 0;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    border-bottom: 1px solid #eee;
}

table thead th.sorting:hover {
    background-color: #eee;
}

table tbody td {
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
    border-bottom: 0;
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 300;
    border-bottom: 1px solid #eee;
}

.table-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-info .avatar {
    width: 50px;
    height: 50px;
    margin-left: 1rem;
}

.table-info .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .sm-hide {
        display: none;
    }
}

.invoice {
    font-size: 13px;
}

.invoice .invoice-container {
    width: 880px;
    padding: 35px 16px;
    margin: 0 auto;
}

.invoice .invoice-inner {
    padding: 50px 50px;
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

@media print {
    .invoice .invoice-inner {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
    }
}

.invoice .invoice-heading {
    font-weight: 600;
}

.invoice .invoice-header {
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.invoice .invoice-logo img {
    height: 80px;
}

.invoice .invoice-body {
    line-height: 1.6rem;
}

.invoice .invoice-table table {
    width: 100%;
}

.invoice .invoice-table table th {
    font-weight: 600;
    background-color: var(--primaryColor);
    color: #fff;
}

.invoice .invoice-table table th,
.invoice .invoice-table table td {
    border: 1px solid #eee;
    padding: 10px 16px;
}

.invoice .invoice-table table tbody td {
    color: #6c757d;
}

.invoice .invoice-table table tfoot td {
    background-color: #eee;
}

.invoice .invoice-iconcolor {
    color: var(--primaryColor);
}

.invoice .invoice-note {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 14px;
    padding-bottom: 14px;
}

.invoice .invoice-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media print {
    .invoice .invoice-actions {
        display: none;
    }
}

.invoice .invoice-actions .btn {
    border-radius: 200px;
}

.invoice .invoice-actions .btn:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.invoice .invoice-actions .btn:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primaryColor);
}

.nav-pills .nav-item {
    margin-right: .8rem;
}

.nav-pills .nav-link {
    background: 0 0;
    border: 1px solid var(--primaryColor);
    border-radius: var(--bs-nav-pills-border-radius);
    color: var(--primaryColor);
}

.dropdown-item {
    padding: .5rem 1rem;
}

.home-counters .counter {
    background: var(--thirdColor);
    padding: 20px;
    border-radius: 10px;
}

.home-counters .counter p {
    font-size: 28px;
    margin-bottom: .5rem;
    color: #ffffff;
}

.home-counters .counter h1 {
    font-size: 24px;
    font-family: Poppins;
    color: #ffffff;
}

@media print {
    @page {
        size: auto;
        margin: 0;
    }
}

.sheet {
    line-height: 1.7rem;
}

.sheet .sheet-container {
    width: 880px;
    padding: 35px 16px;
    margin: 0 auto;
}

.sheet .sheet-inner {
    padding: 50px 50px;
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    font-family: 'Noto Naskh Arabic', serif;
}

@media print {
    .sheet .sheet-inner {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
    }
}

.sheet .sheet-heading {
    font-weight: 800;
}

.sheet .sheet-text {
    font-weight: 600;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
}

.sheet .sheet-table {
    width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.sheet .sheet-table table {
    width: 100%;
}

.sheet .sheet-table table th {
    font-weight: 800;
    font-size: 20px;
}

.sheet .sheet-table table th,
.sheet .sheet-table table td {
    border: 1px solid #333;
    padding: 10px 16px;
}

.sheet .sheet-table table tbody td {
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.sheet .sheet-stamps {
    width: 600px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.sheet .sheet-stamp {
    text-align: center;
}

.sheet .sheet-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media print {
    .sheet .sheet-actions {
        display: none;
    }
}