﻿/* --------------------------------------------------------
        Text Input Component
    -----------------------------------------------------------*/
.text-input.theme-default {
    width: 100%;
    background-color: #fff;
    border-radius: var(--radius-8);
    border: 1px solid var(--primary-light-5);
    box-shadow: none;
    color: #000;
    font-size: 13px;
    font-weight: 300;
    height: 3.125rem;
}

.text-input.theme-default:focus {
    box-shadow: none;
}

textarea.text-input.theme-default {
    min-height: 6.25rem;
}


/* --------------------------------------------------------
        Select2 Component
    -----------------------------------------------------------*/
.select2-container--default {
    width: 100% !important;
    text-align: right;
}

.select2-container--default .select2-selection {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.select2-container--default .select2-selection.select2-selection--single {
    height: 31px;
}

.select2-container--default .select2-selection.select2-selection--multiple {
    line-height: 5px;
}

.select2-container--default .select2-selection .select2-selection__rendered {
    direction: rtl;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    padding: 0 5px 0 0;
}

.select2-container--default .select2-selection--multiple .select2-search--inline {
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-right: 10px;
    list-style: none;
    line-height: 30px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered>li {
    float: right;
    margin-left: 7px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 15px;
    cursor: default;
    height: 24px;
    line-height: normal;
    margin-top: 3px;
    padding-left: 5px;
    padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice>span {
    margin-left: 5px;
}

.select2-container--default.select2-container--open .select2-selection {
    border-color: #6059ee;
}

.select2-container--default .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--default.select2-container--open .select2-dropdown--below {
    border-color: #6059ee;
}

.select2-container--default .select2-selection__placeholder {
    font-size: 13px;
    color: #999;
    font-weight: 300;
}

.select2-container--default .select2-search__field {
    font-size: 13px;
    font-weight: 300;
}

.select2-container--default .select2-selection__arrow {
    border-left: none !important;
    border-right: 1px solid #ccc;
    right: 1px !important;
    height: 30px !important;
    width: 28px !important;
    position: absolute;
    top: 1px;
    right: auto !important;
    left: 1px;
}

.select2-container--default .select2-selection__arrow b {
    border-color: #888 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default .select2-search--inline {
    float: right;
}

.select2-container--default .select2-search--inline .select2-search__field {
    direction: rtl;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    margin-top: 5px;
    width: 100% !important;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    direction: rtl;
}

/* --------------------------------------------------------
        Chosen Component
    -----------------------------------------------------------*/
.chosen-container.theme-default {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0;
    height: auto;
}

.chosen-container.theme-default .chosen-choices {
    background: none;
    box-shadow: none;
    border: none;
}

.chosen-container.theme-default.w-100 {
    width: 100% !important;
}

.chosen-container.theme-default .chosen-default,
.chosen-container.theme-default .chosen-single {
    background: none;
    padding: 0px 0 0 8px;
    border: none;
    line-height: 30px;
    box-shadow: none;
    height: 32px;
}

.chosen-container.theme-default .chosen-default div b,
.chosen-container.theme-default .chosen-single div b {
    background-position: 0 7px;
}

/* --------------------------------------------------------
        Radio Button && Checkbox Component
    -----------------------------------------------------------*/
.radio.theme-default,
.checkbox.theme-default {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.radio.theme-default.theme-inline,
.checkbox.theme-default.theme-inline {
    margin-bottom: 5px;
    display: inline-block;
}

.radio.theme-default label,
.checkbox.theme-default label {
    min-height: 18px;
    padding-right: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.radio.theme-default input[type="radio"],
.radio-inline input[type="radio"],
.checkbox.theme-default input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px;
}

.radio.theme-default+.radio,
.checkbox.theme-default+.checkbox.theme-default {
    margin-top: -5px;
}

.radio.theme-default input {
    width: 19px;
    height: 19px;
}

.radio.theme-default input:checked+.input-helper:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.radio.theme-default .input-helper:before {
    top: -1px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
}

.radio.theme-default .input-helper:after {
    width: 11px;
    height: 11px;
    background: #009688;
    border-radius: 50%;
    top: 3px;
    right: 4px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.checkbox.theme-default label,
.radio.theme-default label {
    padding-right: 25px;
    position: relative;
}

.checkbox.theme-default input,
.radio.theme-default input {
    top: 0;
    left: 0;
    margin-left: 0 !important;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 0;
}

.checkbox.theme-default .input-helper:before,
.radio.theme-default .input-helper:before,
.checkbox.theme-default .input-helper:after,
.radio.theme-default .input-helper:after {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    content: "";
}

.checkbox.theme-default .input-helper:before,
.radio.theme-default .input-helper:before {
    right: 0;
    border: 1px solid #ccc;
}

.checkbox.theme-default.disabled,
.radio.theme-default.disabled {
    opacity: .6;
    filter: alpha(opacity=60);
}

.checkbox.theme-default input {
    width: 17px;
    height: 17px;
}

.checkbox.theme-default input:checked+.input-helper:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.checkbox.theme-default input:checked+.input-helper:after {
    -webkit-transform: scale(1) rotate(-50deg);
    -ms-transform: scale(1) rotate(-50deg);
    -o-transform: scale(1) rotate(-50deg);
    transform: scale(1) rotate(-50deg);
    opacity: 1;
    filter: alpha(opacity=100);
}

.checkbox.theme-default .input-helper:before {
    top: 0;
    width: 17px;
    height: 17px;
}

.checkbox.theme-default .input-helper:after {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0) rotate(80deg);
    -ms-transform: scale(0) rotate(80deg);
    -o-transform: scale(0) rotate(80deg);
    transform: scale(0) rotate(80deg);
    width: 22px;
    height: 9px;
    border-bottom: 2px solid #009688;
    border-left: 2px solid #009688;
    border-bottom-left-radius: 2px;
    right: -1px;
    top: 1px;
}

/* --------------------------------------------------------
        Flex Slider
    -----------------------------------------------------------*/
.mbd-flex-slider.default {
    position: relative;
    direction: ltr;
}

.mbd-flex-slider.default .fx-slider {
    overflow: hidden;
    border: none;
    border-radius: 0;
    margin: 0 0 15px 0;
}

.mbd-flex-slider.default .fx-slider .fx-slider-wrapper {
    overflow: hidden;
}

.mbd-flex-slider.default .fx-slider .fx-slider-wrapper img {
    cursor: pointer;
    height: 100%;
}

.mbd-flex-slider.default .fx-carousel {
    border: none;
    border-radius: 0;
    margin: 0;
}

.mbd-flex-slider.default .fx-carousel .fx-carousel-wrapper {
    height: 60px;
    overflow: hidden;
}

.mbd-flex-slider.default .fx-carousel .fx-carousel-wrapper img {
    height: 100%;
}

.mbd-flex-slider.default .fx-carousel .flex-direction-nav li a {
    background: #e05333;
    height: 60px;
    margin-top: 0;
    top: 0px;
    width: 26px;
}

.mbd-flex-slider.default .fx-carousel .flex-prev,
.mbd-flex-slider.default .fx-carousel .flex-next {
    font-size: 0;
}

.mbd-flex-slider.default .fx-carousel .flex-direction-nav a:before {
    content: '\f2fa';
    font: normal normal normal 20px/1 'Material-Design-Iconic-Font';
    left: 12px;
    position: absolute;
    top: 18px;
    color: white;
}

.mbd-flex-slider.default .fx-carousel .flex-direction-nav a.flex-next:before {
    content: '\f2fb';
}

.mbd-flex-slider.default .fx-carousel .flex-direction-nav .flex-prev {
    left: 0;
}

.mbd-flex-slider.default .fx-carousel .flex-direction-nav .flex-next {
    right: 0;
}

/* --------------------------------------------------------
        Label Form Component
    -----------------------------------------------------------*/
.label-form.theme-default {
    margin-bottom: 0;
    padding-top: 5px;
    text-align: right;
    font-weight: 400;
    font-size: 13px;
}

/* --------------------------------------------------------
        Toggle Switch Component
    -----------------------------------------------------------*/
.toggle-switch.theme-default {
    display: inline-block;
    vertical-align: top;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle-switch.theme-default .ts-label {
    display: inline-block;
    margin: 0 20px 0 0;
    vertical-align: top;
    -webkit-transition: color 0.56s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.56s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-switch.theme-default .ts-helper {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.26);
    -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
    cursor: pointer;
}

.toggle-switch.theme-default .ts-helper:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -4px;
    width: 22px;
    height: 22px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    border-radius: 50%;
    webkit-transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-switch.theme-default:not(.disabled) .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}

.toggle-switch.theme-default input {
    position: absolute;
    z-index: 1;
    width: 46px;
    margin: 0 0 0 -4px;
    height: 24px;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}

.toggle-switch.theme-default input:checked+.ts-helper:before {
    left: 20px;
}

.toggle-switch.theme-default:not([data-ts-color]) input:not(:disabled):checked+.ts-helper {
    background: rgba(0, 150, 136, 0.5);
}

.toggle-switch.theme-default:not([data-ts-color]) input:not(:disabled):checked+.ts-helper:before {
    background: #009688;
}

.toggle-switch.theme-default:not([data-ts-color]) input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}

.toggle-switch.theme-default.disabled {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.toggle-switch.theme-default[data-ts-color="red"] input:not(:disabled):checked+.ts-helper {
    background: rgba(244, 67, 54, 0.5);
}

.toggle-switch.theme-default[data-ts-color="red"] input:not(:disabled):checked+.ts-helper:before {
    background: #f44336;
}

.toggle-switch.theme-default[data-ts-color="red"] input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(244, 67, 54, 0.2);
}

.toggle-switch.theme-default[data-ts-color="blue"] input:not(:disabled):checked+.ts-helper {
    background: rgba(33, 150, 243, 0.5);
}

.toggle-switch.theme-default[data-ts-color="blue"] input:not(:disabled):checked+.ts-helper:before {
    background: #2196f3;
}

.toggle-switch.theme-default[data-ts-color="blue"] input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(33, 150, 243, 0.2);
}

.toggle-switch.theme-default[data-ts-color="amber"] input:not(:disabled):checked+.ts-helper {
    background: rgba(255, 193, 7, 0.5);
}

.toggle-switch.theme-default[data-ts-color="amber"] input:not(:disabled):checked+.ts-helper:before {
    background: #ffc107;
}

.toggle-switch.theme-default[data-ts-color="amber"] input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(255, 193, 7, 0.2);
}

.toggle-switch.theme-default[data-ts-color="purple"] input:not(:disabled):checked+.ts-helper {
    background: rgba(156, 39, 176, 0.5);
}

.toggle-switch.theme-default[data-ts-color="purple"] input:not(:disabled):checked+.ts-helper:before {
    background: #9c27b0;
}

.toggle-switch.theme-default[data-ts-color="purple"] input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(156, 39, 176, 0.2);
}

