/* input:invalid {
	border-color: red !important;
} */

.input__field:read-only {
  background: #f1f5f9;
  border: none;
}

.custom-select__list {
  overflow-y: auto;
  height: 100%;
  max-height: 250px;
}

.input__flex {
  display: flex;
}

.input__flex .custom-select__wrap {
  margin-right: 1px;
}

.custom-select__list::-webkit-scrollbar
{
	width: 3px;
	background-color: #fff;
}

.custom-select__list::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #A0ABB5;
}

.btn {
    min-width: auto !important;
}

.btn-gray {
  background-color: #3a464c !important;
  min-width: 260px !important;
}

/* .btn:hover {
    background-color: transparent !important;
} */

.btn_style_primary:hover {
    background: #cc4d00 !important;
    opacity: 1;
}

.checkbox__input {
    display: block;
}

.custom-select {
    display: block;
    position: absolute;
    z-index: -10;
}

#spinner:not([hidden]) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    font-size: 12px;
  }
  
  #spinner::before {
    content: "";
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #e65609;
    border-radius: 100%;
    will-change: transform;
    animation: spin 1s infinite linear
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  
  .input__list {
    background-color: #fff;
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 30;
    border-radius: 8px;
    filter: drop-shadow(0px 5px 24px rgb(0,77,95));
    padding: 16px 8px;
    width: 100%;
  }

  .input__list div:not(:last-child) {
    margin-bottom: 12px;
  }

  .custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
  }
  .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1.8em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 10px;
    background: url(a89f2df91fda74daa6d1.svg) no-repeat 12px;
  }

  .custom-checkbox:checked+label::before {
    background: url(98b03af3d885fc19537c.svg) no-repeat 8px;
  }