/* green primary :#95C11F
    green hover : #83a91f
    text red hover : #E71D73
*/
:root {
    --bs-primary: #003478;
    --bs-primary-hover: #2f6fbd;
    --bs-danger: #D2002E;
    --bs-orange: #fd7e14;
    --bg-warning: #FFCF08;
    /*colors for gradien*/
    --bs-primary1: #003478;
    --bs-primary2: #003478;
    --bs-primary3: #003478;
    /*end of colors for gradien*/
    /*background base colors */
    --bg-secondary: #FFCC00;
    --bg-light: rgba(246, 246, 246, 1);
    --bg-white: #FFFFFF;
    --bg-gray: #909090;
    --bg-muted: rgba(199, 197, 192, 1);
    --bg-gray-hover: #d6d6d6;
    --bg-primary-transparent: #fbfbfb49;
    --bg-blue: #003478;
    /************************/
    /* text color */
    --text-dark: rgba(0, 0, 0, 1);
    --text-light: #FFFFFF;
    --text-primary: #003478;
    --text-primary-hover: #009ef7;
    --text-info: #007AD6;
    --text-secondary: #37301D;
    --text-success: #00A130;
    --text-muted: #909090;
    --text-green: #0DC87D;
    /**************/
    /* font */
    --font-family: 'Montserrat', sans-serif;
    /********/
    /*border radius*/
    --br-primary: 5px;
    --br-secondary: 20px;
    --br-btn: 10px;
    --br-input-primary: .475rem;
    /***************/
    /* height */
    --input-h-primary: 42.95px;
    /*********/
    /* box-shadow */
    --box-shadow: 0px 0px 8px #0000000F;
    --text-box-shadow: 0px 3px 6px #00000029;
    /**************/
    /* border color */
    --border-color-primary: #003478;
    --border-color-light: #EBEBEC;
    --border-color-card: #E2E2E2;
}

/************************* General Style **********************************/
body {
    background-color: var(--bg-light) !important;
    font-family: var(--font-family) !important;
}

.word-break-word {
    word-break: break-word !important;
}

.dir-ltr {
    direction: ltr !important;
}
/* font size */
.fw-700 {
    font-weight: 700;
}
/* flexbox */
.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-2 {
    flex-grow: 2 !important;
}

.flex-end {
    justify-content: flex-end;
    align-items: flex-end;
}

.flex-center {
    justify-content: center !important;
    align-content: center !important;
}
/***********/
/* overflow */
.overflow-y-hidden {
    overflow-y: hidden !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}
/*****************/
.page-item.active .page-link,
/******** background color ***************/
.bg-primary {
    color: var(--bg-white) !important;
    background: var(--bs-primary1);
    background: linear-gradient(90deg, var(--bs-primary1) 0%, var(--bs-primary2) 50%, var(--bs-primary3) 100%);
}

.bg-warning,
.bg-secondary {
    background-color: var(--bg-warning) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
}

.bg-solid-gray {
    background-color: var(--bg-gray) !important;
}

.bg-solid-blue {
    background-color: var(--bg-blue) !important;
}
.bg-gray {
    background-color: var(--bg-gray) !important;
}

    .bg-gray:hover {
        background-color: var(--bg-gray-hover) !important;
    }

.bg-muted {
    background-color: var(--bg-muted) !important;
}

.bg-card-gradient {
    background: var(--bs-card-gradient) !important;
}

.bg-card-gradient-reverse {
    background: var(--bs-card-gradient-reverse) !important;
}

.bg-red {
    background-color: var(--bg-red) !important;
}

.bg-orange {
    background-color: var(--bg-orange) !important;
}

.bg-yellow {
    background-color: var(--bg-yellow) !important;
}

.bg-green {
    background-color: var(--bg-green) !important;
}

.bg-grey-mint {
    background-color: var(--bg-gray-mint) !important;
}

.headerImage-box:not(.show) .white-svg {
    filter: brightness(0) saturate(100%) invert(100%) !important;
}
/****************************************/
/******* input text ********/
.form-select,
.form-control.form-control-solid:not(.form-check-input) {
    background-color: var( --bg-white) !important;
    border: 1px solid var(--bg-muted) !important;
    border-radius: 5px !important;
}
.form-control[readonly] {
    background-color: lightgray;
}
.py-select-0 .select2 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.form-check.form-check-solid .form-check-input {
    background-color: var(--bg-gray) !important;
    border: 1px solid var(--border-color-primary) !important;
}

    .form-check.form-check-solid .form-check-input:checked {
        background-color: var(--bs-primary1) !important;
    }
/******* begain of Buttons Style ********/
.btn {
    border-radius: var(--br-primary) !important;
}

.btn-primary {
    color: var(--bg-white) !important;
    background-color: var(--bs-primary1) !important;
}

.btn-outline {
    color: var(--bs-primary1) !important;
    background-color: var(--bg-white) !important;
}

.btn.btn-primary:hover {
    color: #fff !important;
    background-color: var(--bs-primary-hover) !important;
}
/*end of Buttons Style*/
/******** text style  ***********/
.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-primary3 {
    color: var(--bs-primary3) !important;
}

.text-info {
    color: var(--text-info) !important;
}

.text-success {
    color: var(--text-success) !important;
}

