/*======================================
  Selectric v1.9.6
======================================*/

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  background: none;
  position: relative;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-family: 'GalanoGrotesque-Regular';
  font-size: 15px;
  line-height: 46px;
  text-align: left;
  color: #333;
  background: #F8F9FF;
  height: 46px;
  padding: 0 40px 0 16px;
  border: 1.5px solid #DEE4F8;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric-hover .selectric .label {
  border-color: #A3B5FC;
}
.selectric-open .selectric .label {
  border-color: #4A6CF7;
  box-shadow: 0 0 0 3px rgba(74,108,247,0.12);
  background: #fff;
}
.selectric .button {
  display: block;
  position: absolute;
  width: 24px;
  height: 46px;
  right: 14px;
  top: 0;
  background: none;
  color: #4A6CF7;
}
.selectric .button:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #4A6CF7;
  margin-top: -3px;
  transition: transform 0.2s;
}
.selectric-open .selectric .button:after {
  transform: rotate(180deg);
}

.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.selectric-disabled .selectric .label {
  background: #E8EDFF;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: none;
  z-index: -1;
  margin-top: 4px;
  font-family: 'GalanoGrotesque-Regular';
  font-size: 15px;
  color: #333;
  text-align: left;
  box-shadow: 0 8px 24px rgba(74,108,247,0.15);
  border-radius: 10px;
  overflow: hidden;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
  background: #fff;
  border: 1.5px solid #DEE4F8;
  border-radius: 10px;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 4px;
}
.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  min-height: 20px;
  background: #fff;
}
.selectric-items li {
  display: block;
  padding: 12px 16px;
  color: #333;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid #f5f4f8;
}
.selectric-items li:last-child {
  border-bottom: none;
}
.selectric-items li.selected {
  background: #4A6CF7;
  color: #fff;
}
.selectric-items li.highlighted {
  background: #EEF2FF;
  color: #4A6CF7;
}
.selectric-items li:hover {
  background: #EEF2FF;
  color: #4A6CF7;
}
.selectric-items li.selected:hover {
  background: #3D58CC;
  color: #fff;
}
.selectric-items .disabled {
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #999 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-family: 'GalanoGrotesque-Bold';
  padding-left: 16px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}
