/* input labels */



label.form-label {
  position: relative;
  font-size: var(--xxxSmall);
  font-weight: var(--bold);
  color: var(--Neutral900);
  margin-bottom: 3px;
  text-transform: lowercase;

}

label.form-label::first-letter {
  text-transform: uppercase;
}

label.required:after {
  content: "*";
  position: absolute;
  top: 0;
  right: -10px;
  font-weight: var(--normal);
  color: red;
}

/* input placeholder */

.form-control::-webkit-input-placeholder {
  /* Edge */
  color: var(--Neutral600);
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--Neutral600);
  font-weight:var(--regular);
}

.form-control::placeholder {
  color: var(--Neutral600);
  font-size: var(--xxxSmall);
  font-weight:var(--regular);
}

.innerContent .form-control::placeholder{
  color: var(--Neutral600);
  font-size: var(--xxSmall);
  font-weight:var(--regular);
}


.select2-search__field{
  padding: 8px !important;
  height: 33px !important;
}
.select2-search__field::placeholder{
  color: var(--bgLightGrey-20);
  font-size: var(--xxSmall);
  font-weight:var(--regular);
}
.input-group-text {
  border: 1px solid var(--bgLightGrey-10);
  border-right: none;
  border-radius: 10px;
  font-size: var(--small);
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: var(--bgLightGrey-10);
  background-image: none;
}



.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: var(--bgError);
  box-shadow: none;
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
  background-image: url(../img/downArrow.png);
  background-size: 13px 6px;
}

/* input focus */

:focus {
  outline: none;
}

.form-control:focus,
.form-select:focus {
 border: 1px solid var(--Neutrals300);
 box-shadow: 0px 4px 10px 0px rgba(31, 37, 89, 0.07), 0px 2px 11px 0px rgba(69, 65, 164, 0.06);
}

/* input  */

.form-group {
  position: relative;
  /* height: 77px; */
}
.form-group .icon,   .form-group .icon-rt{position: absolute; left:15px; top:calc(35px);  opacity: 0.2; font-size: var(--heading5); }
.form-group .icon-rt{left:auto; right:15px}

.form-control.is-valid:focus {
  box-shadow: none;
  border-color: var(--bgPrimary);
}

.form-select.is-valid,
.was-validated .form-select:valid {
  border-color: var(--bgLightGrey-10);
}

.form-control {
  border: 1px solid var(--Neutrals400);
  /* font-weight: 600; */
  font-size: var(--xxxSmall);
  border-radius: 10px;
  color: var(--Neutrals800);
  padding:10px 20px;
  min-height: 30px;
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: var(--Neutrals500)!important;
}

::placeholder {
  color: var(--Neutrals500)!important;
}

.form-control-icon{padding-left:4.2rem}


.form-group.error .form-control{border:1px solid var(--Error600)}
.form-group.error span.error{font-size: var(--default); color:var(--Error600)}

.form-control:disabled {
  background-color: transparent;
  opacity: 0.89;
  color: var(--bgLightGrey-20);
}

/* .form-control:disabled {
  background-color: transparent;
  opacity: 0.89;
  color: var(--bgLightGrey-20);
} */

.form-select:disabled {
  background-color: #f8f8f8;
  /* opacity: 0.4; */
}

.form-select {
  border: 1px solid var(--Neutrals400);;
  color: var(--Neutrals500);
  font-size: var(--xxxSmall);
   /* background-image: url("../img/downArrow.png");
  background-size: 9px 6px; */
  padding: 10px 20px;
  /* font-weight: var(--light); */
  border-radius: 10px;
  min-height:30px;
}
.form-select-blue {
  background-image: url("../img/down-arrow-blue.png");
  background-size: 13px 10px;
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("../img/downArrow.png");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 13px 6px;
}

select option:hover {
  background-color: var(--bgPrimary);
  color: white;
}

.form-select.is-valid:focus,
.was-validated .form-select:valid:focus,
.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
  box-shadow: none;
  border-color: var(--bgPrimary);
}

/* floating labels */

.inputBox {
  position: relative;
}

.inputBox .form-control:focus + label {
  color: var(--bgMain);
  top: 0;
  transform: translateY(-50%) scale(0.9);
}

.inputBox .form-control:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%) scale(0.9);
}

