/* 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: -6px;
  /* color: red; */
}

/* input placeholder */

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

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

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

.innerContent .form-control::placeholder {
  color: var(--bgLightGrey-10);
  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;
  /* 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: 12px 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:focus ~ .form-label,
.inputBox .form-control:not(:placeholder-shown) ~ .form-label {
    top: 0; /* Move to the top */
    transform: translateY(-50%) scale(0.9);
    color: var(--bgMain);
}

.inputBox label {
  position: absolute;
  font-size: var(--small);
  left: 1rem;
  top: 25px;
  /* 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%;
}

.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; */
}
.select2-container--default .select2-selection--single .select2-selection__clear{
  font-size: var(--large);
  margin-right: 25px;
  padding-right: 10px;
}
.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 {
  /* 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-popup.customSuccessSwal{
  min-width: 13em !important;
  min-height: 11em !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.htmlContainerCustom{
  width: 530px;
}
.swal2-html-container.htmlContainerCustomBoothEdit{
  width: 350px;
}
.containerCustom .continueWithoutChangeBtn {
  width :37% !important;
}
.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;
}
.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(--bgWarning) !important;
}

.swal2-icon-success .swal2-styled.swal2-confirm {
  background-color: var(--bgSuccess) !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: 50rem !important;
  margin: 20px 0px 0;
}
.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(--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;
}
.swal2-input{
  border: 1px solid var(--bgLightGrey-10) !important;
  /* font-weight: 600; */
  font-size: var(--small) !important;
  border-radius: 10px !important;
  color: var(--bgDarkGrey-1) !important;
}
.swal2-input::placeholder {
  color: var(--bgLightGrey-10) !important;
  font-size: var(--xSmall) !important;
  /* font-weight: 600; */
}
.swal2-input:focus {
  box-shadow: none !important;
  border: 1px solid var(--bgPrimary) !important;
  color: var(--bgDarkGrey-1)  !important;
}
/* .swal2-input-label{
  margin-left: 30px !important;
  font-size: var(--xSmall) !important;
  font-weight: var(--light) !important;
  color: var(--bgDarkGrey-1) !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(--xxSmall);
  color: var(--textColor);
  position: relative;
  margin-bottom: 5px;
  /* text-transform: lowercase; */
  text-transform: capitalize;
}
/* .innerContent label.required{padding-right:6px;} */

.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; */
  min-height: 45px;
  font-size: var(--xxSmall);
}
.innerContent .form-select {
  padding-right: 3rem;
}
.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: 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: #ffffff;
  margin: 5px 0;
}

.innerContent
  .select2-container--default
  .select2-selection--multiple::-webkit-scrollbar-thumb {
  background-color: var(--bgLightGrey-10);
  border-radius: 10px;
  border: 3px solid #ffffff;
}
.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.registration-status .form-check-input {
  width: 25px;
  min-width: 25px;
  height: 25px;
}
.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(45px - 14px);
  right: 5%;
  color: var(--bgLightGrey-20);
  font-size: var(--small);
}
.innerContent .form-group .pass.famPass .icon {
  top: calc(45px - 8px);
}
/* .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;
  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;
}

@-moz-document url-prefix() {
  select.form-select {
    padding-top: 10px;
  }
}

.evntTableWrapper .mdyCalender.evtCal .ui.icon.input > i.icon {
  height: 2.67142857em;
  top: 10%;
}
.evntTableWrapper .mdyCalender.evtCal .ui.calendar .ui.table.day {
  min-width: 15em;
}
.error-message-date {display: none}

.note-editable{
  height: 250px !important;
  text-align: left;
}
.note-editable ul{
  list-style: disc;
}
.note-editor .note-toolbar .note-btn.btn-fullscreen{
  display: none;
}
.note-editor .note-btn-group .dropdown-toggle::after{
  display: none;
}
.note-editor  .note-toolbar{
  text-align: left;
}
.note-icon-font.note-recent-color{
  background-color: transparent !important;
}
.error-message-date {
  display: none;
}

.customSearch input.form-control,
.customSearch select.form-select,
.customSearch .select2-container .select2-selection--single {
  border: 1px solid var(--bgLightGrey-20) !important;
  height: 37px;
  min-height: 37px;
}
.customSearch .custom-select {
  border: 1px solid var(--bgLightGrey-20) !important;
  height: 37px;
  border-radius: 10px;
  background-color: white;
}
.customSearch .custom-select {
  border: 1px solid var(--bgLightGrey-20) !important;
  height: 37px;
  border-radius: 10px;
  background-color: white;
}
.customSearch .custom-select .multiselect-selected-text {
  padding-left: 6px;
}
.customSearch
  .select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: var(--bgLightGrey-30);
}
.customSearch input.form-control::placeholder {
  color: var(--bgLightGrey-30);
}
.customSearch .labelText {
  color: var(--bgMember);
  font-weight: var(--bold);
  display: block;
}
.customSearch .clearFilter {
  color: var(--bgError);
  background-color: rgba(255, 90, 90, 0.1);
  border: 1px solid var(--bgError);
  border-radius: 8px;
transition: all .3s ease;
}
.customSearch .clearFilter:hover{
  background-color: var(--bgError);
  color: white;
}
.custom-swal-container .select2-container {
  width: 100% !important;
}

.custom-swal-container .select2-container--default .select2-selection--single .select2-selection__rendered{
  padding-right: 16px;
  display: block;
  text-align: left;
  line-height: 24px;
}
.custom-swal-container .select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 20px;
}
.custom-swal-container .select2-container--default .select2-selection--single{
  height: 40px;
}
.custom-swal-container .swal2-html-container{
width: 275px;
}