/* input labels */

label.form-label {
  position: relative;
  font-size: var(--xSmall);
  font-weight: var(--light);
  color: var(--bgDarkGrey-1);
  margin-bottom: 3px;
  text-transform: lowercase;
}

label.form-label::first-letter {
  text-transform: uppercase;
}

label.required:after {
  content: "*";
  position: absolute;
  /* top: 0;
  right: -10px; */
  /* color: red; */
}

/* input placeholder */

.form-control::-webkit-input-placeholder {
  /* Edge */
  /* color: var(--bgLightGrey-10); */
  color: #000;
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  /* color: var(--bgLightGrey-10); */
  color: #000;
}

.form-control::placeholder {
  /* color: var(--bgLightGrey-10); */
  color: #000;
  font-size: var(--xSmall);
  /* font-weight: 600; */
}

.innerContent .form-control::placeholder {
  /* color: var(--bgLightGrey-10); */
  color: #000;
  font-size: var(--xxSmall);
  /* font-weight: 600; */
}
.select2-search__field {
  padding: 8px !important;
  height: 33px !important;
}
.select2-search__field::placeholder {
  color: var(--bgLightGrey-20);
  font-size: var(--xxSmall);
}
.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(--bgLightGrey-10);
  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;
  padding-right: 0;
}
input.cropInput{
  display: none;
}
/* input focus */

:focus {
  outline: none;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border: 1px solid var(--bgPrimary);
  color: var(--bgDarkGrey-1);
}

/* input  */

.form-group {
  position: relative;
  margin-bottom: 10px;
  /* height: 77px; */
}

.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(--bgLightGrey-10);
  /* font-weight: 600; */
  font-size: var(--small);
  border-radius: 10px;
  color: var(--bgDarkGrey-1);
}

.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; */
}
.promoBox .form-control:disabled{
  background-color: transparent;
  color: var(--bgDarkGrey);
  font-weight: 700;
}
.form-select {
  border: 1px solid var(--bgLightGrey-10);
  color: var(--bgDarkGrey-1);
  font-size: var(--small);
  background-image: url("../img/downArrow.png");
  background-size: 13px 6px;
  padding: 0 0 0 11px;
  font-weight: var(--light);
  border-radius: 10px;
}
.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;
  text-transform: inherit;
}

.inputBox .pass {
  position: absolute;
  /* top: calc(50px - 36px);
  right: 5%; */
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
.inputBox .pass {
  color: var(--bgLightGrey-20)
}
   
.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;
}
.innerContent .mSelect .select2-container--default .select2-selection--multiple{
  height: auto;
}
/* .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: 30px;
  padding-right: 22px;
  min-height: 28px;
  /* display: inline-block; */
  display: flex;
  align-items: center;
  line-height: 20px;
  white-space: break-spaces;
}

.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 {
  /*background: none; */
  display: block;
  font-family: "FontAwesome";
  content: "\f073";
  /* width: 15px; */
  /* height: 20px; */
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 20px;
  color: var(--bgLightGrey-10);
  transform: translate(0, -50%);
  width: 28px;
    height: 26px;
    
    text-align: right;

}

.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: 16px !important;
  width: auto !important;
  background: #FFFDE6 !important;
}

.swal2-close {
  border: 1px solid var(--bgDark2) !important;
  border-radius: 50px !important;
  width: 24px !important;
  height: 24px !important;
  position: absolute;
  margin: 5px !important;
  font-size: var(--semiLarge) !important;
  line-height: 10px;
  color: var(--bgDark2)!important;
}
.swal2-close:hover {
  background: var(--bgDark2) !important;
  color: var(--bgWhite) !important;
}
.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(--small) !important;
  color: var(--bgDarkGrey) !important;
  width: 235px;
}

.swal2-html-container::-webkit-scrollbar {
  width: 10px;
}

.swal2-html-container::-webkit-scrollbar-track {
  background: var(--bgWhite);
}

.swal2-html-container::-webkit-scrollbar-thumb {
  background-color: var(--bgLightGrey-10);
  border-radius: 10px;
  border: 3px solid var(--bgWhite);
}

.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: var(--inter) !important;
  font-weight: var(--bold) !important;
  font-size: var(--large) !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;
}
.custom-confirm-class,.custom-deny-class,.custom-cancel-class{
  width: 28% !important;
}
.custom-deny-class{
  margin-right: 5px !important
}
.swal2-icon-warning .swal2-styled.swal2-confirm {
  background-color: var(--bgPrimary) !important;
  border-radius: 8px !important;
  border: 1px solid var(--bgPrimary);
}

.swal2-icon-warning .swal2-styled.swal2-confirm:hover  {
  background: transparent !important;
  color: var(--bgPrimary) !important;
}
.swal2-icon-success .swal2-styled.swal2-confirm {
  /* background-color: var(--bgSuccess) !important; */
  background-color: var(--bgPrimary) !important;
  border-radius: 8px !important;
  border: 1px solid var(--bgPrimary);
}.swal2-icon-success .swal2-styled.swal2-confirm:hover {
  background: transparent !important;
  color: var(--bgPrimary) !important;
}
.swal2-icon-error .swal2-styled.swal2-confirm {
  background-color: var(--bgError) !important;
}

.swal2-icon-info .swal2-styled.swal2-confirm {
  background-color: var(--bgInfo) !important;
}

