﻿/* ========================
UIkit bootstrap-ecommerce.com 
===================== */
/* ==================== INCLUDE FONTS ======================= */
@import url("../fonts/roboto/font.css");

html {
    font-size: 14px;
}

body {
}

/* ================== HELPERS  =================== */
a:hover {
    text-decoration: none;
}

.img-wrap {
    text-align: center;
    display: block;
}

    .img-wrap img {
        max-width: 100%;
    }

.icon-wrap {
    text-align: center;
}

.zoom-in {
    transition: transform ease .3s;
}

.zoom-wrap:hover .zoom-in {
    transform: scale(1.1);
    transition: transform ease .3s;
}

/* =================  DEFINED VARIABLES =================== */
.icon-xs, .icon-sm, .icon-md, .icon-lg {
    display: inline-block;
    text-align: center;
}

.icon-xs {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
}

.icon-sm {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 22px;
}

.icon-md {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 32px;
}

.icon-lg {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 42px;
}

.img-xs, .img-sm, .img-md, .img-lg {
    object-fit: cover;
}

.img-xs {
    width: 40px;
    height: 40px;
}

.img-sm {
    width: 80px;
    height: 80px;
}

.img-md {
    width: 160px;
    height: 160px;
}

.img-lg {
    width: 400px;
    height: 300px;
}