.inputBox label {
  position: absolute;
  font-size: var(--small);
  left: 1rem;
  /* top: 50%; */
  top: calc(50px - 25px);
  transform: translateY(-50%);
  background-color: white;
  color: var(--bgLightGrey-10);
  font-weight: var(--light);
  padding: 0 0.5rem;
  margin: 0 0.5rem;
  transition: 0.1s ease-out;
  transform-origin: left top;
  pointer-events: none;
}

.inputBox .pass {
  position: absolute;
  top: calc(50px - 36px);
  right: 5%;
}

.inputBox .pass a {
  color: var(--bgLightGrey-20);
}

/* select 2 js css */

.selectBox {
  width: 100%;
}

.select2-container--default .select2-selection--single {
  border: 1px solid var(--bgLightGrey-10);
  border-radius: 10px;
  height: 45px;
  padding: 6px 12px;
  /* color: var(--bgLightGrey-10);
    font-size: 14px;
    background-image: url("/img/downArrow.png");
    background-size: 13px 6px;
    padding: 7px; */
}
.directoryFilter .select2-container--default .select2-selection {
  border: none;
}
.select2-container--default .select2-selection--single:focus {
  border: 1px solid var(--bgPrimary);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder{
  color: var(--bgLightGrey-10);
  font-size: var(--xxSmall);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 0;
  height: 100%;
  /* line-height: 45px; */
  font-size: var(--small);
  color: inherit;
  font-weight: var(--light);
  color: var(--bgDarkGrey-1);
  display: flex;
  align-items: center;
}

/* .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
    position: absolute;
    top: 8px;
} */

.select2-results__option--selectable {
  font-size: var(--small);
}

.select2-container--default .select2-results__option--selected {
  background-color: #fff;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  /* height: 26px; */
  position: absolute;
  top: 40%;
  right: 5%;
  /* width: 20px; */
  background-image: url(../img/downArrow.png);
  background-size: 13px 6px;
  background-repeat: no-repeat;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  color: var(--bgPrimary);
  font-size: var(--small);
  padding-left: 43px;
  padding-right: 22px;
  height: 28px;
  display: inline-block;
  line-height: 30px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: var(--bgPrimaryLight);
  border: none;
  border-radius: 50rem;
  padding-left: 0;
  padding: 0;
  margin-right: 5px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: var(--bgPrimary);
  padding: 0 9px;
  border-right: 0;
  font-size: 1.4em;
}

/* date picker */

input[type="date"] {
  position: relative;
  padding: 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
}

input[type="date"]:before {
  /* color: transparent; */
  background: none;
  display: block;
  font-family: "FontAwesome";
  content: "\f073";
  /* This is the calendar icon in FontAwesome */
  width: 15px;
  height: 20px;
  position: absolute;
  top: 27%;
  right: 5%;
  color: var(--bgLightGrey-20);
}

.bDate {
  position: relative;
}

.bDate .icon {
  position: absolute;
  top: calc(45px - 6px);
  right: 5%;
  color: var(--bgLightGrey-20);
  font-size: var(--small);
  cursor: pointer;
}

/* alerts */
.alert {
  display: none;
  color: red;
}
.swal2-popup {
  min-width: 17em !important;
  min-height: 15em !important;
  border-radius: 14px !important;
  width: auto !important;
}

.swal2-close {
  border: 1px solid var(--bgLightGrey-20) !important;
  border-radius: 50px !important;
  width: 20px !important;
  height: 20px !important;
  position: absolute;
  margin: 5px !important;
  font-size: var(--small) !important;
  line-height: 10px;
}

.swal2-icon {
  margin: 1.5em auto 0.6em !important;
}

.swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 0 !important;
  padding: 0 20px !important;
  font-weight: var(--semiBold) !important;
  font-size: var(--xxSmall) !important;
  color: var(--bgDarkGrey) !important;
  width: 235px;
}

.swal2-html-container::-webkit-scrollbar {
  width: 10px;
}

.swal2-html-container::-webkit-scrollbar-track {
  background: #ffffff;
}