.swal2-styled.swal2-cancel {
  background-color: var(--bgLightGrey-10) !important;
  font-size: var(--xSmall) !important;
  width: 33%;
  border-radius: 8px !important;
  margin: 20px 0px 0;
  background: transparent !important;
  color: #4B50F6 !important;
  border: 1px solid #4B50F6 !important;
  font-weight: var(--semiBold) !important;
}
.swal2-styled.swal2-cancel:hover {
  background: #4B50F6 !important;
    color: var(--bgWhite) !important;
}
.swal2-styled.swal2-deny{
  background-color: var(--bgError) !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(--bgDark2) !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;
  background-color: #6200bf !important;
  background-blend-mode: hard-light;
}

.swal2-icon-success .swal2-title {
  /* color: var(--bgSuccess) !important; */
  color: var(--bgDark2) !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(--light);
  font-size: var(--semiLarge); */
  font-weight: var(--bold);
    font-size: var(--medium);
  color: var(--bgDark3);
  position: relative;
  margin-bottom: 5px;
  /* text-transform: lowercase; */
  line-height: 28px;
  /* width: calc(100% - 36px); */
  max-width: calc(100% - 36px);
  white-space: nowrap;
  font-family: var(--inter) !important;
   

}

.innerContent label::first-letter {
  text-transform: uppercase;
}

.innerContent .form-select,
.innerContent .form-control,
.innerContent .select2-container .select2-selection--single {
  /* min-height: 60px;
  font-size: var(--medium);
  border-radius: 8px;
  background: var(--bgBeige);
  border: none;
  font-family: var(--inter) !important;
  color: var(--bgDark2); */

  height: 40px;
    border: solid 1px #BEBEBE;
    color: var(--bgDark2);
    min-height: 40px;
    background: transparent;
    font-size: var(--medium);
    border-radius: 8px;
    font-family: var(--inter) !important;
}


.innerContent .contentBox .form-control{
  height: 40px;
    border: solid 1px #BEBEBE;
    color: var(--bgDark2);
    min-height: 40px;
    background: transparent;
    font-size: var(--medium);
    border-radius: 8px;
    font-family: var(--inter) !important;
}

.innerContent .form-select, .innerContent .contentBox select.form-control,
.innerContent .select2-container .select2-selection--single {
  background-image: url(../img/icons/dropdownarrow.svg);
  background-repeat: no-repeat;
  background-position: 96% center;
  padding: 0 16px;
}

select option {
  background: var(--bgBeige);
  color: var(--bgDark2);
}
.innerContent .form-select:focus,
.innerContent .form-control:focus {
  /* border:none; */
}

.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: 20px;
  position: relative;
  /* height: 45px; */
  border: 1px solid var(--bgLightGrey-10);
  border-radius: 10px;
  /* overflow-y: auto;
  overflow-x: hidden; */
  text-align: left;
}
.innerContent .select2-container--default .select2-selection--multiple::-webkit-scrollbar {
  width: 10px;
}

.innerContent .select2-container--default .select2-selection--multiple::-webkit-scrollbar-track {
  background: var(--bgWhite);
  margin: 5px 0;
}

.innerContent .select2-container--default .select2-selection--multiple::-webkit-scrollbar-thumb {
  background-color: var(--bgLightGrey-10);
  border-radius: 10px;
  border: 3px solid var(--bgWhite);
}
.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.is-invalid, .was-validated .form-check-input:invalid {
  border-color: var(--bgLightGrey-20);
}

.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label{
  color: var(--bgDarkGrey-1);
}


.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%;
}
.form-check-input.is-invalid, .was-validated .form-check-input:invalid {
  border-color: var(--bgLightGrey-20);;
}
.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label{
  color: var(--bgDarkGrey);
}
/* 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:calc(60px - 18px);
  right: 2%;
  /* color: var(--bgLightGrey-20); */
  color: var(--bgDark2);
  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 !important;
  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(--bgPrimary); */
  -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;
}
optgroup {
  color: var(--bgDarkGrey-1);
  font-weight: var(--bold);
}
.disabled-select {
  background-color: var(--bgLightGrey);
  opacity: 0.5;
  border-radius: 3px;
  cursor: not-allowed;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

input[readonly], select[readonly] {
  /* pointer-events: none;
  touch-action: none; */
  /* background: var(--bgLightGrey) !important; */
  background: #E9E7C9 !important;
  box-shadow: none;
  }


select[readonly].select2-hidden-accessible + .select2-container,.bd {
pointer-events: none;
touch-action: none;
}

select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
background: var(--bgLightGrey);
box-shadow: none;
}

select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow,
select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
display: none;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple{
  background-color: var(--lightBorder);
  
}

/* Event, Webinar filter forms */

.filter .select2-container--default .select2-selection--multiple{
  height: 45px;
  overflow-y: auto;
  overflow-x: hidden;
}


.hide-end-date-css{
  display: none !important;
}
.hide-start-date-css{
  display: none !important;
}

.vendor-hide-dates-css{
  display: none !important;
}

.genderReadonly{
  pointer-events:none
}

.rangeWrap .ui.popup {
  top: 20px !important;
}
.hide-div{
  display: none !important;
}


/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2) inset !important;
    color: #fff !important;
    -webkit-text-fill-color:#fff !important
}


.form-check-input {
  height: 24px;
  width: 24px;
  border-radius: 8px !important;
  border:solid 1px #AAAAAA;
  background: transparent;
  margin-top: 2px;
  }
  .form-check-input:checked[type="checkbox"] {
      background-image: url(../img/icons/radio-check.svg);
      background-color: var(--bgBlack);
      background-size: 70%;
      background-repeat: no-repeat;
      background-position: center center;
  } 
