:root {
    /*Main*/
    --font-name: 'Noto Sans Thai', -apple-system, sans-serif;
    --primary-color: #b2d5e4;
    --secondary-color: #7fbad3;
    --fade-primary-color: #dbeef3cc;
    --fade-secondary-color: #dbe6ebcc;
    --light-primary-color: #dbeef3;
    --light-secondary-color: #dbe6eb;
    --dark-primary-color: #dbeef3cc;
    --dark-secondary-color: #dbe6ebcc;
    --highlight-primary-color: #dff6ff;
    --lowlight-primary-color: #f4ffff;
    --highlight-border-color: #00b7ff;
    --lowlight-border-color: #9ce3ff;
    /*Control*/
    --font-color: #000000;
    --disabled-font-color: #999999;
    --highlight-font-color: #ffffff;
    --active-font-color: #ff0000;
    --inactive-font-color: #999999;
    --title-font-color: #ffffff;
    --placeholder-color: #999999;
    --button-color: #ffffff;
    --button-background: #4c9fc2;
    --button-hover-background: #333333;
    --button-active-background: #125280;
    --button-inactive-background: #285676;
    --icon-button-color: #000000;
    --input-background: #e6e6e6;
    --display-background: #f3f3f3;
    --table-background: #f5f5f5;
    --table-header-background: #616C71;
    --table-even-background: #eff5f7; /*#cce3ed;*/
    --table-hover-background: #cfedfa;
    --datepicker-week-end-backgound: #f9cdca;
    --menu-background: #efefef;
    --fieldset-border-color: var(--table-header-background);
    --outsiderbox-color: #d2f2ff;
    /*Specify*/
    --ocs-form-background: #ffffff;
}

@import './common-root.css';

@font-face {
    font-family: "Noto Sans Thai", -apple-system, sans-serif;
}

body {
    font-family: var(--font-name);
    margin: 0;
    width: 100%;
    height: 100vh;
    scroll-behavior: smooth;
}

.loading {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    visibility: visible;
    background: -webkit-linear-gradient(135deg, var(--fade-primary-color), var(--fade-secondary-color));
    background: -o-linear-gradient(135deg, var(--fade-primary-color), var(--fade-secondary-color));
    background: -moz-linear-gradient(135deg, var(--fade-primary-color), var(--fade-secondary-color));
    background: linear-gradient(135deg, var(--fade-primary-color), var(--fade-secondary-color));
}

    .loading img {
        width: 15%;
        height: 15%;
    }

    .loading.collapse {
        visibility: collapse;
    }

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: -webkit-linear-gradient(135deg, var(--light-primary-color), var(--light-secondary-color));
    background: -o-linear-gradient(135deg, var(--light-primary-color), var(--light-secondary-color));
    background: -moz-linear-gradient(135deg, var(--light-primary-color), var(--light-secondary-color));
    background: linear-gradient(135deg, var(--light-primary-color), var(--light-secondary-color));
}

@media (max-width: 992px) {
    html, body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: -moz-available;
        min-height: fill-available;
        min-height: stretch;
    }

    .loading {
    }

    .container {
        /*min-height: 100%;
        min-height: -webkit-fill-available;
        min-height: -moz-available;
        min-height: fill-available;*/
    }
}

@import './common-root.css';

* {
    box-sizing: border-box;
}

