/*--------------------------------------------------------------
1.0 General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0px;
    padding: 0px;
    font-family: "DM Sans", sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.4;
    color: #747474;
}

ul, ol {
    margin: 0 0 1.5em 20px;
    padding: 0;
}

ul {
    list-style: outside none disc;
}

ol {
    list-style: outside none decimal;
}

li > ul, li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

hr {
    background-color: #bbbbbb;
    border: 0 none;
    height: 1px;
    margin-bottom: 1.5em;
}

a {
    color: #000;
    text-decoration: none;
}

.content-area a {
    text-decoration: none;
    position: relative;
    color: #088CC4;
    cursor: pointer;
}

    .content-area a:hover {
        text-decoration: underline;
        text-decoration-color: #088CC4;
        color: #088CC4;
    }

fieldset {
    border: medium none;
    margin: 15px 0;
    padding: 0;
}

legend {
    color: #101010;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

a:focus, * {
    outline: none;
}

a:hover, a:active {
    color: #088CC4;
    outline: 0 none;
}

:-moz-placeholder {
    color: currentcolor;
    font-family: "DM Sans", sans-serif;
    opacity: 0.5;
}

*::-moz-placeholder {
    color: currentcolor;
    font-family: "DM Sans", sans-serif;
    opacity: 0.5;
}

figcaption, figure, main {
    display: block;
}

b, strong {
    font-weight: 700;
}

img {
    max-width: 100%;
    border: none;
    vertical-align: top;
    height: auto;
}
/*--------------------------------------------------------------
2.0 Clearings
--------------------------------------------------------------*/
.clear:before, .clear:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after, .site-header:after, .site-content:after, .site-footer:after {
    clear: both;
}
/*--------------------------------------------------------------
3.0 Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.align-center {
    display: flex;
    align-items: center;
}
/*--------------------------------------------------------------
4.0 Form Style
--------------------------------------------------------------*/
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select {
    /*border: 1px solid #d9d9d9;*/
    border: 1px solid #b3bcdf;
    line-height: 24px;
    height: 50px;
    padding: 10px 15px;
    width: 100%;
    display: block;
    -webkit-appearance: none;
    font-family: "DM Sans", sans-serif;
    border-radius: 5px;
}

select {
    background: url(../images/select-down-arrow.svg) no-repeat center right 15px #fff;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
    border-color: #EBF0F2;
}

textarea {
    height: 110px;
}

button, html [type="button"], [type="reset"], [type="submit"], .button, .promo-button {
    -webkit-appearance: button;
    background: #088CC4;
    color: #ffffff !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    line-height: 33px;
    font-size: 18px;
    padding: 8px 24px 7px;
    text-align: center;
    border: medium none;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 0px;
    display: inline-block;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    border: solid 1px transparent;
    text-decoration: none !important;
    white-space: nowrap;
}

    button:hover, button:focus, html [type="button"]:hover, html [type="button"]:focus, [type="reset"]:hover, [type="reset"]:focus, [type="submit"]:hover, [type="submit"]:focus, .button:hover, .button:focus, .promo-button:hover {
        background: #EBF0F2;
        color: #061F29 !important;
    }

    .button:after {
        display: none;
    }

.button-sm, .promo-button {
    padding: 2px 15px 0;
    line-height: 27px;
    font-size: 14px;
}

.button-mid {
    padding: 2px 30px 0;
    line-height: 40px;
    font-size: 18px;
}

.button-border-blue {
    color: #0a3e65 !important;
    border: solid 1px #0a3e65;
    background: none;
    box-shadow: none;
    padding-bottom: 3px;
}

    .button-border-blue:hover, .button-border-blue:focus {
        background: #0a3e65;
        color: #fff !important;
        box-shadow: none;
    }

.button-green {
    background: #50aa27;
    border: solid 1px transparent;
    box-shadow: 0 3px 0 0px #41941b;
}

    .button-green:hover, .button-green:focus {
        background: #093d64;
        border: solid 1px transparent;
        box-shadow: 0 3px 0 0px #020933;
    }