.toggle-switch.theme-default[data-ts-color="pink"] input:not(:disabled):checked+.ts-helper {
    background: rgba(233, 30, 99, 0.5);
}

.toggle-switch.theme-default[data-ts-color="pink"] input:not(:disabled):checked+.ts-helper:before {
    background: #e91e63;
}

.toggle-switch.theme-default[data-ts-color="pink"] input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(233, 30, 99, 0.2);
}

.toggle-switch.theme-default[data-ts-color="lime"] input:not(:disabled):checked+.ts-helper {
    background: rgba(205, 220, 57, 0.5);
}

.toggle-switch.theme-default[data-ts-color="lime"] input:not(:disabled):checked+.ts-helper:before {
    background: #cddc39;
}

.toggle-switch.theme-default[data-ts-color="lime"] input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(205, 220, 57, 0.2);
}

.toggle-switch.theme-default[data-ts-color="cyan"] input:not(:disabled):checked+.ts-helper {
    background: rgba(0, 188, 212, 0.5);
}

.toggle-switch.theme-default[data-ts-color="cyan"] input:not(:disabled):checked+.ts-helper:before {
    background: #00bcd4;
}

.toggle-switch.theme-default[data-ts-color="cyan"] input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 188, 212, 0.2);
}

.toggle-switch.theme-default[data-ts-color="green"] input:not(:disabled):checked+.ts-helper {
    background: rgba(76, 175, 80, 0.5);
}

.toggle-switch.theme-default[data-ts-color="green"] input:not(:disabled):checked+.ts-helper:before {
    background: #4caf50;
}

.toggle-switch.theme-default[data-ts-color="green"] input:not(:disabled):checked+.ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(76, 175, 80, 0.2);
}

.toggle-switch.theme-topol {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 23px;
}

.toggle-switch.theme-topol input {
    display: none;
}

.toggle-switch.theme-topol .slider {
    border-radius: 34px;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #B4B4B4;
    -webkit-transition: .4s;
    transition: .4s;
}

