/* Vuetify grid & helper classes */

/* mt-[n] */
.mt-4 {
    margin-top: 24px !important;
}
.mt-5 {
    margin-top: 48px !important;
}

/* mb-[n] */
.mb-2 {
    margin-bottom: 8px !important;
}
.mb-3 {
    margin-bottom: 16px !important;
}
.mb-4 {
    margin-bottom: 24px !important;
}

/* mx-[n] */
.mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
}
.mx-3 {
    margin-left: 16px !important;
    margin-right: 16px !important;
}

/* my-[n] */
.my-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

/* pt-[n] */
.pt-5 {
    padding-top: 48px !important;
}

/* pb-[n] */
.pb-4 {
    padding-bottom: 24px !important;
}

/* px-[n] */
.px-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}
.px-5 {
    padding-left: 48px !important;
    padding-right: 48px !important;
}

/* text-xs-[left, center, right] */
.text-xs-left {
    text-align: left !important;
}
.text-xs-right {
    text-align: right !important;
}
.text-xs-center {
    text-align: center !important;
}

/* Layout */
.layout {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
}
.column {
    flex-direction: column;
}
.align-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.fill-height {
    height: 100%;
}

/* Grid */
.flex {
    flex-grow: 0;
}
.flex.xs12 {
    max-width: 100%;
    flex-basis: 100%;
}

@media (min-width: 600px) {
    .flex.sm6 {
        max-width: 50%;
        flex-basis: 50%;
    }
    .flex.sm8 {
        max-width: calc((100% / 12) * 8);
        flex-basis: calc((100% / 12) * 8);
    }
}

@media (min-width: 960px) {
    .flex.md5 {
        max-width: calc((100% / 12) * 5);
        flex-basis: calc((100% / 12) * 5);
    }
}

/* Common - CSS */
#info-msg {
    color: #fff;
    padding: 8px 32px;
}

#info-msg:empty {
    display: none;
}

#submit,
#copy-code {
    margin-top: 25px;
    border-radius: 0;
}

#send-code-btn {
    margin: 0;
}

.form-container {
    min-width: 0;
    display: flex;
    margin-top: 3%;
    flex: 1 1 auto;
    padding: 0 18px;
    flex-wrap: nowrap;
    flex-direction: column;
}

.f-card-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.01em;
}

.f-text-semibold {
    font-weight: 600;
}

.f-text-headline-2 {
    font-size: 24px;
    line-height: 32px;
}

.f-text-headline-3 {
    font-size: 18px;
    line-height: 28px;
}

.f-text-body-2 {
    font-size: 14px;
    line-height: 24px;
}

.f-text-body-3 {
    font-size: 13px;
    line-height: 20px;
}

.f-text-small-2 {
    font-size: 11px;
    line-height: 16px;
}

.f-error-info {
    color: rgba(24, 15, 51, 0.7);
}

.f-footer-text {
    color: rgba(24, 15, 51, 0.7);
}

.svg-icon {
    color: inherit;
    display: inline-block;
    vertical-align: middle;
}

.svg-fill {
    fill: currentColor;
    stroke: none;
}