.center-xy {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.center-y {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

.center-x {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.overflow-h {
    overflow: hidden;
}

.flip-h {
    transform: scaleX(-1);
}

.card-body-lg {
    padding: 2rem;
}

.shadow-in {
    box-shadow: inset 0 2px 4px rgba(51, 51, 51, 0.4);
}

.vh-100 {
    height: 100vh;
}

.vh-90 {
    height: 90vh;
}

.vh-80 {
    height: 80vh;
}

.vh-70 {
    height: 70vh;
}

.vh-60 {
    height: 60vh;
}

.vh-50 {
    height: 50vh;
}

[class*="hover-"] {
    transition: .5s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.5);
    transition: .5s;
}

.hover-bg:hover {
    background: #007bff;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left top, #007bff, #007bff);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom right, #007bff, #007bff);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom right, #007bff, #007bff);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, #007bff, #007bff);
    /* Standard syntax */
    transition: .5s;
}

.hover-zoom:hover {
    transition: .5s;
    transform: scaleX(1);
}

/* ========== input with icon ==========  */
.input-icon {
    position: relative;
}

    .input-icon i + input, .input-icon i + select {
        padding-left: 36px;
    }

    .input-icon i {
        position: absolute;
        color: #ccc;
        z-index: 9;
        left: 7px;
        top: 4px;
        width: 24px;
        text-align: center;
        padding: 7px 0;
    }

.form-inline .form-control-sm[type="number"] {
    max-width: 100px;
}

/* ========== borders ========== */
.border {
    border: 1px solid #dee2e6;
}

.border-left-white {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.border-right-white {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.border-top-white {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.border-bottom-white {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.circle {
    border-radius: 100%;
}

.round {
    border-radius: 200px;
}

/* ============== spacing ============== */
.padding-y {
    padding-top: 32px;
    padding-bottom: 32px;
}

.padding-top {
    padding-top: 32px;
}

.padding-bottom {
    padding-bottom: 32px;
}

.padding-y-lg {
    padding-top: 60px;
    padding-bottom: 50px;
}

.padding-top-lg {
    padding-top: 60px;
}

.padding-bottom-lg {
    padding-bottom: 60px;
}

.padding-y-sm {
    padding-top: 16px;
    padding-bottom: 16px;
}

.padding-top-sm {
    padding-top: 16px;
}

.padding-bottom-sm {
    padding-bottom: 16px;
}

.nopadding {
    padding: 0px;
}

.p0 {
    padding: 0px;
}

.p5 {
    padding: 5px;
}

.p7 {
    padding: 7px;
}

.p10 {
    padding: 10px;
}

.p15 {
    padding: 15px;
}

.p20 {
    padding: 20px;
}

.p30 {
    padding: 30px;
}

.p40 {
    padding: 40px;
}

.p50 {
    padding: 50px;
}

.p60 {
    padding: 60px;
}

.nomargin {
    margin: 0px;
}

.m0 {
    margin: 0px;
}

.m5 {
    margin: 5px;
}

.m7 {
    margin: 7px;
}

.m10 {
    margin: 10px;
}

.m15 {
    margin: 15px;
}

.m30 {
    margin: 30px;
}

.m40 {
    margin: 40px;
}

.m50 {
    margin: 50px;
}

.m60 {
    margin: 60px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

var {
    font-style: normal;
}

figure {
    margin-bottom: 0;
}

.form-noborder input, .form-noborder select, .form-noborder .btn {
    border: none;
}

    .form-noborder select.form-control-lg:not([size]):not([multiple]) {
        height: 2.875rem;
    }

/* all clearfix */
article:after,
.form-group:after {
    display: block;
    clear: both;
    content: "";
}

.border-cols:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}

.border-cols > [class*="col-"] {
    overflow: hidden;
    border-color: #dee2e6;
    border-width: 0 0 0 1px;
    border-style: solid;
}

/* -------------------- small grid gutter --------------------- */
.row-sm {
    margin-right: -7px;
    margin-left: -7px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .row-sm > [class^="col"] {
        padding-left: 7px;
        padding-right: 7px;
    }

.modal-full {
    min-width: 100%;
    margin: 0;
}

    .modal-full .modal-content {
        min-height: 100vh;
    }

legend {
    line-height: 20px;
    margin-bottom: 15px;
    width: auto;
    padding: 0 10px;
}

fieldset {
    border: 1px solid #e0e0e0;
    padding: 0 10px;
    margin-bottom: 20px;
}

.bg-NoorCare {
    background-color: #0c492a !important;
}

.text-NoorCare {
    color: #0c492a !important;
}

.text-NoorCareLight {
    color: #77bf39 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}

.bg-dark-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-grad-primary {
    background: #3395ff;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left top, #0062cc, #3395ff);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom right, #0062cc, #3395ff);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom right, #0062cc, #3395ff);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, #0062cc, #3395ff);
    /* Standard syntax */
}

.bg {
    background-color: #f8f8f8 !important;
}

.bg2 {
    background-color: #eceded !important;
}

.bg-purple {
    background-color: #6f42c1;
}

.bg-orange {
    background-color: #fd7e14;
}

.bg-green {
    background-color: #28a745;
}

.bg-blue {
    background-color: #007bff;
}

.bg-pattern {
    background-image: url(../images/banners/bg-pattern.svg), -webkit-linear-gradient(315deg, #007bff, #0062cc);
    background-image: url(../images/banners/bg-pattern.svg), linear-gradient(135deg, #007bff, #0062cc);
    background-size: cover, auto;
    background-repeat: no-repeat, repeat;
    background-position: 0px 0px, 50% 50%;
}

.bg-img {
    overflow: hidden;
    background-color: #ddd;
    background-image: -webkit-linear-gradient(315deg, rgba(51, 149, 255, 0.8), rgba(0, 98, 204, 0.9)), url("../images/banners/bg-cpu.jpg");
    background-image: linear-gradient(135deg, rgba(51, 149, 255, 0.8), rgba(0, 98, 204, 0.9)), url("../images/banners/bg-cpu.jpg");
    background-position: 0px 0px, 50% 50%;
    background-size: auto cover;
}

.overlay-grad {
    position: relative;
}

    .overlay-grad:before {
        position: absolute;
        content: "";
        display: block;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: .6;
        transition: .5s;
        background: #6c757d;
        /* For browsers that do not support gradients */
        background: -webkit-linear-gradient(left top, #007bff, #6c757d);
        /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(bottom right, #007bff, #6c757d);
        /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(bottom right, #007bff, #6c757d);
        /* For Firefox 3.6 to 15 */
        background: linear-gradient(to bottom right, #007bff, #6c757d);
        /* Standard syntax */
    }

    .overlay-grad:hover:before {
        opacity: .9;
    }

/* --------------------- titles ---------------------- */
.section-heading {
    margin-bottom: 20px;
    margin-top: 10px;
}

.title-section {
    padding-right: 15px;
}

.title-text {
    margin-top: 45px;
    margin-bottom: 20px;
}

.title-category {
    margin: 0;
    padding: 1rem 1rem;
}

.title-bg {
    padding: 7px 15px;
    color: #fff;
}

.font-title {
    font-family: "Roboto", sans-serif;
}

.text-lg {
    font-size: 125%;
}

.word-limit {
    height: 40px;
    line-height: 20px;
}

/* ==================  title element ================ */
.heading-line {
    position: relative;
}

    .heading-line .title-section {
        position: relative;
        display: inline-block;
        padding-right: 15px;
        background-color: inherit;
        z-index: 2;
    }

    .heading-line::before {
        top: 43%;
        border-top-style: solid;
        content: "";
        position: absolute;
        left: auto;
        right: 0;
        width: 100%;
        height: 0;
        border: 3px solid #E9EAEF;
        overflow: hidden;
    }

.b {
    font-weight: 600;
}

.white {
    color: #fff;
}

.black, .dark {
    color: #000;
}

/* ==================  title helpers ================ */
.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

.lh-sm {
    line-height: 1.2;
}

.lh-lg {
    line-height: 1.6;
}

/*! 
 * grid for 24 of 1 
 * made by bootstrap-ecommerce.com
*/
.col-1-24 {
    flex: 0 0 4.1666666667%;
    max-width: 4.1666666667%;
}

.col-2-24 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}

.col-3-24 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.col-4-24 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.col-5-24 {
    flex: 0 0 20.8333333333%;
    max-width: 20.8333333333%;
}

.col-6-24 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-7-24 {
    flex: 0 0 29.1666666667%;
    max-width: 29.1666666667%;
}

.col-8-24 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.col-9-24 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
}

.col-10-24 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}

.col-11-24 {
    flex: 0 0 45.8333333333%;
    max-width: 45.8333333333%;
}

.col-12-24 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-13-24 {
    flex: 0 0 54.1666666667%;
    max-width: 54.1666666667%;
}

.col-14-24 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}

.col-15-24 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
}

.col-16-24 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}

.col-17-24 {
    flex: 0 0 70.8333333333%;
    max-width: 70.8333333333%;
}

.col-18-24 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-19-24 {
    flex: 0 0 79.1666666667%;
    max-width: 79.1666666667%;
}

.col-20-24 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}

.col-21-24 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
}

.col-22-24 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
}

.col-23-24 {
    flex: 0 0 95.8333333333%;
    max-width: 95.8333333333%;
}

.col-24, .col-24-24 {
    flex: 0 0 100%;
    max-width: 100%;
}

.offset-1-24 {
    margin-left: 4.1666666667%;
}

.offset-2-24 {
    margin-left: 8.3333333333%;
}

.offset-3-24 {
    margin-left: 12.5%;
}

.offset-4-24 {
    margin-left: 16.6666666667%;
}

.offset-5-24 {
    margin-left: 20.8333333333%;
}

.offset-6-24 {
    margin-left: 25%;
}

.offset-7-24 {
    margin-left: 29.1666666667%;
}

.offset-8-24 {
    margin-left: 33.3333333333%;
}

.offset-9-24 {
    margin-left: 37.5%;
}

.offset-10-24 {
    margin-left: 41.6666666667%;
}

.offset-11-24 {
    margin-left: 45.8333333333%;
}

.offset-12-24 {
    margin-left: 50%;
}

.offset-13-24 {
    margin-left: 54.1666666667%;
}

.offset-14-24 {
    margin-left: 58.3333333333%;
}

.offset-15-24 {
    margin-left: 62.5%;
}

.offset-16-24 {
    margin-left: 66.6666666667%;
}

.offset-17-24 {
    margin-left: 70.8333333333%;
}

.offset-18-24 {
    margin-left: 75%;
}

.offset-19-24 {
    margin-left: 79.1666666667%;
}

.offset-20-24 {
    margin-left: 83.3333333333%;
}

.offset-21-24 {
    margin-left: 87.5%;
}

.offset-22-24 {
    margin-left: 91.6666666667%;
}

.offset-23-24 {
    margin-left: 95.8333333333%;
}

@media (min-width: 576px) {
    .col-sm-1-24 {
        flex: 0 0 4.1666666667%;
        max-width: 4.1666666667%;
    }

    .col-sm-2-24 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-sm-3-24 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }

    .col-sm-4-24 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-sm-5-24 {
        flex: 0 0 20.8333333333%;
        max-width: 20.8333333333%;
    }

    .col-sm-6-24 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-7-24 {
        flex: 0 0 29.1666666667%;
        max-width: 29.1666666667%;
    }

    .col-sm-8-24 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-sm-9-24 {
        flex: 0 0 37.5%;
        max-width: 37.5%;
    }

    .col-sm-10-24 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-sm-11-24 {
        flex: 0 0 45.8333333333%;
        max-width: 45.8333333333%;
    }

    .col-sm-12-24 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-13-24 {
        flex: 0 0 54.1666666667%;
        max-width: 54.1666666667%;
    }

    .col-sm-14-24 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-sm-15-24 {
        flex: 0 0 62.5%;
        max-width: 62.5%;
    }

    .col-sm-16-24 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-sm-17-24 {
        flex: 0 0 70.8333333333%;
        max-width: 70.8333333333%;
    }

    .col-sm-18-24 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-19-24 {
        flex: 0 0 79.1666666667%;
        max-width: 79.1666666667%;
    }

    .col-sm-20-24 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-sm-21-24 {
        flex: 0 0 87.5%;
        max-width: 87.5%;
    }

    .col-sm-22-24 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-sm-23-24 {
        flex: 0 0 95.8333333333%;
        max-width: 95.8333333333%;
    }

    .col-sm-24, .col-sm-24-24 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offset-sm-1-24 {
        margin-left: 4.1666666667%;
    }

    .offset-sm-2-24 {
        margin-left: 8.3333333333%;
    }

    .offset-sm-3-24 {
        margin-left: 12.5%;
    }

    .offset-sm-4-24 {
        margin-left: 16.6666666667%;
    }

    .offset-sm-5-24 {
        margin-left: 20.8333333333%;
    }

    .offset-sm-6-24 {
        margin-left: 25%;
    }

    .offset-sm-7-24 {
        margin-left: 29.1666666667%;
    }

    .offset-sm-8-24 {
        margin-left: 33.3333333333%;
    }

    .offset-sm-9-24 {
        margin-left: 37.5%;
    }

    .offset-sm-10-24 {
        margin-left: 41.6666666667%;
    }

    .offset-sm-11-24 {
        margin-left: 45.8333333333%;
    }

    .offset-sm-12-24 {
        margin-left: 50%;
    }

    .offset-sm-13-24 {
        margin-left: 54.1666666667%;
    }

    .offset-sm-14-24 {
        margin-left: 58.3333333333%;
    }

    .offset-sm-15-24 {
        margin-left: 62.5%;
    }

    .offset-sm-16-24 {
        margin-left: 66.6666666667%;
    }

    .offset-sm-17-24 {
        margin-left: 70.8333333333%;
    }

    .offset-sm-18-24 {
        margin-left: 75%;
    }

    .offset-sm-19-24 {
        margin-left: 79.1666666667%;
    }

    .offset-sm-20-24 {
        margin-left: 83.3333333333%;
    }

    .offset-sm-21-24 {
        margin-left: 87.5%;
    }

    .offset-sm-22-24 {
        margin-left: 91.6666666667%;
    }

    .offset-sm-23-24 {
        margin-left: 95.8333333333%;
    }
}

@media (min-width: 768px) {
    .col-md-1-24 {
        flex: 0 0 4.1666666667%;
        max-width: 4.1666666667%;
    }

    .col-md-2-24 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-md-3-24 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }

    .col-md-4-24 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-md-5-24 {
        flex: 0 0 20.8333333333%;
        max-width: 20.8333333333%;
    }

    .col-md-6-24 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-7-24 {
        flex: 0 0 29.1666666667%;
        max-width: 29.1666666667%;
    }

    .col-md-8-24 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-md-9-24 {
        flex: 0 0 37.5%;
        max-width: 37.5%;
    }

    .col-md-10-24 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-md-11-24 {
        flex: 0 0 45.8333333333%;
        max-width: 45.8333333333%;
    }

    .col-md-12-24 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-13-24 {
        flex: 0 0 54.1666666667%;
        max-width: 54.1666666667%;
    }

    .col-md-14-24 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-md-15-24 {
        flex: 0 0 62.5%;
        max-width: 62.5%;
    }

    .col-md-16-24 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-md-17-24 {
        flex: 0 0 70.8333333333%;
        max-width: 70.8333333333%;
    }

    .col-md-18-24 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-19-24 {
        flex: 0 0 79.1666666667%;
        max-width: 79.1666666667%;
    }

    .col-md-20-24 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-md-21-24 {
        flex: 0 0 87.5%;
        max-width: 87.5%;
    }

    .col-md-22-24 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-md-23-24 {
        flex: 0 0 95.8333333333%;
        max-width: 95.8333333333%;
    }

    .col-md-24, .col-md-24-24 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offset-md-1-24 {
        margin-left: 4.1666666667%;
    }

    .offset-md-2-24 {
        margin-left: 8.3333333333%;
    }

    .offset-md-3-24 {
        margin-left: 12.5%;
    }

    .offset-md-4-24 {
        margin-left: 16.6666666667%;
    }

    .offset-md-5-24 {
        margin-left: 20.8333333333%;
    }

    .offset-md-6-24 {
        margin-left: 25%;
    }

    .offset-md-7-24 {
        margin-left: 29.1666666667%;
    }

    .offset-md-8-24 {
        margin-left: 33.3333333333%;
    }

    .offset-md-9-24 {
        margin-left: 37.5%;
    }

    .offset-md-10-24 {
        margin-left: 41.6666666667%;
    }

    .offset-md-11-24 {
        margin-left: 45.8333333333%;
    }

    .offset-md-12-24 {
        margin-left: 50%;
    }

    .offset-md-13-24 {
        margin-left: 54.1666666667%;
    }

    .offset-md-14-24 {
        margin-left: 58.3333333333%;
    }

    .offset-md-15-24 {
        margin-left: 62.5%;
    }

    .offset-md-16-24 {
        margin-left: 66.6666666667%;
    }

    .offset-md-17-24 {
        margin-left: 70.8333333333%;
    }

    .offset-md-18-24 {
        margin-left: 75%;
    }

    .offset-md-19-24 {
        margin-left: 79.1666666667%;
    }

    .offset-md-20-24 {
        margin-left: 83.3333333333%;
    }

    .offset-md-21-24 {
        margin-left: 87.5%;
    }

    .offset-md-22-24 {
        margin-left: 91.6666666667%;
    }

    .offset-md-23-24 {
        margin-left: 95.8333333333%;
    }
}

@media (min-width: 992px) {
    .col-lg-1-24 {
        flex: 0 0 4.1666666667%;
        max-width: 4.1666666667%;
    }

    .col-lg-2-24 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-lg-3-24 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }

    .col-lg-4-24 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-lg-5-24 {
        flex: 0 0 20.8333333333%;
        max-width: 20.8333333333%;
    }

    .col-lg-6-24 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-7-24 {
        flex: 0 0 29.1666666667%;
        max-width: 29.1666666667%;
    }

    .col-lg-8-24 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-lg-9-24 {
        flex: 0 0 37.5%;
        max-width: 37.5%;
    }

    .col-lg-10-24 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-lg-11-24 {
        flex: 0 0 45.8333333333%;
        max-width: 45.8333333333%;
    }

    .col-lg-12-24 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-13-24 {
        flex: 0 0 54.1666666667%;
        max-width: 54.1666666667%;
    }

    .col-lg-14-24 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-lg-15-24 {
        flex: 0 0 62.5%;
        max-width: 62.5%;
    }

    .col-lg-16-24 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-lg-17-24 {
        flex: 0 0 70.8333333333%;
        max-width: 70.8333333333%;
    }

    .col-lg-18-24 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-19-24 {
        flex: 0 0 79.1666666667%;
        max-width: 79.1666666667%;
    }

    .col-lg-20-24 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-lg-21-24 {
        flex: 0 0 87.5%;
        max-width: 87.5%;
    }

    .col-lg-22-24 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-lg-23-24 {
        flex: 0 0 95.8333333333%;
        max-width: 95.8333333333%;
    }

    .col-lg-24, .col-lg-24-24 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offset-lg-1-24 {
        margin-left: 4.1666666667%;
    }

    .offset-lg-2-24 {
        margin-left: 8.3333333333%;
    }

    .offset-lg-3-24 {
        margin-left: 12.5%;
    }

    .offset-lg-4-24 {
        margin-left: 16.6666666667%;
    }

    .offset-lg-5-24 {
        margin-left: 20.8333333333%;
    }

    .offset-lg-6-24 {
        margin-left: 25%;
    }

    .offset-lg-7-24 {
        margin-left: 29.1666666667%;
    }

    .offset-lg-8-24 {
        margin-left: 33.3333333333%;
    }

    .offset-lg-9-24 {
        margin-left: 37.5%;
    }

    .offset-lg-10-24 {
        margin-left: 41.6666666667%;
    }

    .offset-lg-11-24 {
        margin-left: 45.8333333333%;
    }

    .offset-lg-12-24 {
        margin-left: 50%;
    }

    .offset-lg-13-24 {
        margin-left: 54.1666666667%;
    }

    .offset-lg-14-24 {
        margin-left: 58.3333333333%;
    }

    .offset-lg-15-24 {
        margin-left: 62.5%;
    }

    .offset-lg-16-24 {
        margin-left: 66.6666666667%;
    }

    .offset-lg-17-24 {
        margin-left: 70.8333333333%;
    }

    .offset-lg-18-24 {
        margin-left: 75%;
    }

    .offset-lg-19-24 {
        margin-left: 79.1666666667%;
    }

    .offset-lg-20-24 {
        margin-left: 83.3333333333%;
    }

    .offset-lg-21-24 {
        margin-left: 87.5%;
    }

    .offset-lg-22-24 {
        margin-left: 91.6666666667%;
    }

    .offset-lg-23-24 {
        margin-left: 95.8333333333%;
    }
}

@media (min-width: 1200px) {
    .col-xl-1-24 {
        flex: 0 0 4.1666666667%;
        max-width: 4.1666666667%;
    }

    .col-xl-2-24 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-xl-3-24 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }

    .col-xl-4-24 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xl-5-24 {
        flex: 0 0 20.8333333333%;
        max-width: 20.8333333333%;
    }

    .col-xl-6-24 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-7-24 {
        flex: 0 0 29.1666666667%;
        max-width: 29.1666666667%;
    }

    .col-xl-8-24 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-xl-9-24 {
        flex: 0 0 37.5%;
        max-width: 37.5%;
    }

    .col-xl-10-24 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-xl-11-24 {
        flex: 0 0 45.8333333333%;
        max-width: 45.8333333333%;
    }

    .col-xl-12-24 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-13-24 {
        flex: 0 0 54.1666666667%;
        max-width: 54.1666666667%;
    }

    .col-xl-14-24 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-xl-15-24 {
        flex: 0 0 62.5%;
        max-width: 62.5%;
    }

    .col-xl-16-24 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-xl-17-24 {
        flex: 0 0 70.8333333333%;
        max-width: 70.8333333333%;
    }

    .col-xl-18-24 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-19-24 {
        flex: 0 0 79.1666666667%;
        max-width: 79.1666666667%;
    }

    .col-xl-20-24 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-xl-21-24 {
        flex: 0 0 87.5%;
        max-width: 87.5%;
    }

    .col-xl-22-24 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-xl-23-24 {
        flex: 0 0 95.8333333333%;
        max-width: 95.8333333333%;
    }

    .col-xl-24, .col-xl-24-24 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offset-xl-1-24 {
        margin-left: 4.1666666667%;
    }

    .offset-xl-2-24 {
        margin-left: 8.3333333333%;
    }

    .offset-xl-3-24 {
        margin-left: 12.5%;
    }

    .offset-xl-4-24 {
        margin-left: 16.6666666667%;
    }

    .offset-xl-5-24 {
        margin-left: 20.8333333333%;
    }

    .offset-xl-6-24 {
        margin-left: 25%;
    }

    .offset-xl-7-24 {
        margin-left: 29.1666666667%;
    }

    .offset-xl-8-24 {
        margin-left: 33.3333333333%;
    }

    .offset-xl-9-24 {
        margin-left: 37.5%;
    }

    .offset-xl-10-24 {
        margin-left: 41.6666666667%;
    }

    .offset-xl-11-24 {
        margin-left: 45.8333333333%;
    }

    .offset-xl-12-24 {
        margin-left: 50%;
    }

    .offset-xl-13-24 {
        margin-left: 54.1666666667%;
    }

    .offset-xl-14-24 {
        margin-left: 58.3333333333%;
    }

    .offset-xl-15-24 {
        margin-left: 62.5%;
    }

    .offset-xl-16-24 {
        margin-left: 66.6666666667%;
    }

    .offset-xl-17-24 {
        margin-left: 70.8333333333%;
    }

    .offset-xl-18-24 {
        margin-left: 75%;
    }

    .offset-xl-19-24 {
        margin-left: 79.1666666667%;
    }

    .offset-xl-20-24 {
        margin-left: 83.3333333333%;
    }

    .offset-xl-21-24 {
        margin-left: 87.5%;
    }

    .offset-xl-22-24 {
        margin-left: 91.6666666667%;
    }

    .offset-xl-23-24 {
        margin-left: 95.8333333333%;
    }
}

/* by default 24 grid cols full width */
[class^="col-"][class*="-24"] {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

/* nogutter for 24 grid cols */
.no-gutters > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* ================== Layout  =================== */
/* sign in FORM */

#logreg-form .lines {
    width: 200px;
    border: 1px solid red;
}

#RegistrationLogInForm button[type="submit"] {
    margin-top: 10px;
}