.button-blue {
    background: #093d64;
    border: solid 1px transparent;
    box-shadow: 0 3px 0 0px #020933;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
    clear: both;
    float: left;
    margin: 0 10px;
    width: calc(100% - 20px);
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
    padding: 8px 12px;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ng {
    clear: both;
    float: left;
    margin: 0 10px;
    width: calc(100% - 20px);
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 8px 12px;
}

input.wpcf7-not-valid, textarea.wpcf7-not-valid {
    border-color: #dc3545;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

html [type="button"].reset-btn {
    background: #EBF0F2 !important;
    color: #061F29 !important;
}

    html [type="button"].reset-btn:hover {
        background: #088CC4 !important;
        color: #fff !important;
    }

/*--------------------------------------------------------------
5.0 Typography
--------------------------------------------------------------*/
body, button, input, select, textarea {
    color: #747474;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0px;
    margin: 0
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
    line-height: 1.4;
    margin: 0 0 15px;
    padding: 0 0 0;
    font-family: "DM Sans", sans-serif;
    color: #061F29;
}

    h1, .h1, h1.entry-title {
        font-size: 34px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    h2, .h2, h2.entry-title {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

h3, .h3 {
    font-size: 22px;
    font-weight: 500;
}

h4, .h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0px 0px 10px 0px;
}

h5, .h5 {
    font-size: 16px;
    font-weight: 500;
    margin: 0px 0px 10px 0px;
}

h6 {
    font-size: 15px;
    font-weight: 600;
}

p {
    margin: 0 0 15px;
    padding: 0;
}

    p:empty {
        display: none;
    }

h2.title {
    margin-bottom: 50px;
}

.text-green {
    color: #01B574
}
/*--------------------------------------------------------------
6.0 Layout
--------------------------------------------------------------*/
.main {
}

body {
    background: #ffffff;
}

*, *::before, *::after {
    box-sizing: border-box;
}

    *, *::before, *::after {
        box-sizing: border-box;
    }

img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img {
    max-width: 100%;
    height: auto
}

.row {
    margin-left: -10px;
    margin-right: -10px
}

.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-5-new {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative
}

.col-12 {
    width: 100%
}

.col-11 {
    width: 91.6667%
}

.col-10 {
    width: 83.3333%
}

.col-9 {
    width: 75%
}

.col-8 {
    width: 66.6667%
}

.col-7 {
    width: 58.3333%
}

.col-6 {
    width: 50%
}

.col-5 {
    width: 41.6667%
}

.col-4 {
    width: 33.3333%
}

.col-3 {
    width: 25%
}

.col-2 {
    width: 16.6667%
}

.col-1 {
    width: 8.33333%
}

.col-5-new {
    width: 20%
}

.font-18 {
    font-size: 18px
}

.font-20 {
    font-size: 20px
}

.font-22 {
    font-size: 22px
}

.font-24 {
    font-size: 24px
}

.font-s-bold {
    font-weight: 600
}

.font-bold {
    font-weight: 800
}

.p-0 {
    padding: 0 !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-10 {
    padding-bottom: 10px !important
}

.pb-20 {
    padding-bottom: 20px !important
}

.pb-30 {
    padding-bottom: 30px !important
}

.pb-40 {
    padding-bottom: 40px !important
}

.pb-50 {
    padding-bottom: 50px !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-10 {
    padding-top: 10px !important
}

.pt-20 {
    padding-top: 20px !important
}

.pt-30 {
    padding-top: 30px !important
}

.pt-40 {
    padding-top: 40px !important
}

.pt-50 {
    padding-top: 50px !important
}

.m-0 {
    margin: 0 !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-10 {
    margin-bottom: 10px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-30 {
    margin-bottom: 30px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.mb-50 {
    margin-bottom: 50px !important
}

.mt_0 {
    margin-top: 0 !important
}

.mt_10 {
    margin-top: 10px !important
}

.mt_20 {
    margin-top: 20px !important
}

.mt_30 {
    margin-top: 30px !important
}

.mt_40 {
    margin-top: 40px !important
}

.mt_50 {
    margin-top: 50px !important
}

.flex {
    display: flex;
}

.text-center #check-button {
    display: inline-block;
}


/**/
body {
    background: #EBF0F2
}

.page-wrapper {
    background: #EBF0F2;
    min-height: 100vh;
    height: 100%;
    display: inline-block;
    width: 100%;
}

/*Login Screem*/
.login-screen {
    position: fixed;
    width: 94%;
    max-width: 600px;
    background: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgb(0 0 0 / 05%);
}

    .login-screen .logo {
        margin-bottom: 15px;
    }

    .login-screen .form {
        padding: 0;
        text-align: left;
    }

        .login-screen .form .form-action {
            align-items: center;
            justify-content: space-between;
        }

/*Sidebar*/
.sidebar {
    background: #FFFFFF;
    position: fixed;
    width: 290px;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
}

    .sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .sidebar::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px rgb(0 0 0 / 15%);
        border-radius: 10px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background: #088CC4;
        border-radius: 10px;
    }

    .sidebar .logo {
        padding: 25px 30px 30px;
        border-bottom: 1px solid #EDFAFF;
    }

    .sidebar .navbar {
        padding: 30px;
    }

        .sidebar .navbar ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            row-gap: 15px;
        }

            .sidebar .navbar ul > li {
                position: relative;
            }

                .sidebar .navbar ul > li > a {
                    display: flex;
                    column-gap: 13px;
                    font-weight: 500;
                    font-size: 16px;
                    letter-spacing: -0.02em;
                    color: #747474;
                    align-items: center;
                    height: 30px;
                }

                    .sidebar .navbar ul > li > a .icon {
                        width: 24px;
                    }

                        .sidebar .navbar ul > li > a .icon img {
                            filter: grayscale(1);
                        }

                .sidebar .navbar ul > li.active a .icon img {
                    filter: none;
                }

                .sidebar .navbar ul > li > a:hover, .sidebar .navbar ul > li.active > a, .sidebar .navbar ul > li a:hover .icon img {
                    color: #061F29;
                    filter: none;
                    font-weight: 700
                }

                .sidebar .navbar ul > li .arrow {
                    width: 24px;
                    height: 24px;
                    position: absolute;
                    background: url(../images/dropdown-arrow.png);
                    background-position: center;
                    background-repeat: no-repeat;
                    right: -15px;
                    top: 3px;
                    cursor: pointer;
                    transition: all 500ms
                }

                .sidebar .navbar ul > li a.open .arrow {
                    transform: rotate(90deg);
                }

                .sidebar .navbar ul > li .sub-menu {
                    display: flex;
                    row-gap: 5px;
                    margin-top: 13px;
                    padding-left: 34px;
                    display: none
                }

/**/
.main {
    width: calc(100% - 290px);
    float: right;
    padding: 10px 20px 0px 20px
}

.topbar {
    display: flex;
    justify-content: end;
    align-items: flex-end;
}

    .topbar .breadcrumbs {
        color: #747474;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 1px;
    }

    .topbar h1 {
        margin: 0px;
    }

.user-detail {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 10px 10px 45px;
    border-radius: 90px;
    color: #747474;
    font-size: 14px;
    position: relative;
}

    .user-detail .last-login {
        padding-right: 16px;
        position: relative;
        margin-right: 16px;
        border-right: 1px solid #747474
    }

    .user-detail .account .user-gropdown {
        background: transparent;
        border: none;
        box-shadow: none;
        color: #061F29 !important;
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        padding: 0;
    }

        .user-detail .account .user-gropdown img {
            border-radius: 50%;
            width: 41px;
            height: 41px;
            object-fit: cover;
            object-position: top;
        }

        .user-detail .account .user-gropdown .arrow {
            width: 24px;
            height: 24px;
            background: url(../images/down-arrow.svg);
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 5px
        }

    .user-detail .user-detail-menu {
        position: absolute;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 0 15px rgb(0 0 0 / 23%);
        padding: 25px 20px;
        width: 220px;
        right: 0;
        top: 100%;
        display: none;
        transition: all 400ms;
        z-index: 99;
    }

        .user-detail .user-detail-menu ul {
            margin: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            row-gap: 20px;
        }

            .user-detail .user-detail-menu ul li a {
                display: flex;
                align-items: center;
                column-gap: 15px;
                font-size: 16px;
                font-weight: 600;
                color: #747474;
            }

                .user-detail .user-detail-menu ul li a:hover {
                    color: #088CC4;
                    text-decoration: none !important
                }

                .user-detail .user-detail-menu ul li a img {
                    width: 20px;
                }




.overview-section {
    margin-top: 20px;
}

    .overview-section .item {
        background: #fff;
        border-radius: 10px;
        padding: 10px 20px;
        display: flex;
        column-gap: 18px;
        height: 95px;
        align-items: center;
    }

        .overview-section .item .icon {
            width: 56px;
            height: 56px;
            background: #EDFAFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .overview-section .item .content {
            display: flex;
            flex-direction: column;
            row-gap: 2px;
        }

            .overview-section .item .content p {
                margin: 0;
                font-weight: 500;
                font-size: 14px;
            }

            .overview-section .item .content .amount {
                font-weight: 700;
                font-size: 24px;
                line-height: 32px;
                letter-spacing: -0.02em;
                color: #061F29;
            }

            .overview-section .item .content span {
                font-size: 12px;
                margin-top: 1px;
            }

                .overview-section .item .content span b {
                    color: #01B574
                }

.booking-status {
    margin-top: 20px;
    width: 100%;
    display: inline-block;
}

    .booking-status .item {
        background: #fff;
        border-radius: 10px;
        height: 100%;
    }

        .booking-status .item .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px;
        }

            .booking-status .item .top h2 {
                margin: 0 0 2px;
            }

            .booking-status .item .top span {
                color: #061F29;
                font-size: 14px;
                letter-spacing: -0.02em;
            }

            .booking-status .item .top .right a {
                color: #088CC4;
                text-transform: uppercase;
                font-size: 14px;
                font-weight: 700;
            }

.content-box {
    background: #FFFFFF;
    border-radius: 10px;
    margin-top: 20px;
    padding-bottom: 50px
}

.heading-area {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #EBF0F2;
}

    .heading-area h2 {
        margin: 0;
    }

    .heading-area .right a {
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

        .heading-area .right a span {
            font-size: 34px;
            margin-right: 5px;
            line-height: 36px;
            margin-bottom: 2px;
            font-weight: 400;
        }

        .heading-area .right a:hover {
            text-decoration: none !important;
        }

.tabele-box {
    width: 100%;
    padding: 0 30px;
}

table {
    width: 100%;
    border-spacing: 0;
}

    table thead tr th {
        border-bottom: 1px solid #EBF0F2;
        color: #000000;
        text-align: left;
        padding: 13px 15px;
        font-size: 18px;
        white-space: nowrap;
    }

    table tbody tr td {
        padding: 9px 15px;
        border-bottom: 1px solid #EBF0F2;
        word-break: break-all;
    }

        table tbody tr td span {
            line-height: 24px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            padding: 0 12px;
            border-radius: 5px;
            color: #fff;
            display: inline-block;
        }

            table tbody tr td span.green {
                background: #01B574
            }

            table tbody tr td span.yellow {
                background: #FFB547
            }

.pagination-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

    .pagination-box .per-page select {
        margin: 0;
        border: 1px solid #EBF0F2;
        border-radius: 5px;
        width: 132px;
    }

.pagination {
    display: flex;
}

    .pagination ul {
        display: flex;
        align-items: center;
        margin: 0;
        list-style: none;
        column-gap: 5px;
    }

        .pagination ul li {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .pagination ul li a, .pagination ul li span {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #061F29;
                text-decoration: none;
                font-size: 18px;
                font-weight: 500;
                border: 1px solid #EBF0F2;
                border-radius: 5px;
            }

                .pagination ul li.active a, .pagination ul li a:hover {
                    background: #088CC4;
                    color: #fff;
                    border-radius: 5px;
                    border-color: #088CC4
                }

            .pagination ul li.arrow a:hover img {
                filter: brightness(0) invert(1);
            }

.search-box {
    margin: 30px;
    width: calc(100% - 60px);
    padding: 30px;
    background: #EDFAFF;
}

.search-form .control-group {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

    .search-form .control-group lable {
        color: #061F29;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .search-form .control-group .field {
        display: flex;
        column-gap: 10px;
        align-items: center;
    }

        .search-form .control-group .field input.search {
            margin: 0;
            height: 50px;
            border: 1px solid #D0DCE0;
            max-width: 350px;
            padding: 10px 24px;
        }

        .search-form .control-group .field input[type="submit"] {
            background: #088CC4;
            box-shadow: none;
            font-size: 18px;
            padding: 7.5px 24px;
        }

            .search-form .control-group .field input[type="submit"]:hover {
                background: #EBF0F2;
                color: #061F29 !important
            }

        .search-form .control-group .field input.reset-btn {
            background: #EBF0F2;
            color: #061F29 !important
        }

            .search-form .control-group .field input.reset-btn:hover {
                background: #088CC4;
                color: #fff !important
            }

.search-form .form .control-group {
    flex-direction: initial;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: initial;
}

    .search-form .form .control-group .theme-btn {
        margin-top: 25px;
    }

.table-search-box {
    padding: 20px 30px;
    margin-bottom: 30px
}

.step-content {
    margin-top: 20px;
}

.tabs {
    margin: 0;
    list-style: none;
    display: flex;
    column-gap: 20px;
    counter-reset: item;
}

    .tabs li {
        border-radius: 10px;
        background: #fff;
        padding: 0 26px 0 65px;
        font-size: 18px;
        letter-spacing: -0.02em;
        color: #061F29;
        font-weight: 700;
        line-height: 60px;
        cursor: pointer;
        position: relative;
    }

        .tabs li:before {
            content: counter(item);
            counter-increment: item;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #EDFAFF;
            border-radius: 50px;
            font-weight: 700;
            font-size: 23px;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translate(0px, -50%);
        }

        .tabs li.active, .tabs li:hover {
            background: #088CC4;
            color: #fff
        }

            .tabs li.active:before, .tabs li:hover:before {
                color: #061F29
            }

        .tabs li.tab.done {
            background: #fff !important;
            color: #061F29 !important
        }

            .tabs li.tab.done:before {
                background: #01B574;
                font-size: 0;
                background-image: url(../images/check.svg);
                background-position: center;
                background-repeat: no-repeat;
            }

.form {
    padding: 0 30px;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

    .form form {
        display: flex;
        flex-direction: column;
        row-gap: 30px;
    }

    .form .control-group {
        position: relative;
    }

        .form .control-group label {
            font-weight: 500;
            font-size: 14px;
            color: #061F29;
            margin-bottom: 9px;
            width: 100%;
            display: inline-block;
            text-transform: uppercase;
        }

        .form .control-group .radio-list {
            display: flex;
            column-gap: 20px;
            height: 50px;
        }

            .form .control-group .radio-list .item {
                display: flex;
                align-items: center;
                column-gap: 10px;
                position: relative;
                padding-left: 25px;
            }

                .form .control-group .radio-list .item input {
                    display: none;
                }

                .form .control-group .radio-list .item label {
                    margin: 0;
                    text-transform: initial;
                    color: #747474
                }

                .form .control-group .radio-list .item .check {
                    display: block;
                    position: absolute;
                    border: 2px solid #747474;
                    border-radius: 100%;
                    height: 18px;
                    width: 18px;
                    top: 50%;
                    left: 0px;
                    z-index: 5;
                    transition: border .25s linear;
                    -webkit-transition: border .25s linear;
                    transform: translate(0px, -50%);
                }

                    .form .control-group .radio-list .item .check::before {
                        display: block;
                        position: absolute;
                        content: '';
                        border-radius: 100%;
                        height: 8px;
                        width: 8px;
                        top: 3px;
                        left: 3px;
                        margin: auto;
                        transition: background 0.25s linear;
                        -webkit-transition: background 0.25s linear;
                    }

input[type=radio]:checked ~ .check {
    border: 2px solid #061F29 !important;
}

    input[type=radio]:checked ~ .check::before {
        background: #061F29;
    }

input[type=radio]:checked ~ label {
    color: #061F29 !important;
}

.form .control-group .add-link {
    position: absolute;
    right: 11px;
    bottom: -23px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}

.file-upload {
    position: relative;
}

    .file-upload .add-files {
        border: 2px dashed #c9c9c9;
        width: 100%;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        row-gap: 15px;
    }

    .file-upload .eventImages {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

    .file-upload .add-files label {
        margin: 0px;
        font-size: 16px;
        font-weight: 500;
        text-transform: initial;
    }

#check-button.button-check {
    position: relative;
    width: 60px;
    height: 30px;
    overflow: hidden;
    margin-top: 10px;
}

#check-button .checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

#check-button .layer {
    width: 100%;
    background-color: #EBF0F2;
    z-index: 1;
    transition: 0.3s ease all;
    border-radius: 100px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#check-button .knobs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: 0.3s ease all;
}

    #check-button .knobs:before {
        content: "";
        position: absolute;
        top: 3px;
        left: 5px;
        width: 24px;
        height: 24px;
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        padding: 9px 4px;
        background-color: #088CC4;
        border-radius: 50%;
        transition: 0.3s ease all;
    }

#check-button .checkbox:checked + .knobs:before {
    content: "";
    left: 32px;
    background-color: #fff;
}

#check-button .checkbox:checked ~ .layer {
    background-color: #088CC4;
}

#check-button.active .knobs:before {
    content: "";
    left: 32px;
    background-color: #fff;
}

#check-button.active .layer {
    background-color: #088CC4;
}

.form .control-group.check-box {
    display: flex;
    align-items: center;
    height: 80px;
    padding-top: 29px;
    column-gap: 10px;
}

    .form .control-group.check-box label {
        margin: 0;
        font-size: 16px;
        text-transform: initial;
        color: #747474;
        font-weight: 400;
    }

    .form .control-group.check-box input {
        width: 18px;
        height: 18px;
    }

.form .form-action {
    display: flex;
    column-gap: 20px;
}

.addlist-form {
    background: #EDFAFF;
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-top: 30px;
    padding: 15px 0 25px;
}

#addhall {
    display: none;
}

    #addhall.active {
        display: block;
    }