.text-orange {
    color: var(--bs-orange);
}

.text-color {
    color: var(--text-dark) !important;
}

.text-footer {
    color: var(--text-light) !important;
}

.text-color-muted {
    color: var(--text-dark-muted) !important;
}

.text-hover-primary:hover {
    color: var(--text-primary-hover) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-red {
    color: var(--bs-red) !important;
}

.text-orange {
    color: var(--bs-orange) !important;
}

.text-yellow {
    color: var(--bs-yellow) !important;
}

.text-green {
    color: var(--bs-green) !important;
}

.text-grey-mint {
    color: var(--bs-gray-mint) !important;
}

.text-white {
    color: white !important;
}

.text-primary-800 {
    font-weight: 800 !important;
}

.text-primary-900 {
    font-weight: 900 !important;
}

.text-deleted {
    text-decoration: line-through !important;
}

.text-t-upper {
    text-transform: uppercase !important;
    letter-spacing: 0px !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.text-boxShadow {
    text-shadow: var(--text-box-shadow) !important;
}

.link-primary {
    color: var(--bs-primary) !important;
}

.text-justify {
    text-align: justify !important;
}

.fs-24px {
    font-size: 24px !important;
}

.fs-32px {
    font-size: 32px !important;
}
/******  end of text style ******/
/***** top ********/
.top-10px {
    top: 10px !important;
}

.top-6px {
    top: 6px !important;
}

.top-24px {
    top: 24px !important;
}
/*****************/
/***** height *******/
.lh-27px {
    line-height: 27px !important;
}

.line-height {
    line-height: 2 !important;
}

.h-35px {
    height: 35px;
}

.mh-44px {
    min-height: 44px !important;
}

.h-44px {
    height: 44px !important;
}

.h-350px {
    height: 350px;
}

.h-160px {
    height: 160px !important;
}

.h-110 {
    height: 110%;
}

.h-120px {
    height: 120px;
}

.h-135px {
    height: 135px;
}

.minh-224px {
    min-height: 224px !important;
}

.minh-40px {
    height: 40px !important;
    min-height: 40px !important;
}

.min-h-450px {
    min-height: 450px !important;
}

.mh-450px {
    max-height: 450px !important;
}

.min-h-375px {
    min-height: 375px !important;
}

.h-fit-content {
    height: fit-content !important;
}

.border-none {
    border: none !important;
}

.pointer {
    cursor: pointer !important;
}

.disp-none {
    display: none;
}

.input-h-primary {
    height: var(--input-h-primary);
}

.min-h-75 {
    min-height: 75% !important;
}

.hv-90 {
    height: 90vh !important;
}
/********************/
/********* width *********/
.w-md-90 {
    width: 90% !important;
}

.w-80 {
    width: 80% !important;
}

.w-35 {
    width: 35% !important;
}

.w-90 {
    width: 90% !important;
}

.w-80px {
    width: 80px !important;
}

.w-85px {
    width: 85px !important;
}

.w-120px {
    width: 120px;
}

.w-165px {
    width: 165px !important;
}

.w-170px {
    width: 170px;
}

.w-270px {
    width: 270px;
}

.w-330px {
    width: 330px;
}

.w-550px {
    width: 550px;
}

.w-600px {
    width: 600px !important;
}

.w-fit-content {
    width: fit-content !important;
}
/********************/
/* borders */
.b-primary {
    border: 1px solid var(--border-color-primary) !important;
}

.b-card {
    border: 1px solid var(--border-color-card) !important;
}

.b-light {
    border: 1px solid var(--border-color-light) !important;
}

.b-none {
    border: none !important;
}
/**** end of borders */
/* border radius */
.br-primary {
    border-radius: var(--br-primary) !important;
}

.br-secondary {
    border-radius: var(--br-secondary) !important;
}

.br-btn {
    border-radius: var(--br-btn) !important;
}

.border-circle {
    border-radius: 50px !important;
}

.br-8px {
    border-radius: 8px !important;
}

.br-13px {
    border-radius: 13px !important;
}

.br-18px {
    border-radius: 18px !important;
}

.CountryCodesContainer .input-with-prefix, .br-end-none {
    border-end-end-radius: 0px !important;
    border-start-end-radius: 0px !important;
}

.CountryCodesContainer .form-control {
    border-radius: .475rem 0rem 0rem .475rem;
}

.phoneNumberContainer .form-control {
    border-radius: .0rem .475rem .475rem .0rem;
}

.phoneNumberContainer .input-with-prefix, .br-start-none {
    border-start-start-radius: 0px !important;
    border-end-start-radius: 0px !important;
}

.br-bottom-none {
    border-end-start-radius: 0px !important;
    border-end-end-radius: 0px !important;
}
/******************/
.hidden {
    display: none;
}

.break-word {
    word-break: break-word !important;
}

.boxShadow {
    box-shadow: var(--box-shadow) !important;
}

.no-boxShadow {
    box-shadow: none !important;
}

.boxShadow-hover:hover {
    transition: all 0.4s !important;
    box-shadow: 0px 7px 21px #0000001A !important;
}

.z-index-2 {
    z-index: 2 !important;
}
/********************** end of General Style ****************************/
/*  require star */
.required-star::after {
    content: '*';
    color: var(--bs-danger) !important;
    margin: 0px 10px !important;
}
/*  end of require star */
/********** bootstrap-colorpicker style ************/
.input-group.colorpicker {
    box-sizing: border-box;
}

.colorpicker {
    padding: 0px;
    border: none;
}

    .colorpicker::before, .colorpicker::after {
        display: none;
    }
/********************************/
/*********  tagify style *************/
.iti__flag {
    background-image: url("../img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("../img/flags@2x.png");
    }
}
/********************************/
/* Ajax Loader */
.ajax-loader {
    background-color: var(--bg-primary-transparent);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1070;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .ajax-loader img {
        width: 140px;
    }
/****************/
/********************* hedaer style start ****************************/
.header {
    background-color: white !important;
}

[data-kt-sticky-header="on"] .header {
    box-shadow: 0px 0px 16px #0000000F !important;
}
/*******************  guest header ********************/
.header.guest-header .menu-item .menu-link {
    color: var(--text-dark) !important;
}

    .header.guest-header .menu-item .menu-link:hover {
        color: var(--bg-warning) !important;
    }
/*******************  end : guest header ********************/
/************************ hedaer style end  *************************/
/************************ asid style  *************************/
.aside {
    height: 100% !important;
}

.aside-menu-header {
    background-color: white;
}

.drawer .aside-menu-header {
    background-color: white !important;
}

.menu-state-title-primary .menu-item .menu-link:hover:not(.disabled):not(.active) .menu-title, .aside-menu-title-active {
    color: white !important;
    background-color: var(--bs-primary) !important;
}

.menu-state-bullet-primary .menu-item .aside-menu-title-active svg path, .menu-state-bullet-primary .menu-item .menu-link:hover:not(.disabled):not(.active) .menu-title svg path {
    fill: white !important;
}

.aside-separator {
    background-color: var(--bg-gray) !important;
    margin: 5px 25px;
}

.aside-menu-header {
    display: flex;
    justify-content: center;
}

.menu-state-title-primary .menu-item .menu-link .menu-title {
    height: 44px !important;
    padding: 10px;
    border-radius: var(--br-primary) !important;
    transition: all 0.3s !important;
}
/* Hide desktop toggle icon for mobile  */
#AsideToggleId {
    display: none !important;
}

.socialMediaMenu {
    width: 125px;
    display: none;
    z-index: 1;
}

.DownloadMenu {
    width: 125px;
    display: none;
    z-index: 1;
}

.showShareMenu {
    display: block;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -5px;
    right: 86%;
    background: white;
}

.showdwnloadMenu {
    display: block;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -5px;
    right: 86%;
    background: white;
}
.socialShareItem {
    cursor: pointer;
}

.dwnloadItem {
    border-radius: 10px;
    background: #003478;
    height: 48px;
    padding: 16px;
    color: #FFF;
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
}
/* customer aside */
.user-aside-image {
    aspect-ratio: 1/1;
}
/************************ media query for desktop aside *************************/
@media (min-width: 992px) {
    /* show hidden toggle icon for desktop */
    #AsideToggleId {
        display: flex !important;
        justify-content: center !important;
    }

    .collapseAside .aside {
        width: 90px !important;
    }

    .desktop-menu-title {
        margin: auto 10px;
    }
    
    .collapseAside .aside {
        width: 90px !important;
    }

    .collapseAside .desktop-menu-title {
        display: none;
    }

    .collapseAside .menu-item .menu-link .menu-title {
        flex-grow: 0;
    }

    .collapseAside, .menu-title, .aside-menu-title-active {
        margin: 0;
    }

        .collapseAside .logo-default, .logo-sticky {
            width: 50px !important;
        }

    .aside-enabled .logo-sticky {
        width: 200px !important;
    }

    .aside-enabled[data-kt-sticky-aside-sticky="on"].collapseAside .logo-sticky {
        width: 50px !important;
    }

    .header-logo {
        margin-right: 0 !important;
    }

    .menu-state-title-primary .menu-item .menu-link .menu-title {
        transition: none !important;
    }

    .logoBtnContainer {
        display: flex;
        width: auto !important;
    }
}
/************************ asid style end  *************************/
/************************ footer style  *************************/
.footer {
    z-index: 100 !important;
}
/************************ footer style end  *************************/
/* fix phone input border radius with prefix code style */
input.input-with-prefix {
    border-bottom-right-radius: var(--br-input-primary) !important;
    border-top-right-radius: var(--br-input-primary) !important;
}

.prefix-input {
    border-bottom-left-radius: var(--br-input-primary) !important;
    border-top-left-radius: var(--br-input-primary) !important;
}

.footer-text {
    color: #FFF !important;
    font-family: var(--font-family) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 24px !important;
}
/********************************************************/
/************************* croppie *************************/
.container-form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    padding-bottom: 0;
}