.swal2-html-container::-webkit-scrollbar-thumb {
  background-color: var(--bgLightGrey-10);
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.swal2-icon .swal2-icon-content,
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long,
.swal2-icon.swal2-success [class^="swal2-success-circular-line"][class$="left"],
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip,
.swal2-icon.swal2-success .swal2-success-ring,
.swal2-icon.swal2-success .swal2-success-fix,
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right,
.swal2-icon.swal2-error .swal2-x-mark {
  display: none !important;
}

.swal2-title {
  padding: 0 !important;
  font-family: "Montserrat" !important;
  font-weight: var(--bold) !important;
  font-size: var(--medium) !important;
}

.swal2-actions {
  margin: 0 !important;
}

.swal2-styled.swal2-confirm {
  font-size: var(--xSmall) !important;
  width: 33%;
  border-radius: 50rem !important;
  margin: 20px 5px 0;
}

.swal2-icon-warning .swal2-styled.swal2-confirm {
  background-color: var(--color1) !important;
}

.swal2-icon-success .swal2-styled.swal2-confirm {
  background-color: var(--Success500) !important;
}

.swal2-icon-error .swal2-styled.swal2-confirm {
  background-color: var(--Error500) !important;
}

.swal2-icon-info .swal2-styled.swal2-confirm {
  background-color: var(--Info500) !important;
}

.swal2-styled.swal2-cancel {
  background-color: var(--bgLightGrey-10) !important;
  font-size: var(--xSmall) !important;
  width: 33%;
  border-radius: 50rem !important;
  margin: 20px 0px 0;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: none !important;
}

.swal2-styled {
  padding: 0.625em 0 !important;
}

/* warning */

.swal2-icon.swal2-warning {
  border: 0 !important;
  background-image: url("../img/warning.png");
  background-repeat: no-repeat;
  width: 57px !important;
  height: 57px !important;
}

.swal2-icon-warning .swal2-title {
  color: var(--bgWarning) !important;
}

/* success */

.swal2-icon.swal2-success {
  border: 0 !important;
  background-image: url("../img/correct.png");
  background-repeat: no-repeat;
  width: 50px !important;
  height: 50px !important;
}

.swal2-icon-success .swal2-title {
  color: var(--bgSuccess) !important;
}

/* error */

.swal2-icon.swal2-error {
  border: 0 !important;
  background-image: url("../img/delete.png");
  background-repeat: no-repeat;
  width: 50px !important;
  height: 50px !important;
}

.swal2-icon-error .swal2-title {
  color: var(--bgError) !important;
}

/* info */

.swal2-icon.swal2-info {
  border: 0 !important;
  background-image: url("../img/info.png");
  background-repeat: no-repeat;
  width: 62px !important;
  height: 62px !important;
}

.swal2-icon-info .swal2-title {
  color: var(--bgInfo) !important;
}

/* alert errors */

.alertBox {
  border: 1px solid var(--bgLightGrey-20);
  background-color: white;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 10px;
  position: relative;
}

.alertBox .btn-close {
  position: absolute;
  right: 1%;
  top: 6%;
  width: 0.4em;
  height: 0.4em;
  padding: 7px;
  color: var(--bgLightGrey-20);
  border-radius: 50rem;
  opacity: 1;
  border: 2px solid var(--bgLightGrey-20);
  background-size: 10px;
  background-color: var(--bgLightGrey-20);
}

.alertBox.success {
  border-left: 4px solid var(--bgSuccess);
}

.alertBox.error {
  border-left: 4px solid var(--bgError);
}

.alertBox.info {
  border-left: 4px solid var(--bgInfo);
}

.alertBox.warning {
  border-left: 4px solid var(--bgWarning);
}

.alertBox .alertIcon img {
  width: 35px;
  height: 35px;
}

.alertBox .alertInfo h6 {
  font-family: "Montserrat";
  font-weight: var(--bold);
  font-size: var(--medium);
}

.alertBox.success .alertInfo h6 {
  color: var(--bgSuccess);
}

.alertBox.error .alertInfo h6 {
  color: var(--bgError);
}

.alertBox.info .alertInfo h6 {
  color: var(--bgInfo);
}

.alertBox.warning .alertInfo h6 {
  color: var(--bgWarning);
}

.alertBox .alertInfo p {
  font-weight: var(--semiBold);
  font-size: var(--xxSmall);
  color: var(--bgLightGrey-10);
}

.btn-close:focus {
  box-shadow: none;
}

/* Innner form  */

.innerContent label {
  font-weight: var(--semiBold);
  font-size: var(--xxSmall);
  color: var(--bgDarkGrey-1);
  position: relative;
  margin-bottom: 5px;
  text-transform: lowercase;
}

.innerContent label::first-letter {
  text-transform: uppercase;
}

.innerContent .form-select,
.innerContent .form-control,
.innerContent .select2-container .select2-selection--single {
  /* border-radius: 10px;
    border: 1px solid var(--bgLightGrey-10);
    color: var(--bgDarkGrey);
    height: 60px;
    font-size: var(--large);
    font-weight: var(--semiBold);
    padding: 16px; */
  height: 45px;
  font-size: var(--xxSmall);
}

.innerContent .form-select:focus,
.innerContent .form-control:focus {
  border: 1px solid var(--bgPrimary);
}

.innerContent
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 41px;
  font-size: var(--xxSmall);
  color: var(--bgDarkGrey-1);
  font-weight: var(--light);
  /* color: var(--textDefault); */
  /* padding: 0 12px; */
}

