.input-search__wrapper {
  position: relative;
}

.input-search__search {
  position: relative;
}



.input-search__search button {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
}

.input-search__search i {
  display: block;
  width: 22px;
  height: 22px;
  background-image: url("../assets/gfx/icons/icon-search-blue.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.custom-input {
  position: relative;
  width: 100%;
  height: 44px;
  background-color: #ffffff;
  border-radius: 6px;
  margin-bottom: 20px;
}

.custom-input label {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.custom-input input {
  width: 100%;
  height: 44px;
  padding: 11px 20px;
  border: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  background-color: transparent;
  color: #000;
}

.custom-input--outline {
  border: 1px solid #000;
}

.custom-input--bg {
  background-color: #f2f5f7;
}

.custom-textarea {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #ffffff;
  border-radius: 6px;
  margin-bottom: 20px;
}

.custom-textarea label {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.custom-textarea textarea {
  width: 100%;
  height: 100%;
  padding: 11px 20px;
  border: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  background-color: transparent;
  color: #000;
}

.custom-textarea textarea::-webkit-input-placeholder {
  color: #000;
}

.custom-textarea textarea::-moz-placeholder {
  color: #000;
}

.custom-textarea textarea:-ms-input-placeholder {
  color: #000;
}

.custom-textarea textarea::placeholder {
  color: #000;
}

.custom-textarea--outline {
  border: 1px solid #000;
}

.custom-textarea--bg {
  background-color: #f2f5f7;
}

.custom-select {
  position: relative;
  display: block;
  width: 100%;
  height: 44px;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 6px;
}

.custom-select label {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.custom-select select {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.custom-select--bg {
  border: none;
  background-color: #f2f5f7;
}

.custom-select__select {
  width: 100%;
  height: 44px;
  padding: 11px 20px;
  border: none;
  font-size: 14px;
  line-height: 22px;
  color: #000;
  font-weight: 100;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* remove default arrow */
}

.custom-select__select:after {
  content: "";
  display: block;
  width: 15px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../assets/gfx/icons/icon-chevron-thin-blue.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.custom-select__select.active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.custom-select__select.active ~ .custom-select__select-options {
  display: block;
}

.custom-select__select-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 6px;
  background-color: #fff;
  z-index: 100;
  display: none;
}

.custom-select__select-options li {
  padding: 10px 0;
  list-style: none;
  font-size: 14px;
  color: #000;
  border-bottom: 1px solid rgba(0, 174, 239, 0.5);
  cursor: pointer;
}

.custom-select__select-options li:first-child {
  padding-top: 0;
}

.custom-select__select-options li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.custom-checkbox input {
  height: 0;
  width: 0;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox label {
  position: relative;
  cursor: pointer;
}

.custom-checkbox label:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 6px;
  vertical-align: middle;
  margin-right: 10px;
}

.custom-checkbox label:after {
  display: block;
  position: absolute;
  margin: 6px;
  top: 0;
  left: 0;
  font-family: iconfont;
  line-height: 22px;
  color: #000;
}

.custom-checkbox label span {
  display: inline-block;
  vertical-align: text-top;
  font-size: 14px;
  line-height: 20px;
  margin-top: 2px;
}

.custom-checkbox input:checked ~ label:after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../assets/gfx/icons/icon-checkmark-blue.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.custom-checkbox--outline label:before {
  border: 1px solid #000;
}

.custom-checkbox--bg label:before {
  width: 24px;
  height: 24px;
  background-color: #f2f5f7;
}

.custom-checkbox--bg label span {
  width: calc(100% - 34px);
  margin-top: 1px;
}

.custom-checkbox--bg label:after {
  line-height: 24px;
  top: 2px;
}

.custom-radio__input {
  display: none;
}

.custom-radio__label {
  display: block;
}

.custom-radio__label-radio {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  border: 1px solid #979797;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  vertical-align: middle;
}

.custom-radio__label-radio:before {
  content: none;
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #000;
  top: 2px;
  left: 2px;
}

.custom-radio__input:checked ~ .custom-radio__label .custom-radio__label-radio {
  border: 1px solid #000;
}

.custom-radio__input:checked
  ~ .custom-radio__label
  .custom-radio__label-radio:before {
  content: "";
}