button {
    font-family: var(--font-name);
    outline: none !important;
    border: none;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    color: var(--button-color);
    background: var(--button-background);
    text-transform: uppercase;
    height: auto;
    min-height: 40px;
    border-radius: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    margin: 0 10px;
}
    button:hover {
        cursor: pointer;
        background: var(--button-hover-background);
        /*-webkit-transition: all 0.7s;
        -o-transition: all 0.7s;
        -moz-transition: all 0.7s;
        transition: all 0.7s;*/
    }

    button::before {
        font-size: 20px;
        margin: 0 5px 0 0;
    }

    button.iconwithtext,
    a.iconwithtext {
        font-family: var(--font-name) !important;
        color: var(--icon-button-color) !important;
        background: none !important;
        width: auto !important;
        height: 40px !important;
        border-radius: 100% !important;
        padding: 0 !important;
        margin: 0 3px !important;
    }

    button.iconwithtext::before,
    a.iconwithtext::before {
        margin: 0 5px 0 0;
        font-size: 20px;
    }

    button.icon {
        font-family: var(--font-name);
        color: var(--icon-button-color);
        background: none;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        padding: 0;
        margin: 0 3px;
    }

        button.icon:hover,
        button.iconwithtext:hover {
            color: var(--button-background);
        }

        button.icon::before {
            margin: 0;
            font-size: 20px;
        }

    button.circle {
        font-family: var(--font-name);
        position: relative;
        font-size: 30px;
        color: #fff;
        text-transform: uppercase;
        padding: 0 !important;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        background: var(--button-background);
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        button.circle::before {
            margin: 0;
        }

a {
    text-decoration: none;
    color: var(--font-color);
}

    a:focus {
        outline: none !important;
    }

    a:hover {
        text-decoration: none;
    }

p {
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

label {
    margin: auto 0;
    font-weight: bold;
    padding: 0 10px;
    align-self: center;
    height: 100%;
    align-content: center;
}

    label.foroption {
        font-weight: normal;
    }

    /*For pure input*/
    label:has(+ input:required):after {
        content: ' ✦';
        color: red;
    }

    /*For div*/
    label:has(+ div.required):after {
        content: ' ✦';
        color: red;
    }

    label.toggle {
        position: relative;
        display: flex;
        width: 60px;
        height: 34px;
        flex-direction: row;
        align-items: center;
    }

        label.toggle input {
            opacity: 0;
            width: 0;
            height: auto;
        }

            label.toggle input:checked + span {
                background-color: #2196F3;
            }

            label.toggle input:focus + span {
                box-shadow: 0 0 1px #2196F3;
            }

            label.toggle input:checked + span:before {
                -webkit-transform: translateX(26px);
                -ms-transform: translateX(26px);
                transform: translateX(26px);
            }

        label.toggle span {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 34px;
        }

            label.toggle span:before {
                position: absolute;
                content: "";
                height: 26px;
                width: 26px;
                left: 4px;
                bottom: 4px;
                background-color: white;
                -webkit-transition: .4s;
                transition: .4s;
                border-radius: 50%;
            }

        label.toggle p {
            margin-left: 10px;
            font-weight: normal;
        }

input {
    font-family: var(--font-name);
    font-size: 1em;
    font-weight: normal;
    line-height: 1.5;
    color: var(--font-color);
    display: flex;
    border: none;
    outline: none;
    width: 100%;
    background: var(--input-background);
    height: 40px;
    border-radius: 25px;
    align-items: center;
    padding: 0 20px 0 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    caret-color: var(--font-color);
}

    input.icon {
        padding: 0 20px 0 40px;
    }

    input.alert {
        border: 1px solid red;
    }

    input.radiobutton {
        width: 20px;
        -webkit-appearance: radio !important;
        margin: 0 10px;
    }

    input::-webkit-date-and-time-value {
        text-align: left;
    }

    input::-webkit-input-placeholder {
        color: var(--placeholder-color);
    }

    input:-moz-placeholder {
        color: var(--placeholder-color);
    }

    input::-moz-placeholder {
        color: var(--placeholder-color);
    }

    input:-ms-input-placeholder {
        color: var(--placeholder-color);
    }

    input:focus::-webkit-input-placeholder {
        color: transparent;
    }

    input:focus:-moz-placeholder {
        color: transparent;
    }

    input:focus::-moz-placeholder {
        color: transparent;
    }

    input:focus:-ms-input-placeholder {
        color: transparent;
    }

    input:disabled{
        background: none;
    }

    input[type=file] {
    }

        input[type=file]::file-selector-button {
            outline: none !important;
            border: none;
            font-family: var(--font-name);
            font-size: 14px;
            line-height: 1.5;
            color: var(--button-color);
            background: var(--button-background);
            text-transform: uppercase;
            height: 40px;
            padding: 0 20px;
            margin: 0 20px 0 -20px;
        }

            input[type=file]::file-selector-button:hover {
                cursor: pointer;
                background: var(--button-hover-background);
            }

select {
    font-family: var(--font-name);
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    color: var(--font-color);
    border: none;
    outline: none;
    width: initial;
    height: 40px;
    border-radius: 25px;
    padding: 0 40px 0 20px;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    background: var(--input-background);
    background-image: url(/Data/images/common/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: calc(100% - 15px);
}

/* Hide scrollbar for IE, Edge and Firefox */
div {
    /*-ms-overflow-style: none; /* IE and Edge */
    /*scrollbar-width: none; /* Firefox */
}

    /* Hide scrollbar for Chrome, Safari and Opera */
    div::-webkit-scrollbar {
        /*display: none;*/
    }

    div.outsiderbox {
        width: 100%;
        margin: 0 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

        div.outsiderbox.preview {
            width: 70% !important;
            margin-bottom: 30px;
            padding: 10px 20px;
            display: flex;
            justify-self: center;
            align-self: center;
            flex-direction: column;
            border-radius: 25px;
            background: var(--outsiderbox-color);
        }

            div.outsiderbox.preview img {
                width: auto;
                max-width: 150px;
            }

        div.outsiderbox a {
            width: 40%;
            margin: 20px;
            border-radius: 25px;
            background: #FFFFFF;
            text-align: center;
            transition: all .2s ease-in-out;
        }

            div.outsiderbox a:hover {
                transform: scale(1.05);
            }

        div.outsiderbox img {
            width: 150px;
        }

        div.outsiderbox .title {
            font-size: 30px;
            word-wrap: break-word;
            margin: 0 20px;
        }

        div.outsiderbox .subtitle {
            font-size: 18px;
            margin-bottom: 20px;
        }

    div.cardinfo {
        width: auto;
        padding: 20px;
        margin: 10px;
        border-radius: 25px;
        background: var(--primary-color);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

        div.cardinfo section {
            margin: 0 auto !important;
        }

        div.cardinfo .card-number {
            font-size: 30px;
            font-weight: bold;
        }

        div.cardinfo .card-content {
            margin: 10px;
            display: flex;
            flex-direction: column;
        }

            div.cardinfo .card-content img.miniicon {
                height: 25px;
                margin: 0 10px;
            }

            div.cardinfo .card-content img.largeicon {
                width: 40%;
                margin: 10px auto;
            }

            div.cardinfo .card-content p {
                display: flex;
                align-items: center;
            }

            div.cardinfo .card-content span {
                margin: 0 auto;
            }

    div.inputtext {
        position: relative;
        display: flex;
        width: 100%;
        align-items: center;
    }

        div.inputtext.icon input {
            padding: 0 20px 0 50px;
        }

        div.inputtext i.icon-hint {
            font-size: 20px;
            position: absolute;
            margin-left: 25px;
        }

        div.inputtext p.alert-hint {
            position: absolute;
            font-size: 11px;
            margin-right: 20px;
            right: 0;
            color: red;
        }

        div.inputtext p.inactive {
            display: none;
        }

    div.displaytext {
        font-family: var(--font-name);
        /*font-size: 18px;*/
        font-weight: normal;
        line-height: 1.5;
        color: var(--font-color);
        display: flex;
        border: none;
        outline: none;
        width: initial;
        /*background: var(--display-background);*/
        /*background: #bfbdbd;*/
        height: auto;
        min-height: 25px;
        border-radius: 25px;
        align-items: center;
        padding: 0 20px 0 20px;
        -webkit-appearance: none;
        -moz-appearance: none;
        caret-color: var(--font-color);
        word-break: break-word;
    }

    div.displaypicture {
        text-align: center;
        transition: all .3s ease;
        position: relative;
        transition: all .3s ease;
    }

        div.displaypicture p {
            display: none;
            color: red;
            font-weight: bold;
        }

        div.displaypicture input {
            display: none;
        }

        div.displaypicture img {
            object-fit: cover;
            width: 150px;
            height: 150px;
            box-shadow: 0 0 10px 0 rgba(255,255,255,.35);
            border-radius: 100px;
            z-index: 0;
        }

        div.displaypicture label {
            position: absolute;
            cursor: pointer;
            height: 150px;
            width: 150px;
            padding: 0;
            color: transparent;
            text-align: center;
            align-content: center;
        }

            div.displaypicture label:hover {
                background-color: rgba(0,0,0,.8);
                z-index: 10000;
                transition: background-color .2s ease-in-out;
                border-radius: 100px;
                margin-bottom: 0;
                color: var(--highlight-font-color);
            }

    div.alert {
        border: 1px solid red;
    }

    div.row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
    }

        div.row.center {
            justify-content: center;
        }

    div.column {
        display: flex !important;
        flex-direction: column !important;
    }

    div.minitable:has(> table) {
        height: 30vh !important;
    }

    div.fulltable:has(> table) {
        height: 100% !important;
        max-height: 100% !important;
    }

    div:has(> table) {
        border-radius: 10px;
        margin: 10px auto;
        width: 100% !important;
        max-height: 30vh;
        background: var(--table-background);
        /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);*/
        overflow-y: auto;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

        div:has(> table)::-webkit-scrollbar {
            display: none;
        }


    div.navbar {
        position: fixed;
        display: flex;
        z-index: 5;
        background: var(--ocs-form-background);
        height: 60px;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

        div.navbar .navbar-logo {
            display: flex;
            align-items: center;
        }

            div.navbar .navbar-logo img {
                height: 50px !important;
                width: 50px !important;
                margin: auto 10px auto 20px;
            }

            div.navbar .navbar-logo p {
                font-size: 20px;
            }

        div.navbar .navbar-items {
            display: flex;
            align-items: center;
            font-size: 14px;
        }

            div.navbar .navbar-items ul {
                display: flex;
                list-style: none;
            }

                div.navbar .navbar-items ul li {
                    display: flex;
                    min-width: 100px;
                }

                    div.navbar .navbar-items ul li:hover {
                        background: var(--button-hover-background);
                    }

                        div.navbar .navbar-items ul li:hover > a,
                        div.navbar .navbar-items ul li:hover > div.navbar-items-dropdown {
                            color: var(--button-color);
                        }

                        div.navbar .navbar-items ul li:hover > div.navbar-items-dropdown-list,
                        div.navbar .navbar-items ul li:hover > div.navbar-items-dropdown-popup {
                            display: flex;
                        }

                    div.navbar .navbar-items ul li a {
                        padding: 0;
                    }

                    div.navbar .navbar-items ul li a,
                    div.navbar .navbar-items ul li div.navbar-items-dropdown {
                        width: 100%;
                        height: 60px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        align-content: center;
                        justify-content: center;
                        position: relative;
                        cursor: default;
                        padding: 0 5px;
                    }

                        div.navbar .navbar-items ul li a::before,
                        div.navbar .navbar-items ul li div.navbar-items-dropdown::before {
                            font-size: 25px;
                            margin-top: 5px;
                        }

                        div.navbar .navbar-items ul li div.navbar-items-dropdown:hover {
                            background: var(--button-hover-background);
                        }

                        div.navbar .navbar-items ul li div.navbar-items-dropdown p::after {
                            content: ' ▼';
                        }

                    div.navbar .navbar-items ul li div.navbar-items-dropdown-list {
                        display: none;
                        position: fixed;
                        top: 60px;
                        height: auto;
                        width: -webkit-fill-available;
                        min-width: 100px;
                        background: var(--ocs-form-background);
                        flex-direction: column;
                        align-items: center;
                    }

                        div.navbar .navbar-items ul li div.navbar-items-dropdown-list div {
                            width: 100%;
                            padding: 0 0px;
                        }

                            div.navbar .navbar-items ul li div.navbar-items-dropdown-list div:hover > a {
                                color: var(--button-color);
                                background: var(--button-hover-background);
                            }

                            div.navbar .navbar-items ul li div.navbar-items-dropdown-list div a {
                                display: flex;
                                flex-direction: row;
                                justify-content: flex-start;
                                padding: 0;
                            }

                            div.navbar .navbar-items ul li div.navbar-items-dropdown-list div a::before,
                            div.navbar .navbar-items ul li div.navbar-items-dropdown-list div a img {
                                width: 30px;
                                padding-left: 5%;
                            }

                            div.navbar .navbar-items ul li div.navbar-items-dropdown-list div p {
                                width: auto;
                                padding: 0 5px;
                            }

                    div.navbar .navbar-items ul li div.navbar-items-dropdown-popup {
                        display: none;
                        position: fixed;
                        top: 60px;
                        height: auto;
                        width: -webkit-fill-available;
                        min-width: 100px;
                        background: var(--ocs-form-background);
                        flex-direction: column;
                        z-index: 9999;
                        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
                        border-radius: 0;
                    }

                        div.navbar .navbar-items ul li div.navbar-items-dropdown-popup.accountpopup {
                            right: 5%;
                            width: 25%;
                        }

                    div.navbar .navbar-items ul li div.navbar-items-profile img {
                        height: 30px;
                        width: 30px;
                        border-radius: 100%;
                    }

        div.navbar .navbar-hamburger {
            position: relative;
            height: 40px;
            width: 40px;
            margin: auto 20px auto 10px;
            z-index: 2;
            flex-direction: column;
            justify-content: space-between;
        }

            div.navbar .navbar-hamburger.collapse {
                display: none;
            }

            div.navbar .navbar-hamburger .button {
                position: absolute;
                background: none;
                width: 100%;
                height: 100%;
                margin: auto;
                border-radius: 0;
            }

            div.navbar .navbar-hamburger .icon {
                width: 100%;
                height: 100%;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
            }

                div.navbar .navbar-hamburger .icon span {
                    display: block;
                    height: 4px;
                    width: 100%;
                    border-radius: 10px;
                    background: #0e2431;
                }

                    div.navbar .navbar-hamburger .icon span.top {
                        transform-origin: 100% 100%;
                        transition: transform 0.4s ease-in-out;
                    }

                    div.navbar .navbar-hamburger .icon span.middle {
                        transition: transform 0.2s ease-in-out;
                    }

                    div.navbar .navbar-hamburger .icon span.bottom {
                        transform-origin: 100% 0%;
                        transition: transform 0.4s ease-in-out;
                    }

                    div.navbar .navbar-hamburger .icon span.top {
                        transform: rotate(-40deg);
                    }

                    div.navbar .navbar-hamburger .icon span.middle {
                        transform: scaleY(0);
                    }

                    div.navbar .navbar-hamburger .icon span.bottom {
                        transform: rotate(40deg);
                    }

            div.navbar .navbar-hamburger.collapse .icon span.top {
                transform: rotate(0);
            }

            div.navbar .navbar-hamburger.collapse .icon span.middle {
                transform: scaleY(1);
            }

            div.navbar .navbar-hamburger.collapse .icon span.bottom {
                transform: rotate(0);
            }

    div.menulist {
        z-index: 5;
        height: 100%;
        width: 200px;
        justify-content: space-between;
    }

        div.menulist ul {
            display: flex;
            list-style: none;
            flex-direction: column;
            margin: 0;
            padding: 0;
        }

        div.menulist ul li {
            display: flex;
            flex-direction: column;
            min-width: 100px;
            justify-content: center;
        }

            div.menulist ul li:hover {
                background: var(--button-hover-background);
            }

                div.menulist ul li:hover > a,
                div.menulist ul li:hover > div {
                    color: var(--button-color);
                }

                    div.menulist ul li:hover > div .dropdownitem {
                        display: flex;
                    }

            div.menulist ul li:first-child {
                -webkit-border-radius: 20px 0 0 0;
                -moz-border-radius: 20px 0 0 0;
                border-radius: 20px 0 0 0;
            }

            div.menulist ul li:last-child {
                /*-webkit-border-radius: 0 0 0 20px;
                -moz-border-radius: 0 0 0 20px;
                border-radius: 0 0 0 20px;*/
            }

            div.menulist ul li:only-child {
                /*-webkit-border-radius: 20px 0 0 0;
                -moz-border-radius: 20px 0 0 0;
                border-radius: 20px 0 0 0;*/
            }

            div.menulist ul li a {
                display: flex;
                padding: 5px 20px;
                width: 100%;
                cursor: default;
                flex-direction: row;
                justify-content: flex-start;
            }

                div.menulist ul li a::before {
                    margin-top: 0;
                    margin-right: 5%;
                    font-size: 20px;
                }

    div.qrreader {
        width: 500px !important;
        min-width: 300px;
        max-width: 800px;
        height: auto;
        border-radius: 25px;
        margin: 0 auto;
    }

        div.qrreader div {
            display: flex;
            flex-direction: column;
        }

            div.qrreader div#qrreader__scan_region {
                align-items: center;
            }

            div.qrreader div#qrreader__header_message {
                border-radius: 25px;
                margin: 20px !important;
            }

        div.qrreader button, div.qrreader select, div.qrreader span {
            margin: 10px;
        }

        div.qrreader img {
            width: 200px !important;
        }

    div.radiogroup {
        width: 100%;
        display: flex;
        justify-content: center;
    }

        div.radiogroup input {
            position: absolute;
            left: -9999em;
            top: -9999em;
        }

        div.radiogroup label {
            float: left;
            padding: 10px;
            cursor: pointer;
            margin: 0 !important;
            color: var(--button-color);
            background-color: var(--button-background);
        }

            div.radiogroup label:hover {
                background-color: var(--button-hover-background);
            }

            div.radiogroup label:first-of-type {
                border-radius: 25px 0 0 25px;
                padding: 10px 10px 10px 15px;
            }

            div.radiogroup label:last-of-type {
                border-radius: 0 25px 25px 0;
                padding: 10px 15px 10px 10px;
            }

        div.radiogroup input:checked + label {
            background-color: var(--button-active-background);
        }


    div.ocs-ctrl-editable-textbox {
        position:relative;
        display:flex;
        flex-direction:row;
    }

        div.ocs-ctrl-editable-textbox input {
            padding: 0 50px 0 20px;
        }

        div.ocs-ctrl-editable-textbox .ocs-ctrl-editable-textbox-buttongroup {
            position: absolute;
            right: 0;
        }

    div.ui-datepicker {
        width: auto !important;
        min-width: 350px;
        border-radius: 25px;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        max-height: fit-content;
    }

        div.ui-datepicker .ui-datepicker-header {
            display: flex;
            justify-content: center;
            margin: 10px 5px;
        }

            div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
                position: absolute;
                left: 10px;
            }

            div.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
                position: absolute;
                right: 10px;
            }

            div.ui-datepicker .ui-datepicker-header a {
                font-size: 9px;
                color: #fff;
                text-transform: uppercase;
                padding: 0 !important;
                width: 30px;
                height: 30px;
                border-radius: 100%;
                background: var(--button-background);
                display: -webkit-box;
                display: -webkit-flex;
                display: -moz-box;
                display: -ms-flexbox;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
            }

            div.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
                text-align: center;
            }

        div.ui-datepicker .ui-datepicker-calendar {
        }

            div.ui-datepicker .ui-datepicker-calendar td {
                text-align: center;
                height: 40px;
                width: 40px;
                margin: 3px;
            }

                div.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-week-end {
                    background: var(--datepicker-week-end-backgound);
                }

                div.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-today {
                    display: block;
                    background: var(--primary-color);
                    border-radius: 50%;
                }

                    div.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-today a,
                    div.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-today span {
                        font-weight: bold;
                        color: var(--font-color);
                        vertical-align: -webkit-baseline-middle;
                        vertical-align: sub;
                    }

                div.ui-datepicker .ui-datepicker-calendar td a {
                }

                    div.ui-datepicker .ui-datepicker-calendar td a.ui-state-active {
                        font-weight: bold;
                        color: var(--active-font-color);
                    }

                div.ui-datepicker .ui-datepicker-calendar td span {
                    color: var(--disabled-font-color);
                }

    div.ui-timepicker-container {
        position: absolute;
        overflow: hidden;
        box-sizing: border-box
    }

        div.ui-timepicker-container.ui-timepicker-standard {
            border-radius: 25px;
            background: var(--table-background);
        }

            div.ui-timepicker-container.ui-timepicker-standard a {
                display: block;
                padding: .2em .4em;
                text-decoration: none
            }

            div.ui-timepicker-container.ui-timepicker-standard .ui-state-hover {
                background-color: var(--table-hover-background);
                font-weight: 400;
            }

            div.ui-timepicker-container.ui-timepicker-standard .ui-menu-item {
                margin: 0;
                padding: 0
            }



        div.ui-timepicker-container.ui-timepicker-hidden {
            display: none
        }

        div.ui-timepicker-container.ui-timepicker-no-scrollbar .ui-timepicker {
            border: 0
        }

        div.ui-timepicker-container .ui-timepicker {
            box-sizing: content-box;
            display: block;
            height: auto;
            max-height: 170px;
            list-style: none;
            margin: 0;
            padding: 0 1px;
            text-align: center
        }

            div.ui-timepicker-container .ui-timepicker .ui-timepicker-viewport {
                box-sizing: content-box;
                display: block;
                height: auto;
                max-height: 170px;
                margin: 0;
                padding: 0;
                overflow: auto;
                overflow-x: hidden
            }

        div.ui-timepicker-container .ui-timepicker-corners, .ui-timepicker-corners .ui-corner-all {
            -moz-border-radius: 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px
        }

    div.daysofweekpicker {
        display: flex;
        flex-direction: column;
    }

        div.daysofweekpicker .daysofweekpicker-eachday {
            display: flex;
            align-items: center;
        }


            div.daysofweekpicker .daysofweekpicker-eachday label {
                min-width: 50px !important;
                min-height: 50px !important;
                max-width: 50px !important;
                max-height: 50px !important;
                padding: 0 !important;
                margin: 5px;
                align-content: center;
                text-align: center;
                border-radius: 50%;

            }

            div.daysofweekpicker .daysofweekpicker-eachday input[type=checkbox] {
                display: none;
            }

                div.daysofweekpicker .daysofweekpicker-eachday input[type=checkbox] + label {
                    cursor: pointer;
                }

                div.daysofweekpicker .daysofweekpicker-eachday input[type=checkbox]:checked + label {
                    background: var(--button-background);
                    color: var(--button-color);
                }

            div.daysofweekpicker .daysofweekpicker-eachday .daysofweekpicker-timerange {
                display: flex;
                align-items: center;
            }


