/*!
 * IntegralZ - Recla+
 * License - https://integralewebservice.com (Commercial License)
 */
:root {
    --primary-light: #c0deff;
    --info-light: #bef1f9;
    --secondary-light: #e7e7e7;
    --danger-light: #ffc8c8;
    --success-light: #e0ffdc;
    --warning-light: #ffeed3;
    --purple-light: #dcc8ff;
    --dark-light: #adadad;
    --blue-dark: #04244b;
}

::selection {
    background-color: #f89d00;
    color: black;
}

*,
html {
    box-sizing: border-box;
    height: auto;
}

body {
    font-family: Inter, Montserrat, Roboto, sans-serif;
    background-color: #f4f4f4;
}
/* Main style */
.cursor-pointer {
    cursor: pointer !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

/*** Navmenu ***/
.navbar.menu {
    color: #fff;
    font-family: Roboto, sans-serif;
    position: relative;
    z-index: 100 
}

.navbar.menu a {
    text-decoration: none;
    color: inherit;
}
.navbar-logo{
    padding: 0;
}
.navbar-logo > img{
    height: 30px;
}

/* Icon Bix */
.icon-box {
    height: 80px;
    width: 80px;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 1rem;
}

.icon-box>span {
    position: relative;
    display: block;
    text-align: center;
}

.icon-box>img {
    display: block;
    margin: auto;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 991px) {
    .padding-sm {
        padding: 15px 18px;
    }

    .card-grid {
        min-height: 295px;
    }
}

.bg-primary-light {
    background-color: var(--primary-light);
    color: var(--primary);
}

.bg-danger-light {
    background-color: var(--danger-light);
}

.bg-success-light {
    background-color: var(--success-light);
}

.bg-info-light {
    background-color: var(--info-light);
}
.bg-warning-light {
    background-color: var(--warning-light);
}
.bg-dark-light {
    color: #000;
    background-color: var(--dark-light);
}
.bg-blue-light {
    background-color: var(--blue-dark) !important;
}

.text-blue {
    color: var(--blue-dark) !important;
}

/**** Menu */
.breadcrumb-item>a {
    color: var(--blue-dark);
}

.menu-item {
    position: relative;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .menu-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}

.menu-link {
    display: block;
    padding: 0.5rem 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    position: relative;
}

/* user account */
.menu-right {
    display: flex;
    justify-content: end;
    padding-left: 0;
}

.user-nav {
    padding-left: 0;
    margin: 0;
}

.user-nav>li {
    list-style: none;
    line-height: 1.5;
    display: inline-block;
}

.user-nav .user-nav-item {
    position: relative;
}

.user-nav .user-nav-item:first-of-type {
    margin-right: 35px;
}

.user-nav .user-link {
    border-radius: 50%;
}

.profil-avatar {
    border-radius: 50%;
    border: 3px solid #f8f8f8;
    width: 35px;
}

.user-nav .user-nav-item>.user-dropdown,
.children-menu {
    display: none;
    position: absolute !important;
    top: 45px;
    left: 0;
    min-width: 220px;
    background-color: #ffffff;
    border-bottom: 2px solid #f89d00;
    z-index: 200;
    height: auto;
    color: #000;
    border: 1px solid #f2f2f2;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding-left: 0;
    transition: all .3s;
    border-radius: 8px;
    overflow: hidden;
}

.children-menu>li,
.user-nav .user-nav-item>.user-dropdown>li {
    list-style: none;
    line-height: 1.5;
    display: inline-block;
    border-bottom: 1px solid #f7f7f7;
    width: 100%;
    padding-left: .8rem;
}

.children-menu>li>a,
.user-nav .user-nav-item>.user-dropdown>li>a {
    padding: 0.5rem 1rem 0.5rem 0;
    border-radius: 6px;
    display: block;
    width: 100%;
    transition: .2s;
}

.children-menu>li:hover,
.user-nav .user-nav-item>.user-dropdown>li:hover,
.children-menu>li:hover {
    background-color: #e9e9e9;
    color: var(--blue-dark);
}

.user-nav .user-nav-item.open>.user-dropdown,
.menu-item.has-children.open .children-menu {
    display: block;
}

.has-children {
    padding-right: 10px;
}

.has-children::after {
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: -4px;
    top: 8px;
    height: 12px;
    width: 13px;
    content: "\f0d7";
    display: inline-block;
}

/*** ===== Mobile menu =====***/
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 980;
}
.menu-wrapper {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease; 
    z-index: 999;
    color: #000;
    display: none;
}