.toggle-switch.theme-topol .slider:before {
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.toggle-switch.theme-topol input:checked+.slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

.toggle-switch.theme-topol .slider.round {
    border-radius: 34px;
}

.toggle-switch.theme-topol .slider.round:before {
    border-radius: 50%;
}

.toggle-switch.theme-topol input:checked+.slider {
    background-color: #2196f3;
}

.toggle-switch.theme-topol.yellow input:checked+.slider {
    background-color: #f5f403;
}

.toggle-switch.theme-topol.green input:checked+.slider {
    background-color: #41f503;
}

.toggle-switch.theme-topol.red input:checked+.slider {
    background-color: #ce4844;
}


.toggle-switch.theme-topol.small {
    height: 24px;
    width: 42px;
}

.toggle-switch.theme-topol.small .slider::before {
    bottom: 3px;
    height: 18px;
    left: 4px;
    width: 18px;
}

.toggle-switch.theme-topol.small input:checked+.slider::before {
    transform: translateX(16px);
}

/* --------------------------------------------------------
        Upload Photo(Image)
    -----------------------------------------------------------*/
.mbd-field-uploadphoto {
    margin-top: 5rem;

}
.mbd-field-uploadfile .box-upload,
.mbd-field-uploadphoto .box-upload {
    display: flex;
    flex-direction: column;
    box-shadow: var(--light-shadow-3);
    background-color: var(--bg-ff);
    border-radius: var(--radius-16);
    width: 30%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 2.57rem 0;
}

@media(max-width:690px) {

    .mbd-field-uploadphoto .box-upload,
    .mbd-submit-default .sd-fields.confirmed-btn {
        width: 100%;
    }


}

.mbd-field-uploadphoto .box-upload>input[type=file] {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.mbd-field-uploadphoto .box-upload>i {
    margin-bottom: 1rem;
    font-size: 50px;
    color: gray;
}

.mbd-field-uploadphoto .box-upload>i:before {

    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32" fill="none"><path d="M5.5 2C4.70435 2 3.94129 2.31607 3.37868 2.87868C2.81607 3.44129 2.5 4.20435 2.5 5V9C2.5 9.26522 2.39464 9.51957 2.20711 9.70711C2.01957 9.89464 1.76522 10 1.5 10C1.23478 10 0.98043 9.89464 0.792893 9.70711C0.605357 9.51957 0.5 9.26522 0.5 9V5C0.5 3.67392 1.02678 2.40215 1.96447 1.46447C2.90215 0.526784 4.17392 0 5.5 0H9.5C9.76522 0 10.0196 0.105357 10.2071 0.292893C10.3946 0.48043 10.5 0.734784 10.5 1C10.5 1.26522 10.3946 1.51957 10.2071 1.70711C10.0196 1.89464 9.76522 2 9.5 2H5.5ZM5.5 30C4.70435 30 3.94129 29.6839 3.37868 29.1213C2.81607 28.5587 2.5 27.7956 2.5 27V23C2.5 22.7348 2.39464 22.4804 2.20711 22.2929C2.01957 22.1054 1.76522 22 1.5 22C1.23478 22 0.98043 22.1054 0.792893 22.2929C0.605357 22.4804 0.5 22.7348 0.5 23V27C0.5 28.3261 1.02678 29.5979 1.96447 30.5355C2.90215 31.4732 4.17392 32 5.5 32H9.5C9.76522 32 10.0196 31.8946 10.2071 31.7071C10.3946 31.5196 10.5 31.2652 10.5 31C10.5 30.7348 10.3946 30.4804 10.2071 30.2929C10.0196 30.1054 9.76522 30 9.5 30H5.5ZM30.5 5C30.5 4.20435 30.1839 3.44129 29.6213 2.87868C29.0587 2.31607 28.2956 2 27.5 2H23.5C23.2348 2 22.9804 1.89464 22.7929 1.70711C22.6054 1.51957 22.5 1.26522 22.5 1C22.5 0.734784 22.6054 0.48043 22.7929 0.292893C22.9804 0.105357 23.2348 0 23.5 0H27.5C28.8261 0 30.0979 0.526784 31.0355 1.46447C31.9732 2.40215 32.5 3.67392 32.5 5V9C32.5 9.26522 32.3946 9.51957 32.2071 9.70711C32.0196 9.89464 31.7652 10 31.5 10C31.2348 10 30.9804 9.89464 30.7929 9.70711C30.6054 9.51957 30.5 9.26522 30.5 9V5ZM27.5 30C28.2956 30 29.0587 29.6839 29.6213 29.1213C30.1839 28.5587 30.5 27.7956 30.5 27V23C30.5 22.7348 30.6054 22.4804 30.7929 22.2929C30.9804 22.1054 31.2348 22 31.5 22C31.7652 22 32.0196 22.1054 32.2071 22.2929C32.3946 22.4804 32.5 22.7348 32.5 23V27C32.5 28.3261 31.9732 29.5979 31.0355 30.5355C30.0979 31.4732 28.8261 32 27.5 32H23.5C23.2348 32 22.9804 31.8946 22.7929 31.7071C22.6054 31.5196 22.5 31.2652 22.5 31C22.5 30.7348 22.6054 30.4804 22.7929 30.2929C22.9804 30.1054 23.2348 30 23.5 30H27.5ZM19 16.616C19 17.976 17.88 19.076 16.5 19.076C16.1743 19.0786 15.8513 19.0171 15.5494 18.8949C15.2475 18.7727 14.9726 18.5922 14.7405 18.3638C14.5083 18.1354 14.3235 17.8634 14.1964 17.5635C14.0694 17.2637 14.0026 16.9417 14 16.616C14 15.256 15.12 14.154 16.5 14.154C17.88 14.154 19 15.258 19 16.616ZM6.5 14.154V21.538C6.5 22.9 7.62 24 9 24H24C25.38 24 26.5 22.898 26.5 21.54V14.152C26.5 12.792 25.38 11.692 24 11.692H21.5L19.742 9.094C19.5115 8.75513 19.2013 8.47812 18.8386 8.28735C18.4759 8.09658 18.0718 7.9979 17.662 8H15.338C14.502 8 13.722 8.412 13.258 9.096L11.5 11.692H9C7.62 11.692 6.5 12.796 6.5 14.154ZM16.5 11.692C19.26 11.692 21.5 13.894 21.5 16.612C21.5 19.332 19.26 21.536 16.5 21.536C13.74 21.536 11.5 19.332 11.5 16.614C11.5 13.894 13.74 11.69 16.5 11.69" fill="%235989C1"/></svg>');
    width: 33px;
    height: 32px;
    display: inline-block;


}

.mbd-field-uploadphoto .box-upload>span {

    font-size: 15px;
    font-weight: 600;
    color: #aaa;
    width: 100%;
    text-align: center;
}

.mbd-field-uploadphoto .photo-error {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    width: 100%;
    line-height: 2;
    padding: 5px;
    height: 100%;
    background: rgba(52, 52, 52, 0.84);
}

.mbd-field-uploadphoto .box-image {
    background: url(images/photo.png) no-repeat center center;
    border: solid 1px #ccc;
    float: right;
    width: 150px;
    height: 120px;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.mbd-field-uploadphoto .box-image .is-main {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 125px;
    opacity: 0.2;
    color: green;
}

.mbd-field-uploadphoto .box-image .bu-actions {
    background-color: rgba(38, 35, 35, 0.13);
    color: #fff;
    width: 100%;
    position: absolute;
    text-align: right;
    right: 0;
    padding: 5px 10px;
    font-size: 17px;
    top: 0;
}

.mbd-field-uploadphoto .box-image .bu-actions>i {
    cursor: pointer;
}

.mbd-field-uploadphoto .box-image .bu-actions>i.btn-main {
    display: none;
}

.mbd-field-uploadphoto .box-image:hover .bu-actions>i.btn-main {
    display: block;
}

.mbd-field-uploadphoto .box-image>img {
    width: 100%;
    min-height: 100%;
    max-height: 130%;
}

.mbd-field-uploadphoto .box-image .bu-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #ffffff82;
    font-size: 11px;
}

.mbd-field-uploadphoto .box-image .bu-progress>span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

/* --------------------------------------------------------
        Nano scroller Component
    -----------------------------------------------------------*/
.nano>.nano-pane {
    left: 0;
    right: auto;
    width: 7px;
    z-index: 9;
}


/* --------------------------------------------------------
        File Upload Component
    -----------------------------------------------------------*/
.custom-file-upload {
    border: 1px solid #ccc;
    border-radius: 2px;
    height: 33px;
    position: relative;
    width: 100%;
}

.custom-file-upload::before {
    content: attr(file-text);
    font-size: 14px;
    height: 35px;
    line-height: 27px;
    overflow: hidden;
    padding: 5px 10px;
    position: absolute;
    left: 0;
    text-overflow: ellipsis;
    white-space: pre;
    width: calc(100% - 105px);
}

.custom-file-upload::after {
    background-color: #00bcd4;
    color: #fff;
    content: attr(text);
    font-size: 14px;
    height: 31px;
    right: 0;
    line-height: normal;
    padding: 5px 10px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100px;
}

.custom-file-upload>input[type="file"] {
    cursor: pointer;
    height: 30px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}

.custom-file-upload>.image-preview {
    height: 30px;
    width: 30px;
    float: right;
    margin-right: 102px;
    position: relative;
}

/* --------------------------------------------------------
        Image Upload Component
    -----------------------------------------------------------*/
.image-upload-wrapper {
    background-color: #ddd;
    border: 3px dashed #fff;
    border-radius: 4px;
    height: 100%;
    margin-bottom: 10px;
    max-height: 200px;
    max-width: 250px;
    min-height: 150px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.image-upload-wrapper.dragover {
    border-color: #6059ee;
}

.image-upload-wrapper>img {
    max-height: 125%;
    min-height: 100%;
    width: 100%;
}

.image-upload-wrapper>input[type="file"] {
    bottom: 3%;
    cursor: pointer;
    left: 3%;
    opacity: 0;
    position: absolute;
    width: 94%;
    z-index: 3;
}

.image-upload-wrapper>button {
    bottom: 3%;
    left: 3%;
    position: absolute;
    width: 94%;
    z-index: 2;
}


/* --------------------------------------------------------
        Angular Validation Component
    -----------------------------------------------------------*/
.ang-validation.theme-default {
    position: relative;
}

.ang-validation.theme-default::before {
    background-color: rgba(255, 0, 0, 0.66);
    border-radius: 50%;
    content: "";
    height: 15px;
    right: 25px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transition: all 0.3s ease-in-out 0s;
    width: 15px;
    z-index: 9;
    visibility: hidden;
}

.ang-validation.theme-default.error::before {
    visibility: visible;
    opacity: 1;
    animation: 600ms linear 0s normal none 2 running loading-bar-spinner;
}

.ang-validation.theme-default.error input,
.ang-validation.theme-default.error select,
.ang-validation.theme-default.error textarea,
.ang-validation.theme-default.error .select2-container .theme-default {
    border-color: rgba(255, 0, 0, 0.66);
}

@keyframes loading-bar-spinner {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    25% {
        opacity: 0.5;
        transform: scale(1.15);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

    75% {
        opacity: 0.5;
        transform: scale(1.15);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* --------------------------------------------------------
        Pre Loader Component
    -----------------------------------------------------------*/
.pre-loader.theme-default {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.pre-loader.theme-default .lines {
    display: block;
    position: absolute;
    left: 45%;
    top: 50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001;
}

.pre-loader.theme-default .lines:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

.pre-loader.theme-default .lines:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}


/* --------------------------------------------------------
        Multi Steps Component
    -----------------------------------------------------------*/
.steps.theme-default {
    background-color: #edeff0;
    border-radius: .25em;
    margin: 0;
}

.steps.theme-default::after {
    clear: both;
    content: "";
    display: table;
}

.steps.theme-default li {
    display: inline-block;
    float: left;
    margin: 0.5em 0;
}

.steps.theme-default li::after {
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: #959fa5;
}

.steps.theme-default li:last-of-type::after {
    display: none;
}

.steps.theme-default li>a {
    display: inline-block;
    font-size: 1.4rem;
    color: #2c3f4c;
}

.steps.theme-default li.active>a {
    color: #96c03d;
}

.steps.theme-default a:hover {
    color: #96c03d;
}

.step-content {
    position: relative;
    min-height: 200px;
}

@media only screen and (min-width: 768px) {
    .steps.theme-default {
        padding: 0 1.2em;
    }

    .steps.theme-default li {
        margin: 1.2em 0;
        width: 19.5%;
    }

    .steps.theme-default li::after {
        margin: 0 1em;
    }

    .steps.theme-default li>a {
        font-size: 1.6rem;
    }

    .steps.theme-default {
        background-color: transparent;
        padding: 0;
    }

    .steps.theme-default li {
        position: relative;
        padding: 0;
        margin: 0 4px 4px 0;
    }

    .steps.theme-default li:last-of-type {
        margin-right: 0;
    }

    .steps.theme-default li>a {
        background-color: #edeff0;
        border-color: #edeff0;
        color: #2c3f4c;
        font-family: roboto;
        font-size: 18px;
        font-weight: 500;
        position: relative;
        padding: 15px 0 15px 35px;
        outline: none;
        width: 100%;
    }

    .steps.theme-default li.active>a {
        color: #ffffff;
        cursor: default;
        background-color: #68c7d3;
        border-color: #68c7d3;
    }

    .steps.theme-default li:first-of-type>a {
        padding-left: 1.6em;
        border-radius: .25em 0 0 .25em;
    }

    .steps.theme-default li:last-of-type>a {
        border-radius: 0 .25em .25em 0;
    }

    .steps.theme-default li:not(.active)>a:hover {
        color: #ffffff;
        background-color: #2c3f4c;
        border-color: #2c3f4c;
    }

    .steps.theme-default li>a>i {
        font-size: 25px;
    }

    .steps.theme-default li>a>p {
        font-family: open sans;
        font-size: 12px;
        height: 35px;
        margin: 5px 0 0 5px;
        max-width: 100px;
        opacity: 0.9;
        overflow: hidden;
    }

    .steps.theme-default li::after,
    .steps.theme-default li>a::after {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        content: '';
        height: 0;
        width: 0;
        border: 29px solid transparent;
        border-right-width: 0;
        border-left-width: 30px;
    }

    .steps.theme-default li::after {
        z-index: 1;
        -webkit-transform: translateX(4px);
        -moz-transform: translateX(4px);
        -ms-transform: translateX(4px);
        -o-transform: translateX(4px);
        transform: translateX(4px);
        border-left-color: #ffffff;
        margin: 0;
    }

    .steps.theme-default li>a::after {
        z-index: 2;
        border-left-color: inherit;
    }

    .steps.theme-default li:last-of-type::after,
    .steps.theme-default li:last-of-type>a::after {
        display: none;
    }

    .steps.theme-default.custom-separator li::after {
        background-image: none;
    }

    .steps.theme-default li::after,
    .steps.theme-default li>a::after {
        border-top-width: 49px;
        border-bottom-width: 49px;
    }

    @-moz-document url-prefix() {

        .steps.theme-default li::after,
        .steps.theme-default li>a::after {
            border-left-style: dashed;
        }
    }
}

.wizard-steps.artin {
    margin: 0;
    position: relative;
    text-align: right;
}

.wizard-steps.artin>.wz-steps {
    background-color: #fff;
    margin-bottom: 10px;
    display: table;
    width: 100%;
}

.wizard-steps.artin>.wz-steps .wz-step {
    color: var(--text-color-3);
    cursor: pointer;
    display: table-cell;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-left: -0.5%;
    padding: 40px 25px 0;
    position: relative;
    text-align: center;
    transition: all 300ms ease-in-out 0s;
}

.wizard-steps.artin>.wz-steps .wz-step.active {
    color: var(--secondary-light-1);
}

.wizard-steps.artin>.wz-steps .wz-step.disable,
.wizard-steps.artin>.wz-steps .wz-step.disabled {
    cursor: not-allowed;
    opacity: .5;
}

.wizard-steps.artin>.wz-steps .wz-step::before,
.wizard-steps.artin>.wz-steps .wz-step::after {
    border-style: solid;
    border-image: repeating-linear-gradient(to right,
            var(--secondary-light-1) 0 15px,
            transparent 10px 30px) 1;
    border-width: 2px 0 0;
    content: "";
    position: absolute;
    top: 15px;
    transition: all 300ms ease-in-out 0s;
    z-index: 1;
}

.wizard-steps.artin>.wz-steps .wz-step::before {
    left: calc(50% + 20px);
    width: calc(50% - 20px);
}

.wizard-steps.artin>.wz-steps .wz-step::after {
    left: -10px;
    width: calc(50% - 10px);
}

.wizard-steps.artin>.wz-steps .wz-step:first-child::before,
.wizard-steps.artin>.wz-steps .wz-step:last-child::after {
    border-style: dashed;
    border-color: var(--secondary-light-1);

}

.wizard-steps.artin>.wz-steps .wz-step.active:after {
    border-style: dashed;
    border-color: var(--secondary-light-1);

}

.wizard-steps.artin>.wz-steps .wz-step.active~.wz-step,
.wizard-steps.artin>.wz-steps .wz-step.active~.wz-step:before,
.wizard-steps.artin>.wz-steps .wz-step.active~.wz-step:after {
    border-color: var(--secondary-light-1);
    border-style: dashed;

}

.wizard-steps.artin>.wz-steps .wz-step>span {

    display: inline-block;
    height: 26px;
    right: calc(50% - 13px);
    position: absolute;
    top: 0;
    width: 26px;
    transition: all 300ms ease-in-out 0s;
    z-index: 3;
}

.wizard-steps.artin>.wz-steps .wz-step>span::before {
    color: #fff;
    content: '\f26b';
    font-family: 'Material-Design-Iconic-Font';
    font-size: 15px;
    font-weight: 700;
    right: 4px;
    line-height: 1;
    position: absolute;
    top: 4px;
}

.wizard-steps.artin>.wz-steps .wz-step:first-child>span {
    background-color: var(--secondary-light-7);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius-4);

}

.wizard-steps.artin>.wz-steps .wz-step:first-child.active>span {
    background-color: var(--secondary-light-1);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius-4);

}

.wizard-steps.artin>.wz-steps .wz-step:first-child>span::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M4.928 3c-.511 0-1.002.203-1.363.565-.362.362-.565.852-.565 1.364v2.572c0 .171-.067.335-.188.455-.12.12-.285.188-.455.188-.17 0-.334-.068-.455-.188-.12-.12-.188-.284-.188-.455V4.929C1.714 4.076 2.053 3.259 2.655 2.656 3.258 2.053 4.076 1.714 4.928 1.714H7.5c.17 0 .334.068.455.188.12.12.188.285.188.456 0 .17-.068.334-.188.455-.12.12-.285.188-.455.188H4.928zm0 18c-.092 0-.182-.006-.27-.019l-.016-.002c-.457-.069-.874-.299-1.175-.65-.301-.35-.466-.797-.466-1.259v-2.572c0-.171-.067-.335-.188-.455-.12-.12-.285-.188-.455-.188-.17 0-.334.068-.455.188-.12.12-.188.284-.188.455v2.572c0 .853.338 1.452.78 1.895.442.442 1.042.69 1.667.69h10.714c.625 0 1.225-.248 1.667-.69.442-.443.78-1.042.78-1.895v-2.572c0-.171-.068-.335-.188-.455-.12-.12-.285-.188-.455-.188-.17 0-.334.068-.455.188-.12.12-.188.284-.188.455v2.572c0 .625-.48 1.105-1.072 1.105H6.642c-.59 0-1.07-.48-1.07-1.071v-.396zm14.143-16.07c0-.511-.203-1.002-.565-1.364-.362-.362-.852-.565-1.363-.565H16.5c-.17 0-.334.068-.455.188-.12.12-.188.285-.188.456 0 .17.068.334.188.455.12.12.285.188.455.188h2.571c.853 0 1.67.339 2.273.942.603.603.942 1.42.942 2.273v2.572c0 .171-.068.335-.188.455-.12.12-.285.188-.455.188-.17 0-.334-.068-.455-.188-.12-.12-.188-.284-.188-.455v-2.572zm-2.928 16.07c.083 0 .165-.005.246-.015l.008-.001c.463-.062.888-.29 1.196-.642.308-.352.478-.804.478-1.272v-2.572c0-.171.067-.335.188-.455.12-.12.284-.188.455-.188.17 0 .334.068.455.188.12.12.188.284.188.455v2.572c0 .853-.339 1.452-.781 1.895-.442.442-1.26.78-2.113.78h-2.571c-.17 0-.334-.067-.455-.188-.12-.12-.188-.285-.188-.455 0-.17.068-.334.188-.455.12-.12.285-.188.455-.188h2.572zM5.571 19.468c0 .234.038.459.114.675H4.928c-.226 0-.436-.07-.609-.19-.023-.16-.034-.322-.024-.484v-.396c0-.625.248-1.225.69-1.667.442-.442 1.042-.69 1.667-.69h10.715c.625 0 1.225.248 1.667.69.442.442.78 1.042.78 1.667v.396c0 .168-.012.33-.036.488-.172.117-.38.186-.604.186h-.773c.086-.22.13-.445.13-.675v-.396c0-.592-.48-1.071-1.072-1.071H6.642c-.591 0-1.071.48-1.071 1.071v.396zm9.857-9.61c0-.909-.361-1.781-1.005-2.424-.643-.642-1.516-1.004-2.425-1.004-.91 0-1.782.362-2.425 1.004-.643.643-1.005 1.515-1.005 2.424 0 .91.362 1.782 1.005 2.425.643.642 1.515 1.004 2.425 1.004.909 0 1.781-.362 2.424-1.004.643-.643 1.005-1.515 1.005-2.425zm1.285 0c0 1.25-.497 2.449-1.38 3.333-.883.884-2.083 1.381-3.333 1.381-1.25 0-2.449-.497-3.333-1.381-.884-.884-1.381-2.083-1.381-3.333 0-1.25.497-2.45 1.38-3.334.884-.883 2.083-1.38 3.333-1.38 1.25 0 2.45.497 3.334 1.38.883.884 1.38 2.083 1.38 3.334z" fill="%23004A8D"/></svg>');
    right: 20%;
    top: 20%;
    position: absolute;

}

.wizard-steps.artin>.wz-steps .wz-step:first-child.active>span::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M4.928 3c-.512 0-1.002.203-1.364.565A1.93 1.93 0 0 0 3 4.929v2.571a.643.643 0 0 1-1.286 0V4.929c0-.853.339-1.67.942-2.273C3.258 2.053 4.076 1.714 4.928 1.714h2.572a.643.643 0 0 1 0 1.286H4.928zM4.928 21a.931.931 0 0 1-.27-.019c-.458-.069-.875-.299-1.176-.65a1.93 1.93 0 0 1-.482-1.259v-2.571a.643.643 0 0 1 1.286 0v2.571c0 .853.339 1.67.942 2.273.603.603 1.42.942 2.273.942h2.571a.643.643 0 0 1 0 1.286H4.928zM21 4.929c0-.512-.203-1.002-.565-1.364A1.93 1.93 0 0 0 19.071 3h-2.571a.643.643 0 0 1 0-1.286h2.571c.853 0 1.67.339 2.273.942.603.603.942 1.42.942 2.273v2.571a.643.643 0 0 1-1.286 0V4.929zM19.071 21c.083 0 .165-.005.246-.015.463-.062.889-.29 1.197-.642.308-.352.478-.804.478-1.272v-2.571a.643.643 0 0 1 1.285 0v2.571c0 .853-.338 1.67-.781 2.273-.442.603-1.26.942-2.113.942h-2.571a.643.643 0 0 1 0-1.286h2.259zM5.571 19.468a3.43 3.43 0 0 0 .114.675H4.928a1.071 1.071 0 0 1-.609-.19 3.14 3.14 0 0 1-.034-.485v-.396c0-.625.248-1.225.69-1.667a2.357 2.357 0 0 1 1.667-.69h10.714c.625 0 1.225.248 1.667.69.442.442.781 1.042.781 1.667v.396c0 .168-.012.33-.036.488a1.071 1.071 0 0 1-.604.186h-.773c.086-.22.13-.445.13-.675v-.396c0-.592-.48-1.071-1.072-1.071H6.642a1.071 1.071 0 0 0-1.071 1.071v.396zM15.428 9.857c0-.91-.362-1.782-1.004-2.424-.643-.643-1.515-1.005-2.425-1.005s-1.782.362-2.424 1.005c-.643.642-1.005 1.514-1.005 2.424s.362 1.782 1.005 2.425c.642.643 1.514 1.005 2.424 1.005s1.782-.362 2.425-1.005c.642-.643 1.004-1.515 1.004-2.425zm1.286 0c0 1.25-.497 2.449-1.381 3.333-.883.884-2.083 1.381-3.333 1.381s-2.45-.497-3.334-1.381c-.883-.884-1.38-2.083-1.38-3.333s.497-2.45 1.38-3.334c.884-.883 2.083-1.38 3.334-1.38s2.45.497 3.333 1.38c.884.884 1.381 2.083 1.381 3.334z" fill="%23E7EEF7"/></svg>');
    position: absolute;
    top: 20%;
    right: 20%;
}


.wizard-steps.artin>.wz-steps .wz-step:nth-child(2)>span {
    background-color: var(--secondary-light-7);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius-4);

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(2).active>span {
    background-color: var(--secondary-light-1);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius-4);

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(2)>span::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none"><path d="M2.5 8V6C2.5 3.79086 4.29086 2 6.5 2H8.5M16.5 2H18.5C20.7091 2 22.5 3.79086 22.5 6V8M22.5 16V18C22.5 20.2091 20.7091 22 18.5 22H16.5M8.5 22H6.5C4.29086 22 2.5 20.2091 2.5 18V16.5556M12.5 17C15.5779 17 18.2498 14.5735 19.5877 13.1013C20.1638 12.4674 20.1638 11.5326 19.5877 10.8987C18.2498 9.42646 15.5779 7 12.5 7C9.4221 7 6.75017 9.42646 5.41227 10.8987C4.83619 11.5326 4.83619 12.4674 5.41227 13.1013C6.75017 14.5735 9.4221 17 12.5 17ZM14.5 12C14.5 13.1046 13.6046 14 12.5 14C11.3954 14 10.5 13.1046 10.5 12C10.5 10.8954 11.3954 10 12.5 10C13.6046 10 14.5 10.8954 14.5 12Z" stroke="%23004A8D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    right: 20%;
    top: 20%;
    position: absolute;

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(2).active>span::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none"><path d="M2.5 8V6C2.5 3.79086 4.29086 2 6.5 2H8.5M16.5 2H18.5C20.7091 2 22.5 3.79086 22.5 6V8M22.5 16V18C22.5 20.2091 20.7091 22 18.5 22H16.5M8.5 22H6.5C4.29086 22 2.5 20.2091 2.5 18V16.5556M12.5 17C15.5779 17 18.2498 14.5735 19.5877 13.1013C20.1638 12.4674 20.1638 11.5326 19.5877 10.8987C18.2498 9.42646 15.5779 7 12.5 7C9.4221 7 6.75017 9.42646 5.41227 10.8987C4.83619 11.5326 4.83619 12.4674 5.41227 13.1013C6.75017 14.5735 9.4221 17 12.5 17ZM14.5 12C14.5 13.1046 13.6046 14 12.5 14C11.3954 14 10.5 13.1046 10.5 12C10.5 10.8954 11.3954 10 12.5 10C13.6046 10 14.5 10.8954 14.5 12Z" stroke="%23E7EEF7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    position: absolute;
    top: 20%;
    right: 20%;
}


.wizard-steps.artin>.wz-steps .wz-step:nth-child(3)>span {
    background-color: var(--secondary-light-7);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius-4);

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(3).active>span {
    background-color: var(--secondary-light-1);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius-4);

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(3)>span::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M8.625 8.5H4.125C3.85978 8.5 3.60543 8.39464 3.41789 8.20711C3.23036 8.01957 3.125 7.76522 3.125 7.5V3C3.125 2.73478 3.23036 2.48043 3.41789 2.29289C3.60543 2.10536 3.85978 2 4.125 2C4.39022 2 4.64457 2.10536 4.83211 2.29289C5.01964 2.48043 5.125 2.73478 5.125 3V6.5H8.625C8.89022 6.5 9.14457 6.60536 9.33211 6.79289C9.51964 6.98043 9.625 7.23478 9.625 7.5C9.625 7.76522 9.51964 8.01957 9.33211 8.20711C9.14457 8.39464 8.89022 8.5 8.625 8.5Z" fill="%230056A3"/><path d="M21.0004 13.0001C20.7352 13.0001 20.4808 12.8947 20.2933 12.7072C20.1057 12.5197 20.0004 12.2653 20.0004 12.0001C20.0012 10.2396 19.4208 8.52815 18.3495 7.13121C17.2781 5.73427 15.7757 4.72999 14.0752 4.27423C12.3748 3.81846 10.5715 3.93668 8.94507 4.61055C7.31869 5.28442 5.96019 6.47625 5.08039 8.0011C4.94752 8.23065 4.7289 8.39801 4.47263 8.46636C4.21636 8.53472 3.94344 8.49848 3.71389 8.3656C3.48435 8.23273 3.31699 8.01411 3.24863 7.75784C3.18027 7.50157 3.21652 7.22865 3.34939 6.9991C4.44965 5.09334 6.14808 3.60395 8.1812 2.76199C10.2143 1.92003 12.4685 1.77257 14.594 2.34249C16.7195 2.91241 18.5974 4.16784 19.9366 5.91403C21.2757 7.66022 22.0012 9.79954 22.0004 12.0001C22.0004 12.2653 21.895 12.5197 21.7075 12.7072C21.52 12.8947 21.2656 13.0001 21.0004 13.0001ZM19.8754 22.0001C19.6102 22.0001 19.3558 21.8947 19.1683 21.7072C18.9807 21.5197 18.8754 21.2653 18.8754 21.0001V17.5001H15.3754C15.1102 17.5001 14.8558 17.3947 14.6683 17.2072C14.4807 17.0197 14.3754 16.7653 14.3754 16.5001C14.3754 16.2349 14.4807 15.9805 14.6683 15.793C14.8558 15.6055 15.1102 15.5001 15.3754 15.5001H19.8754C20.1406 15.5001 20.395 15.6055 20.5825 15.793C20.77 15.9805 20.8754 16.2349 20.8754 16.5001V21.0001C20.8754 21.2653 20.77 21.5197 20.5825 21.7072C20.395 21.8947 20.1406 22.0001 19.8754 22.0001Z" fill="%230056A3"/><path d="M12 22C9.34865 21.9974 6.80665 20.9429 4.93186 19.0681C3.05707 17.1934 2.00265 14.6514 2 12C2 11.7348 2.10536 11.4804 2.29289 11.2929C2.48043 11.1054 2.73478 11 3 11C3.26522 11 3.51957 11.1054 3.70711 11.2929C3.89464 11.4804 4 11.7348 4 12C3.99924 13.7605 4.57956 15.472 5.65091 16.8689C6.72225 18.2658 8.22472 19.2701 9.92516 19.7259C11.6256 20.1816 13.4289 20.0634 15.0553 19.3896C16.6817 18.7157 18.0402 17.5239 18.92 15.999C18.9858 15.8853 19.0733 15.7858 19.1776 15.7059C19.2819 15.6261 19.4009 15.5676 19.5278 15.5337C19.6547 15.4999 19.787 15.4914 19.9172 15.5087C20.0473 15.5259 20.1728 15.5687 20.2865 15.6345C20.4002 15.7003 20.4997 15.7878 20.5796 15.8921C20.6594 15.9964 20.7179 16.1154 20.7518 16.2423C20.7856 16.3692 20.7941 16.5015 20.7768 16.6317C20.7596 16.7618 20.7168 16.8873 20.651 17.001C19.7717 18.5176 18.5102 19.7773 16.9923 20.6544C15.4744 21.5315 13.7531 21.9955 12 22Z" fill="%230056A3"/></svg>');
    right: 20%;
    top: 20%;
    position: absolute;

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(3).active>span::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M8.625 8.5H4.125C3.85978 8.5 3.60543 8.39464 3.41789 8.20711C3.23036 8.01957 3.125 7.76522 3.125 7.5V3C3.125 2.73478 3.23036 2.48043 3.41789 2.29289C3.60543 2.10536 3.85978 2 4.125 2C4.39022 2 4.64457 2.10536 4.83211 2.29289C5.01964 2.48043 5.125 2.73478 5.125 3V6.5H8.625C8.89022 6.5 9.14457 6.60536 9.33211 6.79289C9.51964 6.98043 9.625 7.23478 9.625 7.5C9.625 7.76522 9.51964 8.01957 9.33211 8.20711C9.14457 8.39464 8.89022 8.5 8.625 8.5Z" fill="%23E7EEF7"/><path d="M21.0004 13.0001C20.7352 13.0001 20.4808 12.8947 20.2933 12.7072C20.1057 12.5197 20.0004 12.2653 20.0004 12.0001C20.0012 10.2396 19.4208 8.52815 18.3495 7.13121C17.2781 5.73427 15.7757 4.72999 14.0752 4.27423C12.3748 3.81846 10.5715 3.93668 8.94507 4.61055C7.31869 5.28442 5.96019 6.47625 5.08039 8.0011C4.94752 8.23065 4.7289 8.39801 4.47263 8.46636C4.21636 8.53472 3.94344 8.49848 3.71389 8.3656C3.48435 8.23273 3.31699 8.01411 3.24863 7.75784C3.18027 7.50157 3.21652 7.22865 3.34939 6.9991C4.44965 5.09334 6.14808 3.60395 8.1812 2.76199C10.2143 1.92003 12.4685 1.77257 14.594 2.34249C16.7195 2.91241 18.5974 4.16784 19.9366 5.91403C21.2757 7.66022 22.0012 9.79954 22.0004 12.0001C22.0004 12.2653 21.895 12.5197 21.7075 12.7072C21.52 12.8947 21.2656 13.0001 21.0004 13.0001ZM19.8754 22.0001C19.6102 22.0001 19.3558 21.8947 19.1683 21.7072C18.9807 21.5197 18.8754 21.2653 18.8754 21.0001V17.5001H15.3754C15.1102 17.5001 14.8558 17.3947 14.6683 17.2072C14.4807 17.0197 14.3754 16.7653 14.3754 16.5001C14.3754 16.2349 14.4807 15.9805 14.6683 15.793C14.8558 15.6055 15.1102 15.5001 15.3754 15.5001H19.8754C20.1406 15.5001 20.395 15.6055 20.5825 15.793C20.77 15.9805 20.8754 16.2349 20.8754 16.5001V21.0001C20.8754 21.2653 20.77 21.5197 20.5825 21.7072C20.395 21.8947 20.1406 22.0001 19.8754 22.0001Z" fill="%23E7EEF7"/><path d="M12 22C9.34865 21.9974 6.80665 20.9429 4.93186 19.0681C3.05707 17.1934 2.00265 14.6514 2 12C2 11.7348 2.10536 11.4804 2.29289 11.2929C2.48043 11.1054 2.73478 11 3 11C3.26522 11 3.51957 11.1054 3.70711 11.2929C3.89464 11.4804 4 11.7348 4 12C3.99924 13.7605 4.57956 15.472 5.65091 16.8689C6.72225 18.2658 8.22472 19.2701 9.92516 19.7259C11.6256 20.1816 13.4289 20.0634 15.0553 19.3896C16.6817 18.7157 18.0402 17.5239 18.92 15.999C18.9858 15.8853 19.0733 15.7858 19.1776 15.7059C19.2819 15.6261 19.4009 15.5676 19.5278 15.5337C19.6547 15.4999 19.787 15.4914 19.9172 15.5087C20.0473 15.5259 20.1728 15.5687 20.2865 15.6345C20.4002 15.7003 20.4997 15.7878 20.5796 15.8921C20.6594 15.9964 20.7179 16.1154 20.7518 16.2423C20.7856 16.3692 20.7941 16.5015 20.7768 16.6317C20.7596 16.7618 20.7168 16.8873 20.651 17.001C19.7717 18.5176 18.5102 19.7773 16.9923 20.6544C15.4744 21.5315 13.7531 21.9955 12 22Z" fill="%23E7EEF7"/></svg>');
    position: absolute;
    top: 20%;
    right: 20%;
}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(4)>span {
    background-color: var(--secondary-light-7);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius-4);

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(4).active>span {
    background-color: var(--secondary-light-1);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius-4);

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(4)>span::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none"><path d="M3.5 18L3.5 6C3.5 3.79086 5.29086 2 7.5 2L12.8431 2C13.904 2 14.9214 2.42143 15.6716 3.17157L20.3284 7.82843C21.0786 8.57857 21.5 9.59599 21.5 10.6569L21.5 18C21.5 20.2091 19.7091 22 17.5 22L7.5 22C5.29086 22 3.5 20.2091 3.5 18Z" stroke="%230056A3" stroke-width="1.5" stroke-linejoin="round"/><path d="M14.5 2L14.5 5C14.5 7.20914 16.2909 9 18.5 9L21.5 9" stroke="%230056A3" stroke-width="1.5" stroke-linejoin="round"/><path d="M9.5 14L11.2528 15.4023C11.6707 15.7366 12.2777 15.6826 12.6301 15.2799L15.5 12" stroke="%230056A3" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    right: 20%;
    top: 20%;
    position: absolute;

}

