/* Fonts */
@font-face {
    font-family: "LG Smart SemiBold";
    src: url(../css/font/LG_Smart_SemiBold.eot);
    src: url(../css/font/LG_Smart_SemiBold.eot?#iefix) format("embedded-opentype"), url(../css/font/LG_Smart_SemiBold.woff) format("woff"), url(../css/font/LG_Smart_SemiBold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "LG Smart";
    src: url(../css/font/LG_Smart_Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "LG Smart";
    src: url(../css/font/LG_Smart_Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "LG Smart Light";
    src: url(../css/font/LG_Smart_Light.woff) format("woff");
    font-style: normal;
    font-weight:400;
}

/* -------------------------------- 

Primary style

-------------------------------- */

.full-width {width:100% !important; margin: 0 auto !important;}
.half-width {width: 41% !important; margin: 30px auto !important;}
.checkbox-legal {text-align:left;}

/* -------------------------------- 

Form

-------------------------------- */
.thankyou-section {
	display: none;
}

.cd-form {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 24px 0;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 20px 0;
  width: 25%;
}
.cd-form h4, .cd-form .cd-label {
  font-size: 1.3rem;
  color: #7a7a7a;
  margin-bottom: 10px;
}
.cd-form .cd-label {
  display: block;
}
.cd-form select {
  color: #7a7a7a;
  font: normal 18px "LGFont", sans-serif;
}
.cd-form input, .cd-form textarea, .cd-form label {
  color: #7a7a7a;
  font: normal 15px "LGFont", sans-serif;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border-bottom: 1px solid #7a7a7a;
  background-color: #ffffff;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #2c97de;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
  width: 25%;
  margin: 18px;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("/us/discover/smartthinq/signup/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
  background-size: contain;
}
.cd-form select {
  cursor: pointer;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
  margin: auto;
  line-height: 90%;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: static;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0px -7px 0px 0px;
  float: left;
  text-align:left;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0px;
  padding: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 0;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
  border: 2.5px solid #7a7a7a;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  border-radius: 0em;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.4);
  display: none;
  border: 2.5px solid;
}

.cd-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("/us/discover/smartthinq/signup/cd-icon-check.svg");
  background-size: contain;
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
  display: block;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}

.cd-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
.cd-form input[type="submit"] {
  /* button style */
  border: none;
  background: #a50034;
  border-radius: .25em;
  padding: 10px 35px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin: auto;
  font-family: lg smart light;
}
.no-touch .cd-form input[type="submit"]:hover {
  background: #a50034;
}
.cd-form input[type="submit"]:focus {
  outline: none;
  background: #2b3e51;
}
.cd-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.help-block, .form-error {
  color: red;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 16px;
  font: normal 14px "LGFont", sans-serif;
}
.cd-form .error {
  border-color: #e94b35 !important;
}
@media only screen and (min-width: 600px) {
  .cd-form div {
    /* form element wrapper */
    margin: 32px 0;
  }
  .cd-form legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 20px;
  }
  .cd-form h4, .cd-form .cd-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .cd-form input[type="text"],
  .cd-form input[type="email"],
  .cd-form textarea,
  .cd-form select {
    padding: 16px;
  }
}

@-webkit-keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%, 100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}


/* -------------------------------- 

FLoating labels 

-------------------------------- */
.js .floating-labels div {
  margin: 18px;
}
.js .floating-labels .cd-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 18px;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .icon .cd-label {
  /* left: 56px; */
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  font-size: 1.2rem;
  top: -16px;
  left: 0 !important;
}

@media only screen and (max-width: 1000px) {
.cd-form .cd-select {
    width: 40%;
}

.cd-form div {
    width: 40%;
}
}

@media only screen and (min-width: 600px) {
  .js .floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
  }
  .js .floating-labels .cd-label {
    top: 20px;
  }
}


@media only screen and (max-width: 480px) {
.cd-form div {
    width: 100%;
}

.cd-form .cd-select {
    width: 100%;
}

.cd-form .cd-form-list {
    margin-top: 16px;
    width: 100%;
    margin: auto;
    margin-left: -24px;
}

.half-width {
    width: 90% !important;
    margin: auto !important;
}

.js .floating-labels div {
    margin: 20px 0;
}

.cd-form .cd-select {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.cd-form .cd-form-list li {
    display: inline-block;
    position: static;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0px 0px 0px 12px;
    float: left;
    text-align: left;
}
	


}

@media only screen and (max-width: 750px) {
.cd-form .cd-form-list li {
    display: inline-block;
    position: static;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0px 0px 0px 12px;
    float: left;
    text-align: left;
}


}

/* ipad Mini Portrait */
@media only screen and (width:768px) and (resolution: 163dpi) {
  .full-width {
    width: 100% !important;
    max-width:500px;
}

@media only screen and (max-width: 480px)
.half-width {
    width: 90% !important;
    margin: auto !important;
    max-width:500px;
}

}