/* Form IO CSS */
.formio-renderer {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.formio-renderer .table-responsive {
    overflow-x: visible;
}

.formio-renderer .form-control {
    outline: 0;
    height: 48px;
    border: none;
    font-size: 16px;
    line-height: 1.5em;
    border-radius: 0;
    padding: 9px 12px;
    box-shadow: none;
    color: #4C4E54;
    background-color: #F4F6F8;
}

.formio-renderer textarea.form-control {
    height: auto;
}

.formio-renderer .form-control::placeholder,
.formio-renderer .form-control:focus::placeholder {
    color: currentColor;
}

.formio-renderer .form-check.radio,
.formio-renderer .form-check.checkbox {
    position: relative;
}

.formio-renderer .form-check.radio input[type='radio'],
.formio-renderer .form-check.checkbox input[type='checkbox'] {
    opacity: 0;
}

.formio-renderer .form-check.radio .control-label:before {
    content: '';
    border-radius: 50%;
    border: 1px solid #1CA8DD;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 3px;
    left: 0;
}

.formio-renderer .formio-component-dsrselectboxes .form-check.checkbox .control-label:before {
    content: '';
    border-radius: 0;
    border: 1px solid currentColor;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 3px;
    left: 0;
}

.formio-renderer .form-check.radio.radio-selected .control-label:after {
    content: '';
    border-radius: 50%;
    background-color: #1CA8DD;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 6px;
    left: 3px;
}

.formio-renderer .formio-component-dsrselectboxes .form-check.checkbox.selectbox-checkbox-selected .control-label:after {
    content: '\e013';
    position: absolute;
    top: 0;
    left: 2px;
    font-size: 10px;
    color: #1CA8DD;
    font-family: 'Glyphicons Halflings', sans-serif;
}

.formio-renderer label {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5em;
    color: #4C4E54;
    margin-bottom: 8px;
}

.formio-renderer .control-label {
    white-space: normal;
    word-break: break-word;
}

.formio-renderer .choices[data-type*='select-one']:after {
    border-width: 7px;
    border-top-color: currentColor;
}

.formio-renderer .choices[data-type*='select-one'].is-open:after {
    border-top-color: transparent;
    border-bottom-color: currentColor;
}

.formio-renderer .form-control .choices__list {
    max-width: calc(100% - 20px);
    margin-top: 4px;
}

.formio-renderer .form-control .choices__list.choices__list--single .choices__item {
    overflow: hidden;
    white-space: nowrap;
    padding-right: 12px;
    text-overflow: ellipsis;
}

.formio-renderer .formio-component-submit {
    text-align: center;
}

.formio-renderer .btn-primary {
    border: none;
    letter-spacing: 0.08em;
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    width: 200px;
    height: 48px;
}

.formio-renderer .btn-primary.submit-fail,
.formio-renderer #submit.submit-fail  {
    background-color: #6A657B; /*override the style tag content in embed-form.html, when the form is invalid*/
}

.formio-renderer .table {
    table-layout: fixed;
    color: currentColor;
}

.formio-renderer .table td {
    border: none;
    padding-bottom: 0;
    padding-top: 0;
}

.formio-renderer .table td:first-child {
    padding-right: 12px;
}

.formio-renderer .table td + td {
    padding-left: 12px;
}

.formio-renderer .alert-danger {
    background: none;
    border: none;
    padding: 0;
    color: currentColor;
}

.formio-renderer > div > .alert:first-child:not(.formio-component-inline-request-type) {
    display: none;
}

.formio-component-rectification_details .table.datagrid-table {
    table-layout: auto;
}

.formio-component-rectification_details .table.datagrid-table th:last-child {
    width: 68px;
}

.formio-component-rectification_details .table.datagrid-table .formio-button-add-row {
    background-color: transparent;
    color: currentColor;
    padding: 0;
    width: auto;
}

.formio-component-rectification_details .table.datagrid-table .formio-remove-column {
    width: 48px;
}

.formio-component-rectification_details .table.datagrid-table .formio-remove-column .formio-button-remove-row {
    border: none;
    border-radius: 0;
    font-size: 16px;
    width: 48px;
    height: 48px;
    background-color: #D96758;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formio-component-rectification_details .table.datagrid-table .formio-remove-column .formio-button-remove-row .glyphicon {
    color: #fff;
}

.formio-component-rectification_details .table.datagrid-table .field-required {
    min-width: 200px;
    color: currentColor;
}

.formio-component-rectification_details .table.datagrid-table tbody label.field-required::after {
    content: none;
}

.formio-component-rectification_details .table.datagrid-table tbody tr:first-of-type td .formio-component,
.formio-component-rectification_details .table.datagrid-table tbody tr:first-of-type td .formio-button-remove-row {
    margin-top: 14px;
}

.formio-component-rectification_details .choices__list--dropdown {
    top: 0;
    bottom: auto;
    width: max-content;
}