.wizard-steps.artin>.wz-steps .wz-step:nth-child(4).active>span::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none"><path d="M3.5 18L3.5 6C3.5 3.79086 5.29086 2 7.5 2L12.8431 2C13.904 2 14.9214 2.42143 15.6716 3.17157L20.3284 7.82843C21.0786 8.57857 21.5 9.59599 21.5 10.6569L21.5 18C21.5 20.2091 19.7091 22 17.5 22L7.5 22C5.29086 22 3.5 20.2091 3.5 18Z" stroke="%23E7EEF7" stroke-width="1.5" stroke-linejoin="round"/><path d="M14.5 2L14.5 5C14.5 7.20914 16.2909 9 18.5 9L21.5 9" stroke="%23E7EEF7" stroke-width="1.5" stroke-linejoin="round"/><path d="M9.5 14L11.2528 15.4023C11.6707 15.7366 12.2777 15.6826 12.6301 15.2799L15.5 12" stroke="%23E7EEF7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    position: absolute;
    top: 20%;
    right: 20%;
}



.wizard-steps.artin>.step-content {
    padding-top: 30px;
    min-height: 250px;
}


/* --------------------------------------------------------
        Form Section Component
    -----------------------------------------------------------*/
.form-section.theme-default {
    position: relative;
}

