@import url("nowtvicons.css");
@import url("master.css");

/* form starting stylings ------------------------------- */
.group {
  position: relative;
}

.group.email input {
  padding-right: 50px;
}

input,
.custom-select,
.select-box {
  padding: 15px 20px;
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  border: 2px solid #b3b3b3;
  border-radius: 0;
  color: #4d4d4d;
  /*font-size: 2rem;*/
  line-height: 2.4rem;
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'MuchoSans';
}

input.fullwidth {
  width: 100%;
}

.select-box {
  cursor: pointer;
  background-color: transparent;
}

select.select-box::-ms-expand {
  display: none;
}

input.sms {
  text-align: center;
  padding: 15px;
}

input:focus,
select:focus {
  outline: none;
  border-color: #ffbf00;
}

input[name="email"] {
  text-transform: lowercase;
}

.group.select span.arrow {
  position: absolute;
  top: 24px;
  right: 22px;
  transition: transform .2s linear;
  transform: rotate(0deg);
}

.group.select span.arrow.active {
  top: 18px;
  transform: rotate(180deg);
  transition: transform .2s linear;
  color: #00498F;
}

.group.number:before {
  content: '+';
  position: absolute;
  left: 20px;
  top: 22px;
  font-size: 20px;
  color: #777;
}

.group.number input {
  padding-left: 32px;
}

/* textarea */
textarea {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  resize: none;
  border-radius: 4px;
  border: 1px solid #9b9b9b;
  min-height: 250px;
  padding: 15px 20px;
  color: #fff;
  font-family: 'MuchoSans';
}

textarea:focus {
  border: 1px solid #007CF3;
  outline: none;
}

/* LABEL ======================================= */
.group label {
  color: #b3b3b3;
  /*font-size: 2rem;*/
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 20px;
  top: 20px;
  font-family: 'MuchoSans';
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}



/* active state */
input:focus~label,
input:valid~label,
select:focus~label,
select:valid~label,
input[type=date]~label,
textarea:focus~label,
.withDate label {
  top: -13px;
  left: 18px;
  /*font-size: 1.8rem;*/
  line-height: 2.2rem;
  color: #b3b3b3;
  background-color: #fff;
  padding: 0 5px;
  font-family: 'MuchoSans';
}

.group label.active {
  top: -13px;
  left: 18px;
  background-color:#161616;;
  padding: 0 5px;
  color: #fff;
}

.group label.inactive{
  left: 20px;
  top: 20px;
}

/* BOTTOM BARS ================================= */
/* HIGHLIGHTER ================================== */
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */
input:focus~.highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* Checkbox and radio buttons ================================== */
/* big check labels */
.label-big-check {
  position: relative;
  display: block;
  padding: 15px 0 15px 35px;
  padding-left: 0;
  margin: 0;
  cursor: pointer;
  left: 0;
  width: 100%;
}

.label-big-check input {
  display: none;
}

.label-big-check .check-title {
  /*font-size: .9em;*/
  cursor: pointer;
  position: relative;
  left: 35px;
  color: #4A4A4A;
  /*font-size: 16px;*/
  line-height: 24px;
}

.label-big-check input[type="checkbox"]+.check-title:before {
  position: absolute;
  left: -35px;
  width: 28px;
  height: 28px;
  display: inline-block;
  font-family: "nowtv";
  content: ' ';
  font-size: 15px;
  line-height: 1;
  color: #aaa;
  padding: 5px 0 0 5px;
  border: 2px solid #D8D8D8;
  border-radius: 4px;
}

.label-big-check input[type="checkbox"]:checked+.check-title:before {
  content: "\63";
  color: #333;
  position: absolute;
}

.label-big-check label {
  pointer-events: auto;
}

.label-big-check label a {
  /*font-size: 1.6rem;*/
  line-height: 2.4rem;
}

/* Customize the label (the container) */
.radio-wrapper {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  color: #333333;
  /*font-size: 20px;*/
  line-height: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border:1px solid #4d4d4d;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-wrapper:hover input~.checkmark {
  background-color: #fff;
  border:1px solid #4d4d4d;
}

/* When the radio button is checked, add a blue background */
.radio-wrapper input:checked~.checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-wrapper input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-wrapper .checkmark:after {
  top: 4px;
  left: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffbf00 ;
}

.group i {
  position: absolute;
  top: 17px;
  left: 25px;
  /*font-size: 20px;*/
}

.group.icon input,
.group.icon select {
  padding-left: 55px;
}

.group p.subparg {
  margin: 5px 0 0 0;
}

.dateselect {
  width: 100%;
}

.dobTitle {
  margin-bottom: 20px;
}

.select.icon {
  position: relative;
}

.select.icon span.arrow {
  position: absolute;
  top: 24px;
  right: 16px;
  transition: transform .2s linear;
  transform: rotate(0deg);
  pointer-events: none;
}

.select.icon span.arrow.active {
  top: 18px;
  transform: rotate(180deg);
  transition: transform .2s linear;
  color: #00498F;
}

/* .select-box {
  position: relative;
}

.select-box input {
  cursor: pointer;
}

.select-result-list {
  display: none;
  background-color: white;
  width: 100%;
  border: 1px solid #4a4a4a;
  border-radius: 4px;
  position: absolute;
  top: 62px;
  left: 0;
  z-index: 10;
}

.select-result-list .result p {
  padding: 10px 10px;
  cursor: pointer;
  color: #4a4a4a !important;
  border-radius: 4px;
}

.select-result-list .result:hover p {
  background-color: #f7f7f7;
}

.select-box .group label {
  top: -13px;
  left: 18px;
  line-height: 2.2rem;
  color: #9b9b9b;
  background-color: white;
  padding: 0 5px;
}

.select-box input:focus~label {
  color: #00498F;
}

.select-box span.arrow{
  position: absolute;
  right: 22px;
  top: 24px;
  display: inline-block;
  transition: transform .2s linear;
  transform: rotate(0deg);
}

.select-box span.arrow.active {
  top: 18px;
  transform: rotate(180deg);
  transition: transform .2s linear;
  color: #00498F;
} */


@media screen and (max-width: 575px) {

  input,
  .custom-select, .select-box {
    width: 100%;
    /*font-size: 1.6rem;*/
    line-height: 2.1rem;
    height: 56px;
    padding: 15px 20px;
  }

  .group {
    width: 100%;
  }

  .group label {
    font-size: 1.4rem;
    left: 18px;
    top: 18px;
  }

  /* active state */
  input:focus~label,
  input:valid~label,
  select:focus~label,
  select:valid~label,
  input[type=date]~label,
  .withDate label {
    /*font-size: 1.4rem;*/
    left: 16px;
    top: -11px;
  }

  .group i {
    top: 20px;
    left: 20px;
  }

  .group.icon input,
  .group.icon select {
    padding-left: 50px;
  }

  .radio-wrapper {
    /*font-size: 1.8rem;*/
    line-height: 2.4rem;
  }

  .label-big-check {
    padding-bottom: 0;
  }

  .label-big-check .check-title,
  .label-big-check .check-title a {
    /*font-size: 1.4rem;*/
    line-height: 1.9rem;
  }

  .group.select span.arrow {
    top: 22px;
  }

  .group.select span.arrow.active {
    top: 18px;
  }

  .dateselect {
    margin-bottom: 15px;
  }

  .yearerror {
    margin-top: -10px !important;
  }

  .group.number:before {
    top: 20px;
    font-size: 18px;
  }
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #9b9b9b;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9b9b9b;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9b9b9b;
}