.formio-component-rectification_details .choices__list--dropdown .choices__item {
    padding-right: 5px;
}

@media screen and (max-width: 959px) {
    .formio-component-rectification_details {
        overflow-x: auto;
    }
}

.input-group {
    width: 100%;
    display: flex;
}

.input-group > .form-control {
    flex-grow: 1;
    display: flex;
    line-height: 48px;
}

.flatpickr-mobile ~ .input-group-addon {
    display: none;
}

.input-group span.input-group-addon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    position: relative;
    background-color: #F4F6F8;
    border: none;
    display: none;
}

.formio-multiple-mask-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: stretch;
}

.formio-multiple-mask-container > .form-control {
    flex: 1 1 0%;
    min-width: 50%;
    margin-bottom: 0;
    position: relative;
}

.choices[data-type*='select-multiple']:after {
    content: '';
    width: 0;
    height: 0;
    border-width: 5px;
    margin-top: -2.5px;
    border-style: solid;
    pointer-events: none;
    border-color: #333 transparent transparent;
    position: absolute;
    top: 50%;
    right: 11.5px;
}
.choices[data-type*='select-multiple'] .choices__input {
    padding: 0;
    background-color: transparent;
}

.choices[data-type*='select-multiple'] .choices__list--multiple .choices__item {
    margin-bottom: 0;
    border-color: #6a657b;
    background-color: #6a657b;
}

.choices[data-type*='select-multiple'] .choices__button {
    border-left-color: #6a657b;
}

@media (min-width: 600px) {
    .input-group span.input-group-addon {
        display: flex;
    }
}

.input-group span.input-group-addon i.glyphicon {
    top: 24px;
    left: 50%;
    margin-left: 2px;
    position: absolute;
    color: rgba(0, 0, 0, 0.54);
    transform: translate(-50%, -50%);
}

.form-group.formio-component-select .formio-errors {
    margin-top: 0;
}

.invalid-feedback {
    width: 100%;
    font-size: 80%;
    margin-top: 0.25rem;
}

.has-error .help-block {
    color: #dc3545;
    white-space: normal;
}

.has-error .control-label {
    color: #4C4E54;
}

.has-error .form-control,
.has-error .form-control:focus {
    box-shadow: 0 0 0 1px #D96758, inset 0 0 0 1px #D96758;
}

.formio-component-submit .submit-fail:after {
    content: '';
}

td > .form-group {
    margin-bottom: 14px;
}

td .form-group {
    padding: 0;
}

/* 404 Page changes */
.f-auti-icon {
    width: 118px;
    height: 72px;
}

.info-container.not-found-page {
    width: 440px;
    display: block;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

/* PIN Display changes */
#pin-display {
    padding: 0 18px;
}

#pin-view {
    font-size: 32px;
    line-height: 40px;
    padding-top: 24px;
    padding-left: 42px;
    padding-bottom: 24px;
    letter-spacing: 1.5em;
    color: rgba(96, 101, 95, 0.6);
}

.info-container {
    padding: 24px;
    text-align: center;
    color: rgba(24, 15, 51, 0.7);
    font-family: sans-serif !important;
    background-color: rgba(146, 153, 144, 0.12);
}

.info-container a {
    font-size: 13px;
    line-height: 24px;
    text-decoration: underline;
    color: rgba(24, 15, 51, 0.7);
}

.v-card__text {
    width: 100%;
}

.f-card-title {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.01em;
}

@media (min-width: 600px) {
    .f-card-title {
        font-size: 26px;
        line-height: 32px;
    }

    .f-process-info {
        padding: 0 48px;
    }
}