.form-section.theme-default>.header {
    background: none;
    line-height: 1.3;
    min-height: unset;
    box-shadow: 0 -2px 0 0 #eeeeee inset;
    margin: 10px 0;
    position: relative;
}

.form-section.theme-default>.header::after {
    content: '\f2fc';
    display: inline-block;
    font-family: "Material-Design-Iconic-Font";
    font-size: 26px;
    position: absolute;
    left: 0px;
    top: 0;
    transition: transform 0.4s ease 0s;
}

.form-section.theme-default>.header>h3 {
    border-bottom: 2px solid #00bcd4;
    display: inline-block;
    font-size: 20px;
    margin: 0;
    padding: 0 0 10px;
}

.form-section.theme-default>input[type="checkbox"] {
    cursor: pointer;
    height: 30px;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
    opacity: 0;
}

.form-section.theme-default>input[type="checkbox"]:checked+.header::after {
    transform: rotate(-180deg);
}

.form-section.theme-default>input[type="checkbox"]:checked+.header+fieldset {
    max-height: 0;
    opacity: 0;
    transform: scaleY(0);
}

.form-section.theme-default>fieldset {
    padding-top: 20px;
    opacity: 1;
    transform-origin: center top 0;
    transition: max-height 0.26s ease 0s, opacity 0.5s ease 0s, transform 0.6s ease 0s, background-color 0.26s ease;
    max-height: 5000px;
}