table {
    width: 100%;
    border-collapse: collapse;
}

    table thead {
        background: var(--table-header-background);
        color: var(--title-font-color);
        text-align: center;
        position: sticky;
        top: 0;
        z-index: 2;
    }

        table thead tr {
            text-align: center;
        }

    table th,
    table td {
        padding: 5px 10px;
    }

        table th:first-child {
            -webkit-border-radius: 20px 0 0 0;
            -moz-border-radius: 20px 0 0 0;
            border-radius: 20px 0 0 0;
        }

        table th:last-child {
            -webkit-border-radius: 0 20px 0 0;
            -moz-border-radius: 0 20px 0 0;
            border-radius: 0 20px 0 0;
        }

        table th:only-child {
            -webkit-border-radius: 20px 20px 0 0;
            -moz-border-radius: 20px 20px 0 0;
            border-radius: 20px 20px 0 0;
        }

    table tbody {
        border-collapse: collapse;
        margin: 10px;
    }

        table tbody tr input {
            width: 100% !important;
        }

        table tbody tr .buttongroup {
            display: flex;
            flex-direction: row;
        }

        table tbody tr:nth-of-type(even) {
            background-color: var(--table-even-background);
        }

        table tbody tr.hover:hover {
            background: var(--table-hover-background);
            -webkit-transition: all 0.7s;
            -o-transition: all 0.7s;
            -moz-transition: all 0.7s;
            transition: all 0.7s;
        }

        table tbody td:first-child {
            text-align: center;
        }

        table tbody td:last-child {
        }

        table tbody tr:last-child td:first-child {
            /*-webkit-border-radius: 0 0 0 20px;
            -moz-border-radius: 0 0 0 20px;
            border-radius: 0 0 0 20px;*/
        }

        table tbody tr:last-child td:last-child {
            /*-webkit-border-radius: 0 0 20px 0;
        -moz-border-radius: 0 0 20px 0;
        border-radius: 0 0 20px 0;*/
        }

        table tbody tr:last-child td:only-child {
            /*-webkit-border-radius: 0 0 20px 20px;
        -moz-border-radius: 0 0 20px 20px;
        border-radius: 0 0 20px 20px;*/
        }

    table::-webkit-scrollbar { /* Chrome , Safari*/
        display: none;
    }

