/* HKI team css */

/* ###### GTS STYLES ###### */


/* top section */

.container {
    margin-top: 50px;
}

.cap {
    position: relative;
    width: 50%;
}

.img-caption {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px 40px;
    position: absolute;
    bottom: 0;
    left: 0;
}

    .img-caption h3 {
        font-size: 24px;
        line-height: 30px;
        color: #fffefe;
        margin: 0 0 5px 0;
    }

    .img-caption p {
        color: #a9a9a9;
    }

/* Body Section */
.body-top {
    margin: 0 0 30px 0;
}

    .body-top p {
        text-align: justify;
        line-height: 22px;
    }

.heading {
    font-size: 28px;
    line-height: 40px;
    margin-top: 10px;
    color: #111111;
    font-weight: 700;
}

a.more {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 12px;
    border: 2px solid #d8100a;
    color: #d8100a;
    font-size: 16px;
    font-weight: bold;
}

a:hover.more {
    color: #013379;
}

.hr-rule {
    margin: 15px 0 10px 0;
    font-size: 15px;
    line-height: 0px;
    font-weight: bold;
    color: #341a00;
}


.mandatory {
    color: red;
    font-size: medium;
}

.file {
    position: relative;
    display: inline-block;
    cursor: pointer;
    height: 3.9rem;
    width: 100%;
}

    .file input {
        min-width: 14rem;
        margin: 0;
        filter: alpha(opacity=0);
        opacity: 0;
    }