.form-section.theme-default.no-max-height>fieldset {
    max-height: unset;
}

.form-section.theme-default>input[type="checkbox"]:hover+.header>h3 {
    border-bottom-color: #2196f3;
}

.form-section.theme-default>input[type="checkbox"]:hover+.header+fieldset {
    background-color: #fbfbfb;
}

.form-section.theme-default.small>.header>h3 {
    font-size: 17px;
}

.form-section.theme-default.small>.header {
    margin-bottom: 10px;
}

.form-section.theme-default.small>.header::after {
    font-size: 24px;
}

.form-section.theme-default.small>fieldset {
    padding-top: 10px;
}

/* --------------------------------------------------------
        Ajaxbar Component
    -----------------------------------------------------------*/
.ajax-bar {
    color: #bbb;
    display: none;
    margin-left: 50px;
    padding-left: 25px;
    position: relative;
}

.ajax-bar:before {
    animation: 4000ms linear 0s normal none infinite running spin;
    border: 3px dotted #00bcd4;
    border-radius: 50%;
    content: "";
    height: 25px;
    left: 0;
    position: absolute;
    top: 0;
    width: 25px;
}

.ajax-bar.error {
    background: none;
}

.ajax-bar.error .animate,
.ajax-bar.error .content-bold {
    display: none;
}

.ajax-bar.show {
    display: inline-block !important;
}