/* form template --- 2 */
.formio-component-columns {
    margin-left: -10px;
    margin-right: -10px;
}
.formio-component-columns > .col {
    padding-right: 10px;
    padding-left: 10px;
}
.formio-component-attachment-label,
.formio-component-checkbox.form-check .form-check-label,
.formio-component-additional-custom-checkbox.form-check .form-check-label {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
}
.formio-component-user-type-drop-down .control-label {
    color: #4C4E54;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.5em;
    font-weight: normal;
}
.formio-component-user-type-drop-down .form-control {
    height: 27px;
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #4C4E54;
    background-color: transparent;
    box-shadow: 0 3px 0 0 #1CA8DD;
}
.formio-component-user-type-label {
    font-size: 16px;
    font-weight: 500;
    color: #4C4E54;
    line-height: 1.5em;
    padding: 14px 0;
}
.formio-component-request-subject,
.formio-component-request-details {
    position: relative;
}
.formio-component-request-subject .help-block,
.formio-component-request-details .help-block {
    margin: 0;
    color: #4C4E54;
    font-size: 12px;
    padding-top: 8px;
    line-height: 1.5em;
}
.formio-component-file .list-group-item {
    padding: 0.75rem 1rem;
}
.formio-component-checkbox.form-check,
.formio-component-additional-custom-checkbox.form-check {
    padding-left: 42px;
}
.formio-component-checkbox.form-check .form-check-input + span:before,
.formio-component-additional-custom-checkbox.form-check .form-check-input + span:before {
    content: '';
    left: -40px;
    width: 24px !important;
    height: 24px !important;
    box-shadow: inset 0 0 0 3px #a8ada6;
}
.formio-component-checkbox.form-check .help-block,
.formio-component-additional-custom-checkbox.form-check .help-block {
    font-size: 12px;
    line-height: 18px;
    color: #180f33;
}

/* .form-check */
.form-check .form-check-input + span {
    font-weight: normal;
}

.formio-component-inline-request-type .form-check,
.formio-component-checkbox.form-check,
.formio-component-additional-custom-checkbox.form-check {
    padding-left: 20px;
}
.formio-component-inline-request-type .form-check .form-check-input,
.formio-component-checkbox.form-check .form-check-input,
.formio-component-additional-custom-checkbox.form-check .form-check-input {
    opacity: 0;
    width: 0;
    height: 0;
}
.formio-component-inline-request-type .form-check .form-check-input + span,
.formio-component-checkbox.form-check .form-check-input + span,
.formio-component-additional-custom-checkbox.form-check .form-check-input + span {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    font-weight: 100;
}
.formio-component-inline-request-type .form-check .form-check-input + span:before,
.formio-component-checkbox.form-check .form-check-input + span:before,
.formio-component-additional-custom-checkbox.form-check .form-check-input + span:before {
    font-size: 16px;
    font-weight: 100;
    font-family: 'Material Icons', sans-serif;
    color: rgba(48, 77, 102, 0.75);
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0;
    left: -20px;
}
.formio-component-inline-request-type .form-check .form-check-input:checked + span:before,
.formio-component-checkbox.form-check .form-check-input:checked + span:before,
.formio-component-additional-custom-checkbox.form-check .form-check-input:checked + span:before {
    color: #1CA8DD;
}
.formio-component-additional-custom-checkbox.form-check .form-check-input:focus-visible + span:before {
    border-radius: 1px;
    outline: 2px solid #1CA8DD;
}
.formio-component-inline-request-type .checkbox.form-check .form-check-input + span:before,
.formio-component-checkbox .checkbox.form-check .form-check-input + span:before,
.formio-component-additional-custom-checkbox .checkbox.form-check .form-check-input + span:before {
    content: 'check_box_outline_blank';
}
.formio-component-inline-request-type .checkbox.form-check .form-check-input:checked + span:before,
.formio-component-checkbox .checkbox.form-check .form-check-input:checked + span:before,
.formio-component-additional-custom-checkbox .checkbox.form-check .form-check-input:checked + span:before {
    content: 'check_box';
}
/* .form-check */

