label {
  font-size: 22px;
  margin-bottom: 0px;
  /*color:#747474;*/
  color: #58595b;
}

.contact-form legend,
.questionBox .question-feild label {
  font-size: 22px;
  font-family: UniversLTStd, Helvetica, Arial, sans-serif;
  font-weight: 600;
  border-bottom: 0;
  margin-top: 15px;
}

.contact-form h3 {
  font-size: 22px;
}

.contact-info label,
.dropdown-selector label,
.purchaseQuestions .text-feild label {
  display: block;
}

.dropdown-selector label {
  margin-bottom: 5px;
}

.dropdown-selector select {
  color: #58595b;
}

@media (min-width: 768px) {
  .dropdown-selector {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .dropdown-selector {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .dropdown-selector {
    width: 30%;
  }
}

.formText,
.formTextarea,
.toggle {
  width: 800px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}

.contact-form section {
  width: 100%;
  max-width: 1000px;
}

.contact-form #phone,
.contact-form #zip,
.contact-form #productNumber,
.contact-form #country,
.contact-form #firstname,
.contact-form #lastname,
.contact-form#state,
.contact-form #province {
  width: 390px;
}

#company,
#email {
  max-width: 800px;
}

.names {
  display: flex;
  width: 100%;
}

.names .text-feild {
  width: 390px;
  margin: 0px 20px 14px 0px;
}

.radio-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.radio-list label {
  width: 390px;
  height: 53px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 3px 3px 0px 0px;
  opacity: 1;
  font-size: 20px;
  text-align: left;
  margin: 0px 20px 14px 0px;
  font-family: UniversLTStd, Helvetica, Arial, sans-serif;
  font-weight: 700;
  padding-left: 20px;
}

.radio-list input[type="radio"] {
  margin-top: 0px;
  margin-right: 10px;
  height: 53px;
  display: none;
}

.radio-list .unchosen label:hover {
  background-color: #aeb0b1;
  color: white;
}

.radio-list .chosen {
  background-color: #747474;
  color: white;
  box-shadow: 0 0 10px #aeb0b1;
}

.radio-list .unchosen {
  background-color: #e1e1e1;
  color: #747474;
}