.ajax-bar .animate {
    content: "";
    height: 30px;
    position: absolute;
    left: 22px;
    top: -5px;
    transition: all 0.5s ease-in-out 0s;
    width: 80px;
    background: #ffffff;
    /* Old browsers */
    background: -webkit-linear-gradient(left, #ffffff 0%, #fbfbfb 30%, #f8f8f8 47%, #fbfbfb 65%, #ffffff 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ffffff 0%, rgba(254, 254, 254) 30%, rgba(253, 253, 253) 47%, rgba(254, 254, 254) 65%, #ffffff 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
    -webkit-animation: ajax-bar 4s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: ajax-bar 4s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

.ajax-bar .content {
    font-size: 14px;
    font-weight: 100;
    display: inline-block;
    padding: 0 5px;
    position: relative;
    white-space: pre;
    z-index: 2;
}

.ajax-bar .content.content-bold {
    color: #333;
    font-weight: 300;
    height: 22px;
    overflow: hidden;
    position: absolute;
    top: 3px;
    left: 25px;
    white-space: pre;
    width: 0%;
    -webkit-animation: ajax-bar-content 4s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: ajax-bar-content 4s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

.ajax-bar .ajax-error {
    display: none;
}

.ajax-bar.error .ajax-error {
    background: red none repeat scroll 0 0;
    border-radius: 15px;
    color: #fff;
    cursor: default;
    display: inline-block;
    font-size: 11px;
    line-height: 12px;
    padding: 3px;
    width: 52px;
    transition: box-shadow 0.3s linear 0s;
}

.ajax-bar.error.shadow .ajax-error {
    animation: .5s linear 0s normal none 1 running ajax-bar-error;
}

.ajax-bar.theme-blue {
    color: #ddd;
}

.ajax-bar.theme-blue:before {
    border-color: #eee;
}

.ajax-bar.theme-blue .content.content-bold {
    color: #eee;
}

.ajax-bar.theme-blue .animate {
    background: #2293ee;
    /* Old browsers */
    background: -webkit-linear-gradient(left, #2293ee 0%, #1582da 30%, #0074d2 47%, #1582da 65%, #2b99f2 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #2293ee 0%, #1582da 30%, #0074d2 47%, #1582da 65%, #2b99f2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

@-webkit-keyframes ajax-bar {
    0% {
        left: 25px;
    }

    25% {
        left: 32.5%;
    }

    50% {
        left: 65%;
    }

    75% {
        left: 32.5%;
    }

    100% {
        left: 25px;
    }
}

@keyframes ajax-bar {
    0% {
        left: 25px;
    }

    25% {
        left: 32.5%;
    }

    50% {
        left: 65%;
    }

    75% {
        left: 32.5%;
    }

    100% {
        left: 25px;
    }
}

@-webkit-keyframes ajax-bar-content {
    0% {
        width: 0%;
    }

    5% {
        width: 10%;
    }

    10% {
        width: 20%;
    }

    15% {
        width: 30%;
    }

    20% {
        width: 40%;
    }

    25% {
        width: 50%;
    }

    30% {
        width: 60%;
    }

    35% {
        width: 70%;
    }

    40% {
        width: 80%;
    }

    45% {
        width: 90%;
    }

    50% {
        width: 100%;
    }

    55% {
        width: 90%;
    }

    60% {
        width: 80%;
    }

    65% {
        width: 70%;
    }

    70% {
        width: 60%;
    }

    75% {
        width: 50%;
    }

    80% {
        width: 40%;
    }

    85% {
        width: 30%;
    }

    90% {
        width: 20%;
    }

    95% {
        width: 10%;
    }

    100% {
        width: 0%;
    }
}

@keyframes ajax-bar-content {
    0% {
        width: 0%;
    }

    5% {
        width: 10%;
    }

    10% {
        width: 20%;
    }

    15% {
        width: 30%;
    }

    20% {
        width: 40%;
    }

    25% {
        width: 50%;
    }

    30% {
        width: 60%;
    }

    35% {
        width: 70%;
    }

    40% {
        width: 80%;
    }

    45% {
        width: 90%;
    }

    50% {
        width: 100%;
    }

    55% {
        width: 90%;
    }

    60% {
        width: 80%;
    }

    65% {
        width: 70%;
    }

    70% {
        width: 60%;
    }

    75% {
        width: 50%;
    }

    80% {
        width: 40%;
    }

    85% {
        width: 30%;
    }

    90% {
        width: 20%;
    }

    95% {
        width: 10%;
    }

    100% {
        width: 0%;
    }
}

@keyframes ajax-bar-error {
    10% {
        box-shadow: 0 0 0px #ddd;
    }

    20% {
        box-shadow: 0 0 5px #ddd;
    }

    30% {
        box-shadow: 0 0 10px #ddd;
    }

    40% {
        box-shadow: 0 0 15px #ddd;
    }

    50% {
        box-shadow: 0 0 20px #ddd;
    }

    60% {
        box-shadow: 0 0 25px #ddd;
    }

    70% {
        box-shadow: 0 0 30px #ddd;
    }

    80% {
        box-shadow: 0 0 35px #ddd;
    }

    90% {
        box-shadow: 0 0 40px #ddd;
    }

    100% {
        box-shadow: 0 0 45px #ddd;
    }
}


/* --------------------------------------------------------
        pulse Animation
    -----------------------------------------------------------*/
.pulse {
    animation: 3s ease-out 0s normal none infinite running pulse;
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    25% {
        opacity: 0.1;
        transform: scale(0);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.1);
    }

    75% {
        opacity: 0.5;
        transform: scale(0.5);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* --------------------------------------------------------
        more dot
    -----------------------------------------------------------*/
.more-dot {
    cursor: pointer;
    height: 100%;
    display: block;
    border-left: solid 1px #ccc;
    position: absolute;
    right: 12px;
    padding-left: 10px;
    top: 0;
    line-height: 24px;
    font-weight: 700;
    z-index: 9;
}


/* --------------------------------------------------------
        MBD Category Menu
    -----------------------------------------------------------*/
.mbd-field-category-menu {
    border: solid 1px #eee;
}

.mbd-field-category-menu .cm-back {
    border-bottom: solid 2px #ddd;
}

.mbd-field-category-menu .cm-back:hover {
    background-color: #F9F9F9;
    cursor: pointer;
}

.mbd-field-category-menu .cm-back>i {
    padding: 10px 15px;
    border-left: solid 1px #eee;
}

.mbd-field-category-menu .cm-back>.cm-parent-titles {
    padding: 0 10px 10px;
    display: inline-block;
}

.mbd-field-category-menu .cm-back>.cm-parent-titles>span {
    font-size: 16px;
    font-weight: 300;
}

.mbd-field-category-menu .cm-back>.cm-parent-titles>span:before {
    content: '\f2f6';
    font: normal normal normal 24px/1 'Material-Design-Iconic-Font';
    position: absolute;
    left: -5px;
    top: 0;
    color: #666;
}

.mbd-field-category-menu .cm-back>.cm-parent-titles>span:last-child:before {
    content: none;
}

.mbd-field-category-menu>ul {
    padding: 0;
    margin: 0;
}

.mbd-field-category-menu>ul>li {
    font-size: 14px;
    padding: 10px;
    position: relative;
    border-bottom: solid 1px #eee;
}

.mbd-field-category-menu>ul>li:hover,
.mbd-field-category-menu>ul>li.mbd-active {
    background-color: #F9F9F9;
    cursor: pointer;
}

.mbd-field-category-menu>ul>li>i {
    position: absolute;
    left: 10px;
    top: 5px;
    display: none;
}

.mbd-field-category-menu>ul>li:hover>i,
.mbd-field-category-menu>ul>li.mbd-active>i {
    display: block;
}


/* --------------------------------------------------------
        Waves effect
    -----------------------------------------------------------*/
.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    background: -webkit-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: scale(0) translate(0, 0);
    -moz-transform: scale(0) translate(0, 0);
    -ms-transform: scale(0) translate(0, 0);
    -o-transform: scale(0) translate(0, 0);
    transform: scale(0) translate(0, 0);
    pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
    background: -webkit-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
}

.waves-effect.waves-classic .waves-ripple {
    background: rgba(0, 0, 0, 0.2);
}

.waves-effect.waves-classic.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
}

.waves-notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.waves-button,
.waves-circle {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}

.waves-button,
.waves-button:hover,
.waves-button:visited,
.waves-button-input {
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    outline: none;
    color: inherit;
    background-color: rgba(0, 0, 0, 0);
    font-size: 1em;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    z-index: 1;
}

.waves-button {
    padding: .85em 1.1em;
    border-radius: .2em;
}

.waves-button-input {
    margin: 0;
    padding: .85em 1.1em;
}

.waves-input-wrapper {
    border-radius: .2em;
    vertical-align: bottom;
}

.waves-input-wrapper.waves-button {
    padding: 0;
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
}

.waves-float {
    -webkit-mask-image: none;
    -webkit-box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.waves-float:active {
    -webkit-box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3);
}

.waves-block {
    display: block;
}


/* --------------------------------------------------------
        General Styles
    -----------------------------------------------------------*/
a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

.search-panel-1 {
    clear: both;
    width: 100%;
    min-height: 50px;
    background-color: #f8f8f8;
    padding: 15px;
}

/*
 * Generate Margin Class
 * margin, margin-top, margin-bottom, margin-left, margin-right
 */

.m-0 {
    margin: 0px !important;
}

.m-t-0 {
    margin-top: 0px !important;
}

.m-b-0 {
    margin-bottom: 0px !important;
}

.m-l-0 {
    margin-left: 0px !important;
}

.m-r-0 {
    margin-right: 0px !important;
}

.m-5 {
    margin: 5px !important;
}

.m-t-5 {
    margin-top: 5px !important;
}

.m-b-5 {
    margin-bottom: 5px !important;
}

.m-l-5 {
    margin-left: 5px !important;
}

.m-r-5 {
    margin-right: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-l-10 {
    margin-left: 10px !important;
}

.m-r-10 {
    margin-right: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-l-15 {
    margin-left: 15px !important;
}

.m-r-15 {
    margin-right: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-b-20 {
    margin-bottom: 20px !important;
}

.m-l-20 {
    margin-left: 20px !important;
}

.m-r-20 {
    margin-right: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-t-25 {
    margin-top: 25px !important;
}

.m-b-25 {
    margin-bottom: 25px !important;
}

.m-l-25 {
    margin-left: 25px !important;
}

.m-r-25 {
    margin-right: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.m-l-30 {
    margin-left: 30px !important;
}

.m-r-30 {
    margin-right: 30px !important;
}

.m-50 {
    margin: 50px !important;
}

.m-t-50 {
    margin-top: 50px !important;
}

.m-b-50 {
    margin-bottom: 50px !important;
}

.m-l-50 {
    margin-left: 50px !important;
}

.m-r-50 {
    margin-right: 50px !important;
}

/*
 * Generate Padding Class
 * padding, padding-top, padding-bottom, padding-left, padding-right
 */

.p-0 {
    padding: 0px !important;
}

.p-t-0 {
    padding-top: 0px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-l-0 {
    padding-left: 0px !important;
}

.p-r-0 {
    padding-right: 0px !important;
}

.p-5 {
    padding: 5px !important;
}

.p-t-5 {
    padding-top: 5px !important;
}

.p-b-5 {
    padding-bottom: 5px !important;
}

.p-l-5 {
    padding-left: 5px !important;
}

.p-r-5 {
    padding-right: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-t-10 {
    padding-top: 10px !important;
}

.p-b-10 {
    padding-bottom: 10px !important;
}

.p-l-10 {
    padding-left: 10px !important;
}

.p-r-10 {
    padding-right: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-t-15 {
    padding-top: 15px !important;
}

.p-b-15 {
    padding-bottom: 15px !important;
}

.p-l-15 {
    padding-left: 15px !important;
}

.p-r-15 {
    padding-right: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-t-20 {
    padding-top: 20px !important;
}

.p-b-20 {
    padding-bottom: 20px !important;
}

.p-l-20 {
    padding-left: 20px !important;
}

.p-r-20 {
    padding-right: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-t-25 {
    padding-top: 25px !important;
}

.p-b-25 {
    padding-bottom: 25px !important;
}

.p-l-25 {
    padding-left: 25px !important;
}

.p-r-25 {
    padding-right: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-t-30 {
    padding-top: 30px !important;
}

.p-b-30 {
    padding-bottom: 30px !important;
}

.p-l-30 {
    padding-left: 30px !important;
}

.p-r-30 {
    padding-right: 30px !important;
}

/*
 * Generate Font-Size Classes (8px - 20px)
 */

.f-8 {
    font-size: 8px !important;
}

.f-9 {
    font-size: 9px !important;
}

.f-10 {
    font-size: 10px !important;
}

.f-11 {
    font-size: 11px !important;
}

.f-12 {
    font-size: 12px !important;
}

.f-13 {
    font-size: 13px !important;
}

.f-14 {
    font-size: 14px !important;
}

.f-15 {
    font-size: 15px !important;
}

.f-16 {
    font-size: 16px !important;
}

.f-17 {
    font-size: 17px !important;
}

.f-18 {
    font-size: 18px !important;
}

.f-19 {
    font-size: 19px !important;
}

.f-20 {
    font-size: 20px !important;
}

.f-25 {
    font-size: 25px !important;
}

.f-30 {
    font-size: 30px !important;
}

.f-40 {
    font-size: 40px !important;
}

/*
 * Font Weight
 */

.f-300 {
    font-weight: 300 !important;
}

.f-400 {
    font-weight: 400 !important;
}

.f-500 {
    font-weight: 500 !important;
}

.f-700 {
    font-weight: 700 !important;
}

/*
 * Position Classes
 */

.p-relative {
    position: relative !important;
}

.p-absolute {
    position: absolute !important;
}

.p-fixed {
    position: fixed !important;
}

.p-static {
    position: static !important;
}

/*
 * Overflow
 */
.o-hidden {
    overflow: hidden !important;
}

.o-visible {
    overflow: visible !important;
}

.o-auto {
    overflow: auto !important;
}

/*
 * Min Width
 */
.mnw-25 {
    min-width: 25px !important;
}

.mnw-50 {
    min-width: 50px !important;
}

.mnw-100 {
    min-width: 100px !important;
}

.mnw-150 {
    min-width: 150px !important;
}

.mnw-200 {
    min-width: 200px !important;
}

.mnw-250 {
    min-width: 250px !important;
}

/*
 * Max Width
 */
.mxw-25 {
    max-width: 25px !important;
}

.mxw-50 {
    max-width: 50px !important;
}

.mxw-100 {
    max-width: 100px !important;
}

.mxw-150 {
    max-width: 150px !important;
}

.mxw-200 {
    max-width: 200px !important;
}

.mxw-250 {
    max-width: 250px !important;
}

.mxw-300 {
    max-width: 300px !important;
}

/*
 * Min Height
 */
.mnh-25 {
    min-height: 25px !important;
}

.mnh-50 {
    min-height: 50px !important;
}

.mnh-100 {
    min-height: 100px !important;
}

.mnh-150 {
    min-height: 150px !important;
}

.mnh-200 {
    min-height: 200px !important;
}

.mnh-250 {
    min-height: 250px !important;
}


/*
 * Max Height
 */
.mxh-25 {
    max-height: 25px !important;
}

.mxh-50 {
    max-height: 50px !important;
}

.mxh-100 {
    max-height: 100px !important;
}

.mxh-150 {
    max-height: 150px !important;
}

.mxh-200 {
    max-height: 200px !important;
}

.mxh-250 {
    max-height: 250px !important;
}

.cursor-default {
    cursor: default;
}

.cursor-pointer {
    cursor: pointer;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}


/* expand animate*/
.expand-animate {
    max-height: 0;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    opacity: 0;
    padding: 0;
}

.expand-animate.expand {
    max-height: max-content;
    opacity: 1;
}

.expand-animate.expand.expand-p-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* rotate vertical animate*/
.rotate-v-animate {
    transition: transform 0.5s ease-in-out;
    transform: rotate(0deg);
}

.rotate-v-animate.animate {
    transform: rotate(180deg);
}


/* --------------------------------------------------------
        Box Info
    -----------------------------------------------------------*/
.box-info-default {
    box-shadow: 0 0 13px 0 rgba(82, 63, 105, .05);
    background-color: #fff;
    border-radius: 4px;
    padding: 25px;
}


/* --------------------------------------------------------
        Semantic Ui
    -----------------------------------------------------------*/

.ui.input input,
.ui.dropdown,
.ui.dropdown .menu>.item {
    text-align: right;
    font-family: inherit !important;
}

.ui.dropdown.multiple.search>.text {
    right: 0;
    left: auto;
}

.ui.action.input:not([class*="left action"])>input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left-color: transparent !important;
    border-right-color: rgba(34, 36, 38, .15) !important;
    border-top-right-radius: .28571429em !important;
    border-bottom-right-radius: .28571429em !important;
}

.ui.action.input:not([class*="left action"])>.button:last-child,
.ui.action.input:not([class*="left action"])>.buttons:last-child>.button,
.ui.action.input:not([class*="left action"])>.dropdown:last-child {
    border-radius: .28571429em 0 0 .28571429em;
}

.form-hint-red {
    position: absolute;
    display: block;
    right: 100%;
    bottom: 100%;
    margin-right: -150px;
    margin-bottom: 10px;
    background: #ef5662;
    white-space: nowrap;
    padding: 9px 25px;
    color: #fff;
    z-index: 2;
}

.form-hint-red:before {
    width: 0;
    height: 0;
    border-color: #ef5662 transparent transparent;
    border-style: solid;
    border-width: 10px 12px 0;
    top: 100%;
    right: 35px;
    content: "";
    position: absolute;
}

.clear-r {
    clear: right;
}

.clear-l {
    clear: left;
}

.sd-field-text:has(~ [required="required"])::before {
    content: "*";
    color: var(--accent-color3);
    margin-left: 0.5rem;
}

.textarea.text-input.theme-default {
    height: 6.25rem;
}


.mbd-submit-default {
    .selectize-control {
        .selectize-input {
            background-image: none;
            border: 1px solid var(--bg-f5);
            border-radius: var(--radius-8);
            height: 3.125rem;
            background-color: #fff;

            input {
                color: var(--bg-f5);
            }

            .selectize-input::after {
                position: relative !important;
            }

        }

    }

    .sd-fields {
        .ng-scope {
            justify-content: end;
        }


        .sd-field {

            button {
                width: 9.25rem;
                max-width: 100%;
                background-color: var(--primary-light-1);
                color: var(--White);
                border-radius: var(--radius-8);
                padding: 0.5rem 1rem;
                line-height: 1.75rem;
                border: none;
            }

            .ui {

                input {
                    margin: 0;
                    max-width: 100%;
                    -webkit-box-flex: 1;
                    -webkit-flex: 1 0 auto;
                    -ms-flex: 1 0 auto;
                    flex: 1 0 auto;
                    outline: 0;
                    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
                    text-align: right;
                    line-height: 1.2142em;
                    padding: .67861429em 1em;
                    background: none;
                    border: 1px solid var(--primary-light-5);
                    color: var(--text-color-4);
                    border-radius: var(--radius-8);
                    -webkit-transition: box-shadow .1s ease, border-color .1s ease;
                    transition: box-shadow .1s ease, border-color .1s ease;
                    box-shadow: none;
                    height: 3.125rem;
                }
            }

        }

        .submitBtn {
            .btn-primary {
                cursor: pointer;
                width: 100%;
                padding: 1rem 0;
            }
        }

        .confirmed-btn {
            margin: auto;
            width: 30%;

            .button {
                background-color: var(--secondary-light-1);
                width: 100%;
            }
        }

        .video-upload {
            .sd-field-subtext {
                margin: 0 auto;
                display: block;
                padding: 0.5rem;
                background-color: var(--system-orange-4);
                width: 30%;
            }

            .sd-field-subtext::before {
                content: "";
                display: inline-block;
                width: 1.71rem;
                height: 1.71rem;
                background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="%23E2445C" d="M11.09 2.49c.51-.93 1.8-.93 2.31 0l9.58 17.5c.5.92-.15 2.01-1.15 2.01H2.66c-1 0-1.65-1.09-1.15-2.01l9.58-17.5Zm1.15 3.15a.75.75 0 0 0-1.38 0l-7.88 14.4h17.14l-7.88-14.4ZM11.25 10c0-.41.34-.75.75-.75s.75.34.75.75v3.5a.75.75 0 0 1-1.5 0V10Zm.75 7a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z"/></svg>');
                background-size: contain;
                background-repeat: no-repeat;
                vertical-align: middle;
            }
        }

        .record-btn {
            text-align: right;

            .button {
                box-shadow: var(--light-shadow-4);
                background-color: var(--bg-ff);
                width: 30%;
                border: 1px solid var(--secondary-light-1);
                color: var(--secondary-light-1);

            }


        }

        .send-btn {
            text-align: left;

            .button {
                box-shadow: var(--light-shadow-4);
                background-color: var(--secondary-light-1);
                width: 30%;
                color: var(--White);
            }
        }
    }
}

.mbd-field-table {
    .faq-button {
        background-color: var(--primary-light-1);
    }

    .wallet-status {
        margin-top: 4.2rem;
        width: 40rem;
        max-width: 100%;
        margin: auto;

        .img-box {
            width: 18.5rem;
            max-width: 100%;
            margin: auto;
        }

        .backtohome {
            background-color: var(--primary-light-6);
            margin-top: 8rem;
            padding: 0.85rem 0;
        }
    }

    .show-inventory {
        .data {
            color: var(--primary-light-1);
        }
    }

    .wallet-recharge {
        width: 40rem;
        max-width: 100%;
        max-width: 100%;
        margin: 0 auto;

        .back {
            width: 1rem;
            height: 1rem;
            transform: rotate(90deg);
        }

        .hint {
            width: 1.42rem;
            height: 1.42rem;
            stroke: var(--primary-dark-4);
        }
    }

    .upload-instrucrtion {
        margin-top: 4.5rem;
        padding: 3.42rem;
        gap: 2rem;

        .item {
            width: calc((100% - 6rem)/4);

            .img-box {
                text-align: center;
            }
        }
    }

    .confirmed {
        margin: 3rem auto;
        background-color: var(--bg-ff);
        padding: 1.71rem;
        width: 25.6rem;
        max-width: 100%;

        .next-btn {
            text-align: center;
            width: 100%;
            background-color: var(--secondary-light-1);

        }
    }

    .warnings {
        width: 40rem;
        max-width: 100%;
        margin: 15.8rem auto 0;

        .item {
            background-color: var(--system-orange-4);

            svg {
                width: 1.71rem;
                height: 1.71rem;
                fill: var(--system-orange-1);
            }
        }
    }

    .credit-number {
        color: var(--primary-light-1);
        width: 40rem;
        max-width: 100%;
        max-width: 100%;
        margin: 0 auto;

        .form-control {
            width: 100%;
            border: 1px solid var(--primary-light-5);
            color: var(--text-color-4);
            background: none;
            border-radius: var(--radius-8);
            padding: .67861429em 1em;
            margin-bottom: 0.5rem;
        }


    }

    .suggestion {
        width: 40rem;
        max-width: 100%;
        max-width: 100%;
        margin: 0 auto;
        color: var(--primary-light-1);

        .cost {
            &.active {
                background-color: var(--primary-light-1);
                color: var(--White);
            }
        }
    }
    .show-cost{
        width: 40rem;
        max-width: 100%;
        max-width: 100%;
        margin: 3rem auto;
        border-bottom: 1px solid var(--primary-light-6);
        background: none;
        display: none;
    }


    .add-credit-number {
        svg {
            stroke: var(--primary-light-1);
            width: 0.75rem;
            height: 0.75rem;
        }
    }

    @media(max-width:1200px) {
        .upload-instrucrtion {
            .item {
                width: calc((100% - 4rem)/3);
            }
        }
    }

    @media(max-width:760px) {
        .upload-instrucrtion {
            .item {
                width: calc((100% - 2rem)/2);
            }
        }
    }

    @media(max-width:560px) {
        .upload-instrucrtion {
            .item {
                width: 100%;
            }
        }
    }


}

.mbd-field-uploadfile {
    width: 30%;
    margin: 0 auto;
    margin-top: 3rem;

}




.mbd-field-dropdownlist .selectize-control.single .selectize-input {
    display: flex;
    justify-content: space-between;
    box-shadow: none !important;
    background-color: var(--White) !important;
    background-image: none !important;
    border-color: none !important;
}

.mbd-field-dropdownlist .selectize-input {
    border: 1px solid var(--primary-light-5) !important;
    box-shadow: none !important;
    border-radius: var(--radius-8);
    color: var(--text-color-4);
}


.contact-us-form {
    margin-top: 1rem;

    a {
        color: red;
    }

}

.detail-filterbtn {
    margin-top: 0.71rem !important;

    .ui.primary.button,
    .ui.primary.buttons .button {
        padding: 1rem;
        border-radius: var(--radius-8);
        width: 100%;
        background-color: var(--secondary-light-5);
    }
}