@font-face {
    font-family: "Muli-Regular";
    src: url("../fonts/muli/Muli-Regular.ttf");
}

@font-face {
    font-family: "Muli-SemiBold";
    src: url("../fonts/muli/Muli-SemiBold.ttf");
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --primary-color: #e2a74b;
    --primary-color-dark: #cf9435;
    --primary-color-light: #ffd087;
    --secondary-color: #d97a3e;
    --accent-color: #6e9349;
    --accent-color-dark: #527b2a;
    --primary-bg-color: #f9efd8;
    --secondary-bg-color: #fffefd;
    --secondary-bg-color-2: #e9e0cf;
    --complementary-bg-color: #cfc7b8;
    --text-color: #2e2e2e;
    --gray-color: #999;
    --gray-color-2: #dad8e4;
    --gray-color-3: #e6e6e6;
    --gray-color-4: #666;
    --gray-color-5: #adadad;
    --white-color: #fff;
    --blue-color: #81acee;
    --green-color: #89b843;
    --danger-color: #d7263d;
    --danger-light-color: #fbe6e8;
    --danger-border-color: #c21f32;
    --success-color: #2a9d47;
    --success-light-color: #e2f5e8;
    --success-border-color: #237a39;
    --warning-color: #e29f07;
    --warning-light-color: #fff3d6;
    --warning-border-color: #c58305;
    --info-color: #247ba0;
    --info-light-color: #e1f0f5;
    --info-border-color: #1d6480;
    --border-light: #E7D5BD;
    --border-default: #D2BFA4;
}


body {
    font-family: "Muli-Regular";
    font-size: 15px;
    color: var(--text-color);
    margin: 0;
}

:focus {
    outline: none;
}

textarea {
    resize: none;
}