.menu-wrapper.active {
    display: block;
    left: 0;
}
.menu-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    position: relative;
}
.close-button {
    cursor: pointer;
    position: absolute;
    left: 5%;
    top: 30%;
    z-index: 100;
    width: 30%;
    max-width: 60px;
    color: #747474;
}
.menu-header > .user-info{
    width: 220px;
    max-width: 80%;
    display: flex;
    justify-content: space-between;
    float: right;
    margin-left: auto !important;
}

.menu-header .mobile-logo{
    display: flex;
    align-items: center;
    height: 100%;
    width: 150px;
}
.menu-header .mobile-logo > img{
height: auto;
display: block;
margin: auto;
width: 63%;
  max-width: 100%;
}

.mobile-main-menu {
    list-style: none;
    padding: 0;
    transition: all .2s ease-out;
}
.mobile-main-menu > li {
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-main-menu > li > a {
    text-decoration: none;
    color: var(--blue-dark) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-main-menu > li.active > a{
    padding-bottom: 8px;
}
.mobile-main-menu .sub-menu {
    display: none;
    padding-left: 20px;
    transition: all .2s ease-out;
    background-color: #fafafa;
}
.mobile-main-menu .sub-menu > li{
    list-style: none;
    border-bottom: none;
    padding: 10px 12px 8px 0px;
}

.mobile-main-menu .sub-menu.active {
    display: block;
}

.mobile-main-menu i.sub-menu-toggle {
    color: #949494;
    transition: transform 0.3s ease;
    font-size: .82rem;
}
.mobile-main-menu i.sub-menu-toggle.active  {
    transform: rotate(180deg)
}

.mobile-main-menu > li > a > span > i {
    color: var(--blue-dark) !important;
    margin-right: 12px;
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .menu-overlay {
        display: none !important;
    }
    .menu-wrapper {
        display: none !important;
        left: -300px;
    }
}


.has-children.open::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f0d8";
}

.counter {
    position: absolute;
    right: -1px;
    top: 4px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--danger);
    font-size: 11px;
    display: block;
    text-align: center;
    font-weight: bold;
    line-height: 13px;
    padding: 0;
}

/*Notifications */
.notifications {
    width: 300px;
    display: none;
    position: absolute;
    top: 45px;
    right: 0px;
    border-radius: 5px 0px 5px 5px;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 200;
}

.notification-header {
    background: #fcfcfc;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #c9c9c9;
}

.notifications h2 {
    font-size: 14px;
    color: var(--blue-dark);
    text-transform: uppercase;
    margin-bottom: 0;
}

.notifications h2 span {
    color: #f00
}

.notifications-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 6px 9px;
    margin-bottom: 0px;
    cursor: pointer
}

.notifications-item:hover {
    background-color: #eee
}

.notifications-item img {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 9px;
    border-radius: 50%;
    margin-top: 2px
}

.notifications-item .text h4 {
    color: #3462cd;
    font-size: 16px;
    margin-top: 3px
}

.notifications-item .text p {
    color: #7c7c7c;
    font-size: 12px
}

/** */
label.required {
    padding-right: 18px;
}

.required::after {
    content: "(Obligatoire)";
    display: inline;
    font-family: Montserrat;
    color: #c90505;
    font-size: 11px;
}

/**** Multi Step Form wizard ****/
fieldset.tab {
    display: none;
    max-width: 100%;
    padding: 18px 23px;
    border: 1px solid #cecece;
    margin: auto;
    background-color: #fff;
    margin-top: 40px;
}