/* .form-check-inline */
.formio-component-inline-request-type .form-check-inline.radio-inline,
.formio-component-checkbox.form-check-inline,
.formio-component-additional-custom-checkbox.form-check-inline {
    margin: 8px 0;
    padding: 10px 12px;
    background-color: rgba(146, 153, 144, 0.12);
    width: calc(50% - 8px);
    min-height: 60px;
    display: inline-flex;
    align-items: center;
}
.formio-component-inline-request-type .form-check-inline.radio-inline .form-check-input + span,
.formio-component-checkbox.form-check-inline .form-check-input + span,
.formio-component-additional-custom-checkbox.form-check-inline .form-check-input + span {
    color: #5d5a66;
    padding-left: 44px;
    letter-spacing: -0.01em;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
}
.formio-component-inline-request-type .form-check-inline.radio-inline .form-check-input + span:before,
.formio-component-checkbox.form-check-inline .form-check-input + span:before,
.formio-component-additional-custom-checkbox.form-check-inline .form-check-input + span:before {
    left: 0;
    content: '';
    border-radius: 50%;
    width: 32px !important;
    height: 32px !important;
    background-color: #fff;
}
.formio-component-inline-request-type .form-check-inline.radio-inline .form-check-input:checked + span:after,
.formio-component-checkbox.form-check-inline .form-check-input:checked + span:after,
.formio-component-additional-custom-checkbox.form-check-inline .form-check-input:checked + span:after {
    content: '';
    border-radius: 50%;
    background-color: #3174f5;
    width: 16px !important;
    height: 16px !important;
    position: absolute;
    top: 8px;
    left: 8px;
}
.formio-component-inline-request-type .form-check-inline.radio-inline .form-check-input:focus-visible + span:before {
    border-radius: 50%;
    outline: 2px solid #1CA8DD;
}
.formio-component-inline-request-type .form-check-inline.checkbox-inline {
    margin: 8px 0;
    padding: 10px 12px;
    background-color: rgba(146, 153, 144, 0.12);
    width: calc(50% - 8px);
    min-height: 60px;
    display: inline-flex;
    align-items: center;
}
.formio-component-inline-request-type .form-check-inline.checkbox-inline .form-check-input + span {
    color: #5d5a66;
    padding-left: 44px;
    letter-spacing: -0.01em;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
}
.formio-component-inline-request-type .form-check-inline.checkbox-inline .form-check-input + span:before {
    left: 0;
    top: 50%;
    content: '';
    margin-top: -14px;
    border-radius: 0;
    width: 28px !important;
    height: 28px !important;
    background-color: #fff;
}
.formio-component-inline-request-type .form-check-inline.checkbox-inline .form-check-input:checked + span:before {
    content: '';
    border-color: #1CA8DD;
    background-color: #1CA8DD;
}
.formio-component-inline-request-type .form-check-inline.checkbox-inline .form-check-input:checked + span:after {
    content: '';
    color: #ffffff;
    border-radius: 0;
    background-color: transparent;
    width: 20px;
    height: 10px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 4px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
}

.formio-component-inline-request-type .form-check-inline.checkbox-inline .form-check-input:focus-visible + span:before {
    border-radius: 1px;
    outline: 2px solid #1CA8DD;
}

/* .form-check-inline */

/* .formio-component-inline-request-type */
.formio-component-inline-request-type .control-label--hidden {
    top: 4px;
    right: -12px;
}
.formio-component-inline-request-type .form-group {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}
.formio-component-inline-request-type .form-group .form-check-inline.radio-inline {
    margin: 8px 0;
    padding: 10px 12px;
    background-color: rgba(146, 153, 144, 0.12);
    width: calc(50% - 8px);
    min-height: 60px;
}
.formio-component-inline-request-type .form-group .form-check-inline .form-check-label {
    margin-bottom: 0;
}
.formio-component-inline-request-type .form-group .form-check-inline.radio-inline .form-check-input + span {
    color: #4C4E54;
    padding-left: 44px;
    letter-spacing: -0.01em;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
}
.formio-component-inline-request-type .form-group .form-check-inline.radio-inline .form-check-input + span:before {
    left: 0;
    top: 50%;
    content: '';
    margin-top: -16px;
    border-radius: 50%;
    width: 32px !important;
    height: 32px !important;
    background-color: #fff;
}
.formio-component-inline-request-type .form-group .form-check-inline.radio-inline .form-check-input:checked + span:after {
    content: '';
    border-radius: 50%;
    background-color: #1CA8DD;
    width: 16px !important;
    height: 16px !important;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    left: 8px;
}