input,
textarea,
select,
button {
    font-family: "Muli-Regular";
    font-size: 15px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

textarea {
    resize: none;
}

img {
    max-width: 100%;
}

.wrapper {
    height: 100vh;
    background: var(--secondary-bg-color);
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.wizard {
    width: 920px;
    position: relative;
}

.wizard > .steps {
    position: absolute;
    top: 27.44%;
    right: 30%;
    transform: translateX(50%);
    z-index: 9;
}

.wizard > .steps .current-info,
.wizard > .steps .number {
    display: none;
}

.wizard > .steps ul {
    display: flex;
    justify-content: center;
}

.wizard > .steps li a, .wizard > .steps li button {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(var(--secondary-bg-color-2));
    margin-right: 78px;
    position: relative;
}

.wizard > .steps li a:before, .wizard > .steps li button:before {
    content: "";
    width: 58px;
    height: 2px;
    background: var(var(--secondary-bg-color-2));
    position: absolute;
    right: 22px;
    top: 5px;
}

.wizard > .steps li a:after, .wizard > .steps li button:after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    left: -68px;
    top: 5px;
    transition: all 0.6s ease;
}

.wizard > .steps li.first a {
    background: var(--primary-color);
}

.wizard > .steps li.checked a {
    background: var(--primary-color);
}

.wizard > .steps li.checked a:after {
    width: 58px;
}

.wizard > .steps li:last-child a {
    margin-right: 0;
}

.wizard > .steps li:first-child a:before {
    display: none;
}

.wizard > .steps li:first-child a:after {
    display: none;
}

.wizard > .content {
    position: relative;
    height: 521px;
}

.inner {
    display: flex;
    background: var(--primary-bg-color);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100vw;
    padding-bottom: 80px;
}

.image-holder {
    width: 40%;
    height: 521px;
}

.form-content {
    width: 100%;
    padding: 65px 51px;
    /* padding-left: 51px;
  padding-right: 51px;  */
  min-height: 100vh;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header .header-logo{
    width: 80%;
    max-width: 100px;
}

h3 {
    font-family: "Muli-SemiBold";
    font-size: 22px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 7px;
    padding: 5px 15px;
    display: inline-block;
    /* border: 1px solid var(--gray-color-2); */
    margin-bottom: 15px;
}

h4.subtitle {
    font-family: "Muli-SemiBold";
    font-size: 20px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 26px;
}
p.subtitle {
    font-family: "Muli-SemiBold";
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 26px;
    margin-top: -26px;
}

.form-row {
    display: flex;
    margin-bottom: 18px;
}

.form-row .form-holder {
    width: 100%;
    margin-right: 30px;
}

.form-row .form-holder:last-child {
    margin-right: 0;
}

.form-row .form-holder.w-100 {
    width: 100%;
    margin-right: 0;
}

.form-row .select {
    width: 50%;
    margin-right: 30px;
}

.form-row .select .form-holder {
    width: 100%;
    margin-right: 0;
}

.form-row .form-holder.w-10 {
    width: 10%;
    margin-right: 0;
}

.form-row .form-holder.w-15 {
    width: 15%;
    margin-right: 0;
}

.form-row .form-holder.w-20 {
    width: 20%;
    margin-right: 0;
}

.form-row .form-holder.w-25 {
    width: 25%;
    margin-right: 0;
}

.form-row .form-holder.w-30 {
    width: 30%;
    margin-right: 0;
}

.form-row .form-holder.w-35 {
    width: 35%;
    margin-right: 0;
}

.form-row .form-holder.w-40 {
    width: 40%;
    margin-right: 0;
}

.form-row .form-holder.w-45 {
    width: 45%;
    margin-right: 0;
}

.form-row .form-holder.w-50 {
    width: 50%;
    margin-right: 0;
}

/*=============== TABLE ==============*/

.row-table .form-row .table-styled {
    padding: 10px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.row-table .form-row .table-styled:first-child {
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.row-table .form-row:first-child .table-styled {
    padding: 10px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    border-top: 2px solid var(--accent-color);
}

.row-table .form-row:first-child .table-styled:first-child {
    border: 2px solid var(--accent-color);
}

.form-row .table-styled.title-table {
    text-align: center;
    font-weight: bold;
}

.row-table .form-row:not(:last-child) {
    margin-bottom: 0px;
}

.table-styled label.label.table-styled-label {
    display: none;
    font-weight: bold;
}

/*=============== END TABLE ==============*/

.select {
    position: relative;
}

.select .select-control {
    height: 37px;
    border-bottom: 2px solid var(--gray-color-3);
    width: 100%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: var(--white-color);
    z-index: 9;
    border: 1px solid var(--blue-color);
}

.select .dropdown li {
    padding: 5px 10px;
}

.select .dropdown li:hover {
    background: var(--blue-color);
    color: var(--white-color);
}

.form-holder {
    position: relative;
}

.form-label i {
    position: absolute;
    bottom: 7px;
    right: 0;
    font-size: 17px;
}

.form-control {
    height: 37px;
    border: none;
    border-bottom: 2px solid var(--accent-color);
    width: 100%;
    color: var(--text-color);
    background-color: transparent;
}
.form-control.is-invalid, 
.pretty-select2 .select2-container--default.is-invalid .select2-selection--single, 
.selectOption.is-invalid,
.phone-number-form div.is-invalid,
.socmed-form div.is-invalid, 
.password-form div.is-invalid{
    border-bottom: 2px solid var(--danger-border-color);
}


textarea.form-control {
    height: auto;
}

.form-control:focus {
    border-color: var(var(--secondary-bg-color-2));
}

.form-control::-webkit-input-placeholder {
    color: var(--gray-color-4);
    text-transform: none;
}

.form-control::-moz-placeholder {
    color: var(--gray-color-4);
    text-transform: none;
}

.form-control:-ms-input-placeholder {
    color: var(--gray-color-4);
    text-transform: none;
}

.form-control:-moz-placeholder {
    color: var(--gray-color-4);
    text-transform: none;
}

select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: var(--text-color);
    padding-right: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18" fill="rgb(110, 147, 73)"><path d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"></path></svg>')
        no-repeat;
    background-position: calc(100% - 0.75rem) center !important;
}

/* select.form-control,
::picker(select) {
  appearance: base-select;
} */

textarea.form-control {
    padding: 8px 0;
    background: url("../images/textarea-bg.png") no-repeat right bottom 3px;
}

.actions {
    /* position: absolute;
  bottom: 55px;
  right: 51px;  */
    margin-top: 40px;
}

.actions ul {
    display: flex;
    flex-direction: row-reverse;
}

.actions li a, .actions li button, .btn-primary {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 41px;
    width: 135px;
    align-items: center;
    background: var(var(--secondary-bg-color-2));
    font-family: "Muli-SemiBold";
    color: var(--gray-color-4);
    cursor: pointer;
    position: relative;
    padding-left: 28px;
}

.actions li a:before, .actions li button:before {
    content: "\f301";
    position: absolute;
    top: 14px;
    right: 28px;
    font-family: Material-Design-Iconic-Font;
}

.actions li a:hover, .actions li button:hover {
    background: var(--complementary-bg-color);
}

.actions li:first-child a, .actions li:first-child button, .btn-primary {
    width: 144px;
    padding-left: 48px;
}

.actions li:first-child a:before, .actions li:first-child button:before {
    content: "\f2ff";
    position: absolute;
    top: 14px;
    left: 26px;
    font-family: Material-Design-Iconic-Font;
    text-align: left;
}

.actions li:nth-child(2) a,
.actions li:last-child a, .actions li:nth-child(2) button, .actions li:last-child button {
    margin-left: 20px;
}

.actions li:last-child a, .actions li:last-child button, .btn-primary {
    width: 124px;
    background: var(--accent-color);
    color: var(--white-color);
}

.actions li:last-child a:hover, .actions li:last-child button:hover, .btn-primary:hover {
    background: var(--accent-color-dark);
}

.actions li:last-child a:before, .actions li:last-child button:before {
    content: "\f26b";
    position: absolute;
    top: 13px;
    right: 28px;
    font-family: Material-Design-Iconic-Font;
}

.actions li[aria-disabled="true"] a, .actions li[aria-disabled="true"] button {
    opacity: 0;
    transition: all 1s;
}

.actions li[aria-disabled="false"] ~ li a, .actions li[aria-disabled="false"] ~ li button {
    background: var(--accent-color);
    color: var(--white-color);
}

.actions li[aria-disabled="false"] ~ li a:hover, .actions li[aria-disabled="false"] ~ li button:hover {
    background: var(--accent-color-dark);
}

.btn-primary{
    text-align: center;
    padding: 0;
    display: inline-block;
    line-height: 41px;
    
}

.checkbox-tick label {
    cursor: pointer;
    display: inline-block;
    padding-left: 23px;
    position: relative;
}

.checkbox-tick label.male {
    margin-right: 26px;
}

.checkbox-tick input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-tick input:checked ~ .checkmark {
    background: var(--primary-color-dark);
}

.checkbox-tick input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-tick .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    border: 2px solid var(--primary-color-dark);
    border-radius: 50%;
    font-family: Material-Design-Iconic-Font;
    color: var(--white-color);
    font-size: 11px;
}

.checkbox-tick .checkmark:after {
    top: 0;
    left: 2px;
    position: absolute;
    display: none;
    content: "\f26b";
}

.checkbox-circle {
    position: relative;
    padding-left: 23px;
    margin-top: 41px;
    width: 63%;
}

.checkbox-circle.mt-24 {
    margin-top: 24px;
}

.checkbox-circle label {
    cursor: pointer;
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.9;
    transform: translateY(-5px);
}

.checkbox-circle label a {
    color: var(--primary-color);
}

.checkbox-circle label a:hover {
    color: var(--green-color);
}

.checkbox-circle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-circle input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-circle .checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
}

.checkbox-circle .checkmark:after {
    content: "";
    top: 2px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-color);
    position: absolute;
    display: none;
}