@media screen and (max-width: 640px) {
    fieldset.tab {
        padding: 18px 14px;
        margin-top: 30px;
    }
}

/* Afficher l'étape actuelle */
fieldset.tab.current {
    display: block;
}

/*progressbar*/
/* Style pour les étapes du formulaire */
ul.progressbar {
    counter-reset: step;
    list-style-type: none;
    display: flex;
    padding: 0;
    width: 50%;
    position: relative;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    z-index: 30;
}

ul.progressbar::before {
    content: "";
    height: 1px;
    width: 100%;
    background: #959595;
    position: absolute;
    top: 20%;
    z-index: 1;
}
@media screen and (max-width:991px) {
    
ul.progressbar {
    width: 100%;
}
}

.step {
    display: block;
    text-align: center;
    position: relative;
    transition: all .2s ease-out;
    list-style: none;
    z-index: 30;
}

.step::before {
    content: counter(step);
    counter-increment: step;
    width: 25px;
    color: #fff;
    height: 25px;
    line-height: 25px;
    border: 2px solid #a4a4a4;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    background: linear-gradient(#858585, #bbbbbb);
    border-radius: 50%;
    font-size: 18px;
    transition: all .2s ease-out;
}

@media screen and (max-width: 1080px) {
    .step::before {
        width: 20px;
        height: 20px;
        line-height: 20px;
        border: 1.5px solid #a4a4a4;
        font-size: 15px;
    }

    ul.progressbar::before {
        top: 30%;
    }
}

.step span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    text-transform: uppercase;
}