.innerContent
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 40%;
  right: 2%;
  background-size: 9px 6px;
}
.select2-container--default .select2-selection--multiple {
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
  min-height: 45px;
  border: 1px solid var(--bgLightGrey-10);
  border-radius: 10px;
}
.innerContent .select2-container--default .select2-selection--multiple {
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
  min-height: 45px;
  border: 1px solid var(--bgLightGrey-10);
  border-radius: 10px;
}
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 1px solid var(--bgLightGrey-10);
  outline: 0;
}

/* .innerContent .select2-container .select2-selection--multiple .select2-selection__rendered ,.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    align-items: center;
    height: 100%;
    padding: 0 12px;
} */

/* check box */

.form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid var(--bgLightGrey-20);
}

.form-check-label {
  font-weight: var(--semiLight);
  font-size: var(--small);
  color: var(--bgDarkGrey);
  line-height: 32px;
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
  background-color: var(--bgPrimary);
}

.form-check-input:checked {
  /* background-color: #fff; */
  background-color: var(--bgPrimary);
  border-color: var(--bgLightGrey-20);
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
  border-color: var(--bgLightGrey-20);
}

.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
  box-shadow: none;
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: var(--bgDarkGrey);
}

.form-check-input:focus {
  border-color: var(--bgLightGrey-20);
  outline: 0;
  box-shadow: none;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url(../img/tick.png);
  background-color: white;
  background-size: 60%;
}

/* login */

.loginBox input,
#passModal input {
  height: 50px;
  padding-left: 28px;
  /* background-color: var(--bgLightGrey); */
}

.loginBox .btn,
#passModal .btn {
  height: 50px;
  line-height: 36px;
}

/* Mmmber */

/* .memberBox .scrollForm {
    height: 440px;
    overflow: auto;
    padding-right: 10px;
} */

.memberBox input.form-control,
.memberBox select.form-select {
  height: 45px;
}

/* .memberBox .inputBox label {
    left: 0;
    color: var(--bgLightGrey-10);
} */



.memberBox .form-group .pass .icon {
  position: absolute;
  top: calc(45px - 8px);
  right: 5%;
  color: var(--bgLightGrey-20);
  font-size: var(--small);
  cursor: pointer;
}

.innerContent .form-group .pass {
  position: relative;
}

.innerContent .form-group .pass .icon {
  position: absolute;
  top: 56%;
  right: 5%;
  color: var(--bgLightGrey-20);
  font-size: var(--small);
}

/* .memberBox .inputBox .infoIcon .icon {
    position: absolute;
    top: 25%;
    right: 13%;
} */

/* .memberBox .inputBox .infoIcon .infoBox {
    position: absolute;
    display: none;
    background-color: aliceblue;
    right: 13%;
    z-index: 11;
    transition: var(--transition);
} */

/* .memberBox .inputBox .infoIcon:hover .infoBox {
    display: block;
} */

/* Toggle switch */

.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 1px;
  background-color: var(--bgLightGrey-20);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch input:checked + .slider {
  background-color: var(--bgMain);
  border: 1px solid var(--bgMain);
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px var(--bgPrimary);
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
  background-color: white;
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
  border: 1px solid var(--bgLightGrey-10);
}

.slider.round:before {
  border-radius: 50%;
}

.ui.calendar input {
  height: 45px;
  font-family: var(--opneSans);
  font-size: var(--xxSmall);
  border: 1px solid var(--bgLightGrey-10);
  border-radius: 10px;
  color: var(--bgDarkGrey-1);
  font-family: var(--opneSans);
}

i.icon {
  display: inline-block;
  opacity: 1;
  margin: 0 0.25rem 0 0;
  width: 1.18em;
  color: var(--bgLightGrey-20);
  height: 1em;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  text-align: center;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#flash_container {
  padding-bottom: 10px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid var(--Neutrals400);
  -webkit-text-fill-color: var(--bgDarkGrey-1);
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* 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;
}
/* radio buttons*/

input.cto_input[type="radio"] {
/* opacity: 0; */
display: none;
}