.radio-list input + label {
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color 0.15s ease-out, color 0.25s ease-out,
    background-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.toggle input[type="radio"] {
  /*display: none;*/
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.contact-info .text-feild input[type="text"]:focus,
.contact-info .text-feild input[type="email"]:focus,
.contact-info .text-feild input[type="tel"]:focus,
.form-submit input[type="submit"]:focus,
.dropdown-selector select:focus,
.radio-list input[type="radio"]:focus + label,
.toggle input[type="radio"]:focus + label,
.check-container input:focus ~ .checkmark {
  outline: 5px auto -webkit-focus-ring-color;
}

//FOCUS STYLES FOR IE 11
_:-ms-fullscreen,
:root .ie11up {
  .contact-info .text-feild input[type="text"]:focus,
  .contact-info .text-feild input[type="email"]:focus,
  .contact-info .text-feild input[type="tel"]:focus,
  .form-submit input[type="submit"]:focus,
  .dropdown-selector select:focus,
  .radio-list input[type="radio"]:focus + label,
  .toggle input[type="radio"]:focus + label,
  .check-container input:focus ~ .checkmark {
    outline: 5px solid #c7c7c7;
  }
}

//FOCUS STYLES FOR FIREFOX
@-moz-document url-prefix() {
  .contact-info .text-feild input[type="text"]:focus,
  .contact-info .text-feild input[type="email"]:focus,
  .contact-info .text-feild input[type="tel"]:focus,
  .form-submit input[type="submit"]:focus,
  .dropdown-selector select:focus,
  .radio-list input[type="radio"]:focus + label,
  .toggle input[type="radio"]:focus + label,
  .check-container input:focus ~ .checkmark {
    outline: 5px solid #c7c7c7;
  }
}

//FOCUS STYLES FOR EDGE
@supports (-ms-ime-align: auto) {
  .contact-info .text-feild input[type="text"]:focus,
  .contact-info .text-feild input[type="email"]:focus,
  .contact-info .text-feild input[type="tel"]:focus,
  .form-submit input[type="submit"]:focus,
  .dropdown-selector select:focus,
  .radio-list input[type="radio"]:focus + label,
  .toggle input[type="radio"]:focus + label,
  .check-container input:focus ~ .checkmark {
    outline: 5px solid #c7c7c7;
  }
}

.radio-list input[type="radio"]:checked + label {
  background-color: #747474;
  color: white;
  box-shadow: 0 0 10px #aeb0b1;
}

.productQuestions .radio-list {
  flex-direction: column;
}

.contact-info input {
  border: 1px solid #c7c7c7;
  border-radius: 3px;
}

/*.contact-info input:not(:focus):invalid{
	    background: transparent url('/userfiles/images/contact/icon__wrong.svg') 0% 0% no-repeat padding-box;
		opacity: 1;
		background-size: 14px;
        background-position: 98% 50%;
        border:#D61E1E 1px solid;
}

.contact-info input[value=""]:valid {
	    background: transparent url('/userfiles/images/contact/icon__valid.svg') 0% 0% no-repeat padding-box;
        background-size: 14px;
        background-position: 98% 50%;
        border:#1ED671 1px solid;
} */

.contact-form {
  padding-left: 15px;
  padding-right: 15px;
}

/* STYLE THE HTML ELEMENTS (INCLUDES RESETS FOR THE DEFAULT FIELDSET AND LEGEND STYLES) */

/* TOGGLE STYLING */
.toggle {
  /*margin: 0 0 1.5rem;*/
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.toggle label:hover {
  background-color: #aeb0b1;
}

.toggle input:checked + label {
  background-color: #747474;
  color: #fff;
  box-shadow: 0 0 10px #aeb0b1;
  border-color: #aeb0b1;
  z-index: 1;
}

/*.toggle input {width: 0; height: 0; position: absolute; left: -9999px;}*/

.toggle input + label {
  flex: 0 0 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 53px;
  margin-right: 5px;
  box-sizing: border-box;
  font-family: UniversLTStd, Helvetica, Arial, sans-serif;
  font-weight: 700;
  /*position: relative; display: inline-block;*/
  border: solid 1px #ddd;
  background-color: #e1e1e1;
  font-size: 17px;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color 0.15s ease-out, color 0.25s ease-out,
    background-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.toggle input + label:first-of-type {
  border-radius: 6px 0 0 6px;
  border-right: none;
}
.toggle input + label:last-of-type {
  border-radius: 0 6px 6px 0;
  border-left: none;
}

.budget input + label,
.purchaseTime input + label {
  flex: 0 0 16.6666%;
}

/*INTIUT MICROSITE CHECKMARKS*/

.delivery label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
}

.delivery .check-container .microCart {
  font-size: 1em;
  font-weight: normal;
}

.delivery .checkmark {
  left: 66%;
  top: 16%;
  height: 15px;
  width: 15px;
  background-color: #ccc;
}

.delivery .check-container .checkmark:after {
  left: 5px;
  top: -1px;
  width: 6px;
  height: 12px;
}
.del-price {
  color: #ccc;
}
.check-container input:checked ~ .del-price {
  color: 58595b;
}

.delivery label .moreInfo img {
  width: 16px;
}

.promo-txt p {
  display: block;
  font-size: 10px;
  line-height: 10px;
  margin: -10px auto 10px auto;
  text-transform: capitalize;
}

@media (max-width: 850px) {
  .delivery label {
    width: 100% !important;
  }
  .delivery .checkmark {
    left: 82%;
  }
}

@media screen and (max-width: 770px) {
  .delivery .checkmark {
    left: 75%;
  }
}

@media (max-width: 650px) {
  .delivery .checkmark {
    left: 75%;
  }
  .check-container {
    line-height: 30px !important;
  }
}

@media (max-width: 540px) {
  .delivery {
    margin-bottom: 10px;
  }

  .cart-page
    .twoColumnsRightReview
    .colRight
    .cartRightInformation
    .cart-info
    .specRow1
    > label {
    font-size: 0.7em !important;
  }

  /*	.delivery .checkmark {
    left: 72%;	
	}
*/
  .delivery label {
    align-items: flex-start;
  }

  .check-container {
    line-height: 25px !important;
  }

  .delivery .checkmark {
    left: 0%;
  }

  .delivery label {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
  }
}

/*@media (max-width: 515px){
	.delivery .checkmark {
    	left: 60%;	
	}

}

@media (max-width: 415px){
	.delivery .checkmark {
    	left: 50%;	
	}

}

@media (max-width: 370px){
	.delivery .checkmark {
    	left: 0%;	
	}	

	.delivery label{
		flex-direction: column;
		justify-content: space-between; 
		align-items:flex-end;
		text-align:right;

	}

}*/

/*CHECKMARK BOX STYLES*/
/* Customize the label (the container) */
.check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add background color */
.check-container input:checked ~ .checkmark {
  background-color: #3b5854;
}

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

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 9px;
  top: 3px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.email-opt label {
  font-size: 15px;
}

.email-opt .checkmark {
  height: 22px;
  width: 22px;
}

.form-submit {
  text-align: left;
}

.form-submit input[type="submit"] {
  border-radius: 3px 3px 0px 0px;
  background-color: #3c5956;
  width: 190px;
  height: 53px;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 770px) {
  .contact-form {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-form section {
    width: 90%;
  }

  #phone,
  #zip,
  #productNumber,
  #country,
  #firstname,
  #lastname,
  .toggle,
  #state,
  #province {
    width: 100%;
  }

  .names {
    flex-direction: column;
    justify-content: center;
  }

  .names .text-feild {
    width: 100%;
  }

  .toggle input + label {
    flex-direction: column;
    margin-right: 5px;
    font-size: 15px;
  }

  .contact-form section {
    width: 90%;
  }

  #phone,
  #zip {
    width: 100%;
  }

  .formText,
  .formTextarea {
    width: 100%;
  }

  .names {
    flex-direction: column;
    justify-content: center;
  }

  .names .text-feild {
    width: 100%;
  }

  .contact-form {
    align-items: center;
  }
}