.form-label {
    font-weight: bold;
    color: var(--secondary-color);
}

.form-label-light {
    font-weight: normal;
}

.uppercase {
    text-transform: uppercase;
}

.tooltip-button {
    position: relative;
    cursor: pointer;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    /* padding: 1px; */
    background-color: var(--primary-color);
    display: inline-block;
    text-align: center;
    /* margin-top: 0px; */
    /* top: 1; */
    /* margin-left: 3px;*/
}

.tooltip-button i {
    position: relative;
    color: var(--white-color);
    font-size: 12px;
    top: -2px;
}

.tooltip-content {
    visibility: hidden;
    width: 120px;
    background-color: var(--text-color);
    color: var(--white-color);
    text-align: left;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 115%;
    font-size: 12px;
    font-weight: lighter;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.tooltip-button:hover .tooltip-content {
    visibility: visible;
}

select.form-control.class-form {
    color: var(--gray-color-4);
    padding: 10px;
}

select.form-control.class-form option {
    color: var(--text-color);
}

select.form-control.class-form option:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

select.form-control.class-form option:checked {
    color: var(--white-color);
    background-color: var(--primary-color);
}

select.form-control.class-form option:disabled {
    color: var(--white-color) !important;
    background-color: lightgray !important;
}

/*======== FOR SELECT PURPOSE ========*/

.s-hidden {
    visibility: hidden;
    padding-right: 10px;
}

.selectOption {
    cursor: pointer;
    display: block;
    position: relative;
    height: 37px;
    border: none;
    border-bottom: 2px solid var(--accent-color);
    width: 100%;
    color: var(--gray-color-4);
    background-color: transparent;
    line-height: 37px;
    vertical-align: middle;
}

.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    /* padding:0 10px; */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18" fill="rgb(110, 147, 73)"><path d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"></path></svg>')
        no-repeat;
    background-position: calc(100% - 0.1rem) center !important;
}