input.cto_input[type="radio"]:checked~.cto_value {
color: #000;
border-width: 5px;
background: #fff;
border: 2px solid var(--primary-color);
}

input.cto_input[type="radio"]:checked~.cto_value::before {
outline-width: 5px;
background: #fff;
}

.checkicon {
position: absolute;
/* left: 32px; */
left: 26px;
    width: 32px;
    height: 45px;
    /* top: 15px; */
    top: 6px;
background-image: url(../img/square_before.png);
background-size: 17px 17px;
background-repeat: no-repeat;
background-position: left 18px;
}

.checkicon::before {
position: absolute;
left: 24px;
width: 32px;
height: 45px;
top: 8px;
background-image: url(../img/square_after.png);
background-position: left 18px;
background-size: 20px 20px;
background-repeat: no-repeat;
}

input.cto_input[type="radio"]:checked~.checkicon {
background-image: url(../img/square_after.png);
background-position: left 18px;
background-size: 20px 20px;
background-repeat: no-repeat;
}

input.cto_input[type="radio"]:checked~.checkicon::before {
background-image: url(../img/square_after.png);
background-position: left 18px;
background-size: 20px 20px;
background-repeat: no-repeat;
}

.step_radioblocks div {
list-style-type: none;
list-style-position: outside;
padding: 1px 0 10px;
float: left;
}

.step_radioblocks {
width: 100%;
white-space: nowrap;
display: block;
margin: 2px 0;
}



label.cto_label {
display: flex;
padding: 5px 0;
font-size: 20px;
cursor: pointer;
position: relative;
}

input.cto_input[type="checkbox"] {
/* opacity: 0; */
display: none;
}

.step_radioblocks li {
list-style-type: none;
list-style-position: outside;
padding: 1px 0 10px;
float: left;
/* height: 30px; */
margin-right: 15px;
width: min-content!important;
}

.step_radioblocks div{
list-style-type: none;
list-style-position: outside;
padding: 1px 0 10px;
float: left;
/* height: 30px; */
margin-right: 4px;
margin-bottom: 2px;
}

/*=================== success page css ====================*/

.texts h4 {
  font-size: var(--medium);
  margin-bottom: 5px;
}

.texts p {
  font-size: var(--xxxSmall);
  margin-bottom: 20px;
}

.texts a {
  cursor: pointer;
  font-size: var(--xxxSmall);
  color: var(--Primary2);
  font-weight: var(--bold);
  text-decoration:revert;
}

.success_img
{
  width: 200px;
  padding: 20px;
}

/*=================== popup page css ====================*/

.top-img h1
{
  font-size: var(--heading3);
  font-weight: var(--bold);
  color: var(--Primary2);
  margin-bottom: 10px;
  margin-top: 30px;
}

.top-img h3
{
  font-size: var(--small);
  margin-bottom: 40px;
}

.btn-modal
{
   background-color: var(--Primary1);
   color:var(--Neutrals100);
   font-size: var(--small);
   padding: 7px 43px;
}

.welcome_popup
{
  padding: 47px 40px;
}

.welcome_content
{
     border: 0!important;
    border-radius: 17px!important;
    box-shadow: 0 0 1px var(--bgPrimary);
}

.circle-content
{
  background-color: var(--Neutrals200);
  padding: 20px;
  margin-top: -117px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 37px;
}

.top-img img
{
  width: 100%;
}

 .success_check
{
  position: absolute;
  left: 7px;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  /* width: 123px;
   top: 16px */
  width: 80px;
  top: 9px;
} 