/* .formio-component-additional-custom-checkbox */
.formio-component-checkbox.form-check,
.formio-component-additional-custom-checkbox.form-check {
    padding-left: 42px;
}
.formio-component-checkbox.form-check .form-check-input + span:before,
.formio-component-additional-custom-checkbox.form-check .form-check-input + span:before {
    content: '';
    left: -40px;
    text-align: center;
    width: 24px !important;
    height: 24px !important;
    font-size: 18px;
    line-height: 24px;
    box-shadow: inset 0 0 0 3px #a8ada6;
    font-family: 'Glyphicons Halflings', sans-serif;
}
.formio-component-checkbox.form-check .form-check-input:checked + span:before{
    color: #fff;
    content: '\e013';
    box-shadow: none;
    background-color: #1CA8DD;
}
.formio-component-additional-custom-checkbox.form-check .form-check-input:checked + span:before {
    content: '';
    box-shadow: none;
    background-color: #1CA8DD;
}
.formio-component-additional-custom-checkbox.form-check .form-check-input:checked + span:after {
    content: '';
    border-radius: 0;
    border-left: 2px solid;
    border-bottom: 2px solid;
    width: 18px;
    height: 9px;
    color: #ffffff;
    background-color: transparent;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 5px;
    left: -37px;
}
.formio-component-checkbox.form-check .form-check-label,
.formio-component-additional-custom-checkbox.form-check .form-check-label {
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 0;
    padding-left: 0;
}
.formio-component-checkbox.form-check .form-check-label span,
.formio-component-additional-custom-checkbox.form-check .form-check-label span {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5em;
    color: #4C4E54;
}
.formio-component-checkbox.form-check .help-block,
.formio-component-additional-custom-checkbox.form-check .help-block {
    font-size: 12px;
    color: #4C4E54;
    margin-top: 4px;
    line-height: 1.5em;
}
.formio-component-additional-custom-checkbox.form-check .invalid-feedback .help-block,
.formio-component.formio-component-checkbox .formio-errors.invalid-feedback .help-block {
    color: #D96758;
}
/* .formio-component-additional-custom-checkbox */

/* translations block */
.translations {
    max-width: 1150px;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto 24px;
}

/* .list-group-striped */
.list-group-striped {
    margin-bottom: 0;
}

#change-language {
    width: 15%;
}

.f-label {
    width: 40%;
    text-align: left;
}

.f-color-dark-gray {
    background-color: #180F33;
}

.glyphicon-arrow-left {
    color: #337ab7;
}

/* hcaptcha styling */
.c-hcaptcha-badge {
    right: 72px;
    z-index: 50;
    bottom: 48px;
    display: flex;
    position: fixed;
    align-items: center;
    transform: translateX(100%);
    background-color: #00C6BF;
    transition: .3s cubic-bezier(.25,.8,.5,1);
    box-shadow: 0px 4px 4px rgb(211 211 211 / 35%);
}