.step.done::before {
    content: "\f00c";
    /* Checkmark icon */
    font-family: "Font Awesome 6 Pro";
    background: linear-gradient(#3c9e3f, #70d373);
    color: white;
    border: 2px solid #4CAF50;
}

.step.current::before {
    background: linear-gradient(#ffa710, #ffc663);
    color: white;
    border: 2px solid #f89d00;
}

.step.error::before {
    background: linear-gradient(rgba(202, 30, 30, 0.885), rgba(234, 67, 67, 0.885));
    color: white;
    border: 2px solid rgba(187, 14, 14, 0.885);
}

@media screen and (max-width: 1080px) {
    .step::before {
        width: 20px;
        height: 20px;
        line-height: 20px;
        border: 1.5px solid #a4a4a4;
        font-size: 15px;
    }

    .step span {
        display: none;
    }
}

/* Style pour les champs invalides */
.is-invalid {
    border-color: red !important;
}

/* Style pour le bouton Soumettre */
.btn-success {
    background-color: #4CAF50;
    border: none;
}

.btn-success:hover {
    background-color: #45a049;
}

.btn-success:focus {
    background-color: #45a049;
    box-shadow: none;
}



.btn-theme {
    display: inline-block;
    line-height: 1.5;
    border-radius: 2.4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.btn-theme.btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

.btn-theme-blue {
    background: linear-gradient(#0752ad, #1370e2);
    color: #fff;
}

.btn-theme-yellow {
    background: linear-gradient(#ffa710, #ffc663);
    color: #1e1e1e;
}
.btn-theme-danger {
    background: linear-gradient(#c92424, #ef5353);
    color: #ffffff;
}

.btn-theme-primary {
    background: linear-gradient(#4482ff, #6b9cff);
    color: #fff;
}

.btn-theme-success {
    background: linear-gradient(#34881d, #72c75a);
    color: #fff;
}

@media screen and (max-width: 640px) {
    .form-label {
        font-size: 12px;
    }

    .form-control::placeholder {
        font-size: 11.3px;
    }
}

/*** Check Options */
.check-option {
    height: 95px;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    cursor: pointer;
    line-height: 95px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding-left: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#e8e8e8, #f9f9f9ee);
    transition: all .2s ease-out;
}

.check-option:hover,
.check-option.checked {
    border: 1px solid var(--blue);
    background: linear-gradient(#7caeff, #adccff);
    color: #fff;
}

.check-option * {
    cursor: pointer;
}

.check-option .form-check {
    margin-bottom: 0;
    padding: 0;
}

.check-option .form-check input {
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.check-option label {
    display: flex;
    align-items: center;
    height: 90px;
    justify-content: center;
    padding-left: 10px;
    font-weight: 500;
}

.check-option label .option-icon {
    width: 80px;
    max-width: 30%;
    height: 100%;
    display: block;
}

.check-option label .option-icon>img {
    width: 100%;
    height: 100%;
    max-width: 80px;
    display: block;
    margin: auto;
}

.check-option label .option-text {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 90px;
    padding-left: 10px;
    line-height: 1;
}

/*** Details Claim Page */
.section-title {
    color: #ffffff;
    padding: .6rem 1.5rem;
    background-color: var(--blue-dark);
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.card-header {
    font-weight: bold;
}

.timeline {
    border-left: 1px solid hsl(0, 0%, 90%);
    position: relative;
    list-style: none;
}

.document {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #eee;
    padding: .4rem .9rem;
}

.document i {
    font-size: 20px;
    margin-right: 10px;

}

.tmtimeline {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative
}

.tmtimeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #eee;
    left: 20%;
    margin-left: -6px
}

.tmtimeline>li {
    position: relative
}

.tmtimeline>li:first-child .tmtime span.large {
    color: #444;
    font-size: 17px !important;
    font-weight: 700
}

.tmtimeline>li:first-child .tmicon {
    background: #fff;
    color: #666
}

.tmtimeline>li:nth-child(odd) .tmtime span:last-child {
    color: #444;
    font-size: 13px
}

.tmtimeline>li:nth-child(odd) .tmlabel {
    background: #f0f1f3
}

.tmtimeline>li:nth-child(odd) .tmlabel:after {
    border-right-color: #f0f1f3
}

.tmtimeline>li .empty span {
    color: #777
}

.tmtimeline>li .tmtime {
    display: block;
    width: 23%;
    padding-right: 70px;
    position: absolute
}

.tmtimeline>li .tmtime span {
    display: block;
    text-align: right
}

.tmtimeline>li .tmtime span:first-child {
    font-size: 15px;
    color: #3d4c5a;
    font-weight: 700
}

.tmtimeline>li .tmtime span:last-child {
    font-size: 14px;
    color: #444
}

.tmtimeline>li .tmlabel {
    margin: 0 0 15px 25%;
    background: #f0f1f3;
    padding: 1.2em;
    position: relative;
    border-radius: 5px
}

.tmtimeline>li .tmlabel:after {
    right: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #f0f1f3;
    border-width: 10px;
    top: 10px
}

.tmtimeline>li .tmlabel blockquote {
    font-size: 16px
}


.tmtimeline>li .tmlabel h2 {
    margin: 0px;
    padding: 0 0 10px 0;
    line-height: 26px;
    font-size: 16px;
    font-weight: normal
}

.tmtimeline>li .tmlabel h2 a {
    font-size: 15px
}

.tmtimeline>li .tmlabel h2 a:hover {
    text-decoration: none
}

.tmtimeline>li .tmlabel h2 span {
    font-size: 15px
}

.tmtimeline>li .tmlabel p {
    color: #444
}

.tmtimeline>li .tmicon {
    width: 40px;
    height: 40px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-size: 1.4em;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: #fff;
    background: #46a4da;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #f5f5f6;
    text-align: center;
    left: 20%;
    top: 0;
    margin: 0 0 0 -25px
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    .tmtimeline>li .tmtime {
        padding-right: 60px
    }
}

@media screen and (max-width: 65.375em) {
    .tmtimeline>li .tmtime span:last-child {
        font-size: 12px
    }
}

@media screen and (max-width: 47.2em) {
    .tmtimeline:before {
        display: none
    }

    .tmtimeline>li .tmtime {
        width: 100%;
        position: relative;
        padding: 0 0 20px 0
    }

    .tmtimeline>li .tmtime span {
        text-align: left
    }

    .tmtimeline>li .tmlabel {
        margin: 0 0 30px 0;
        padding: 1em;
        font-weight: 400;
        font-size: 95%
    }

    .tmtimeline>li .tmlabel:after {
        right: auto;
        left: 20px;
        border-right-color: transparent;
        border-bottom-color: #f5f5f6;
        top: -20px
    }

    .tmtimeline>li .tmicon {
        position: relative;
        float: right;
        left: auto;
        margin: -64px 5px 0 0px
    }

    .tmtimeline>li:nth-child(odd) .tmlabel:after {
        border-right-color: transparent;
        border-bottom-color: #f5f5f6
    }
}

.bg-blush {
    background-color: #ff758e !important;
    color: #fff;
}

.bg-orange {
    background-color: #ffc323 !important;
    color: #fff;
}

.bg-info {
    background-color: #2CA8FF !important;
}
.bg-blue {
    background-color: #00c0ef !important;
}
.bg-green {
    background-color: #00a65a !important;
}
.bg-red {
    background-color: #d9534f !important;
}

.card-box {
    position: relative;
    color: #fff;
    padding: 20px 10px 40px;
    margin: 20px 0px;
}
.card-box:hover {
    text-decoration: none;
    color: #f1f1f1;
}
.card-box:hover .icon i {
    font-size: 100px;
    transition: 1s;
    -webkit-transition: 1s;
}
.card-box .inner {
    padding: 5px 10px 0 10px;
}
.card-box h3 {
    font-size: 27px;
    font-weight: bold;
    margin: 0 0 8px 0;
    white-space: nowrap;
    padding: 0;
    text-align: left;
}
.card-box p {
    font-size: 15px;
}
.card-box .icon {
    position: absolute;
    top: auto;
    bottom: 5px;
    right: 5px;
    z-index: 0;
    font-size: 72px;
    color: rgba(0, 0, 0, 0.15);
}
.card-box .card-box-footer {
    position: absolute;
    left: 0px;
    bottom: 0px;
    text-align: center;
    padding: 3px 0;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    text-decoration: none;
}
.card-box:hover .card-box-footer {
    background: rgba(0, 0, 0, 0.3);
}

/*** User Dashboard Profil Page */
.sidebar > li {
    list-style: none;
    line-height: 1.5;
    display: inline-block;
    border-bottom: 1px solid #f7f7f7;
    width: 100%;
    padding-left: .8rem;
}

.sidebar >li>a {
    padding: 0.5rem 1rem 0.5rem 0;
    border-radius: 6px;
    display: block;
    width: 100%;
    transition: .2s;
    color: #000;
}

.sidebar >li:hover,.sidebar >li.active{
    background-color: #e9e9e9;
}
.sidebar >li:hover > a,.sidebar >li.active  >a{
    color: #1353a1 !important;
}



/** Ticket Page ***/

.comment {
    display: block;
    position: relative;
    margin-bottom: 30px;
    padding-left: 66px
}

.comment .comment-author-ava {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    border-radius: 50%;
    overflow: hidden
}

.comment .comment-author-ava>img {
    display: block;
    width: 100%
}

.comment .comment-body {
    position: relative;
    padding: 24px;
    border: 1px solid #e1e7ec;
    border-radius: 7px;
    background-color: #fff
}

.comment .comment-body::after,
.comment .comment-body::before {
    position: absolute;
    top: 12px;
    right: 100%;
    width: 0;
    height: 0;
    border: solid transparent;
    content: '';
    pointer-events: none
}

.comment .comment-body::after {
    border-width: 9px;
    border-color: transparent;
    border-right-color: #fff
}

.comment .comment-body::before {
    margin-top: -1px;
    border-width: 10px;
    border-color: transparent;
    border-right-color: #e1e7ec
}

.comment .comment-title {
    margin-bottom: 8px;
    color: #606975;
    font-size: 14px;
    font-weight: 500
}

.comment .comment-text {
    margin-bottom: 12px
}

.comment .comment-footer {
    display: table;
    width: 100%
}

.comment .comment-footer>.column {
    display: table-cell;
    vertical-align: middle
}

.comment .comment-footer>.column:last-child {
    text-align: right
}

.comment .comment-meta {
    color: #9da9b9;
    font-size: 13px
}

.comment .reply-link {
    transition: color .3s;
    color: #606975;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none
}

.comment .reply-link>i {
    display: inline-block;
    margin-top: -3px;
    margin-right: 4px;
    vertical-align: middle
}

.comment .reply-link:hover {
    color: #0da9ef
}

.comment.comment-reply {
    margin-top: 30px;
    margin-bottom: 0
}

@media (max-width: 576px) {
    .comment {
        padding-left: 0
    }
    .comment .comment-author-ava {
        display: none
    }
    .comment .comment-body {
        padding: 15px
    }
    .comment .comment-body::before,
    .comment .comment-body::after {
        display: none
    }
}

/* Faq Pages */

.icon-lg {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1;
}
a {
    text-decoration:none;    
}

.desc{
    color: var(--blue-dark);    
}
.min-160{
    min-height: 125px;
}
.search-box{
    position: relative !important;
    width: 100%;
    display: inline-block;
}
.search-box > input{
    height: 100%;
    display: block;
}
.search-box > button{
    position: absolute;
    right: 2px !important;
    top: 2px !important;
    height: 90%;
    display: block;
}
@media screen and (max-width: 576px) {
    .search-box > button{
        right: 2px !important;
        top: 3px !important;
        height: 75%;
        display: block;
    }
    .d-xs-none{
        display: none !important;
    }
}


.position-absolute{
    position: absolute !important;
}
.position-relative{
    position: relative !important;
}

/*** Footer */
.footer {
    position: relative;
    margin-top: auto !important;
    bottom: 0;
    width: 100%;
    height: auto;
    line-height: 30px;
    background-color: #06111f ;
    color: #cecece;
  }
.footer >.nav >.nav-item > .nav-link{
    color: #cecece !important;
}
.footer {
    height: 13vh;
}
  @media screen and (min-width: 991px){
    .page-wrapper.home {
        overflow-y: hidden;
    }
    main.page-wrapper {
        min-height: 82vh !important;
    }
    .breadcrumb-section {
        padding-top: 1.633vh;
    }
    header {
        height: 5vh;
    }
  }
  @media screen and (max-width: 991px){
    .footer {
        height: auto;
    }
  }
.auth-section{
    min-height: 450px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 885px) {
    .auth-section{
        min-height: 450px;
    }
}
.widget-card{
    position: relative;
    z-index: 5;
    width:48%; background-image: url('../img/login-bg.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center
}
.widget-card::after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(2, 25, 69, 0.557);
}
@media screen and (max-width:576px) {
    .px-xs-0{
        padding: 0 0rem !important;
    }
    .px-xs-1{
        padding: 0 .3rem !important;
    }
    .px-xs-2{
        padding: 0 .5rem !important;
    }
    .px-xs-2{
        padding: 0 1rem !important;
    }
    .px-xs-4{
        padding: 0 1.5rem !important;
    }
}


.swal2-icon-error .swal2-html-container{
    color: #da223a;
}
.swal2-icon-success .swal2-html-container{
    color: #208c3f;
}
@media screen and (min-width: 991px) {
    .swal2-html-container{
        display: block;
        font-size: 22px !important;
        font-weight: 600 !important;
    }
}
/* New styles */
.bg-transparent,.bg-soft-dark {
    background: rgba(5, 5, 5, 0.226) !important;
    transition: all .2s;
}
.bg-soft,.bg-soft-static,.card.bg-soft {
    background: rgba(255, 255, 255, 0.75) !important;
    transition: all .2s;
}
.bg-soft:not(.static):hover,.card.bg-soft:not(.static):hover{
    background: rgba(255, 255, 255, 1) !important;
}
a,a:hover{
    text-decoration: none;
}

.notification-badge{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    font-size: 10px;
    background-color: #d71c1c;
    color: white;
    border: 1px solid #e31d1d;
    position: absolute;
    left: 5px;
    top: -8px;
    font-weight: bold;
    border-radius: 30rem;
}