.centered_section
{
  position: absolute;
  background-image: url(../img/group1.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* width: 150px;
  height: 150px; */
  width: 100px;
  height: 100px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 15%;
}

.block1
{
  position: relative;
  /* height: 185px; */
  height: 130px;
}

.fixed-heighted
{
  min-height: 605px;
}

.fixed-heighted2
{
  min-height: 604px;
}

/*=================== ui kits css ====================*/


.kit_heading h4
{
   color: var(--Neutrals800);
  font-size: var(--medium);
}

.fm-input
{
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid #ccc!important;
  appearance: revert;
  margin-top: 10px;
}

input.fm-input[type="checkbox"]:focus {
  border-color: #ffffcc;
}

.kit_heading ul li span{
  float: right;
}

.kit_heading ul li{
  text-align: left;
  line-height: 3;
  color:var(--Primary1);
  font-weight: var(--bold);
  font-size: var(--xxxSmall);
}

.input_value
{
  border: 1px solid #ccc;
  font-weight: var(--bold);
    box-shadow: none;
}

.description
{
  font-size: var(--xxxSmall); 
  font-weight: var(--regular);
  display: contents;
}

.check_icon1
{
  top: 10px;
}

.kit_heading h5
{
  text-align: right;
  font-size: var(--xxSmall); 
  color:var(--Primary1);
  font-weight: var(--bold);
  margin-bottom: 25px;
}

.kit_heading2 h5
{
  text-align: LEFT;
  font-size: var(--xxSmall); 
  color:var(--Primary1);
  font-weight: var(--bold);
  margin-bottom: 25px;
  padding-left: 10px;
}

input.cto_input[type="checkbox"]:checked~.input_value
{
  background: #fff;
  border: 2px solid var(--Secondary2);
}

/* radio button */
.checkimg2
{
  top: -4px!important;
}
.checkicon_img {
  position: absolute;
  left: 23px;
  width: 32px;
  height: 53px;
  top: 12px;
  background-image: url(../img/radio-before.png);
  /* background-size: 41px 40px; */
  background-repeat: no-repeat;
  /* background-position: left 18px; */
  background-position: left 24px;
  background-size: 25px 25px;
  }

  .checkicon_img22 {
    position: absolute;
    left: 23px;
    width: 32px;
    height: 53px;
    top: 0px;
    background-image: url(../img/radio-before.png);
    /* background-size: 41px 40px; */
    background-repeat: no-repeat;
    /* background-position: left 18px; */
    background-position: left 24px;
    background-size: 25px 25px;
}
  
  .checkicon_img::before {
  position: absolute;
  left: 19px;
  width: 32px;
  height: 53px;
  top: 13px;
  background-image: url(../img/radio-after.png);
  /* background-position: left 18px;
  background-size: 41px 40px; */
  background-position: left 24px;
  background-size: 25px 25px;
  background-repeat: no-repeat;
  }

  .checkicon_img22::before {
    position: absolute;
    left: 19px;
    width: 32px;
    height: 53px;
    top: 13px;
    background-image: url(../img/radio-after.png);
    /* background-position: left 18px;
    background-size: 41px 40px; */
    background-position: left 24px;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    }

    input.cto_input[type="radio"]:checked~.checkicon_img22 {
      background-image: url(../img/radio-after.png);
      /* background-position: left 18px;
      background-size: 41px 40px; */
      background-position: left 24px;
        background-size: 25px 25px;
      background-repeat: no-repeat;
      }
      
      input.cto_input[type="radio"]:checked~.checkicon_img22::before {
      background-image: url(../img/radio-after.png);
      /* background-position: left 18px;
      background-size: 41px 40px; */
      background-position: left 24px;
      background-size: 25px 25px;
      background-repeat: no-repeat;
      }
  
  input.cto_input[type="radio"]:checked~.checkicon_img {
  background-image: url(../img/radio-after.png);
  /* background-position: left 18px;
  background-size: 41px 40px; */
  background-position: left 24px;
    background-size: 25px 25px;
  background-repeat: no-repeat;
  }
  
  input.cto_input[type="radio"]:checked~.checkicon_img::before {
  background-image: url(../img/radio-after.png);
  /* background-position: left 18px;
  background-size: 41px 40px; */
  background-position: left 24px;
  background-size: 25px 25px;
  background-repeat: no-repeat;
  }

  .description
  {
    color:var(--Neutrals800);
    /* font-weight: var(--bold); */
    font-size: var(--xxxSmall);
  }

  .left-headings h6
  {
    text-align: left;
    line-height: 3;
    color: var(--Primary1);
    font-weight: var(--bold);
    font-size: var(--xxxSmall);
    margin-top: 24px;
  }

  .color-error
  {
    color: var(--Error700);
  }

  .color-error-border
  {
    border-color:var(--Error700);
  }

  .disabled-area
  {
    background-color:var(--Neutrals300)!important;
  }

  .spacing-area
  {
   padding:30px 65px
  }

  .select-focus {
   border: 2px solid var(--Info600)!important;
  }

  input.cto_input[type="checkbox"]:checked~.column_details  {
      display: flex;
    }

    .column_details 
    {
      display: none;
      padding:10px 17px!important;
    margin-top: 10px;
    width: 100%;
    /* border-style: dashed solid; */
    background-color: var(--Info100);
    border-radius: 10px;
    border-width: thin;
    border-top-style: dashed;
    border-left-style: dashed;
    border-right-style: dashed;
    border-bottom-style: dashed;
    }

    label.label_for_box {
      display: flex!important;
      flex-wrap: wrap!important;
  }

  .sub_inputs
  {
    font-size: 13px;
    border-radius: 10px;
    box-shadow: 0 1px 14px rgba(0,0,0,.12);
    border: 0;
  }

  .cto_for_value
  {
    padding: 19px 47px!important;
  }

  .sub_inputs
  {
    border: 0!important;
    color: var(--Neutrals600);
  }

  .sub_inputs::-webkit-input-placeholder { /* Edge */
     color: var(--Neutrals600);
  }
  
  .sub_inputs:-ms-input-placeholder { /* Internet Explorer 10-11 */
     color: var(--Neutrals600);
  }
  
  .sub_inputs::placeholder {
     color: var(--Neutrals600);
  }

  .check_for_value
  {
    top: 22px!important;
    left: 19px!important;
  }

  .radioset-custom li
  {
    padding: 10px!important;
  }

  .other_text h6 {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--Neutrals600);
}