#RegistrationLogInForm .ResetForm, #RegistrationLogInForm .SignUpForm {
    display: none;
}

    #RegistrationLogInForm .SignUpForm .social-btn {
        width: 210px;
    }

    #RegistrationLogInForm .SignUpForm input {
        /*margin-bottom: 2px;*/
    }

.SignUpForm .social-login {
    width: 210px !important;
    margin: 0 auto;
}

/* Mobile */
@media screen and (max-width: 500px) {

    #RegistrationLogInForm .social-login {
        width: 200px;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    #RegistrationLogInForm .social-btn {
        font-size: 1.3rem;
        font-weight: 100;
        color: white;
        width: 200px;
        height: 56px;
    }

        #RegistrationLogInForm .social-btn:nth-child(1) {
            margin-bottom: 5px;
        }

        #RegistrationLogInForm .social-btn span {
            display: none;
        }

    #RegistrationLogInForm .facebook-btn:after {
        content: 'Facebook';
    }

    #RegistrationLogInForm .google-btn:after {
        content: 'Google+';
    }
}

/* ================== SECTIONS =================== */
.navbar-top {
    padding: 0;
}
                   
.navbar-landing {
    transition: .5s;
    padding-top: 15px;
    padding-bottom: 15px;
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
}

    .navbar-landing.fixed-top {
        transition: .5s;
        padding-top: 7px;
        padding-bottom: 7px;
    }