.form-title h3 {
    font-size: 18px;
    margin: 20px 0 30px;
    padding-bottom: 12px;
    width: 100%;
    border-bottom: 1px solid #EBF0F2;
}

.form-box {
    padding: 30px 30px 0;
}

    .form-box h3 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .form-box .inner {
        border: 1px solid #EBF0F2;
        display: inline-block;
        border-radius: 10px;
        overflow: hidden;
    }

        .form-box .inner .control-group {
            padding: 0 20px 20px;
        }

            .form-box .inner .control-group label {
                font-weight: 500;
                font-size: 14px;
                text-transform: uppercase;
                color: #061F29;
                margin-bottom: 8px;
                width: 100%;
                display: inline-block;
            }

            .form-box .inner .control-group .group {
                width: 100%;
                display: inline-block;
                position: relative;
                max-width: 341px;
            }

                .form-box .inner .control-group .group span {
                    position: absolute;
                    right: 0;
                    top: 0;
                    height: 100%;
                    background: #EBF0F2;
                    letter-spacing: -0.02em;
                    font-size: 16px;
                    line-height: 50px;
                    padding: 0 15px;
                    border-radius: 0 5px 5px 0;
                }

.add-package {
    padding: 20px 20px 30px;
    display: inline-block;
    width: 100%;
}

    .add-package .col-12 {
        padding-bottom: 20px;
    }

        .add-package .col-12 label {
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            color: #061F29;
            width: 100%;
            display: inline-block;
            margin-bottom: 8px;
        }

        .add-package .col-12 .group {
            width: 100%;
            display: inline-block;
            position: relative;
        }

            .add-package .col-12 .group span {
                position: absolute;
                right: 0;
                top: 0;
                height: 100%;
                background: #EBF0F2;
                letter-spacing: -0.02em;
                font-size: 16px;
                line-height: 50px;
                padding: 0 15px;
                border-radius: 0 5px 5px 0;
                text-transform: uppercase;
            }