.container-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#selectedFile-img {
    border-radius: 4px;
}

#upload-aphoto {
    background: red;
    border-color: red;
}
/******************** End of croppie *******************/
/******************* Style from Demo2 of Timeline3 ************/
.timeline.timeline-3 .timeline-items {
    margin: 0;
    padding: 0;
}

    .timeline.timeline-3 .timeline-items .timeline-item {
        margin-left: 25px;
        border-left: 2px solid #EBEDF3;
        padding: 0 0 20px 50px;
        position: relative;
    }

        .timeline.timeline-3 .timeline-items .timeline-item .timeline-media {
            position: absolute;
            top: 0;
            left: -26px;
            border: 2px solid #EBEDF3;
            border-radius: 100%;
            width: 50px;
            height: 50px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background-color: #ffffff;
            line-height: 0;
        }

            .timeline.timeline-3 .timeline-items .timeline-item .timeline-media i {
                font-size: 1.4rem;
            }

            .timeline.timeline-3 .timeline-items .timeline-item .timeline-media .svg-icon svg {
                height: 24px;
                width: 24px;
            }

            .timeline.timeline-3 .timeline-items .timeline-item .timeline-media img {
                max-width: 48px;
                max-height: 48px;
                border-radius: 100%;
            }

        .timeline.timeline-3 .timeline-items .timeline-item .timeline-content {
            border-radius: 0.85rem;
            position: relative;
            background-color: #F3F6F9;
            padding: 0.75rem 1.5rem;
        }

            .timeline.timeline-3 .timeline-items .timeline-item .timeline-content:before {
                position: absolute;
                content: "";
                width: 0;
                height: 0;
                top: 10px;
                left: -25px;
                border-right: solid 10px #F3F6F9;
                border-bottom: solid 17px transparent;
                border-left: solid 17px transparent;
                border-top: solid 17px transparent;
            }

        .timeline.timeline-3 .timeline-items .timeline-item:last-child {
            border-left-color: transparent;
            padding-bottom: 0;
        }