/* ================== header main ==================  */
.header-main {
    padding-top: 10px;
    padding-bottom: 0;
}

.brand-wrap .logo, .navbar-brand .logo {
    margin-right: 7px;
    max-height: 42px;
    display: inline-block;
}

.brand-wrap .logo-text, .navbar-brand .logo-text {
    margin: 0;
    display: inline-block;
    font-size: 22px;
    vertical-align: middle;
}

.header-main {
    position: relative;
}

.widget-header {
    margin-left: 7px;
    margin-right: 7px;
    display: inline-block;
    position: relative;
}

    .widget-header form {
        min-width: 280px;
    }

    .widget-header .title {
        display: block;
    }

    .widget-header .notify {
        position: absolute;
        top: -3px;
        right: -10px;
    }

    .widget-header .W-500 {
        min-width: 500px;
    }

/* desktop only */
/* desktop only .end */
/* ================ SECTION-FOOTER ==================  */
.section-footer ul a {
    color: inherit;
}

.footer-top .title {
    font-weight: 600;
}

.footer-bottom {
    padding: 15px 0;
}

/* ================== PAGES =================== */
/*#region Medical Home Page */
/*#region Noor Care Number Box */
.NoorCareNumberBox {
    padding: 5px;
    border-radius: 0;
}

    .NoorCareNumberBox:before {
        content: "-";
    }