/* step success css*/

.success_row
{
   background: transparent;
   margin-bottom: 3rem;
}

.success_block
{
  padding: 40px;
  /* padding: 19px 28px 37px 28px; */
  background-color: var(--Neutrals100);
  box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
  border-radius: 14px;
  border: 1px solid var(--neutral-300, #EFF0F6);
}

.page-heading
{
    /* margin-bottom: 30px; */
    margin-bottom: 15px;
    margin-top: 20px;
}

.page-heading h2
{
  font-size: var(--heading4);
  color:var(--Neutrals800);
  font-weight: var(--bold);
}

.stepper
{
  text-align: center;
}

.stepper ul li
{
 color: var(--Secondary2);
 font-size: var(--heading4);
 display: flex;
    justify-content: center;
}

.stepper ul li div.stepper-border
{
  border-bottom: 3px solid var(--Secondary2); 
  width: 75px;
  position: relative;
  top: 7px;
  margin: 9px;
  border-width: 5px;
  border-radius: 6px;
  background-color: var(--Secondary2);
  height: 6px;
}

.stepper ul li div.stepper-number
{
  color: var(--Neutrals100);
  width: 40px;
  height: 40px;
  background-color: var(--Secondary2);
  padding: 2%;
  border-radius: 50%;
  font-size: var(--xSmall);
  display: flex;
    justify-content: center;
    align-items: center;
}

.stepper-text h2
{
  color: var(--Neutrals100);
  font-size: var(--medium);
  color:var(--Neutrals800);
  margin-bottom: 15px;
}

.stepper-text p
{
  font-size: var(--xxxSmall);
  color:var(--Neutrals1000);
  line-height: 1.7;
}

.custom-btn-next
{
  border-radius: 24px;
  padding: 1px 29px;
  font-size: 14px;
  color: #fff!important;
  background-color: var(--Secondary2)!important;
  border:0!important;
  box-shadow: none;
}

.back-btn-previous
{
  background-color: var(--Neutrals500)!important;
  border: 1px solid var(--Neutrals500)!important;
  box-shadow: none;
}


/* alerts */
.alert {
  display: none;
  color: red;
}
.swal2-popup {
  min-width: 17em !important;
  min-height: 15em !important;
  border-radius: 14px !important;
  width: auto !important;
}

.swal2-close {
  border: 1px solid var(--bgLightGrey-20) !important;
  border-radius: 50px !important;
  width: 20px !important;
  height: 20px !important;
  position: absolute;
  margin: 5px !important;
  font-size: var(--small) !important;
  line-height: 10px;
}

.swal2-icon {
  margin: 1.5em auto 0.6em !important;
}

.swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 0 !important;
  padding: 0 20px !important;
  font-weight: var(--semiBold) !important;
  font-size: var(--xxSmall) !important;
  color: var(--bgDarkGrey) !important;
  width: 235px;
}

.swal2-html-container::-webkit-scrollbar {
  width: 10px;
}

.swal2-html-container::-webkit-scrollbar-track {
  background: #ffffff;
}