/*************************************************************/
/************ label style from demo2 style ******************/
.label {
    padding: 0;
    margin: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    font-size: 0.8rem;
    background-color: #EBEDF3;
    color: #3F4254;
    font-weight: 400;
    height: 20px;
    width: 20px;
    font-size: 0.8rem;
}

    .label.label-primary {
        color: #FFFFFF;
        background-color: #6993FF;
    }

    .label.label-outline-primary {
        background-color: transparent;
        color: #6993FF;
        border: 1px solid #6993FF;
    }

        .label.label-outline-primary.label-outline-2x {
            border: 2px solid #6993FF;
        }

    .label.label-light-primary {
        color: #6993FF;
        background-color: #E1E9FF;
    }

    .label.label-secondary {
        color: #3F4254;
        background-color: #E4E6EF;
    }

    .label.label-outline-secondary {
        background-color: transparent;
        color: #3F4254;
        border: 1px solid #E4E6EF;
    }

        .label.label-outline-secondary.label-outline-2x {
            border: 2px solid #E4E6EF;
        }

    .label.label-light-secondary {
        color: #E4E6EF;
        background-color: #EBEDF3;
    }

    .label.label-success {
        color: #ffffff;
        background-color: #1BC5BD;
    }

    .label.label-outline-success {
        background-color: transparent;
        color: #1BC5BD;
        border: 1px solid #1BC5BD;
    }

        .label.label-outline-success.label-outline-2x {
            border: 2px solid #1BC5BD;
        }

    .label.label-light-success {
        color: #1BC5BD;
        background-color: #C9F7F5;
    }

    .label.label-info {
        color: #ffffff;
        background-color: #8950FC;
    }

    .label.label-outline-info {
        background-color: transparent;
        color: #8950FC;
        border: 1px solid #8950FC;
    }

        .label.label-outline-info.label-outline-2x {
            border: 2px solid #8950FC;
        }

    .label.label-light-info {
        color: #8950FC;
        background-color: #EEE5FF;
    }

    .label.label-warning {
        color: #ffffff;
        background-color: #FFA800;
    }

    .label.label-outline-warning {
        background-color: transparent;
        color: #FFA800;
        border: 1px solid #FFA800;
    }

        .label.label-outline-warning.label-outline-2x {
            border: 2px solid #FFA800;
        }

    .label.label-light-warning {
        color: #FFA800;
        background-color: #FFF4DE;
    }

    .label.label-danger {
        color: #ffffff;
        background-color: #F64E60;
    }

    .label.label-outline-danger {
        background-color: transparent;
        color: #F64E60;
        border: 1px solid #F64E60;
    }

        .label.label-outline-danger.label-outline-2x {
            border: 2px solid #F64E60;
        }

    .label.label-light-danger {
        color: #F64E60;
        background-color: #FFE2E5;
    }

    .label.label-light {
        color: #7E8299;
        background-color: #F3F6F9;
    }

    .label.label-outline-light {
        background-color: transparent;
        color: #3F4254;
        border: 1px solid #F3F6F9;
    }

        .label.label-outline-light.label-outline-2x {
            border: 2px solid #F3F6F9;
        }

    .label.label-light-light {
        color: #F3F6F9;
        background-color: #F3F6F9;
    }

    .label.label-dark {
        color: #ffffff;
        background-color: #181C32;
    }

    .label.label-outline-dark {
        background-color: transparent;
        color: #181C32;
        border: 1px solid #181C32;
    }

        .label.label-outline-dark.label-outline-2x {
            border: 2px solid #181C32;
        }

    .label.label-light-dark {
        color: #181C32;
        background-color: #D1D3E0;
    }

    .label.label-white {
        color: #3F4254;
        background-color: #ffffff;
    }

    .label.label-outline-white {
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #ffffff;
    }

        .label.label-outline-white.label-outline-2x {
            border: 2px solid #ffffff;
        }

    .label.label-light-white {
        color: #ffffff;
        background-color: #ffffff;
    }

    .label.label-inline {
        width: auto;
        padding: 0.15rem 0.75rem;
        border-radius: 0.42rem;
    }

        .label.label-inline.label-md {
            padding: 0.8rem 0.6rem;
        }

        .label.label-inline.label-lg {
            padding: 0.9rem 0.75rem;
        }

        .label.label-inline.label-xl {
            padding: 1rem 0.85rem;
        }

    .label.label-pill {
        border-radius: none;
    }

    .label.label-rounded {
        border-radius: 0.42rem;
    }

    .label.label-square {
        border-radius: 0;
    }

    .label.label-dot {
        display: inline-block;
        font-size: 0 !important;
        vertical-align: middle;
        text-align: center;
    }

    .label.label-inline {
        width: auto;
    }

    .label.label-dot {
        line-height: 6px;
        min-height: 6px;
        min-width: 6px;
        height: 6px;
        width: 6px;
    }

    .label.label-sm {
        height: 16px;
        width: 16px;
        font-size: 0.75rem;
    }

        .label.label-sm.label-inline {
            width: auto;
        }

        .label.label-sm.label-dot {
            line-height: 4px;
            min-height: 4px;
            min-width: 4px;
            height: 4px;
            width: 4px;
        }

    .label.label-lg {
        height: 24px;
        width: 24px;
        font-size: 0.9rem;
    }

        .label.label-lg.label-inline {
            width: auto;
        }

        .label.label-lg.label-dot {
            line-height: 8px;
            min-height: 8px;
            min-width: 8px;
            height: 8px;
            width: 8px;
        }

    .label.label-xl {
        height: 28px;
        width: 28px;
        font-size: 1rem;
    }

        .label.label-xl.label-inline {
            width: auto;
        }

        .label.label-xl.label-dot {
            line-height: 10px;
            min-height: 10px;
            min-width: 10px;
            height: 10px;
            width: 10px;
        }