/*#endregion */
.badge-notify {
    background: red;
    position: relative;
    top: -12px;
    left: -16px;
    font-size: 10px;
    color: #ffffff;
}

/*#endregion */
/* ================ PAGES HEADER ================== */
.section-pagetop {
    padding: 45px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

    .section-pagetop .title-page {
        color: #fff;
        opacity: .6;
    }

/* ================== PAGE DETAILS ==================  */
.gallery-wrap .img-big-wrap {
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #fff;
}

    .gallery-wrap .img-big-wrap a {
        text-align: center;
        display: block;
    }

    .gallery-wrap .img-big-wrap img {
        height: 450px;
        width: auto;
        display: inline-block;
        cursor: zoom-in;
    }

.gallery-wrap .img-small-wrap {
    text-align: center;
}

    .gallery-wrap .img-small-wrap .item-gallery {
        width: 60px;
        height: 60px;
        border: 1px solid #ddd;
        margin: 7px 2px;
        display: inline-block;
        overflow: hidden;
    }

    .gallery-wrap .img-small-wrap img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        border-radius: 4px;
        cursor: zoom-in;
    }

        .gallery-wrap .img-small-wrap img:hover {
            filter: brightness(1.1);
            cursor: zoom-in;
        }

.faq-nav {
    flex-direction: column;
    margin: 0 0 32px;
    border-radius: 2px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

    .faq-nav .nav-link {
        position: relative;
        display: block;
        margin: 0;
        padding: 13px 16px;
        background-color: #fff;
        border: 0;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        color: #616161;
        transition: background-color .2s ease;
    }

        .faq-nav .nav-link:hover {
            background-color: #f6f6f6;
        }

        .faq-nav .nav-link.active {
            background-color: #f6f6f6;
            font-weight: 700;
            color: rgba(0, 0, 0, 0.87);
        }

        .faq-nav .nav-link:last-of-type {
            border-bottom-left-radius: 2px;
            border-bottom-right-radius: 2px;
            border-bottom: 0;
        }

        .faq-nav .nav-link i.mdi {
            margin-right: 5px;
            font-size: 18px;
            position: relative;
        }

.tab-content {
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

    .tab-content .card {
        border-radius: 0;
    }

    .tab-content .card-header {
        padding: 15px 16px;
        border-radius: 0;
        background-color: #f6f6f6;
        margin-bottom: 0 !important;
    }

        .tab-content .card-header h5 {
            margin: 0;
        }

            .tab-content .card-header h5 button {
                display: block;
                width: 100%;
                padding: 0;
                border: 0;
                font-weight: 700;
                color: rgba(0, 0, 0, 0.87);
                text-align: left;
                white-space: normal;
                background-color: transparent;
            }

                .tab-content .card-header h5 button:hover, .tab-content .card-header h5 button:focus, .tab-content .card-header h5 button:active, .tab-content .card-header h5 button:hover:active {
                    text-decoration: none;
                }

    .tab-content .card-body p {
        color: #616161;
    }

        .tab-content .card-body p:last-of-type {
            margin: 0;
        }

.accordion > .card:not(:first-child) {
    border-top: 0;
}

.collapse.show .card-body {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* ================== COMPONENTS =================== */
.owl-prev, .owl-next {
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.owl-prev {
    left: 0px;
    content: "<";
}

.owl-next {
    right: 0px;
    content: ">";
}

/* slider main */
.slider-main .owl-prev, .slider-main .owl-next {
    padding: 18px 7px;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.4);
}

.slider-main .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
}

.slider-main .owl-prev {
    left: 0;
}

.slider-main .owl-next {
    right: 0;
}

.slider-main .item-slide {
    height: 325px;
}

    .slider-main .item-slide img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        width: 100%;
    }

/* slide items  */
.slide-items .owl-prev, .slide-items .owl-next {
    top: 42%;
    padding: 18px 7px;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.4);
}

    .slide-items .owl-prev:hover, .slide-items .owl-next:hover {
        background: #869791;
    }