.swal2-html-container::-webkit-scrollbar-thumb {
  background-color: var(--bgLightGrey-10);
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.swal2-icon .swal2-icon-content,
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long,
.swal2-icon.swal2-success [class^="swal2-success-circular-line"][class$="left"],
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip,
.swal2-icon.swal2-success .swal2-success-ring,
.swal2-icon.swal2-success .swal2-success-fix,
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right,
.swal2-icon.swal2-error .swal2-x-mark {
  display: none !important;
}

.swal2-title {
  padding: 0 !important;
  font-family: "Montserrat" !important;
  font-weight: var(--bold) !important;
  font-size: var(--medium) !important;
}

.swal2-actions {
  margin: 0 !important;
}

.swal2-styled.swal2-confirm {
  font-size: var(--xSmall) !important;
  width: 33%;
  border-radius: 50rem !important;
  margin: 20px 5px 0;
}

.swal2-icon-warning .swal2-styled.swal2-confirm {
  background-color: var(--color1) !important;
}

.swal2-icon-success .swal2-styled.swal2-confirm {
  background-color: var(--Success500) !important;
}

.swal2-icon-error .swal2-styled.swal2-confirm {
  background-color: var(--Error500) !important;
}

.swal2-icon-info .swal2-styled.swal2-confirm {
  background-color: var(--Info900) !important;
}

.swal2-styled.swal2-cancel {
  background-color: var(--bgLightGrey-10) !important;
  font-size: var(--xSmall) !important;
  width: 33%;
  border-radius: 50rem !important;
  margin: 20px 0px 0;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: none !important;
}

.swal2-styled {
  padding: 0.625em 0 !important;
}

/* warning */

.swal2-icon.swal2-warning {
  border: 0 !important;
  background-image: url("../img/warning.png");
  background-repeat: no-repeat;
  width: 57px !important;
  height: 57px !important;
}

.swal2-icon-warning .swal2-title {
  color: var(--bgWarning) !important;
}

/* success */

.swal2-icon.swal2-success {
  border: 0 !important;
  background-image: url("../img/correct.png");
  background-repeat: no-repeat;
  width: 50px !important;
  height: 50px !important;
}

.swal2-icon-success .swal2-title {
  color: var(--bgSuccess) !important;
}

/* error */

.swal2-icon.swal2-error {
  border: 0 !important;
  background-image: url("../img/delete.png");
  background-repeat: no-repeat;
  width: 50px !important;
  height: 50px !important;
}

.swal2-icon-error .swal2-title {
  color: var(--bgError) !important;
}

/* info */

.swal2-icon.swal2-info {
  border: 0 !important;
  background-image: url("../img/info.png");
  background-repeat: no-repeat;
  width: 62px !important;
  height: 62px !important;
}

.swal2-icon-info .swal2-title {
  color: var(--bgInfo) !important;
}

/* alert errors */

.alertBox {
  border: 1px solid var(--bgLightGrey-20);
  background-color: white;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 10px;
  position: relative;
}

.alertBox .btn-close {
  position: absolute;
  right: 1%;
  top: 6%;
  width: 0.4em;
  height: 0.4em;
  padding: 7px;
  color: var(--bgLightGrey-20);
  border-radius: 50rem;
  opacity: 1;
  border: 2px solid var(--bgLightGrey-20);
  background-size: 10px;
  background-color: var(--bgLightGrey-20);
}

.alertBox.success {
  border-left: 4px solid var(--bgSuccess);
}

.alertBox.error {
  border-left: 4px solid var(--bgError);
}

.alertBox.info {
  border-left: 4px solid var(--bgInfo);
}

.alertBox.warning {
  border-left: 4px solid var(--bgWarning);
}

.alertBox .alertIcon img {
  width: 35px;
  height: 35px;
}

.alertBox .alertInfo h6 {
  font-family: "Montserrat";
  font-weight: var(--bold);
  font-size: var(--medium);
}

.alertBox.success .alertInfo h6 {
  color: var(--bgSuccess);
}

.alertBox.error .alertInfo h6 {
  color: var(--bgError);
}

.alertBox.info .alertInfo h6 {
  color: var(--bgInfo);
}

.alertBox.warning .alertInfo h6 {
  color: var(--bgWarning);
}

.alertBox .alertInfo p {
  font-weight: var(--semiBold);
  font-size: var(--xxSmall);
  color: var(--bgLightGrey-10);
}

.btn-close:focus {
  box-shadow: none;
}


.error
{
  color: var(--Error600);
  margin-top: 5px;
  font-weight: 400;
}

.form-label2
{
    font-size: var(--xxxSmall)!important;;
    font-weight: var(--bold)!important;;
    color: var(--Neutral900)!important;
    text-transform: capitalize;
}