/* .styledSelect:after {
    content: "";
    width:0;
    height:0;
    position:absolute;
    top:9px;
    right:6px;
} */
.styledSelect:active,
.styledSelect.active {
    background-color: transparent;
}

.options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border: 1px solid #ccc;
    background-color: white;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
    padding: 0 6px;
    margin: 0 0;
    padding: 0 10px;
    color: var(--text-color);
}

.options li.selected,
.select2-container--default .select2-results__option--selected {
    background-color: var(--primary-color);
    color: white;
}

.options li:hover,
.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary-color-light);
    color: var(--text-color);
}

.options li.disabled,
.select2-container--default .select2-results__option--disabled {
    background-color: var(--gray-color-5);
    color: var(--white-color);
}

/* ========== END SELECT ============*/

/*====== PRETTY SELECT2 ========*/

.pretty-select2 .select2-container--default {
    width: 100% !important;
}
.pretty-select2 .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid var(--accent-color);
    height: fit-content;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18" fill="rgb(110, 147, 73)"><path d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"></path></svg>')
        no-repeat;
    background-position: calc(100% - 0.1rem) center !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: var(--gray-color-4);
    line-height: 35px;
}
.select2-inputed.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: var(--text-color);
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    display: none;
}

.select2-results__option--selectable {
    padding: 0 10px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 37px;
}

/*====== END PRETTY SELECT2 ========*/

/*============ PHONE FORM ============*/
.phone-number-form {
    display: flex;
}

.phone-number-form div {
  padding-left: 5px;
    font-size: 15px;
    display: flex;
    line-height: 33px;
    border-bottom: 2px solid var(--accent-color);
}
.phone-number-form div span{
  margin-top: 1px;
}

.phone-number-form div i{
    font-size: 20px;
    margin-right: 5px;
}
/*============ END PHONE FORM ============*/

/*============ SOCMED FORM ============*/
.socmed-form, .password-form {
    display: flex;
}
.socmed-form div, .password-form div {
    font-size: 20px;
    line-height: 34px;
    border-bottom: 2px solid var(--accent-color);
    padding: 0 5px;
}

.password-hint{
  cursor: pointer;
}
/*============ SOCMED FORM ============*/

.error-message {
    font-size: 12px;
    color: var(--danger-color);
}
/*============ PHONE FORM ============*/

.checkbox-tick {
    margin-top: 10px;
}

#last_education_detail.hidden {
    display: none;
}

#workplace-wrapper{
    display: none;
}

