:root {
    --blue-color-1: #064a5e;
    --blue-color-2: #5d848d;
    --blue-color-3: #042435;
    --lightgray-color-1: #d8d2cb;
    --lightgray-color-2: #eeeeee;
    --lightgray-color-3: #edeff1;
    --lightgray-color-4: #ddd;
    --red-color-1: #eb1625;
}

* {
    font-family: "Kanit", sans-serif;
}

body {
    background-color: var(--lightgray-color-3);
}

.my-container {
    max-width: 960px !important;
    margin: 0 auto;
}

/*######################## Typography start ##############################*/
h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 3.2rem;
}

.form-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 3.2rem;
    text-align: center;
    color: var(--blue-color-3);
}

.desc {
    font-size: 16px;
    text-align: center;
    color: var(--blue-color-3);
}
/*######################## Typography end ##############################*/

/*######################## Button start ##############################*/
.blue-btn,
.red-btn,
.prev-btn {
    width: 100%;
    height: 45px;
    padding: 0.5rem 1.5rem;
    color: white;
    background-color: var(--blue-color-1);
    border-radius: 20px;
    pointer-events: initial;
}

.blue-btn.disable {
    opacity: 0.5;
    pointer-events: none;
}

.blue-btn:hover {
    color: var(--blue-color-1);
    background-color: white;
    border: 2px solid var(--blue-color-1);
}

.prev-btn {
    color: white;
    background-color: var(--red-color-1);
    opacity: 0.3;
    pointer-events: none;
    user-select: none;
}

.req-btn {
    user-select: none;
    pointer-events: none;
    text-decoration: underline;
    opacity: 0.3;
}

.req-btn.active,
.prev-btn.active {
    opacity: 1;
    pointer-events: initial;
}

.req-btn:hover {
    color: var(--blue-color-2);
}

.red-btn {
    background-color: var(--red-color-1);
}

@media screen and (max-width: 360px) {
    .blue-btn,
    .prev-btn {
        font-size: 14px;
    }
}

/*######################## Button end ##############################*/

/*######################## Partial start ##############################*/
.input-field,
.textarea-field {
    width: 100%;
    height: 45px;
    border: 2px solid var(--blue-color-3);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 16px;
    color: var(--blue-color-3);
}
.input-field:focus,
.textarea-field:focus {
    outline: none;
    border-color: var(--blue-color-3);
}

.textarea-field {
    height: 100px;
    resize: none;
}

.datepicker-field {
    display: flex;
    align-items: center;
    height: 45px;
    padding: 2px 10px;
    border: 2px solid var(--blue-color-3);
    border-radius: 20px;
}

.datepicker-field .v-input__slot:before,
.datepicker-field .v-input__slot:after {
    display: none;
}

.datepicker-field .v-label.v-label--active {
    opacity: 0;
}

.select-field {
    border: 2px solid var(--blue-color-3);
    border-radius: 20px;
}

.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)
    > .v-input__control
    > .v-input__slot {
    height: 45px;
    box-shadow: none;
}

.v-text-field.v-text-field--solo .v-input__control {
    min-height: 45px;
}

.select-field-div {
    width: 100%;
    height: 45px;
    border: 2px solid var(--blue-color-3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.select-field-div::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.54);
    display: block;
    margin-right: 5px;
}

.select-field-div > select {
    width: 100%;
    height: 100%;
}

.select-field-div > select:focus {
    outline: none;
}

.error-message {
    display: none;
}

.error-message.active {
    display: block;
    color: var(--red-color-1);
    margin: 5px 0;
}

.qrcode-btn {
    height: 45px;
    padding: 0 10px;
    border-radius: 10px;
    border: 2px solid var(--blue-color-1);
}

.qrcode-btn i {
    font-size: 30px !important;
    color: var(--blue-color-1) !important;
}

.qrcode-btn:hover {
    background-color: var(--blue-color-1);
}

.qrcode-btn:hover i {
    color: white !important;
}

.error-otp {
    display: none;
    color: red;
    text-align: center;
    margin: 20px 0;
}

.error-otp.active {
    display: block;
}

.consent .v-input__slot {
    align-items: flex-start;
}

.consent a {
    color: var(--blue-color-1) !important;
}

.v-expansion-panel:before {
    box-shadow: none !important;
}

.v-application--is-ltr .v-expansion-panel-header {
    font-size: 18px;
    font-weight: 500;
    padding: 25px 20px;
}

.v-expansion-panel-header.v-expansion-panel-header--active {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
}

.v-expansion-panel-header.v-expansion-panel-header--active
    + .v-expansion-panel-content {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.theme--light.v-expansion-panels
    .v-expansion-panel-header
    .v-expansion-panel-header__icon
    .v-icon {
    color: var(--blue-color-2);
}

.export-csv {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--red-color-1);
    padding: 0 20px;
    border-radius: 20px;
    margin-right: 0;
    margin-left: auto;
}

.export-csv:hover {
    color: var(--red-color-1);
    background-color: white;
    border: 2px solid var(--red-color-1)
}

.success-bg {
    text-align: center;
    padding: 70px 20px;
    background-color: white;
}

.success-bg .success-icon {
    font-size: 100px;
    color: #4BB543;
    margin-bottom: 15px;
    transform: scale(0);
    opacity: 0;
    animation: scaleup 0.5s ease-in-out forwards;
}

.success-bg h5 {
    font-size: 24px;
    color: #333;
}

@keyframes scaleup {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*######################## Partial end ##############################*/
.header {
    height: 60px;
    margin: 10px 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.logo {
    height: 55px;
}

.stepper-container {
    min-height: calc(100vh - 80px);
    padding: 0;
}

.stepper-container .v-sheet.v-stepper {
    border-radius: 0;
    box-shadow: none;
}

.stepper-container .form-inner {
    height: calc(100vh - 172px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.v-application .stepper-container .primary--text {
    color: var(--blue-color-1) !important;
    caret-color: var(--blue-color-1) !important;
}

.errorMessageText {
    display: block;
    color: var(--red-color-1);
    margin: 10px 0;
}