/**************************************/
/* Header Nav */
.btn.btn-active-light-primary.show .text-white, .btn.btn-active-light-primary.show .flaticon-earth-globe, .btn.btn-active-light-primary:hover:not(.btn-active) .flaticon-earth-globe, .btn.btn-active-light-primary:hover:not(.btn-active) .text-white {
    color: var(--text-dark) !important;
}
/*************/
/******************  delete Modal *******************/
.swal2-styled.swal2-confirm {
    background-color: var(--bs-primary) !important;
}
/***************************************************/
/************* select2 close icon in international phone number  ************/
.CountryCodesContainer .select2-container--bootstrap5 .select2-selection__clear {
    right: 15px !important;
    left: auto !important;
}
/*********************************************/
/******************* verify-phone-number-container *****************/
.verify-phone-number-container {
    border-radius: 4px;
    background-color: #fff;
    padding: 4px;
    width: 300px;
}

    .verify-phone-number-container input[type=text] {
        width: 100%;
    }

        .verify-phone-number-container input[type=text]:focus {
            outline: none
        }

    .verify-phone-number-container .submit-button {
        background-color: var(--bs-primary) !important;
        border-radius: 4px;
        height: 38px;
        border: none;
    }

        .verify-phone-number-container .submit-button.disabled {
            cursor: not-allowed !important;
            background-color: var(--bg-muted) !important;
        }
/****************** end :: verify-phone-number-container ***********/