/*.carousel-fade {
    .carousel-item {
        display: block;
        position: absolute;
        opacity: 0;
        transition: opacity .75s ease-in-out;

        &.active {
            opacity: 1;
        }
    }
}*/
/*.carousel,
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100%;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
}*/
.btn-facebook {
    background-color: #405D9D;
    color: #fff;
}

    .btn-facebook:hover {
        color: #fff;
    }

.btn-instagram {
    background-color: #E52D27;
    color: #fff;
}

    .btn-instagram:hover {
        color: #fff;
    }

.btn-youtube {
    background-color: #C8046C;
    color: #fff;
}

    .btn-youtube:hover {
        color: #fff;
    }

.btn-twitter {
    background-color: #42AEEC;
    color: #fff;
}

    .btn-twitter:hover {
        color: #fff;
    }

.btn-NoorCare {
    background-color: #77bf39;
    color: #fff;
}

    .btn-NoorCare:hover {
        background-color: #0c492a;
        color: #fff;
    }

.itembox .icon-wrap {
    margin-bottom: 15px;
    margin-top: 7px;
}

.itembox img {
    max-width: 100%;
}

.itemside {
    position: relative;
    display: inline-flex;
    width: 100%;
}

    .itemside .text-wrap {
        padding-left: 15px;
        padding-right: 7px;
    }

    .itemside .img-wrap {
        position: relative;
        border-radius: 0.25rem 0 0 0.25rem;
    }

    .itemside img {
        object-fit: contain;
    }

    .itemside p, .itemside .title {
        margin-bottom: 0.5rem;
    }

    .itemside .img-bg {
        object-fit: contain;
        position: absolute;
        right: 0;
        bottom: 0;
        max-height: 100px;
        bottom: 0;
        z-index: 0;
    }

    .itemside .card-body {
        position: relative;
        z-index: 3;
    }