@media (max-width: 992px) {
    label {
        align-self: normal;
    }

    div.navbar {
        z-index: 10;
    }

        div.navbar .navbar-logo p {
            display: none;
        }

        div.navbar .navbar-items {
            position: fixed;
            top: 60px;
            background: var(--ocs-form-background);
            width: 100%;
            height: 100%;
            transform: translateX(0);
            transition: transform 0.5s ease-in-out;
            flex-direction: column;
        }

            div.navbar .navbar-items.collapse {
                transform: translate(-150%);
            }

            div.navbar .navbar-items ul {
                flex-direction: column;
                width: 100%;
                padding: 0;
            }

                div.navbar .navbar-items ul li {
                    width: 100%;
                    padding: 0;
                }

                div.navbar .navbar-items ul li:hover {
                    flex-direction: column;
                }

                    div.navbar .navbar-items ul li a,
                    div.navbar .navbar-items ul li div.navbar-items-dropdown {
                        width: 100%;
                        display: flex;
                        flex-direction: row;
                        justify-content: flex-start;
                    }

                        div.navbar .navbar-items ul li a::before,
                        div.navbar .navbar-items ul li div.navbar-items-dropdown::before,
                        div.navbar .navbar-items ul li div.navbar-items-profile img {
                            margin-top: 0;
                            margin-left: 5%;
                        }

                        div.navbar .navbar-items ul li a p, div.navbar .navbar-items ul li div p {
                            margin: 0 10px;
                        }

                        div.navbar .navbar-items ul li div.navbar-items-dropdown-list {
                            position: relative;
                            height: auto;
                            width: -webkit-fill-available;
                            background: var(--ocs-form-background);
                            padding: 0;
                            flex-direction: column;
                            z-index: 1;
                            top: auto !important;
                        }

                            div.navbar .navbar-items ul li div.navbar-items-dropdown-list div {
                                /*width: 100vw;*/
                                padding-left: 0;
                            }

                                div.navbar .navbar-items ul li div.navbar-items-dropdown-list div img {
                                    width: auto !important;
                                    height: 30px !important;
                                    padding-left: 5%;
                                }

                    div.navbar .navbar-items ul li div.navbar-items-dropdown-popup {
                        top: -60px;
                        position: fixed;
                        width: 100% !important;
                        height: 100% !important;
                        z-index: 9999;
                        margin: 0 !important;
                    }

                        div.navbar .navbar-items ul li div.navbar-items-dropdown-popup.accountpopup {
                            right: 0;
                            width: 100%;
                        }

                        div.navbar .navbar-items ul li div.navbar-items-dropdown-popup .ocs-form-content {
                            margin-top: 80px;
                            margin-bottom: 20px;
                            justify-content: space-between;
                        }

                    div.navbar .navbar-items ul li div.navbar-items-profile img{
                        width: 25px;
                        height: 25px;
                    }

                    div.navbar .navbar-hamburger.collapse {
                        display: flex;
                    }


    div.menulist {
    }

        div.menulist ul {
            flex-direction: row;
        }

            div.menulist ul li {
                min-width: auto;
            }


            div.menulist ul li a {

            }

                div.menulist ul li a::before {
                    font-size: 35px;
                    margin: 0;
                }

                div.menulist ul li a p {
                    display: none;
                }


    div.qrreader {
        width: auto !important;
    }

    table th,
    table td {
        padding: 2px 5px;
    }

    div.cardinfo {
        flex-direction: column;
        align-items: center;
    }

        div.cardinfo .card-number {
            margin: 0 auto !important;
            font-size: 30px !important;
            font-weight: bold;
        }

        div.cardinfo .card-content p {
            align-items: flex-start;
            flex-direction: row;
            flex-wrap: wrap;
            margin-top: 5px;
        }
}