.file-custom {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    padding: .5rem 1rem;
    line-height: 1.8;
    color: #555;
    background-color: #fff;
    border: .075rem solid #ddd;
    border-radius: 6px 0 0 6px;
    box-shadow: inset 0 0.2rem 0.4rem rgb(0 0 0 / 5%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .file-custom:before {
        position: absolute;
        top: -.075rem;
        right: -.075rem;
        bottom: -.075rem;
        z-index: 6;
        display: block;
        content: "Browse";
        padding: .5rem 1rem;
        line-height: 1.8;
        color: #555;
        background-color: #eee;
        border: .075rem solid #ddd;
        border-radius: 0 6px 6px 0;
    }

    .file-custom:after {
        content: "Choose file...";
    }

/* Body Bottom */
.body-bottom {
    margin-bottom: 40px;
}

    .body-bottom .form-group {
        margin-bottom: 0;
    }

    .body-bottom h4 {
        font-weight: 700;
        line-height: 25px;
        color: #2d3170;
    }

    .body-bottom p {
        margin-top: 0px;
        font-weight: 500;
        color: #2f2e2e;
        font-size: 13px;
    }

/* Footer Start */
.footer {
    background-color: #fbfbe2;
    border-top: 1px solid #bfbfbf;
    padding-top: 20px;
    padding-bottom: 16px;
}

    .footer p {
        text-align: center;
        color: #666;
        font-size: 12px;
    }

        .footer p span {
            display: inline-block;
            margin-right: 10px;
        }

    .footer a {
        color: #689f27;
        margin: 0 5px;
        display: inline-block;
    }

        .footer a:hover {
            color: #a2acb4;
        }

.pagetitle {
    color: #424344;
    padding-left: 15px;
    margin-top: 5px;
    margin-bottom: 15px;
    line-height: 25px;
    font-weight: bold;
}

.msg {
    color: #cc0000;
    font-style: italic;
}

.formCover {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.formCover h5,
.inputText h5 
{
    font-size: 14px;
    color: #000000;
    text-align: left;
    margin-bottom: 5px;
}

.formCover .onoffswitch {
    position: relative;
    width: 90px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}



.formCover .onoffswitch-checkbox {
    display: none;
}

    .formCover .onoffswitch-label {
        display: block;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid #dfdfdf;
        border-radius: 20px;
    }

    .formCover .onoffswitch-inner {
        display: block;
        width: 200%;
        margin-left: -100%;
        transition: margin 0.3s ease-in 0s;
    }

        .formCover .onoffswitch-inner:before,
        .formCover .onoffswitch-inner:after {
            display: block;
            float: left;
            width: 50%;
            height: 30px;
            padding: 0;
            line-height: 30px;
            font-size: 14px;
            color: white;
            font-weight: bold;
            box-sizing: border-box;
        }

        .formCover .onoffswitch-inner:before {
            content: "ON";
            padding-left: 10px;
            background-color: #239dd0;
            color: #FFFFFF;
        }

        .formCover .onoffswitch-inner:after {
            content: "OFF";
            padding-right: 10px;
            background-color: #EEEEEE;
            color: #999999;
            text-align: right;
        }

    .formCover .onoffswitch-switch {
        display: block;
        width: 18px;
        margin: 6px;
        background: #FFFFFF;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 56px;
        border: 2px solid #999999;
        border-radius: 20px;
        transition: all 0.3s ease-in 0s;
    }

    .formCover .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
        margin-left: 0;
    }

    .formCover .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
        right: 0px;
    }

    .formCover .control-group {
        display: inline-block;
        vertical-align: top;
        background: #fff;
        text-align: left;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        padding: 30px;
        width: 200px;
        height: 210px;
        margin: 10px;
    }

    .formCover .control {
        display: block;
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        cursor: pointer;
        font-size: 15px;
        font-weight: normal;
    }

        .formCover .control input {
            position: absolute;
            z-index: -1;
            opacity: 0;
        }

    .formCover .control__indicator {
        position: absolute;
        top: 2px;
        left: 0;
        height: 20px;
        width: 20px;
        background: #c0c0c0;
    }

    .formCover .control--radio .control__indicator {
        border-radius: 50%;
    }

    .formCover .control:hover input ~ .control__indicator,
    .formCover .control input:focus ~ .control__indicator {
        background: #ccc;
    }

    .formCover .control input:checked ~ .control__indicator {
        background: #239dd0;
    }

    .formCover .control:hover input:not([disabled]):checked ~ .control__indicator,
    .formCover .control input:checked:focus ~ .control__indicator {
        background: #239dd0;
    }

    .formCover .control input:disabled ~ .control__indicator {
        background: #e6e6e6;
        opacity: 0.6;
        pointer-events: none;
    }

    .formCover .control__indicator:after {
        content: "";
        position: absolute;
        display: none;
    }

    .formCover .control input:checked ~ .control__indicator:after {
        display: block;
    }

    .formCover .control--checkbox .control__indicator:after {
        left: 8px;
        top: 4px;
        width: 3px;
        height: 8px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .formCover .control--checkbox input:disabled ~ .control__indicator:after {
        border-color: #7b7b7b;
    }

    .formCover .control--radio .control__indicator:after {
        left: 7px;
        top: 7px;
        height: 6px;
        width: 6px;
        border-radius: 50%;
        background: #fff;
    }

    .formCover .control--radio input:disabled ~ .control__indicator:after {
        background: #7b7b7b;
    }

    .formCover .select,
    .select
    {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
        width: 100%;
    }

    .formCover .inputText,
    .inputText 
    {
        margin-bottom: 15px;
    }

    .formCover .select select,
    .formCover .inputText input {
        display: inline-block;
        width: 100%;
        /*cursor: pointer;*/
        padding: 10px 15px;
        outline: 0;
        border: 0;
        border-radius: 0;
        background-color: #fff;
        border: 1px solid #d3d3d3;
        color: #7b7b7b;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .formCover .select select::-ms-expand {
        display: none;
    }

    .formCover .select select:hover,
    .formCover .select select:focus {
        color: #000;
        background-color: #e2dde5;
    }

    .formCover .select select:disabled {
        opacity: 0.5;
        pointer-events: none;
    }

    .formCover .select__arrow,
    .select__arrow {
        position: absolute;
        top: 16px;
        right: 15px;
        width: 0;
        height: 0;
        pointer-events: none;
        border-style: solid;
        border-width: 8px 5px 0 5px;
        border-color: #7b7b7b transparent transparent transparent;
    }

    .formCover .select select:hover ~ .select__arrow,
    .formCover .select select:focus ~ .select__arrow {
        border-top-color: #000;
    }

    .formCover .select select:disabled ~ .select__arrow {
        border-top-color: #ccc;
    }

    .formCover .select select,
    .formCover .inputText input,
    textarea {
        display: inline-block;
        width: 100%;
        /*cursor: pointer;*/
        padding: 10px 15px;
        outline: 0;
        border: 0;
        border-radius: 6px;
        background-color: #fff;
        border: 1px solid #d3d3d3;
        color: #282828;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        font-size: 14px;
    }

input:focus {
    background-color: #e2dde5 !important;
    color: black !important;
}

select:focus {
    background-color: #e2dde5 !important;
    color: black !important;
}

.table-fixed tbody {
    display: block;
    overflow: auto;
}

    .table-fixed thead,
    .table-fixed tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

.slug {
    color: #337ab7 !important;
    font-size: 15px;
    font-style: italic;
}

.legendWrap {
    margin-bottom: 10px;
    overflow: hidden;
    width: 180px;
    float: right;
}

    .legendWrap div {
        float: left;
        width: 90px;
        line-height: 18px;
    }

        .legendWrap div .answered {
            width: 10px;
            height: 10px;
            margin-top: 5px;
            background-color: #e7fae7;
            border: 2px solid #3e8f3e;
            float: left;
            margin-right: 5px;
        }

        .legendWrap div .pending {
            width: 10px;
            height: 10px;
            margin-top: 5px;
            background-color: #fff;
            border: 2px solid #e38d13;
            float: left;
            margin-right: 5px;
        }

.login-page {
    width: 100%;
    height: 81vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: url(../images/login-back.jpg);
    background-repeat: repeat;
    background-size: cover;
    background-position: center top;
}

.log-box {
    background: linear-gradient(145deg,#c8f19c,#006495);
    background-repeat: no-repeat;
    padding: 25px 30px;
    width: 400px;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
}

    .log-box:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 339px;
        height: 120px;
        background-image: url(../images/login-bg.png);
        background-repeat: no-repeat;
    }

    .log-box form {
        transition: 0.3s;
        width: 100%;
        opacity: 1;
    }

        .log-box form h4 {
            font-size: 22px;
            color: #424344;
            text-align: center;
            font-weight: 800;
            margin: 0px;
            margin-bottom: 30px;
        }

        .log-box form .form-group {
            position: relative;
            padding-bottom: 8px;
        }

            .log-box form .form-group input {
                background-color: #ffffff;
                height: 40px;
                border-radius: 8px;
                outline: none;
                padding: 10px 15px;
                color: #888;
                font-size: 14px;
                color: #000;
                width: 100%;
                border: 0px;
            }

            .log-box form .form-group select {
                background: #ebebeb;
                height: 40px;
                border-radius: 8px;
                outline: none;
                padding: 10px 15px;
                font-size: 14px;
                color: #888;
                width: 100%;
                border: 0px;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                background-image: url(../img/down-arrow.png);
                background-repeat: no-repeat;
                background-position: 95% 17px;
            }

            .log-box form .form-group label {
                display: block;
                margin-bottom: 8px;
                color: #000;
            }

.login-btn {
    width: 100%;
    height: 56px !important;
    /*background: #bbe0b8 !important;*/
    border: 0px;
    border-radius: 5px;
    outline: none;
    font-size: 18px !important;
    color: #000 !important;
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    /* can be treated like a fallback */
    background-color: #c4e7b8;
    /* will be "on top", if browser supports it */
    background-image: linear-gradient(#c4e7b8, #ffc107,#c4e7b8);
    /* these will reset other properties, like background-position, but it does know what you mean */
    background: #c4e7b8;
    background: linear-gradient(#c4e7b8, #ffc107,#c4e7b8);
}

    .login-btn:hover {
        width: 100%;
        height: 56px !important;
        /*background: #338896 !important;*/
        border: 0px;
        border-radius: 5px;
        outline: none;
        font-size: 18px !important;
        color: #fff !important;
        font-weight: 500;
        margin-bottom: 10px;
        cursor: pointer;
        /* can be treated like a fallback */
        background-color: #c4e7b8;
        /* will be "on top", if browser supports it */
        background-image: linear-gradient(#c4e7b8, #ffc107);
        /* these will reset other properties, like background-position, but it does know what you mean */
        background: #c4e7b8;
        background: linear-gradient(#c4e7b8, #ffc107);
    }

.frgt-txt,
.frgt-txt1 {
    text-align: center;
    color: #fff;
    font-size: 13px;
}

.back-txt {
    text-align: center;
    color: #fff;
    font-size: 13px;
}

.frgt-txt:hover {
    color: #fbfbe2;
}

.text-center {
    text-align: center;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.log-frm {
    transform: translate(0px, 0px);
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
}

.hide-frm {
    display: none;
}

.log-box {
    overflow: hidden;
}

.pas-view {
    position: absolute;
    right: 20px;
    top: 36px;
    cursor: pointer;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 36px;
}

.log-frm input[type="text"], .log-frm input[type="number"], .log-frm input[type="password"] {
    padding-left: 40px !important;
}

.card1 {
    border: 1px solid #dfdfdf;
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
    background-color: #f8f8f8;
    box-shadow: 0px 10px 16px 0px rgb(123 137 150 / 16%);
    border-radius: 20px;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.frgt-frm,
.frgt-frm1 {
    display: none;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
}

    .frgt-frm.show-frm, .frgt-frm1.show-frm {
        display: block;
    }

/*---05/09/2021--*/
.cover-banner {
    display: flex;
    width: 100%;
    overflow: hidden;
    flex-wrap: wrap;
    background: #ccc;
    height: auto;
    position: relative;
}

    .cover-banner img {
        width: 100%;
        height: 100%;
        /*object-fit: cover;*/
    }

.banner-cap-box {
    top: 0px;
    width: 100%;
    position: absolute;
    display: flex;
    align-items: flex-end;
    bottom: 0px;
    left: 0px;
    right: 0px;
    justify-content: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.212), black);
}

.banner-cap-box-btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    flex-wrap: wrap;
}

.banner-cap-box-lft h1 {
    font-size: 25px;
    margin: 0px;
    color: #fff;
    margin-bottom: 10px;
}

.banner-cap-box-lft p {
    font-size: 14px;
    color: #fff;
}

.banner-cap-box-lft ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    align-items: center;
}

    .banner-cap-box-lft ul li a {
        color: #fff;
    }

    .banner-cap-box-lft ul li {
        margin-right: 15px;
    }

.share-btn {
    color: #fff;
    background-color: #e2a136;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}

    .share-btn:hover {
        background-color: #cc0000;
    }

.banner-cap-box-btm span {
    display: inline-block;
    background: #338896;
    color: #fff;
    border-radius: 6px;
    padding-left: 20px;
}

    .banner-cap-box-btm span a {
        background: #ffc107;
        display: inline-block;
        color: #000;
        font-weight: bold;
        padding: 10px 20px;
        border-radius: 6px;
        margin-left: 20px;
    }

        .banner-cap-box-btm span a:hover {
            background: #338896;
            color: #fff;
        }

        .banner-cap-box-btm span a i {
            margin-right: 8px;
        }

.banner-cap-box-lft ul li a:hover i {
    color: #e2a136;
}

.admsn {
    padding: 30px 0px;
    min-height: 440px;
}

.tab-hader {
    margin-top: -10px;
    overflow-x: scroll;
    height: 44px;
    overflow-y: hidden;
}

    .tab-hader ul {
        border-bottom: 2px solid #338896;
        margin-bottom: 20px;
    }

    .tab-hader .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:hover,
    .nav-tabs > li.active > a:focus {
        color: #fff;
        cursor: default;
        background-color: #338896;
        border: 0px solid;
        border-bottom: transparent;
    }

    .tab-hader ul a {
        border: 0px !important;
        background: #ffc107;
        color: #fff;
        font-weight: 600;
        margin-right: 8px;
        border-radius: 8px 8px 0 0;
        transition: 0.3s;
    }

    .tab-hader ul li {
        margin-bottom: 0px;
    }

    .tab-hader ul a:hover {
        background-color: #337ab7;
        color: #fff;
    }

    .tab-hader .tab-pane p {
        font-size: 14px;
        color: #000;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .tab-hader .tab-pane h2 {
        margin: 0px;
        margin-bottom: 8px;
        color: #000;
        font-size: 16px;
        font-weight: 600;
    }

    .tab-hader .tab-pane table td {
        border-top: 0px;
        border-bottom: 1px solid #bae786;
        padding: 8px 15px !important;
        vertical-align: middle;
        text-align: left;
    }

        .tab-hader .tab-pane table td h3 {
            color: #337ab7;
            margin: 0px;
        }

        .tab-hader .tab-pane table td label {
            margin: 0px;
            font-weight: normal;
            color: #000;
        }

        .tab-hader .tab-pane table td h5 {
            color: #000;
            font-size: 16px;
            margin-top: 0px;
        }

        .tab-hader .tab-pane table td span {
            font-size: 14px;
            font-style: italic;
            color: #333333;
        }

    .tab-hader .tab-pane table tr {
        transition: 0.3s;
    }

        .tab-hader .tab-pane table tr:hover {
            background: #fff;
        }

.tb-hdn {
    border-bottom: 0px !important;
}

.tr-trs {
    background: transparent !important;
}

.tb-hdn {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 10px;
}

.ms-table {
    border: 1px solid #ccc;
}

    .ms-table tr td {
        border-bottom: 1px solid #ccc !important;
        padding: 10px !important;
        border-right: 1px solid #ccc;
    }

        .ms-table tr td:last-child {
            border-right: 0px;
        }

    .ms-table tr:nth-of-type(odd) {
        background-color: rgb(239 239 239);
    }

    .ms-table tr:nth-of-type(even) {
        background-color: #fff;
    }

#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #689f27;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
}

    #scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #ffffff;
    }

    #scroll:hover {
        background-color: #632a1c;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }

.banner-cap-box-lft {
    width: 50%;
    padding: 0px 15px;
}

.banner-cap-box-ryt {
    width: 100%;
    text-align: right;
    padding: 0px 15px;
}

.tab-hader .tab-pane .ms-table tr td {
    padding: 10px !important;
}

.form-prvw {
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
    padding: 30px 30px;
    background: #f9f9f9;
    margin-bottom: 10px;
}

.prvw {
    overflow: hidden;
    padding: 40px 0px;
}

.frm-hdr {
    text-align: center;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 50px;
}

    .frm-hdr h1 {
        font-size: 20px;
        color: #000;
        font-weight: 600;
        margin: 0px;
        margin-bottom: 10px;
    }

    .frm-hdr p {
        color: #000;
        font-size: 13px;
        margin: 0px;
        margin-bottom: 10px;
        text-align: center !important;
    }

    .frm-hdr h2 {
        color: #000;
        font-size: 18px;
        font-weight: 600;
        margin: 0px;
        margin-bottom: 10px;
    }

    .frm-hdr h3 {
        font-size: 15px;
        color: #000;
        font-weight: 600;
        margin: 0px;
        margin-bottom: 10px;
    }

    .frm-hdr span {
        display: inline-block;
        padding: 17px 14px;
        border: 1px solid #873825;
        border-radius: 100%;
        margin-bottom: 20px;
    }

.frm-sectn h3 {
    color: #000;
    margin: 0px;
    font-size: 16px;
    background: #ffc107;
    padding: 9px 15px;
    margin-bottom: 20px;
}

.uplod-pic {
    width: 150px;
    height: 100px;
    /*overflow:hidden;*/
    position: relative;
    display: inline-block;
}

    .uplod-pic img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }

.txt-ryt {
    text-align: right;
}

.txt-lft {
    text-align: left;
}

.uplod-doc h4 {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.upld-ctf {
    width: 200px;
    height: 120px;
    max-width: 100%;
    margin-bottom: 20px;
}

.eligibility {
    overflow: hidden;
    padding: 40px 0px;
}

.el-hdn {
    margin: 0px;
    color: #000;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}

.clr-rd {
    color: #337ab7;
    font-weight: 600;
}

.clr-ylw {
    color: #f37335;
    font-weight: 600;
}

.cstm-rdo {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: normal;
}

    /* Hide the browser's default radio button */
    .cstm-rdo input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    /* Create a custom radio button */
    .cstm-rdo .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: transparent;
        border-radius: 50%;
        border: 1px solid #f37335;
    }

    /* On mouse-over, add a grey background color */
    .cstm-rdo:hover input ~ .checkmark {
        background-color: #f37335;
        border: 1px solid #f37335;
    }

    /* When the radio button is checked, add a blue background */
    .cstm-rdo input:checked ~ .checkmark {
        background-color: #f37335;
        border: 1px solid #f37335;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .cstm-rdo .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    .cstm-rdo input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    .cstm-rdo .checkmark:after {
        top: 4px;
        left: 4px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: white;
    }

.frm-grp {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 30px 0;
    padding-bottom: 12px;
}

    .frm-grp p {
        margin-bottom: 20px;
    }

.eligibility .form-group label {
    font-size: 1em;
    color: #000000;
    display: block;
    font-weight: bold;
}

.eligibility .form-group input {
    display: inline-block;
    width: 100%;
    /*cursor: pointer;*/
    padding: 10px 15px;
    outline: 0;
    border: 0;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #d3d3d3 !important;
    color: #7b7b7b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.eligibility .form-group select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    outline: 0;
    border: 0;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #d3d3d3;
    color: #7b7b7b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.date {
    background-image: url(../images/calendar.png) !important;
    background-position: 95% !important;
    background-repeat: no-repeat !important;
}

.eligibility .select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.eligibility .select__arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.check_availability-btn {
    background: #f37335;
    border: 0px;
    color: #fff;
    width: 100%;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

    .check_availability-btn:hover {
        background: #ffc107;
        color: #000;
    }

.proceed-btn {
    background: #337ab7;
    border: 0px;
    color: #fff;
    outline: none;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

    .proceed-btn:hover {
        background: #ffc107;
        color: #000;
    }

.note-warning {
    color: #982d3b;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: hsl(353deg 51% 85%);
    border: 1px solid rgba(152, 45, 59, 0.302);
    margin-top: 20px;
}

.note-success {
    color: #982d3b;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: hsl(87deg 51% 82%);
    border: 1px solid rgba(152, 45, 59, 0.302);
    margin-top: 20px;
}

    .note-success p {
        font-size: 14px;
        margin: 0px;
    }

.pop {
    background: rgb(0 0 0 / 57%);
    transition: 0.3s;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.pop-body {
    background: #fff;
    padding: 30px 20px;
    position: relative;
    width: 350px;
    max-width: 90%;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    transform: translate(0px, 100px);
    opacity: 0;
}

.pop-body {
    text-align: center;
}

    .pop-body h4 {
        text-align: center;
        color: #000;
        margin: 0px;
        font-size: 20px;
    }

    .pop-body img {
        margin-bottom: 20px;
    }

.cls-pop {
    position: absolute;
    right: 18px;
    top: 14px;
    color: #000;
    font-size: 16px;
}

.pop.open-pop {
    opacity: 1;
    visibility: visible;
}

    .pop.open-pop .pop-body {
        transform: translate(0px, 0px);
        opacity: 1;
    }

.frm-grp p:last-child {
    margin-bottom: 0px;
}

.flx-img {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flx-img-itm {
    width: 48%;
    height: 200px;
}

    .flx-img-itm img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.instruction {
    height: 420px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 30px;
}

.buttonRound {
    width: 290px;
    text-align: center;
    border: 1px solid #0056b3;
    padding: 10px 40px;
    border-radius: 20px;
    margin: 0 auto;
    font-weight: bold;
}

    .buttonRound:hover, .buttonRound a:hover {
        background-color: #f37335;
        color: #fff;
    }

.step-bar h5 {
    color: #434343;
    font-size: 18px;
    margin: 0px;
    text-align: center;
}

.step-bar h4 {
    color: #811a1b;
    font-size: 30px;
    margin: 0px;
    text-align: center;
    font-weight: 500;
}

.step-bar {
    margin: 40px 0;
    padding-bottom: 10px;
}

    .step-bar ul {
        display: flex;
        padding: 0px;
        list-style: none;
        position: relative;
        width: 100%;
        justify-content: space-between;
        margin: 0 auto;
    }

        .step-bar ul:before {
            width: 88%;
            height: 8px;
            position: absolute;
            content: "";
            top: 12px;
            z-index: -1;
            left: 6%;
            background: url("../images/step-dots.png") 0 0 repeat-x;
        }

        .step-bar ul li a {
            width: 30px;
            height: 30px;
            display: block;
            border-radius: 100%;
            overflow: hidden;
            background: #ffffff;
            border: 2px solid #c2c6ca;
            margin: 0 auto;
            color: #811a1b;
            line-height: 26px;
            font-weight: bold;
        }

        .step-bar ul li {
            text-align: center;
            font-size: 15px;
            color: #7b7c7e;
        }

            .step-bar ul li.active {
                color: #811a1b;
            }

                .step-bar ul li.active a {
                    border: 8px solid #f37335;
                    background-color: #f37335;
                    color: #fff;
                    line-height: 15px;
                }

            .step-bar ul li.done a {
                border: 8px solid #059817;
                background-color: #059817;
                color: #fff;
                line-height: 15px;
            }

            .step-bar ul li img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

/*----checkbox-----*/
.chk-box {
    padding-bottom: 8px;
}

.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #333;
    transition: 0.3s;
    line-height: 21px;
}

    /* Hide the browser's default checkbox */
    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #f37335;
    border: 1px solid #f37335;
    transition: 0.3s;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #f37335;
    border: 1px solid #f37335;
    transition: 0.3s;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*----checkbox-----*/

.table-responsive {
    margin-top: 12px;
    border: 1px solid #dee2e6;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


.table td, .table th {
    vertical-align: middle;
    font-size: 13px;
    border-top: none;
    text-align: center;
    padding: 5px 10px !important;
}

.table th {
    font-weight: bold;
    text-transform: uppercase;
}

.myaccount {
}

    .myaccount .eachBlock {
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 6px;
    }

        .myaccount .eachBlock h4 {
            color: #000;
            font-size: 16px;
        }


.rounded {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%; /* future proofing */
    -khtml-border-radius: 50%; /* for old Konqueror browsers */
    border: 2px solid #dfdfdf;
}


/****************************************************************************************************************************/

/*Added By : Md.Raju || On:19-11-2019*/
button[disabled]:active, button[disabled],
input[type="button"][disabled]:active,
input[type="button"][disabled],
input[type="submit"][disabled]:active,
input[type="submit"][disabled],
button[disabled]:hover,
input[type="button"][disabled]:hover,
input[type="submit"][disabled]:hover {
    border: 2px outset ButtonFace !important;
    color: GrayText !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    background-color: #ddd !important;
    background: #ddd !important;
}

/*Rad Date Control*/
.RadInput_Default .riTextBox, html body .RadInputMgr_Default {
    border-color: #898772 !important;
    background: #fff !important;
    color: #272722 !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 15px !important;
    border-radius: 4px !important;
}

.RadCalendar_Default .rcMainTable {
    font-size: 16px !important;
    /*font-weight: bold !important;*/
}

.RadCalendarPopup {
    width: 85%;
    max-width: 400px !important;
}

.RadCalendar .rcTitlebar .rcTitle {
    font-size: 15px !important;
    font-weight: bold !important;
}

.RadCalendar_Default .rcTitlebar .rcPrev, .RadCalendar_Default .rcTitlebar .rcNext, .RadCalendar_Default .rcTitlebar .rcFastPrev, .RadCalendar_Default .rcTitlebar .rcFastNext {
    transform: scale(1.6) !important;
    margin: 0px 10px 0 !important;
}

.RadPicker_Default .rcCalPopup, .RadPicker_Default .rcTimePopup {
    background-image: url('../images/icon-calendar.png') !important;
    background-size: 20px !important;
    transform: scale(1.5) !important;
    margin-left: 8px;
}

.RadPicker_Default a.rcCalPopup:hover, .RadPicker_Default a.rcCalPopup:focus, .RadPicker_Default a.rcCalPopup:active {
    background-position: 0 -22px !important;
}

html body .RadInput .riTextBox {
    background: rgba(255,255,255,1) !important;
    padding: 3px 3% !important;
    /*-webkit-border-radius: 8px !important;*/
    height: 39px !important;
}

.RadCalendar {
    width: 100% !important;
}

.RadCalendar_Office2007 .rcMainTable, .RadCalendarTimeView_Office2007 {
    font-size: 16px !important;
    font-weight: bold;
}

.RadCalendar_Office2007 .rcTitlebar .rcPrev, .RadCalendar_Office2007 .rcTitlebar .rcNext, .RadCalendar_Office2007 .rcTitlebar .rcFastPrev, .RadCalendar_Office2007 .rcTitlebar .rcFastNext {
    transform: scale(1.6) !important;
    margin: 0px 10px 0 !important;
}

background-size: 20px!important;
/*.RadPicker_Office2007 .rcCalPopup, .RadPicker_Office2007 .rcTimePopup {
    background-image: url('../images/icon-calendar.png') !important;
    transform: scale(1.5)!important; margin-left:8px;
}*/
/*.RadPicker_Office2007 a.rcCalPopup:hover, .RadPicker_Office2007 a.rcCalPopup:focus, .RadPicker_Office2007 a.rcCalPopup:active {
    background-position: 0 -22px !important;
}*/
.RadInput_Office2007 .riTextBox, html body .RadInputMgr_Default {
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 15px !important;
    border-radius: 4px !important;
}

.RadPicker_Office2007 .rcCalPopup {
    background-position: 0 0;
    transform: scale(1.5);
}

.RadPicker_Office2007 .rcTimePopup {
    background-position: 0 -100px;
    transform: scale(1.5);
}

.suspected {
    background-color: #fbdcdc !important;
}

.Checkout {
    background-color: #465a63 !important;
    color: #fff;
}

.SecondryGuest {
    background-color: #f9f3e4 !important;
}

.CheckoutHotelColor {
    color: #fff;
}

.ChecInHotelColor {
    color: #000;
}
/*---------------------------End Telerik Control CSS---------------------------------------------------*/
/*******   popup   ********/
.events {
    text-align: center;
    padding: 10px 20px;
}

    .events td {
        text-align: left;
        padding-left: 10px;
    }

    .events h3 {
        text-align: center;
    }

    .events img {
        /* -webkit-border-radius: 50%; */
        /* -moz-border-radius: 50%; */
        /* border-radius: 50%; */
        /* border: 4px solid #dfdfdf; */
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .events p {
        padding: 0px !important;
        clear: both;
        text-align: left;
    }

    .events h1 {
        color: #320b54;
        font-size: 28px;
        line-height: 32px;
        clear: both;
    }

    .events hr {
    }

.plainDiv {
    padding: 0 20px;
    text-align: left;
}

    .plainDiv div {
        clear: both;
        padding-bottom: 80px;
        border-bottom: 1px solid #ccc;
    }

    .plainDiv h1 {
        line-height: 32px;
    }

    .plainDiv iframe {
        border: 2px solid #dfdfdf;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
    }

    .plainDiv .download {
        float: right;
        margin-top: 5px;
        margin-bottom: 10px;
    }

#mask {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9000;
    background-color: #000;
    display: none;
}

#boxes .window {
    position: absolute;
    left: 13% !important;
    top: 50px !important;
    width: 74%;
    display: none;
    z-index: 9999;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

#boxes #dialog {
    width: 74%;
    height: auto;
    padding: 6px;
    background-color: #ffffff;
    font-size: 15pt;
}

.maintext {
    text-align: center;
    text-decoration: none;
}

#lorem {
    font-size: 11pt;
    text-align: left;
    padding: 0 10px;
    line-height: 19px;
}

#popupfoot {
    font-size: 30pt;
    padding: 10px 20px;
}

    #popupfoot a {
        /*text-decoration: none;
        background-color: #0b4e75;
        border-radius: 8px;
        padding: 4px 20px;
        color: white;
        margin-top: 10px;*/
        cursor: pointer;
    }

.agree:hover {
    background-color: #D1D1D1;
}

.popupoption:hover {
    background-color: #D1D1D1;
    color: green;
}

.popupoption2:hover {
    color: red;
}

.pre-loader {
    height: 20px !important;
}

/* ********************************************Customize the label (the container)**************************************** */

/*AddedBy:Raju on:14-02-2022*/
.RepeaterHeaderTD {
    background: #efefef;
    color: #212529;
    font-weight: bold;
    border-top: 1px solid #f2f2f2 !important;
    border-bottom: 1px solid #f2f2f2 !important;
    text-transform: uppercase;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.Active {
    color: green;
}

.In-Active {
    color: red;
}

.SearchTextBox input[type=text] {
    padding: 10px;
    font-size: 17px;
    border: 1px solid grey;
    float: left;
    width: 90%;
    background: #f1f1f1;
    box-sizing: border-box;
    font-family: Arial;
}

.SearchTextBox button {
    float: left;
    width: 10%;
    padding: 10px;
    background: #338896;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: Arial;
}

    .SearchTextBox button:hover {
        background: #ffc107;
        box-sizing: border-box;
        font-family: Arial;
    }

.SearchTextBox {
    margin-top: 5px;
}

    .SearchTextBox::after {
        content: "";
        clear: both;
        display: table;
        box-sizing: border-box;
        font-family: Arial;
    }

.card1 img {
    border: 1px solid #dfdfdf;
}

    .card1 img:hover {
        height: 100%;
        width: auto;
        -ms-transform: scale(2.5); /* IE 9 */
        -webkit-transform: scale(2.5); /* IE 9 */
        transform: scale(2.5); /* IE 9 */
        margin: 0 auto;
        transition: transform .2s;
    }

.zoom:hover {
    -webkit-transform: scale(3); /* Safari and Chrome */
    -moz-transform: scale(3); /* Safari and Chrome */
    -ms-transform: scale(3); /* Safari and Chrome */
    -o-transform: scale(3); /* Safari and Chrome */
    transform: scale(3); /* Safari and Chrome */
    position: relative;
    z-index: 9999;
}

.blink {
    animation: blinker 0.6s linear infinite;
    color: #007bff;
}

.blink1 {
    animation: blinker 0.55s linear infinite;
    color: #fbfdff;
    background-color: #631c47;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}


.corners {
    background: #FFF;
    height: 200px;
    margin: 50px auto;
    max-width: 400px;
    line-height: 25px;
    position: relative;
    width: 80%;
    font-family: arial;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    padding-top: 40px;
    -webkit-box-shadow: 0 1px 7px hsla(0,0%,0%,.2);
    -moz-box-shadow: 0 1px 7px hsla(0,0%,0%,.2);
    box-shadow: 0 1px 7px hsla(0,0%,0%,.2);
    text-align: center;
}

    /* Corner Effect */
    .corners:after,
    .corners:before {
        background: #e6e6e6;
        content: '';
        height: 50px;
        position: absolute;
        top: -25px;
        width: 100px;
        -webkit-box-shadow: 0 5px 10px -7px hsla(0,0%,0%,.5);
        -moz-box-shadow: 0 5px 10px -7px hsla(0,0%,0%,.5);
        box-shadow: 0 5px 10px -7px hsla(0,0%,0%,.5);
    }

    .corners:after {
        left: -50px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .corners:before {
        right: -50px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.Checkedin {
    color: green;
}

.CheckedOut {
    color: red;
}
/*End AddedBy:Raju on:14-02-2022*/

/* Menu Added*/
.icon-back {
    margin-top: 10px;
}

.humburger {
    width: 30px;
    height: 25px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 9px;
    right: 18px;
    cursor: pointer;
    transition: 0.5s all ease-in;
    z-index: 5555;
    padding: 4px;
    display: flex;
}

    .humburger:after {
        content: "";
        position: absolute;
        background: #f37335;
        transform: scale(0);
        transition: 0.5s all ease-in;
        z-index: 1;
    }

    .humburger .line {
        height: 3px;
        width: 100%;
        background: #2c8ac3;
        display: flex;
        transition: 0.5s all ease-in;
        position: relative;
        z-index: 2;
    }

        .humburger .line:after {
            content: "";
            position: absolute;
            height: 100%;
            background: #2c8ac3;
            width: 0;
            transition: 0.5s all ease-in-out;
            z-index: 1;
        }

    .humburger:hover:after {
        transform: scale(1.4);
    }

    .humburger:hover .line:after {
        width: 100%;
    }

    .humburger.open .line {
        background: #2c8ac3;
    }

        .humburger.open .line:nth-of-type(1) {
            transform: rotate(45deg);
            margin-top: 7px;
        }

        .humburger.open .line:nth-of-type(2) {
            transform: rotate(-45deg);
            margin-top: -8px;
        }

        .humburger.open .line:nth-of-type(3) {
            visibility: hidden;
            opacity: 0;
        }



.menu_body {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 350px;
    height: 100vh;
    display: flex;
    background: #368ec5;
    box-shadow: 0px 0px 14px -1px rgb(0 0 0 / 31%);
    -webkit-box-shadow: 0px 0px 14px -1px rgb(0 0 0 / 31%);
    -moz-box-shadow: 0px 0px 14px -1px rgba(0,0,0,0.31);
    transform: translateX(-100%);
    transition: 0.5s all ease;
    z-index: 9;
}

    .menu_body.open {
        transform: translateX(0);
    }

.menu_body__item_wrapper {
    padding: 40px 40px 40px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

    .menu_body__item_wrapper .menu_list {
        list-style: none;
        width: 100%;
        padding: 0 0 0 0;
    }

        .menu_body__item_wrapper .menu_list li {
            margin-bottom: 30px;
            position: relative;
            padding-left: 55px;
        }

            .menu_body__item_wrapper .menu_list li:last-child {
                margin-bottom: 0;
            }

            .menu_body__item_wrapper .menu_list li a {
                color: #ffffff;
                font-weight: 400;
                font-size: 18px;
                text-decoration: none;
                position: relative;
                transition: 0.5s all ease;
            }

                .menu_body__item_wrapper .menu_list li a:after {
                    content: "";
                    position: absolute;
                    height: 2px;
                    left: 0;
                    width: 0;
                    bottom: 0;
                    background: #bae786;
                    transition: 0.5s all ease;
                }

                .menu_body__item_wrapper .menu_list li a:hover:after {
                    width: 100%;
                }

            .menu_body__item_wrapper .menu_list li.has_child .sub-menu {
                position: absolute;
                background: black;
                list-style: none;
                padding: 30px;
                left: unset;
                top: 0;
                right: 100%;
                min-width: 135px;
                opacity: 0;
                visibility: hidden;
            }

                .menu_body__item_wrapper .menu_list li.has_child .sub-menu li {
                    padding-left: 0;
                    margin-bottom: 15px;
                }

                    .menu_body__item_wrapper .menu_list li.has_child .sub-menu li a:after {
                        display: none;
                    }

            .menu_body__item_wrapper .menu_list li.has_child:hover .sub-menu {
                opacity: 1;
                visibility: visible;
            }










@media (max-width: 992px) {
    body .menu_body {
        width: 100%;
    }

    body .menu_body__item_wrapper .menu_list li.has_child {
        position: relative;
    }

        body .menu_body__item_wrapper .menu_list li.has_child a {
            position: relative;
        }

            body .menu_body__item_wrapper .menu_list li.has_child a:after {
                content: "+";
                color: white;
                left: calc(100% + 25px);
                position: absolute;
                top: 0;
                width: 0;
            }

        body .menu_body__item_wrapper .menu_list li.has_child .sub-menu {
            position: relative;
            background: transparent;
            list-style: none;
            padding: 0;
            left: unset;
            top: unset;
            right: unset;
            min-width: auto;
            opacity: 1;
            visibility: visible;
            margin-top: 15px;
            padding-left: 25px;
            display: none;
        }
}

/*# sourceMappingURL=style.css.map */


.close-btn {
    position: absolute;
    right: 14px;
    top: 8px;
    font-size: 26px;
    cursor: pointer;
    display: none;
}

.sidebar-content {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    overflow: auto;
}

.sidebar-area {
    padding-left: 0px;
}
/* Cehckbox*/
.checkbox-custom, .radio-custom {
    opacity: 0;
    position: absolute;
}

.checkbox-custom, .checkbox-custom-label, .radio-custom, .radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
    cursor: pointer;
}

.checkbox-custom-label, .radio-custom-label {
    position: relative;
}

.checkbox-custom + .checkbox-custom-label:before, .radio-custom + .radio-custom-label:before {
    content: '';
    background: #fff;
    border: 2px solid #7b7b7b;
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    background: #71bd1a;
    color: #fff;
}

.radio-custom + .radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked + .radio-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #7fc92a;
}

.checkbox-custom:focus + .checkbox-custom-label, .radio-custom:focus + .radio-custom-label {
    outline: 1px solid #ddd; /* focus style */
}

/* Switch Box*/
.toggle-area input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.toggle-area label {
    cursor: pointer;
    text-indent: -9999px;
    width: 110px;
    height: 35px;
    background: #7b7b7b;
    display: block;
    border-radius: 100px;
    position: relative;
}

    .toggle-area label:after {
        content: '';
        position: absolute;
        top: 2px;
        left: 4px;
        width: 30px;
        height: 30px;
        background: #fff;
        border-radius: 90px;
        transition: 0.3s;
    }


.toggle-area input:checked + label {
    background: #71bd1a;
}

    .toggle-area input:checked + label:after {
        left: calc(100% - 5px);
        transform: translateX(-100%);
    }

.toggle-area label:active:after {
    width: 35px;
}
/* Filter Menu*/
.filter-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .filter-menu .pagetitle {
        margin: 0;
    }

.filter-icon {
    display: none;
}

.prvw-row {
    display: flex;
}

@media (max-width: 768px) {
    .close-btn {
        display: block;
    }

    .filter-icon {
        cursor: pointer;
    }

    .filter-icon {
        width: 30px;
        height: 30px;
        border-radius: 5px;
        padding: 5px;
        display: block;
        background: #fff;
    }

        .filter-icon.open {
            background: #cce9fb;
        }

    .sidebar-bak {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        z-index: 10;
        transform: translateY(100%);
    }

        .sidebar-bak.open {
            transform: translateY(0);
        }
}

.vertical-center {
    line-height: 44px;
}

    .vertical-center .fa {
        margin-left: 5px;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.formCover select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    /*background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");*/
    background-repeat: no-repeat;
    background-position-x: 96%;
    background-position-y: 9px;
}