.items-bordered-wrap .itemside:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.itemlist {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.list-inline {
    margin-bottom: 0;
}

.list-inline-item {
    vertical-align: middle;
}

/* --------- description list --------*/
[class*="dlist-"] {
    margin-bottom: 5px;
}

    [class*="dlist-"] dd {
        margin-bottom: 0;
    }

.dlist-inline dt, .dlist-inline dd {
    display: inline-block;
}

.dlist-align dt {
    width: 100px;
    float: left;
    word-wrap: break-word;
}

.dlist-align dd {
    margin-left: 100px;
    vertical-align: baseline;
}

/* -------------------- list.row--------------------- */
ul.row, ul.row-sm {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

/* ================= lists ================= */
[class*="list-"] li:after {
    visibility: hidden;
    display: block;
    content: "";
    overflow: hidden;
    height: 0;
    clear: both;
}

.list-lg li {
    margin-bottom: 10px;
}

.list-icon {
    list-style: none;
    padding: 0;
}

    .list-icon li {
        margin-bottom: 10px;
    }

    .list-icon img {
        width: 30px;
        vertical-align: middle;
        margin-right: 15px;
    }

    .list-icon .icon {
        width: 22px;
        margin-right: 15px;
        vertical-align: middle;
        font-size: 20px;
        text-align: center;
    }

    .list-icon span {
        vertical-align: middle;
    }

.list-bullet {
    list-style: none;
    padding: 0;
}

    .list-bullet li {
        margin-bottom: 7px;
        position: relative;
        padding-left: 15px;
    }

        .list-bullet li::before {
            content: " ";
            position: absolute;
            top: 45%;
            left: 0;
            width: 7px;
            height: 7px;
            margin: 0px 10px 0px 0px;
            background: #6c757d;
            border-radius: 7px;
        }

.list-check > li {
    list-style: none;
    position: relative;
}

    .list-check > li::before {
        font-family: "Font Awesome\ 5 free";
        font-weight: 900;
        color: #6c757d;
        position: absolute;
        top: 0px;
        left: 0;
        content: "\f00c";
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
    }

.list-icon {
    list-style: none;
    padding: 0;
}

    .list-icon li {
        position: relative;
        padding-left: 30px;
    }

    .list-icon .icon {
        position: absolute;
        top: 3px;
        left: 0;
        font-size: 13px;
    }

.card-product {
    margin-bottom: 1rem;
    /* btn-overlay-bottom */
}

    .card-product:after {
        content: "";
        display: table;
        clear: both;
        visibility: hidden;
    }

    .card-product .img-wrap {
        border-radius: 0.2rem 0.2rem 0 0;
        overflow: hidden;
        position: relative;
        height: 220px;
        text-align: center;
    }

        .card-product .img-wrap img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            display: inline-block;
            object-fit: cover;
        }

    .card-product .info-wrap {
        overflow: hidden;
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .card-product .action-wrap {
        padding-top: 4px;
        margin-top: 4px;
    }

    .card-product .bottom-wrap {
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .card-product .title {
        margin-top: 0;
    }

    .card-product .btn-overlay {
        transition: .5s;
        opacity: 0;
        left: 0;
        bottom: 0;
        color: #fff;
        width: 100%;
        padding: 5px 0;
        font-size: 12px;
        text-align: center;
        position: absolute;
        text-transform: uppercase;
        background: rgba(0, 0, 0, 0.5);
    }

    .card-product:hover .btn-overlay {
        opacity: 1;
    }

    .card-product:hover {
        box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
        transition: .5s;
    }

.card-sm .img-wrap {
    height: 180px;
}

.card-banner {
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    background-size: cover;
    border-radius: 0.25rem;
}

    .card-banner .card-body {
        background-size: cover;
        position: relative;
        z-index: 10;
    }

    .card-banner .img-bg {
        position: absolute;
        right: 0;
        bottom: 0;
        mix-blend-mode: multiply;
        max-width: 100%;
    }

    .card-banner .overlay {
        background-color: rgba(0, 0, 0, 0.65);
        z-index: 10;
        padding: 1.25rem;
        color: #fff;
    }

        .card-banner .overlay.bottom {
            bottom: 0;
            left: 0;
            position: absolute;
            width: 100%;
        }

        .card-banner .overlay.top {
            top: 0;
            left: 0;
            position: absolute;
            width: 100%;
        }

    .card-banner .overlay-cover {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        width: 100%;
    }

    .card-banner .overlay.left {
        top: 0;
        left: 0;
        bottom: 0;
        position: absolute;
    }

    .card-banner .text-bottom {
        position: absolute;
        left: 0;
        bottom: 0;
        left: 0;
        z-index: 10;
        width: 100%;
        padding: 7px 20px;
        padding-top: 30px;
        border-radius: 0 0 0.25rem 0.25rem;
        background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
        color: #fff;
    }

.banner-size-lg {
    height: 350px;
}

.card .img-wrap {
    overflow: hidden;
}

.icontext {
    display: inline-flex;
    align-items: center;
}

    .icontext .icon-wrap {
        position: relative;
    }

    .icontext .text-wrap {
        line-height: 1.2;
        padding-left: 10px;
    }

    .icontext small, .icontext .title {
        display: block;
    }

.price-new, .price {
    margin-right: 5px;
}

.price-old {
    color: #999;
}

.notify {
    position: absolute;
    top: -4px;
    right: -10px;
    display: inline-block;
    padding: .25em .6em;
    font-size: 75%;
    line-height: 1;
    text-align: center;
    border-radius: 3rem;
    color: #fff;
    background-color: #dc3545;
}

.icon-action {
    margin-top: 5px;
    float: right;
    font-size: 80%;
}

.list-group .list-group-item {
    padding-bottom: .5rem;
}

.list-group .title {
    margin-top: 5px;
    margin-bottom: 12px;
}

.card-header .title {
    margin-bottom: 0;
    line-height: 1.5;
}

.card-group-item {
    border-bottom: 1px solid #dee2e6;
}

    .card-group-item .card-header {
        border-bottom: 0;
        background-color: #f9f9f9;
    }

    .card-group-item:last-child {
        border-bottom: 0;
    }

/* ====================== shopping-cart ==================== */
.shopping-cart-wrap img {
    max-width: 100px;
}

.shopping-cart-wrap thead th {
    border-top: 0;
    border-bottom: 0;
}

.shopping-cart-wrap .price {
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
    margin-right: 5px;
    display: block;
}

/* ====================== block ==================== */
.box {
    padding: 1rem 1.2rem;
    display: block;
    background: #fff;
    border-radius: 0.2rem;
    box-shadow: 0 1px 3px rgba(51, 51, 51, 0.1);
}

/* --------- media element --------*/
.media .img-wrap {
    margin-right: 1rem;
}

/* =================  ELEMENTS FOR PRODUCT =================== */
.badge-new {
    top: 7px;
    left: 7px;
    position: absolute;
    display: block;
    z-index: 10;
    padding: 2px 7px;
    font-size: 12px;
    background-color: #ef5f5f;
    color: #fff;
    border-radius: 4px;
}

.badge-offer {
    display: block;
    position: absolute;
    top: 0px;
    right: 15px;
    z-index: 2;
}

    .badge-offer b {
        background: #ef5f5f;
        padding: 4px;
        font-family: 'Bebas';
        font-weight: normal;
        text-align: center;
        color: #fff;
        font-size: 16px;
        display: inline-block;
        height: 36px;
        width: 50px;
        position: relative;
    }

        .badge-offer b:after {
            border-top: 7px solid #ef5f5f;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            content: "";
            height: 0;
            left: 0;
            position: absolute;
            top: 36px;
            width: 0;
        }

/* ================= RATINGS ============== */
.label-rating {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.stars-simple {
    margin-bottom: 7px;
}

    .stars-simple i {
        color: orange;
    }

    .stars-simple small {
        color: #999;
        margin-left: 5px;
    }

/* rating-list */
.rating-stars {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    line-height: 1;
    white-space: nowrap;
    clear: both;
}

    .rating-stars i {
        font-size: 14px;
        color: #ccc;
        display: inline;
    }

    .rating-stars li {
        display: block;
        text-overflow: clip;
        white-space: nowrap;
        z-index: 1;
    }

        .rating-stars li.stars-active {
            z-index: 2;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
        }

            .rating-stars li.stars-active i {
                color: orange;
            }

.divider-text {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

    .divider-text:after {
        content: "";
        position: absolute;
        width: 100%;
        border-bottom: 1px solid #ddd;
        top: 55%;
        left: 0;
        z-index: 1;
    }

    .divider-text span {
        background-color: #fff;
        padding: 7px;
        font-size: 12px;
        position: relative;
        z-index: 2;
    }

.menu-category {
    margin: 0;
    padding: 0;
}

    .menu-category li {
        position: relative;
        display: block;
        border-bottom: 1px solid #dee2e6;
    }

    .menu-category > li > a {
        display: block;
        padding: 10px 15px;
    }

    .menu-category .submenu {
        display: none;
        margin: 0;
        padding: 0;
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 20;
        position: absolute;
        left: 100%;
        top: 0;
        width: 250px;
        background: #fff;
    }

        .menu-category .submenu li {
            list-style: none;
        }

            .menu-category .submenu li a {
                padding: 7px 15px;
                display: block;
            }

    .menu-category li:hover {
        background: #f8f8f8;
        transition: all 0.3s;
    }

        .menu-category li:hover .submenu {
            display: block;
            margin-left: 0px;
        }

/*#region SideNavSubMenu */
.SideNavSubMenu .nav a, .SideNavSubMenu .nav label {
    display: block;
    padding: .85rem;
    color: #fff;
    background-color: #151515;
    box-shadow: inset 0 -1px #1d1d1d;
    -webkit-transition: all .25s ease-in;
    transition: all .25s ease-in;
}

    .SideNavSubMenu .nav a:focus, .SideNavSubMenu .nav a:hover {
        color: rgba(255, 255, 255, 0.5);
        background: #030303;
    }

.SideNavSubMenu .nav label {
    cursor: pointer;
}

    .SideNavSubMenu .nav label:focus, .SideNavSubMenu .nav label:hover {
        color: rgba(255, 255, 255, 0.5);
        background: #030303;
    }

.SideNavSubMenu .group-list a, .SideNavSubMenu .group-list label {
    padding-left: 2rem;
    background: #252525;
    box-shadow: inset 0 -1px #373737;
}

    .SideNavSubMenu .group-list a:focus, .SideNavSubMenu .group-list a:hover {
        background: #131313;
    }

    .SideNavSubMenu .group-list label:focus, .SideNavSubMenu .group-list label:hover {
        background: #131313;
    }

.SideNavSubMenu .sub-group-list a, .SideNavSubMenu .sub-group-list label {
    padding-left: 4rem;
    background: #353535;
    box-shadow: inset 0 -1px #474747;
}

    .SideNavSubMenu .sub-group-list a:focus, .SideNavSubMenu .sub-group-list a:hover {
        background: #232323;
    }

    .SideNavSubMenu .sub-group-list label:focus, .SideNavSubMenu .sub-group-list label:hover {
        background: #232323;
    }

.SideNavSubMenu .sub-sub-group-list a, .SideNavSubMenu .sub-sub-group-list label {
    padding-left: 6rem;
    background: #454545;
    box-shadow: inset 0 -1px #575757;
}

    .SideNavSubMenu .sub-sub-group-list a:focus, .SideNavSubMenu .sub-sub-group-list a:hover {
        background: #333333;
    }

    .SideNavSubMenu .sub-sub-group-list label:focus, .SideNavSubMenu .sub-sub-group-list label:hover {
        background: #333333;
    }

.SideNavSubMenu .group-list, .SideNavSubMenu .sub-group-list, .SideNavSubMenu .sub-sub-group-list {
    height: 100%;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
}

.SideNavSubMenu .nav__list input[type=checkbox]:checked + label + ul {
    max-height: 1000px;
}

.SideNavSubMenu label > span {
    float: right;
    -webkit-transition: -webkit-transform .65s ease;
    transition: transform .65s ease;
}

.SideNavSubMenu .nav__list input[type=checkbox]:checked + label > span {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}


/*#endregion */


/*========== 17-02-2022 ===========*/

.card {
    border: 0
}

.section-main {
    height: 100vh
}

#RegistrationLogInForm {
    background: #fff;
}

.SignInForm {
    height: 80vh;
}

.login-head {
    font-weight: 700
}

.SignInForm .input-group-text {
    background-color: #c9c9c9;
    border: 0px solid #ced4da;
}

.SignInForm .form-control {
    background-color: #e9ecef;
    background-clip: padding-box;
    border: 0px solid #ced4da;
}

.SignInForm .input-group {
    margin-bottom: 10px
}

.register-text {
    font-size: 12px
}

.register-link, .login-link {
    font-size: 16px;
    text-decoration: underline
}

/*
<======= sidenav 19/02/2022==========>*/

.main_wrapper {
    height: 100vh;
    padding-top: 70px
}


.body-content {
    padding: 15px
}

.sidenav {
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    float: left;
    overflow-x: hidden;
    height: calc(100vh - 70px);
    background: #fff;
    transition: all .33s
}

/*.show {
    width: 240px;
    margin-left: 0px;
}*/

/*.hide {
    width: 0px;
    margin-left: -240px
}*/


.fa.fa-bars, .fa.fa-times {
    cursor: pointer;
    font-size: 20px;
}


@media (max-width: 992px) {
    .sidenav {
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        overflow-x: hidden;
        transition: 0.5s;
        background: #fff;
        position: fixed;
        padding-top: 70px;
        transition: all 0.33s,
    }

    .navbar-header {
        width: 0px !important;
    }

    .topbar .top-navbar .navbar-header .navbar-brand {
        display: none;
    }
}


/* // form input controle style ///*/
.form-control {
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
    border-radius: 2px !important;
    font-weight:600 !important;
}

    .form-control:focus {
       /* border-color: #0C492A !important;*/
        outline: 0;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

.has-float-label label, .has-float-label > span {
    left: 5px;
}

.has-float-label input, .has-float-label select, .has-float-label textarea {
    padding-top: 0.4em !important;
}

    .has-float-label input:placeholder-shown:not(:focus) + *, .has-float-label select:placeholder-shown:not(:focus) + *, .has-float-label textarea:placeholder-shown:not(:focus) + * {
        font-size: 150%;
        opacity: .5;
        font-size: 14px !important;
        top: 8px !important;
    }

.has-float-label label, .has-float-label > span {
    position: absolute;
    left: 5px !important;
    top: -0.78em !important;
    background: #fff;
    padding: 0px 7px !important
}

.card-body {
    padding: 1rem !important;
}


.contaent_wrap {
    background-color: #fff
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: #ffffff !important;
    border: 0px solid #ddd !important;
    box-shadow: none;
    font-size: 14px;
    background: #77bf39 !important;
    border-radius: 4px;
    margin-left: 4px;
    cursor: pointer !important
}


.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #ffffff !important;
    border: 1px solid #0c492a !important;
    background-color: #0c492a !important;
    margin: 0px 10px !important;
    border-radius: 4px !important;
    padding: 0.4em 1em !important;
}



.has-float-label select {
    padding-right: 1em;
    background: url(data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E) no-repeat right 0.5em bottom 0.45em;
    background-size: 8px 10px;
}

.loadingDiv-parent {
    position: fixed;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999998;
}

.loadingDiv {
    position: fixed;
    text-align: center;
    top: 40%;
    left: 45%;
    z-index: 999999;
}

    .loadingDiv .loading-image {
        display: block;
        margin: 25px 75px;
    }

.controlhide {
    display: none;
}

.controlshow {
    display: block;
}

.margin-left-0 {
    margin-left: 0px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

/*<==========Contact us 15/10/2022==========>*/

.banner-wrapper {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 2px;
}

.inner-banner {
    background: url(/Content/Images/aboutus-banner.jpg);
    background-position: center;
    background-size: cover;
    padding: 50px 0px 50px;
    position: relative;
    width: 100%;
    z-index: 2;
}

    .inner-banner::before {
        background: #0f8acd;
        bottom: 0;
        content: "";
        left: 0;
        opacity: 0.8;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
.container .contact h3 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.first-col .list-ul {
    border-bottom: 1px dashed #ccc;
    padding: 15px 0;
}

.list-ul .phone-number span a {
    color: #2d2e2e;
}
.list-ul .email-id a{
    color: #2d2e2e;
}


/*   font-size: 24px;
        font-family: 'Montserrat', sans-serif;
.address li i {
    width: 25px;
    display: inline-block;
}*/
.enterphone {
    min-height: 200px;
    width: 100%;
    padding: 15px;
}

.relative {
    position: relative;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    color: #333333;
}

.form-group .codeCountryHome {
    position: absolute;
    top: 35px;
}

.codeCountryInput input[type="text"] {
    padding-left: 24px;
}

.form-group textarea {
    height: auto;
}

/*.form-control {
   
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
   
}*/
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}


/*<============About us 15/10/2022============>*/
.Aboutus .col-md-12 {
    padding-left: 0px;
}

    .Aboutus .col-md-12 h3 {
        color: #fff;
        font-size: 30px;
    }

.col-lg-12 {
    margin-top: 2px;
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
}

.Aboutus .paragraph p {
    font-size: 14px;
}

.middletitle {
    margin-top: 10px;
    background-color: #ecf0f1;
    border-radius: 10px;
}

    .middletitle .col-lg-12 h4 {
        color: #0f8acd;
        padding: 0px 0px 10px;
        font-weight: bold;
        border-bottom: 1px solid #ccc;
        margin-bottom: 10px;
    }

textarea {
    border: 1px solid #ced4da;
    resize: none;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #49505773 !important;
}
.card-horizontal {
    display: flex;
    flex: 1 1 auto;
}