/* floating input */
.input-block {
  position: relative;
}

.input-block .date-picker-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  display: flex;
  align-items: center;
  /* z-index: 0; */
  cursor: pointer;
}

.input-block input {
  position: relative;
  /* z-index: 1; */
  background-color: transparent;
}

.input-block input,
.input-block textarea {
  font-weight: 500;
  font-size: 14px;
  color: #030037;

  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  outline: none;
  line-height: 14px;
}

.input-block input:valid + span.placeholder,
.input-block input:focus + span.placeholder {
  transform: scale(0.8) translateY(-50%);
  background: #fff;
  top: 2px;
  font-size: 12px;
  height: 20px;
}

.input-block textarea:valid + span.placeholder,
.input-block textarea:focus + span.placeholder {
  transform: scale(0.8) translateY(-50%);
  background: #fff;
  top: 2px;
  font-size: 12px;
  height: 20px;
}

/* floating input css */

/* select2 css override */

.select-box,
.input-block {
  position: relative;
  margin-bottom: 16px;
}

.select2-selection {
  font-weight: 500;
  font-size: 14px;
  color: #030037;
  padding: 10px !important;
  border: 1px solid #e6e6e6 !important;
  outline: none;
  border-radius: 8px !important;
}

.select2-selection--multiple {
  padding-right: 60px !important;
  min-height: 45px !important;
}

.select2-selection--single {
  height: unset !important;
  padding: 5.5px !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  margin: 0;
  margin-top: 3.8px !important;
  display: block !important;
}

.select2-selection--single .select2-selection__rendered {
  height: 32px;
  line-height: 32px !important;
}

.select2-container--default {
  border: none;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  border: none;
  background-color: #f1f1f2;
  color: #153ac7;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  padding-left: 0;
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 14px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  border-right: none;
  color: rgba(255, 0, 0, 0.576);
}

.select2-dropdown,
.select2-results {
  border: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 1px 5px rgba(3, 0, 55, 0.08);
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #153ac7;
}

.select2-container--default .select2-results__option--selected {
  background: #f1f1f2;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  outline: none;
  border: 2px solid #f1f1f2;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  right: 10px;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  bottom: 0;
  top: 0;
  right: 40px;
  margin: auto;
}

.select2-container--default .select2-selection--single,
.select2-selection__clear span,
.select2-container--default
  .select2-selection--multiple
  .select2-selection__clear
  span {
  color: rgba(255, 0, 0, 0.576);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 32px;
  margin-right: 30px;
  padding-right: 0px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  background-image: url("../icons/arrow-down.png");
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
  border: none !important;
  height: 6px !important;
  width: 10px !important;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  transform: rotate(180deg);
}

.select2-selection--multiple:before {
  content: url(../icons/arrow-down.png);
  position: absolute;
  right: 13.5px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}

.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple:before {
  transform: rotate(180deg);
}
/* end  select2 css override */

.input-block span.placeholder,
.select-box label {
  position: absolute;
  padding: 2px 4px;
  color: #939596;
  display: flex;
  align-items: center;
  font-size: 14px;
  top: 0;
  bottom: 0;
  left: 14px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  pointer-events: none;
  z-index: 1;
  margin-bottom: 0;
  font-weight: 400;
}

.text-area-placeholder span.placeholder {
  position: absolute;
  padding: 2px 4px;
  color: #939596;
  font-size: 14px;
  top: 10px;
  bottom: unset;
  left: 14px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  pointer-events: none;
  z-index: 1;
  margin-bottom: 0;
  font-weight: 400;
}

.input-block span.placeholder span,
.select-box label span {
  color: red;
}

.select-box .selected {
  top: 2px;
  font-size: 12px;
  transform: scale(0.8) translateY(-50%);
  background: #fff;
  height: 20px;
}