.add-service-box {
    padding: 0 30px 40px;
    display: inline-block;
    width: 100%;
}

    .add-service-box h3 {
        font-weight: 500;
        font-size: 18px;
        letter-spacing: -0.02em;
        color: #061F29;
        padding-bottom: 14px;
        border-bottom: 2px solid #EBF0F2;
        margin-bottom: 30px;
    }

    .add-service-box label {
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        color: #061F29;
        width: 100%;
        display: inline-block;
        margin-bottom: 8px;
    }

    .add-service-box .btn-box {
        padding-top: 29px;
    }

.modal-toggle {
    cursor: pointer;
    color: #268bd2;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    pointer-events: auto;
}

    .modal-wrapper > div {
        width: 460px;
        height: 40%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        vertical-align: middle;
        padding: 20px;
        border-radius: 6px;
        background: #fff;
        z-index: 1;
    }

.close {
    background: #606061;
    color: #ffffff;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

    .close:hover {
        background: #00d9ff;
    }

.text-danger {
    color: red;
}

.card-box {
    display: flex
}

.moddle-plus-icon {
    border: 2px solid #088CC4;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    font-size: 30px;
    line-height: 23px;
    text-decoration: none !important;
    position: relative;
    color: #088CC4;
    cursor: pointer;
    display: inline-block;
    text-align: center
}

.moddle-minus-icon {
    border: 2px solid #ff3f3f;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    font-size: 30px;
    line-height: 23px;
    text-decoration: none !important;
    position: relative;
    color: #ff3f3f !important;
    cursor: pointer;
    display: inline-block;
    text-align: center
}

.model-btn-row {
    display: flex;
    align-items: flex-end;
}


.card-box .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

    .card-box .card .card-body {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 1.25rem;
    }

        .card-box .card .card-body h5 {
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 700;
            display: flex;
            align-items: center;
            color: #088CC4;
            justify-content: space-between;
            align-items: center;
        }

        .card-box .card .card-body .card-title {
            border-bottom: 1px solid #088CC4;
            padding: 10px;
            text-align: center;
        }

            .card-box .card .card-body .card-title ol li {
                font-size: 18px;
                border-bottom: 1px solid #088CC4;
            }

            .card-box .card .card-body .card-title a.modal-toggle {
                border: 2px solid #088CC4;
                width: 30px;
                height: 30px;
                border-radius: 50px;
                font-size: 30px;
                line-height: 23px;
                text-decoration: none !important;
            }

        .card-box .card .card-body ul,
        .card-box .card .card-body ol {
            padding-top: 10px;
            margin: 0;
            list-style: none
        }

        .card-box .card .card-body ol {
            list-style: decimal;
            padding-left: 15px;
        }

            .card-box .card .card-body ul li,
            .card-box .card .card-body ol li {
                padding-left: 5px;
                position: relative;
                border-bottom: 1px solid #ccc;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

                .card-box .card .card-body ul li:last-child,
                .card-box .card .card-body ol li:last-child {
                    border: none;
                    padding: 0;
                    margin: 0;
                }

                .card-box .card .card-body ul li div,
                .card-box .card .card-body ol li div {
                    position: absolute;
                    top: 0;
                    right: 5px;
                }

                .card-box .card .card-body ul li p:last-of-type,
                .card-box .card .card-body ol li p:last-of-type {
                    margin: 0
                }

.card-body ul li .delete {
    bottom: 0;
    top: initial !important;
    height: auto;
}

    .card-body ul li .delete a {
        color: #cf0000;
    }

        .card-body ul li .delete a:hover, a:active {
            color: #cf0000;
        }
 .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #2196F3 !important;
        border: 1px solid #aaa;
        border-radius: 4px;
        box-sizing: border-box;
        display: inline-block;
        margin-left: 5px;
        margin-top: 5px;
        color: white !important;
        padding: 0;
        padding-left: 20px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
        white-space: nowrap;
    }

    .select2-selection__choice__remove {
        background-color: transparent;
        border: none;
        border-right: none!important;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        color: #999;
        cursor: pointer;
        font-size: 1.3em !important;
        font-weight: bold;
        padding: 0 4px;
        position: absolute;
        left: 0;
        top: -7px !important;
    }

#participantEntryFormId .row {
    width: calc(100% + 20px);
    float: left;
}
.float-right{
    float:right;
}
.disabledCursor {
    cursor: not-allowed;
    background: #EEEEEE;
}