/******************* Auth pages ***************************/
.auth-pages-bg {
    width: 80% !important;
    aspect-ratio: 35/32;
    height: fit-content;
}
/******************* end :: Auth pages *******************/
/******************* Dashboard page ***************************/
.num-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-stat {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
/******************* end :: Dashboard page *******************/
/**************** static page style **************/
.static-page-content {
    line-height: 2;
}
/***************** media query ********************/
/**************** Landing page - Download out app section *************/
.DownloadApp-section-bg {
    background-color: var(--bs-primary1) !important;
    background-image: linear-gradient(to bottom, rgb(65 35 99/ 90%),rgb(65 35 99/ 90%)), url(../media/web/landingPage-About-Pattren2.png);
}
/* contact us form */
.contact-us-form .form-control {
    border-radius: 0 !important;
}

.contact-us-form textarea.form-control {
    height: 100px !important;
}
/*****************/
/*******************  them radio button style *******************/

.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
}

    .radio > span {
        border-radius: 50px;
        background-color: none;
        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;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

        .radio > span:after {
            content: "";
            display: none;
            border-radius: 100% !important;
        }

    .radio > input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

        .radio:hover > input:not([disabled]) ~ span,
        .radio > input:focus ~ span {
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

    .radio.radio-disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .radio > input:checked ~ span {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-color: none;
    }

        .radio > input:checked ~ span:after {
            display: block;
        }

    .radio.radio-square > span {
        border-radius: 0;
    }

    .radio.radio-rounded > span {
        border-radius: 0.42rem;
    }

    .radio.radio-outline > span {
        border-width: 1px;
        border-style: solid;
    }

    .radio.radio-outline-2x > span {
        border-width: 2px !important;
    }

    .radio.radio-accent > span {
        border-width: 3px !important;
        border-style: solid !important;
        background-color: transparent !important;
    }

        .radio.radio-accent > span:after {
            display: block;
        }

    .radio > span {
        height: 20px;
        width: 20px;
    }

        .radio > span:after {
            position: relative;
            left: 0px;
            top: 0px;
            width: 10px;
            height: 10px;
            margin: 0px !important;
        }

    .radio.radio-lg > span {
        height: 20px;
        width: 20px;
    }

        .radio.radio-lg > span:after {
            width: 8px;
            height: 8px;
        }

    .radio.radio-outline > span {
        height: 18px;
        width: 18px;
    }

        .radio.radio-outline > span:after {
            width: 6px;
            height: 6px;
        }

    .radio.radio-outline.radio-lg > span {
        height: 24px;
        width: 24px;
    }

        .radio.radio-outline.radio-lg > span:after {
            width: 8px;
            height: 8px;
        }

    .radio.radio-accent > span {
        height: 24px;
        width: 24px;
    }

        .radio.radio-accent > span:after {
            width: 14px;
            height: 14px;
        }

    .radio.radio-accent.radio-lg > span {
        height: 30px;
        width: 30px;
    }

        .radio.radio-accent.radio-lg > span:after {
            width: 10px;
            height: 10px;
        }

    .radio > span {
        border: 1px solid #C7C5C0;
        background-color: var(--bg-white);
    }

    .radio > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio > input:checked ~ span {
        background-color: var(--bs-primary);
    }

        .radio > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.radio-outline > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline > input:checked ~ span {
        background-color: transparent;
        border-color: #3699FF;
    }

        .radio.radio-outline > input:checked ~ span:after {
            background-color: #3699FF;
            border-color: #3699FF;
        }

    .radio.radio-primary > span {
        border: 1px solid transparent;
    }

    .radio.radio-primary > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-primary > input:checked ~ span {
        background-color: #3699FF;
    }

        .radio.radio-primary > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-primary > span {
        background-color: #E1F0FF;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-primary > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-primary > input:checked ~ span {
        background-color: #3699FF;
    }

        .radio.checkbox-light-primary > input:checked ~ span:after {
            border-color: #FFFFFF;
        }

    .radio.radio-outline.radio-primary > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-primary > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-primary > input:checked ~ span {
        background-color: transparent;
        border-color: #3699FF;
    }

        .radio.radio-outline.radio-primary > input:checked ~ span:after {
            background-color: #3699FF;
            border-color: #3699FF;
        }

    .radio.radio-accent.radio-primary > span:after {
        background-color: #3699FF;
    }

    .radio.radio-accent.radio-primary > input:focus ~ span {
        border-color: #E1F0FF;
    }

        .radio.radio-accent.radio-primary > input:focus ~ span:after {
            background-color: #3699FF;
        }

    .radio.radio-accent.radio-primary > input:checked ~ span {
        border-color: #E1F0FF;
    }

        .radio.radio-accent.radio-primary > input:checked ~ span:after {
            background-color: #3699FF;
        }

    .radio.radio-secondary > span {
        border: 1px solid transparent;
    }

    .radio.radio-secondary > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-secondary > input:checked ~ span {
        background-color: #E4E6EF;
    }

        .radio.radio-secondary > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-secondary > span {
        background-color: #EBEDF3;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-secondary > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-secondary > input:checked ~ span {
        background-color: #E4E6EF;
    }

        .radio.checkbox-light-secondary > input:checked ~ span:after {
            border-color: #3F4254;
        }

    .radio.radio-outline.radio-secondary > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-secondary > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-secondary > input:checked ~ span {
        background-color: transparent;
        border-color: #E4E6EF;
    }

        .radio.radio-outline.radio-secondary > input:checked ~ span:after {
            background-color: #E4E6EF;
            border-color: #E4E6EF;
        }

    .radio.radio-accent.radio-secondary > span:after {
        background-color: #E4E6EF;
    }

    .radio.radio-accent.radio-secondary > input:focus ~ span {
        border-color: #EBEDF3;
    }

        .radio.radio-accent.radio-secondary > input:focus ~ span:after {
            background-color: #E4E6EF;
        }

    .radio.radio-accent.radio-secondary > input:checked ~ span {
        border-color: #EBEDF3;
    }

        .radio.radio-accent.radio-secondary > input:checked ~ span:after {
            background-color: #E4E6EF;
        }

    .radio.radio-success > span {
        border: 1px solid transparent;
    }

    .radio.radio-success > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-success > input:checked ~ span {
        background-color: #1BC5BD;
    }

        .radio.radio-success > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-success > span {
        background-color: #C9F7F5;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-success > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-success > input:checked ~ span {
        background-color: #1BC5BD;
    }

        .radio.checkbox-light-success > input:checked ~ span:after {
            border-color: #ffffff;
        }

    .radio.radio-outline.radio-success > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-success > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-success > input:checked ~ span {
        background-color: transparent;
        border-color: #1BC5BD;
    }

        .radio.radio-outline.radio-success > input:checked ~ span:after {
            background-color: #1BC5BD;
            border-color: #1BC5BD;
        }

    .radio.radio-accent.radio-success > span:after {
        background-color: #1BC5BD;
    }

    .radio.radio-accent.radio-success > input:focus ~ span {
        border-color: #C9F7F5;
    }

        .radio.radio-accent.radio-success > input:focus ~ span:after {
            background-color: #1BC5BD;
        }

    .radio.radio-accent.radio-success > input:checked ~ span {
        border-color: #C9F7F5;
    }

        .radio.radio-accent.radio-success > input:checked ~ span:after {
            background-color: #1BC5BD;
        }

    .radio.radio-info > span {
        border: 1px solid transparent;
    }

    .radio.radio-info > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-info > input:checked ~ span {
        background-color: #8950FC;
    }

        .radio.radio-info > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-info > span {
        background-color: #EEE5FF;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-info > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-info > input:checked ~ span {
        background-color: #8950FC;
    }

        .radio.checkbox-light-info > input:checked ~ span:after {
            border-color: #ffffff;
        }

    .radio.radio-outline.radio-info > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-info > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-info > input:checked ~ span {
        background-color: transparent;
        border-color: #8950FC;
    }

        .radio.radio-outline.radio-info > input:checked ~ span:after {
            background-color: #8950FC;
            border-color: #8950FC;
        }

    .radio.radio-accent.radio-info > span:after {
        background-color: #8950FC;
    }

    .radio.radio-accent.radio-info > input:focus ~ span {
        border-color: #EEE5FF;
    }

        .radio.radio-accent.radio-info > input:focus ~ span:after {
            background-color: #8950FC;
        }

    .radio.radio-accent.radio-info > input:checked ~ span {
        border-color: #EEE5FF;
    }

        .radio.radio-accent.radio-info > input:checked ~ span:after {
            background-color: #8950FC;
        }

    .radio.radio-warning > span {
        border: 1px solid transparent;
    }

    .radio.radio-warning > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-warning > input:checked ~ span {
        background-color: #FFA800;
    }

        .radio.radio-warning > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-warning > span {
        background-color: #FFF4DE;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-warning > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-warning > input:checked ~ span {
        background-color: #FFA800;
    }

        .radio.checkbox-light-warning > input:checked ~ span:after {
            border-color: #ffffff;
        }

    .radio.radio-outline.radio-warning > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-warning > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-warning > input:checked ~ span {
        background-color: transparent;
        border-color: #FFA800;
    }

        .radio.radio-outline.radio-warning > input:checked ~ span:after {
            background-color: #FFA800;
            border-color: #FFA800;
        }

    .radio.radio-accent.radio-warning > span:after {
        background-color: #FFA800;
    }

    .radio.radio-accent.radio-warning > input:focus ~ span {
        border-color: #FFF4DE;
    }

        .radio.radio-accent.radio-warning > input:focus ~ span:after {
            background-color: #FFA800;
        }

    .radio.radio-accent.radio-warning > input:checked ~ span {
        border-color: #FFF4DE;
    }

        .radio.radio-accent.radio-warning > input:checked ~ span:after {
            background-color: #FFA800;
        }

    .radio.radio-danger > span {
        border: 1px solid transparent;
    }

    .radio.radio-danger > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-danger > input:checked ~ span {
        background-color: #F64E60;
    }

        .radio.radio-danger > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-danger > span {
        background-color: #FFE2E5;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-danger > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-danger > input:checked ~ span {
        background-color: #F64E60;
    }

        .radio.checkbox-light-danger > input:checked ~ span:after {
            border-color: #ffffff;
        }

    .radio.radio-outline.radio-danger > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-danger > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-danger > input:checked ~ span {
        background-color: transparent;
        border-color: #F64E60;
    }

        .radio.radio-outline.radio-danger > input:checked ~ span:after {
            background-color: #F64E60;
            border-color: #F64E60;
        }

    .radio.radio-accent.radio-danger > span:after {
        background-color: #F64E60;
    }

    .radio.radio-accent.radio-danger > input:focus ~ span {
        border-color: #FFE2E5;
    }

        .radio.radio-accent.radio-danger > input:focus ~ span:after {
            background-color: #F64E60;
        }

    .radio.radio-accent.radio-danger > input:checked ~ span {
        border-color: #FFE2E5;
    }

        .radio.radio-accent.radio-danger > input:checked ~ span:after {
            background-color: #F64E60;
        }

    .radio.radio-light > span {
        border: 1px solid transparent;
    }

    .radio.radio-light > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-light > input:checked ~ span {
        background-color: #F3F6F9;
    }

        .radio.radio-light > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-light > span {
        background-color: #F3F6F9;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-light > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-light > input:checked ~ span {
        background-color: #F3F6F9;
    }

        .radio.checkbox-light-light > input:checked ~ span:after {
            border-color: #7E8299;
        }

    .radio.radio-outline.radio-light > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-light > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-light > input:checked ~ span {
        background-color: transparent;
        border-color: #F3F6F9;
    }

        .radio.radio-outline.radio-light > input:checked ~ span:after {
            background-color: #F3F6F9;
            border-color: #F3F6F9;
        }

    .radio.radio-accent.radio-light > span:after {
        background-color: #F3F6F9;
    }

    .radio.radio-accent.radio-light > input:focus ~ span {
        border-color: #F3F6F9;
    }

        .radio.radio-accent.radio-light > input:focus ~ span:after {
            background-color: #F3F6F9;
        }

    .radio.radio-accent.radio-light > input:checked ~ span {
        border-color: #F3F6F9;
    }

        .radio.radio-accent.radio-light > input:checked ~ span:after {
            background-color: #F3F6F9;
        }

    .radio.radio-dark > span {
        border: 1px solid transparent;
    }

    .radio.radio-dark > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-dark > input:checked ~ span {
        background-color: #181C32;
    }

        .radio.radio-dark > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-dark > span {
        background-color: #D1D3E0;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-dark > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-dark > input:checked ~ span {
        background-color: #181C32;
    }

        .radio.checkbox-light-dark > input:checked ~ span:after {
            border-color: #ffffff;
        }

    .radio.radio-outline.radio-dark > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-dark > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-dark > input:checked ~ span {
        background-color: transparent;
        border-color: #181C32;
    }

        .radio.radio-outline.radio-dark > input:checked ~ span:after {
            background-color: #181C32;
            border-color: #181C32;
        }

    .radio.radio-accent.radio-dark > span:after {
        background-color: #181C32;
    }

    .radio.radio-accent.radio-dark > input:focus ~ span {
        border-color: #D1D3E0;
    }

        .radio.radio-accent.radio-dark > input:focus ~ span:after {
            background-color: #181C32;
        }

    .radio.radio-accent.radio-dark > input:checked ~ span {
        border-color: #D1D3E0;
    }

        .radio.radio-accent.radio-dark > input:checked ~ span:after {
            background-color: #181C32;
        }

    .radio.radio-white > span {
        border: 1px solid transparent;
    }

    .radio.radio-white > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.radio-white > input:checked ~ span {
        background-color: #ffffff;
    }

        .radio.radio-white > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.checkbox-light-white > span {
        background-color: #ffffff;
        border: 1px solid transparent;
    }

    .radio.checkbox-light-white > input:focus ~ span {
        border: 1px solid transparent;
    }

    .radio.checkbox-light-white > input:checked ~ span {
        background-color: #ffffff;
    }

        .radio.checkbox-light-white > input:checked ~ span:after {
            border-color: #3F4254;
        }

    .radio.radio-outline.radio-white > span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-white > input:focus ~ span {
        background-color: transparent;
        border-color: #D1D3E0;
    }

    .radio.radio-outline.radio-white > input:checked ~ span {
        background-color: transparent;
        border-color: #ffffff;
    }

        .radio.radio-outline.radio-white > input:checked ~ span:after {
            background-color: #ffffff;
            border-color: #ffffff;
        }

    .radio.radio-accent.radio-white > span:after {
        background-color: #ffffff;
    }

    .radio.radio-accent.radio-white > input:focus ~ span {
        border-color: #ffffff;
    }

        .radio.radio-accent.radio-white > input:focus ~ span:after {
            background-color: #ffffff;
        }

    .radio.radio-accent.radio-white > input:checked ~ span {
        border-color: #ffffff;
    }

        .radio.radio-accent.radio-white > input:checked ~ span:after {
            background-color: #ffffff;
        }

.radio-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .radio-inline .radio {
        margin-right: 1rem;
        margin-bottom: 0.35rem;
    }

        .radio-inline .radio span {
            margin-right: 0.75rem;
        }

        .radio-inline .radio:last-child {
            margin-right: 0;
        }

.radio-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .radio-list .radio {
        margin-bottom: 1rem;
    }

        .radio-list .radio span {
            margin-right: 0.75rem;
        }

        .radio-list .radio:last-child {
            margin-bottom: 0;
        }

.input-group .radio {
    margin-bottom: 0 !important;
    padding-left: 0;
}

.form-inline .radio {
    margin-left: 15px;
    margin-right: 15px;
}
/**********************************************************************/
/* for qr image in all tables */
.qr-tabe-image {
    width: 52px !important;
    height: 52px !important;
}
/**********************************************************************/
/* for Profile image in Personal Profile */
.rounded-image .image-input {
    border-radius: 50%;
}

    .rounded-image .image-input .image-input-wrapper {
        border-radius: 50%;
    }

.rounded-image label {
    margin-top: 100px;
    margin-right: 20px;
    padding: 15px !important;
    background: #003478 !important;
    border-radius: 50% !important;
}

    .rounded-image label i {
        border-radius: 50% !important;
        padding-left: 3px !important;
        color: white;
    }

/******************************/
/****** Home page **********/
.landing-p {
    line-height: 22px !important;
    font-size: 15px !important;
    word-break: break-word;
}
.download-sum-text,
.download-text {
    font-weight:900 !important;
}
.download-sum-text {
    color: #0087C2 !important;
    
}
@media only screen and (max-width: 600px) {
    .w-600px {
        width: 100% !important;
    }
    /* tabel groupo button */
    .table .btn-group {
        flex-direction: column;
    }

        .table .btn-group .btn {
            margin: 4px 0px;
            width: 100px;
        }
    /* end of tabel groupo button */
}

@media only screen and (min-width: 800px) {
    .fs-lg-54px {
        font-size: 54px !important;
    }
    /* end of tabel groupo button */
}

@media (min-width: 576px) {
    .w-sm-170px{
        width: 170px !important;
    }
    h-sm-50px{
        height:50px !important;
    }
}
/*************   End of  Media Query  ********************/