.alert-notification{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-color);
    background-color: var(--gray-color-2);
    color: var(--text-color);
}

.alert-notification.alert-danger{
    border-color: var(--danger-border-color);
    background-color: var(--danger-light-color);
    color: var(--danger-color);
}

.alert-notification.alert-success{
    border-color: var(--success-border-color);
    background-color: var(--success-light-color);
    color: var(--success-color);
}

.alert-notification.alert-warning{
    border-color: var(--warning-border-color);
    background-color: var(--warning-light-color);
    color: var(--warning-color);
}

.alert-notification.alert-info{
    border-color: var(--info-border-color);
    background-color: var(--info-light-color);
    color: var(--info-color);
}



/* ------ MODAL -------- */


/* Overlay */
.custom-modal.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 46, 46, 0.25);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  z-index: 1000;
}

/* Modal */
.custom-modal .modal {
  background: var(--secondary-bg-color);
  width: 90%;
  max-width: 480px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  animation: fadeUp 0.4s ease;
}

/* Header */
.custom-modal .modal h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: var(--secondary-color);
}

/* Text */
.custom-modal .modal p {
  margin: 0 0 18px;
  line-height: 1.6;
}

/* Status badge */
.custom-modal .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.custom-modal .badge.info {
  background: rgba(36,123,160,0.12);
  color: var(--info-color);
}

/* Actions */
.custom-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

/* Buttons */
.custom-modal .btn {
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.custom-modal .btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 6px 14px rgba(226,167,75,0.4);
  line-height: normal;
}

.custom-modal .btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-default);
}

.custom-modal .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-outline-secondary{
    font-size: 12px;
    background: transparent;
    padding: 5px 10px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: bold;
}

.btn-outline-secondary:hover{
    background: var(--accent-color-dark);
    border: 2px solid var(--accent-color-dark);
    color: var(--white-color);
    cursor: pointer;
}

.delete-button, .delete-edu-button{
    background: transparent;
    border: none;
    color: var(--danger-border-color);
    font-size: 1.5rem;
}

.delete-edu-button-wrapper{
    text-align: center;
}

.text-right{
    text-align: right;
}

.text-center{
    text-align: center;
}

/* ------ MODAL END ---------- */

#last_education_detail, #last_education_detail input{
    font-size: .75rem !important;
}



@media (max-width: 991px) {
    .wizard {
        max-width: 768px;
    }

    .image-holder img {
        height: 521px;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .inner {
        display: block;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
    }

    .image-holder {
        width: 100%;
    }

    .image-holder img {
        width: 100%;
    }

    .form-content {
        width: 100%;
        padding: 50px 20px 30px;
    }

    .form-row {
        display: block;
    }

    .form-row.title-row .title-table {
        display: none;
    }

    .form-row .form-holder,
    .form-row .select,
    .form-row .form-holder.w-10,
    .form-row .form-holder.w-15,
    .form-row .form-holder.w-20,
    .form-row .form-holder.w-25,
    .form-row .form-holder.w-30,
    .form-row .form-holder.w-35,
    .form-row .form-holder.w-40,
    .form-row .form-holder.w-45,
    .form-row .form-holder.w-50 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 18px;
    }

    .form-row .form-holder.table-styled {
        margin-bottom: 0px;
        border-left: 2px solid var(--accent-color);
    }

    .row-table
        .form-row:first-child
        .form-holder.table-styled:not(:first-child) {
        border-top: none;
    }

    .row-table .form-row.data-row .form-holder.table-styled:first-child {
        border-top: 2px solid var(--accent-color);
    }

    .table-styled label.label.table-styled-label {
        display: block;
    }

    .wrapper {
        height: 1201px;
        background: none;
    }

    .checkbox-circle {
        width: 100%;
    }

    .wizard {
        height: 100%;
    }

    .wizard > .steps {
        right: 50%;
        top: 52%;
        transform: translateX(50%);
    }

    .actions {
        /* right: 50%; */
        /* transform: translateX(50%); */
        bottom: 3%;
    }
}

[hidden=true]{
    display: none !important;
}

/*# sourceMappingURL=style.css.map */