/*********************************/

/**/
.newlogin-page {position: relative; width: 100%; display: inline-block;}
.newlogin-page .login-content {position: fixed; left: 0; top: 0; height: 100%; width: 50%; }
.newlogin-page .login-content .login-screen{position: absolute;}

.upcoming-event-page {background: #fff; width: 50%; float: right; min-height: 100vh;}
.upcoming-event-page .event-title {border-bottom: 2px solid #EBF0F2; padding: 20px 0 5px; }
.upcoming-event-page .event-title h1 {font-weight: 700; font-size: 34px; line-height: 42px; letter-spacing: -0.02em; color: #061F29; width: 100%; text-align: center; }
/*.upcoming-event {padding: 60px 0; }*/
.upcoming-event .container {max-width: 860px; width: 100%; margin: 0 auto; /*padding: 0 15px; */}
.upcoming-event .inner {display: flex; flex-wrap: wrap; row-gap: 30px; column-gap: 4%; }
.event-list {width: 48%; border: 1px solid #EBF0F2; border-radius: 10px; }
.event-list .image {height: 172px; display: flex; align-items: center; justify-content: center; padding: 15px; border-bottom: 1px solid #EBF0F2; }
.event-list .content {padding: 18px 42px 30px; font-weight: 400; font-size: 16px; line-height: 24px; text-align: center; color: #747474; }
.event-list .content .date {width: 137px; height: 30px; background: #747474; border-radius: 5px; display: inline-block; font-weight: 500; font-size: 14px; line-height: 32px; text-align: center; color: #FFFFFF; margin-bottom: 15px; }
.event-list .content h3 {font-style: normal; font-weight: 700; font-size: 24px; line-height: 28px; color: #061F29; margin-bottom: 10px; }

.event-content {display: flex; column-gap: 2%; flex-wrap: wrap; row-gap: 30px; margin-top: 40px;}
.event-content .event-list {background: #fff; width: 23.5%; display: flex;flex-direction: column;}
.event-content .event-list .content {padding: 16px 30px 30px; height: 100%; box-sizing: border-box; display: flex; flex-direction: column; align-items: center;}
.event-content .event-list .image{min-height: 172px;}
.event-content .event-list .content .btn-box {margin-top: auto; width: 100%; text-align: center; }
.event-content .event-list .content .btn-box .btn {background: #088CC4; border-radius: 5px; font-weight: 700; font-size: 16px; text-align: center; text-transform: uppercase; color: #FFFFFF; line-height: 38px; display: inline-block; padding: 0 28px; border: 1px solid #088cc4; transition: all 400ms; text-decoration: none !important}
.event-content .event-list .content .btn-box .btn:hover{background: transparent; color: #088CC4}
.newlogin-page.no-event .login-content {width: 100%;}

.event-header {
  background: #088CC4;
  border-radius: 10px;
  margin-top: 20px;
  color: #fff;
  padding: 15px 30px;
}
.event-header h1 {
  color: #fff;
  padding-bottom: 0px;
  font-size: 26px; margin:0;
}
.event-header .note{border-top: 1px solid #fff; padding-top:10px; margin-top:10px;}
.event-header .note p{margin:0px;}