.label{
  position: absolute;
  left: 2rem;
  top: -0.6rem;
  background: var(--white);
  font-size: 1.2rem;
  line-height: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.4rem;
  z-index: 1;
  text-transform: uppercase;
}
.input-white .label{
  border-radius: 100rem;
}
.form-input{
  position: relative;
} 
.input-white .form-control{
  border-color: var(--white);
}
input[type='number'].form-control{
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type=number].form-control::-webkit-outer-spin-button,
input[type=number].form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-input-icon.right .form-control{
  padding-right: 6rem;
}
.form-input-icon .input-icon{
  position: absolute;
  left: 2rem;
  top: 1.4rem;
  z-index: 1;
}
.form-input-icon.right .input-icon{
  left: auto;
  right: 2rem;
}
.showPassword{
  position: relative;
}
.showPassword::after{
  position: absolute;
  content: none;
  top: -0.4rem;
  width: 0.2rem;
  height: 2.8rem;
  background: #E1E3E3;
  transform: rotate(45deg);
}
.showPassword.toggle::after{
  content: "";
}
.rquired-text,
.input-info-text{
  color: #767474;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: normal;
}
.input-info-text{
  margin-top: 0.8rem;
}
.custom-select {
  position: relative;
  cursor: pointer;
}
.select-input{
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.custom-select-trigger{
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 4.8rem;
}
.custom-select-trigger::after{
  position: absolute;
  content: "";
  right: 2rem;
  width: 1.2rem;
  height: 0.8rem;
  background: url(../images/icon-arrow-down.png);
  background-size: cover;
  background-position: center right;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-select-trigger.show::after{
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.custom-options {
  position: absolute;
  background: var(--white);
  border-radius: 0.4rem;
  padding: 0.6rem 0;
  width: 100%;
  box-shadow: 0px 4px 16px 0px #1D0D050F,0px -4px 16px 0px #1D0D050F;
  margin-top: 0.8rem;
  display: none;
  z-index: 10;
  max-height: 20rem;
  overflow-y: auto;
}
.custom-option{
  padding: 0.6rem 2rem;
  position: relative;
  font-size: 1.4rem;
  line-height: 2.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.custom-option:not(.selected):hover{
  background: var(--pink);
  color: var(--white);
}
.custom-option.selected {
  font-weight: bold;
  padding-right: 4rem;
}
.custom-option.selected::after{
  position: absolute;
  content: "";
  right: 2rem;
  width: 1.3rem;
  height: 1rem;
  background: url(../images/icon-select-tick.png);
  background-size: cover;
  background-position: center right;
}
.input-columns{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.input-column{
  width: calc(50% - 0.6rem);
}
.radio-item{
  margin-bottom: 2rem;
}
.radio-item:last-child{
  margin-bottom: 0;
}
.radio-input{
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-right: 2rem;
}
.radio-input .chk .checkmark{
  top: 0;
}
.radio-img{
  flex-shrink: 0;
  width: 5rem;
  height: 3.1rem;
  margin-right: 2rem;
  display: flex;
  align-items: center;
}
.radio-img img{
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.radio-item p{
  margin-bottom: 0;
  margin-left: auto;
  flex-shrink: 0;
  font-weight: 600;
}
.radio-item p span{
  padding-right: 0 !important;
}
.input-btn.d-flex-a .btn-link{
  margin-right: 3.2rem;
}
.input-btn.d-flex-a .btn-link:last-child{
  margin-right: 0;
}
.inline-input-list{
  width: 50%;
}
.inline-input > span{
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 0.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.4rem;
}
.inline-input-value{
  margin: 0;
}
.inline-input .input-group{
  display: none;
}
.inline-input.show .input-group{
  display: block;
}
@media(min-width:1200px) and (max-width:1359.98px){
  .inline-input-list {
    width: 60%;
  }
  .radio-img img{
    width: 100%;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .radio-input,
  .radio-img{
    margin-right: 1.6rem;
  }
  .inline-input-list {
    width: 70%;
  }
  .radio-img img{
    width: 100%;
  }
}
@media(min-width:768px) and (max-width:991.98px){
  .inline-input-list {
    width: 70%;
  }
  .radio-img img{
    width: 100%;
  }
}
@media(max-width:767.98px){
  .input-column {
    width: 100%;
  }
  .radio-item {
    margin-bottom: 1.6rem;
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
  .radio-input {
    margin-right: 1rem;
  }
  .radio-img {
    width: 4rem;
    height: 2.4rem;
    margin-right: 1rem;
  }
  .radio-img img{
    width: 100%;
  }
  .radio-item span{
    padding-right: 1.6rem;
  }
  .input-btn.d-flex-a .btn-link {
    margin-right: 0;
    margin-top: 2rem;
  }
  .input-btn.d-flex-a{
    justify-content: center !important;
    flex-wrap: wrap;
  }
  .input-btn.d-flex-a .btn-primary{
    order: -1;
    width: 100%;
  }
  .inline-input-block {
    flex-wrap: wrap;
  }
  .inline-input-list {
    width: 100%;
  }
  .inline-edit-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  .inline-btn-save .btn {
    width: 100%;
  }
}