/*form styles*/

#registerForm {
    position: relative;
}

#registerForm fieldset {
    background: white;
    border: 0 none;

    box-sizing: border-box;
    width: 100%;
    /*stacking fieldsets above each other*/
    position: relative;
}


/*buttons*/
#registerForm .action-button {
    width: 100px;
    background: #024C3E;
    font-weight: bold;
    color: white;
    border: 0 none;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#registerForm .action-button:hover, #registerForm .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #024C3E;
}

#registerForm .action-button-previous {
    width: 100px;
    background: #AD0505;
    font-weight: bold;
    color: white;
    border: 0 none;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#registerForm .action-button-previous:hover, #registerForm .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #aCbEd0;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    /* letter-spacing: 2px; */
    font-weight: bold;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    text-align: center;
    position: relative;
}

#progressbar li {
    list-style-type: none;
    color: #666;
    text-transform: uppercase;
    font-size: 9px;
    width: 50%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: #eee;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #eee;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps blue*/
/*The number of the step and the connector before it = blue*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #024C3E;
    color: white;
}

.form-wrapper {
    margin: auto;
    max-width: 900px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.form-footer {
    display: flex;
    justify-content: flex-end;
}

.form-footer-address {
    display: flex;
    justify-content: space-between;
}

.select2-container--bootstrap-5 .select2-selection{
    border-radius: 0px;
}

.wrapper {
    max-width: 800px;
}

.top-25 {
    top: 25%;
}

.end-5 {
    right: 5%;
}
.end-3 {
    right: 3%;
}
.is-invalid .select2-container--bootstrap-5 .select2-selection--single {
    border: 1px solid #dc3545;
}

.zandgar__wizard {
    display: block;
    height: 100%;
    position: relative;
}

.zandgar__wizard .zandgar__step {
    display: none;
}
.zandgar__wizard .zandgar__step.zandgar__step__active {
    display: block;
}

.col-img {
    /* https://unsplash.com/photos/yWwob8kwOCk */
    background: scroll center url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    min-height: 100vh;
}
#steps-native a {
    font-size: 24px;
}
.required:after {
    content:"*";
    color:red;
}

/*Profile v2*/

.profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}
.profile-pic input {
    display: none;
}
.profile-pic img {
    position: absolute;
    object-fit: scale-down;
    /*width: 100px;*/
    /*height: 150px;*/
    height: 100%;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    z-index: 0;
}
.profile-pic .-label {
    cursor: pointer;
    height: 165px;
    width: 165px;
}
.profile-pic:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    color: #fafafa;
    transition: background-color 0.2s ease-in-out;
    margin-bottom: 0;
}
.profile-pic span {
    display: inline-flex;
    padding: 0.2em;
    height: 2em;
}

@font-face {
    font-family: 'font2';
    font-style: normal;
    font-weight: bold;
    src: url("../../assets/fonts/khmer/KHMERMEF2.ttf");
}
#profile-error{
    position: absolute;
    bottom: -44px;
}
legend {
    font-size: 1.3rem;
    font-weight: 600;
}
.daterangepicker .drp-calendar.left {
    padding: 8px 0 8px 0px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