@import './common-root.css';

.modal {
    position: fixed;
    display: flex;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    opacity: 1;
    visibility: visible;
    -webkit-transition: visibility 0.3s, opacity 0.3s ease-in-out;
    -moz-transition: visibility 0.3s, opacity 0.3s ease-in-out;
    -ms-transition: visibility 0.3s, opacity 0.3s ease-in-out;
    -o-transition: visibility 0.3s, opacity 0.3s ease-in-out;
    transition: visibility 0.3s, opacity 0.3s ease-in-out;
    background: -webkit-linear-gradient(135deg, var(--fade-primary-color), var(--fade-secondary-color));
    background: -o-linear-gradient(135deg, var(--fade-primary-color), var(--fade-secondary-color));
    background: -moz-linear-gradient(135deg, var(--fade-primary-color), var(--fade-secondary-color));
    background: linear-gradient(135deg, var(--fade-primary-color), var(--fade-secondary-color));
}

    .modal.collapse {
        visibility: collapse;
        opacity: 0;
    }

    .modal .ocs-form {
        width: 75% !important;
        height: 80% !important;
        max-height: 80% !important;
    }

        .modal .ocs-form.miniform {
            min-width: 40% !important;
            max-width: 40% !important;
            height: auto !important;
        }

    .modal .popup {
        width: 65vw !important;
        background: var(--ocs-form-background);
        padding: 20px;
        border-radius: 25px;
    }

        .modal .popup.messagebox .content {
            text-align: center;
            margin: 20px;
            font-size: 18px;
        }

        .modal .popup.messagebox .buttongroup {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }



@media (max-width: 992px) {
    .modal {
        min-height: -webkit-fill-available !important;
    }

        .modal .ocs-form {
            width: 90% !important;
            height: 75vh !important;
            max-height: 75vh !important;
        }

            .modal .ocs-form.miniform {
                min-width: auto !important;
                max-width: 90% !important;
                height: auto !important;
            }
}

@import './common-root.css';

.ocs-form {
    width: 80%;
    height: 80vh;
    margin: 0 auto;
    text-align: center;
    background: var(--ocs-form-background);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

    .ocs-form.miniform {
        width: auto;
        min-width: 60%;
    }

    .ocs-form.fitform {
        height: auto !important;
        margin: 25px 0;
    }

    .ocs-form.menuform {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .ocs-form .ocs-form-menu {
        -webkit-border-radius: 20px 0 0 20px;
        -moz-border-radius: 20px 0 0 0;
        border-radius: 20px 0 0 20px;
        background-color: var(--menu-background);
    }

    .ocs-form .ocs-form-content {
        padding: 0 10px;
        width: 100%;
        overflow-y: auto;
        margin: 10px; /* 10px 10px 10px 0; */
        display: flex;
        flex-direction: column;
    }

        .ocs-form .ocs-form-content.rowtype {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
        }

        .ocs-form .ocs-form-content.columntype {
            display: flex;
            flex-direction: column;
        }

        .ocs-form .ocs-form-content.fixedcontent {
            overflow-y: unset;
            background: none;
        }

        .ocs-form .ocs-form-content .highlightcontent {
            width: 90%;
            border-radius: 25px;
            background: linear-gradient(135deg, var(--lowlight-primary-color), var(--highlight-primary-color)) !important;
        }

        .ocs-form .ocs-form-content.autoheightcontent {
            height: auto !important;
        }

        .ocs-form .ocs-form-content.fullcontent {
            height: 100%;
        }

        .ocs-form .ocs-form-content .stepprogress {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 30px;
            max-width: 50%;
            margin: 5px auto 5px;
        }

            .ocs-form .ocs-form-content .stepprogress .progressbar {
                background: linear-gradient(to right, var(--secondary-color) 50%, var(--light-secondary-color) 50%);
                position: absolute;
                top: 25%;
                width: 90%;
                left: 5%;
                transform: translateY(-50%);
                height: 10px;
                transition: 0.4s ease;
            }

                .ocs-form .ocs-form-content .stepprogress .progressbar.finished {
                    background: linear-gradient(to right, var(--secondary-color) 100%, var(--light-secondary-color) 0%);
                }

            .ocs-form .ocs-form-content .stepprogress .step {
                display: flex;
                flex-direction: column;
                align-items: center;
                z-index: 1;
            }

                .ocs-form .ocs-form-content .stepprogress .step p {
                    font-size: 12px;
                    margin: 5px;
                }

                .ocs-form .ocs-form-content .stepprogress .step .circle {
                    background-color: #fff;
                    color: var(--font-color);
                    border-radius: 50%;
                    height: 30px;
                    width: 30px;
                    margin: 0 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border: 3px solid var(--light-secondary-color);
                    transition: 0.4s ease;
                }

                    .ocs-form .ocs-form-content .stepprogress .step .circle.current {
                        border-color: var(--secondary-color);
                    }

                    .ocs-form .ocs-form-content .stepprogress .step .circle.done {
                        background: var(--primary-color);
                        border-color: var(--secondary-color);
                    }

        .ocs-form .ocs-form-content fieldset {
            display: grid !important;
            gap: 10px 2px;
            grid-template-columns: 15% 35% 15% 35%;
            width: 95%;
            margin: 20px auto;
            text-align: left;
            border-radius: 10px;
            padding: 20px;
            border: solid 0px;
            /*border-color: var(--highlight-border-color) !important;*/
        }

            .ocs-form .ocs-form-content fieldset.noborder {
                border: 0;
            }

            .ocs-form .ocs-form-content fieldset.filledbody {
                background: var(--table-background);
            }

            .ocs-form .ocs-form-content fieldset legend {
                font-size: 20px;
                padding: 10px;
                text-align: left;
            }

        .ocs-form .ocs-form-content section {
            display: grid;
            gap: 7px 15px;
            grid-template-columns: 15% 35% 15% 35%;
            width: 85%;
            align-content: center;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            text-align: left;
        }

            .ocs-form .ocs-form-content section section {
                width: 95% !important;
            }

            .ocs-form .ocs-form-content section.minisize {
                width: 60% !important;
            }

            .ocs-form .ocs-form-content section.duocolumn {
                grid-template-columns: 30% 70%;
            }

            .ocs-form .ocs-form-content section.column,
            .ocs-form .ocs-form-content fieldset.column {
                display: flex !important;
                flex-direction: column;
                align-items: center;
            }

            .ocs-form .ocs-form-content section .title,
            .ocs-form .ocs-form-content fieldset .title {
                font-size: 20px;
                text-align: left;
                grid-column: 1 / -1;
                width: initial;
            }

            .ocs-form .ocs-form-content section .subtitle,
            .ocs-form .ocs-form-content fieldset .subtitle {
                font-size: 18px;
                text-align: left;
                grid-column: 1 / -1;
                width: initial;
                width: 100%;
            }
            .ocs-form .ocs-form-content section .singlerow,
            .ocs-form .ocs-form-content fieldset .singlerow {
                grid-row: 1 / span 99;
            }

            /*Full row (all column)*/
            .ocs-form .ocs-form-content section .fullrow,
            .ocs-form .ocs-form-content fieldset .fullrow {
                grid-column: 1 / -1;
                width: initial;
                width: auto;
            }

            /*Fit row (start at column 2)*/
            .ocs-form .ocs-form-content section .fitrow,
            .ocs-form .ocs-form-content fieldset .fitrow {
                grid-column: 2 / -1;
                width: initial;
                width: 100%;
            }

            .ocs-form .ocs-form-content section .halfrow-mid,
            .ocs-form .ocs-form-content fieldset .halfrow-mid {
                grid-column: 2 / 4;
                width: initial;
                width: 100%;
            }

            .ocs-form .ocs-form-content section .halfrow-left,
            .ocs-form .ocs-form-content fieldset .halfrow-left {
                grid-column: 1 / 3;
                width: initial;
                width: 100%;
            }

            .ocs-form .ocs-form-content section .halfrow-right,
            .ocs-form .ocs-form-content fieldset .halfrow-right {
                grid-column: 3 / -1;
                width: initial;
                width: 100%;
            }

            .ocs-form .ocs-form-content section .columnstart1,
            .ocs-form .ocs-form-content fieldset .columnstart1 {
                grid-column-start: 1;
            }

            .ocs-form .ocs-form-content section .columnstart2,
            .ocs-form .ocs-form-content fieldset .columnstart2 {
                grid-column-start: 2;
            }

            .ocs-form .ocs-form-content section .columnstart3,
            .ocs-form .ocs-form-content fieldset .columnstart3 {
                grid-column-start: 3;
            }

            .ocs-form .ocs-form-content section .columnstart4,
            .ocs-form .ocs-form-content fieldset .columnstart4 {
                grid-column-start: 4;
            }

            .ocs-form .ocs-form-content section .center,
            .ocs-form .ocs-form-content fieldset .center {
                text-align: center;
                justify-items: center;
            }

            .ocs-form .ocs-form-content section .pagination {
                margin: 0 auto;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                width: 95%;
            }

                .ocs-form .ocs-form-content section .pagination div {
                    display: flex;
                    flex-direction: row;
                    margin: 5px;
                }

                    .ocs-form .ocs-form-content section .pagination div button {
                        font-size: 14px;
                    }

                .ocs-form .ocs-form-content section .pagination p {
                    display: flex;
                    margin: 0 auto;
                    justify-content: center;
                    align-content: center;
                }

                .ocs-form .ocs-form-content section .pagination ul {
                    padding: 0;
                    margin: 0 auto;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-content: center;
                    list-style-type: none
                }

                .ocs-form .ocs-form-content section .pagination li a {
                    margin: 5px;
                    position: relative;
                    font-family: 'Prompt';
                    font-size: 15px;
                    line-height: 1.5;
                    color: var(--button-color);
                    text-transform: uppercase;
                    width: 30px;
                    height: 30px;
                    border-radius: 100%;
                    background: var(--button-background);
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    -webkit-transition: all 0.7s;
                    -o-transition: all 0.7s;
                    -moz-transition: all 0.7s;
                    transition: all 0.7s;
                }

                    .ocs-form .ocs-form-content section .pagination li a:hover {
                        background: var(--button-hover-background);
                    }

                .ocs-form .ocs-form-content section .pagination .active {
                    background: var(--button-active-background);
                }

            .ocs-form .ocs-form-content section .password-strength {
            }

                .ocs-form .ocs-form-content section .password-strength li {
                    list-style: none;
                }

                .ocs-form .ocs-form-content section .password-strength .bi-check-circle-fill {
                    color: #02b502;
                }

                .ocs-form .ocs-form-content section .password-strength .bi-x-circle-fill {
                    color: #e90f10;
                }

                .ocs-form .ocs-form-content section .password-strength .password-strength-background {
                    margin: 0 10px;
                    background-color: #e6e6e6;
                    border-radius: 25px;
                }

                .ocs-form .ocs-form-content section .password-strength .password-strength-value {
                    width: 100%;
                    height: 8px;
                    border-radius: 25px;
                    transition: all 0.5s;
                }

                .ocs-form .ocs-form-content section .password-strength .password-strength-text {
                    width: 95%;
                    display: flex;
                    justify-content: space-between;
                    font-size: 10px;
                    color: #666666;
                    margin: auto auto 10px auto;
                }

                .ocs-form .ocs-form-content section .password-strength .danger {
                    width: 10%;
                    background-color: #e90f10;
                }

                .ocs-form .ocs-form-content section .password-strength .warning {
                    width: 60%;
                    background-color: #ffad00;
                }

                .ocs-form .ocs-form-content section .password-strength .success {
                    width: 100%;
                    background-color: #02b502;
                }

    .ocs-form .ocs-form-buttongroup {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

        .ocs-form .ocs-form-buttongroup .leftgroup {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-direction: row;
            width: 100%;
        }

        .ocs-form .ocs-form-buttongroup .rightgroup {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-direction: row;
            width: 100%;
        }

    .ocs-form .ocs-form-buttongroup .column {
        flex-direction: column;
    }

        .ocs-form .ocs-form-buttongroup button {
            margin: 10px;
        }

.error-form {
    display: flex;
    flex-direction: row;
    margin: auto 30px;
    justify-content: center;
    padding: 30px 0;
}

.ocs-form:has(> .error-form) {
    height: auto;
}

    .error-form img {
        width: 30%;
        margin: auto 20px;
    }

    .error-form .detail-box {
        display: flex;
        flex-direction: column;
        text-align: left;
        margin: auto 20px;
        overflow-wrap: anywhere;
    }


@media (max-width: 992px) {
    .ocs-form {
        width: 95% !important;
        margin: 20px auto !important;
    }

        .ocs-form.menuform {
            display: flex;
            flex-direction: column;
        }

        .ocs-form.fillform-mobile {
            height: auto !important;
        }

        .ocs-form .ocs-form-menu {
            -webkit-border-radius: 20px 20px 0 0;
            -moz-border-radius: 20px 20px 0 0;
            border-radius: 20px 20px 0 0;
        }

        .ocs-form .ocs-form-content.fixedcontent {
            height: auto !important;
        }

        .ocs-form .ocs-form-content {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            margin: 0;
        }

            .ocs-form .ocs-form-content .stepprogress {
                max-width: 100%;
                margin: 0 10% 10px !important;
            }

            .ocs-form .ocs-form-content fieldset {
                width: 95%;
                display: flex !important;
                flex-direction: column;
                align-content: flex-start;
                align-items: stretch;
            }

            .ocs-form .ocs-form-content section {
                width: 90%;
                display: flex;
                flex-direction: column;
                align-content: flex-start;
                align-items: stretch;
            }

                .ocs-form .ocs-form-content section .pagination {
                    flex-direction: column;
                }

                    .ocs-form .ocs-form-content section .pagination div {
                        display: flex;
                        flex-direction: row;
                        flex-wrap: wrap;
                    }

                        .ocs-form .ocs-form-content section .pagination div button {
                            margin: 5px;
                        }

    .error-form {
        flex-direction: column;
    }

        .error-form img {
            margin: 20px auto;
        }
}

@media (max-width: 600px) {
    .ocs-form .ocs-form-content .stepprogress .progressbar {
        width: 85%;
        left: 8%;
    }
}