.c-hcaptcha-badge:hover {
    right: 0;
    transform: translateX(0);
}
.c-hcaptcha-badge .hcaptcha-box {
    display: flex;
    padding: 8px 16px;
    background: #ffffff;
}
.c-hcaptcha-badge .hcaptcha-content {
    padding: 0 16px;
}
.c-hcaptcha-badge .hcaptcha-content__protected {
    display: flex;
    align-items: center;
}
.c-hcaptcha-badge .hcaptcha-content__protected span {
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
    margin-right: 4px;
    line-height: 14px;
    font-family: 'Arial', sans-serif;
}
.c-hcaptcha-badge .hcaptcha-content__privacy-terms {
    display: flex;
    font-size: 10px;
    margin-top: 4px;
    color: #ffffff;
    align-items: center;
    font-family: 'Arial', sans-serif;
}
.c-hcaptcha-badge .hcaptcha-content__privacy-terms span {
    margin: 0 4px;
}
.c-hcaptcha-badge .hcaptcha-content__privacy-terms a {
    font-size: 10px;
    font-weight: 400;
    color: #ffffff;
    line-height: 11px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

/* media queries */
@media screen and (max-width: 834px) {
    .formio-component-inline-request-type .form-group {
        flex-direction: column;
    }
    .formio-component-inline-request-type .form-group .form-check-inline.radio-inline,
    .formio-component-inline-request-type .form-group .form-check-inline.checkbox-inline {
        width: auto;
    }

    .col {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    #change-language {
        width: auto;
    }
}
@media screen and (min-width: 835px) and (max-width: 1024px) {
    .formio-component-inline-request-type .form-group .form-check-inline.radio-inline,
    .formio-component-inline-request-type .form-group .form-check-inline.checkbox-inline {
        width: calc(50% - 8px);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .formio-component-attachments .hidden-sm {
        display: block !important;
    }
    .formio-component-attachments .list-group-header .col-md-1,
    .formio-component-attachments .list-group-item .col-md-1 {
        width: 8.33333333%;
        float: left;
    }
    .formio-component-attachments .list-group-header .col-md-9,
    .formio-component-attachments .list-group-item .col-md-9 {
        width: 75%;
        float: left;
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media print {
    #print-confirmation {
        color: #4C4E54;
    }

    #print-confirmation #print-confirmation-btn {
        display: none;
    }
}

/* RTL */
.f-lang-ar {
    direction: rtl;
    text-align: right;
}

.f-lang-ar .f-dsr-form-header-b .f-content-wrapper {
    padding-right: 0;
    padding-left: 48px;
}

.f-lang-ar .f-dsr-form-header-b .f-request-header,
.f-lang-ar .f-dsr-form-header-b .f-request-sub-header {
    padding-left: 0;
    padding-right: 48px;
}

.f-lang-ar .formio-component-checkbox.form-check,
.f-lang-ar .formio-component-additional-custom-checkbox.form-check {
    padding-left: 0;
    padding-right: 42px;
}

.f-lang-ar .formio-component-checkbox.form-check .form-check-input+span:before,
.f-lang-ar .formio-component-additional-custom-checkbox.form-check .form-check-input+span:before {
    left: auto;
    right: -40px;
}

.f-lang-ar .formio-component-checkbox.form-check .form-check-input:checked+span:after,
.f-lang-ar .formio-component-additional-custom-checkbox.form-check .form-check-input:checked+span:after {
    left: auto;
    right: -37px;
}

.f-lang-ar .formio-component-inline-request-type .form-group .form-check-inline.radio-inline .form-check-input+span {
    padding-left: 0;
    padding-right: 44px;
}

.f-lang-ar .formio-component-inline-request-type .form-group .form-check-inline.radio-inline .form-check-input+span:before {
    right: 0;
    left: auto;
}

.f-lang-ar .formio-component-inline-request-type .form-group .form-check-inline.radio-inline .form-check-input+span:after {
    right: 8px;
    left: auto;
}

.f-lang-ar .formio-component-inline-request-type .form-group .form-check-inline.checkbox-inline .form-check-input+span {
    padding-left: 0;
    padding-right: 44px;
}

.f-lang-ar .formio-component-inline-request-type .form-group .form-check-inline.checkbox-inline .form-check-input+span:before {
    right: 0;
    left: auto;
}

.f-lang-ar .formio-component-inline-request-type .form-group .form-check-inline.checkbox-inline .form-check-input+span:after {
    right: 4px;
    left: auto;
}

@media screen and (min-width: 992px) {
    .f-lang-ar .f-logo-wrapper {
        text-align: left;
    }
}