
/*-------- 2.2 Success submit --------*/
#success {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 190px;
  margin-top: -85px;
  margin-left: -150px;
  text-align: center;
  color: #444;
}
#success h4 {
  font-weight: 400;
  margin: 20px 0 0 0;
  color: #222;
  font-size: 18px;
  font-size: 1.125rem;
}
#success h4 span {
  display: block;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
}

@-webkit-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-ms-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
@-ms-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
.inlinesvg .svg svg {
  display: inline;
}

.icon--order-success svg path {
  -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.icon--order-success svg circle {
  -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
  animation: checkmark-circle 0.6s ease-in-out backwards;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.modal-content {
  border: none;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 10px;
}

.form-group {
  position: relative;
}
.form-group.terms {
  padding: 12px 0 0 0;
}
.form-group.terms label {
  line-height: 1.5;
}
.form-group i {
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  right: 5px;
  top: 11px;
  color: #ccc;
  width: 25px;
  height: 25px;
  display: block;
  font-weight: 400 !important;
}

span.error {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  position: absolute;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: -20px;
  right: -15px;
  z-index: 2;
  height: 25px;
  line-height: 1;
  background-color: #ff0066;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 6px 8px;
  font-weight: 500;
}
span.error:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #ff0066;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 20%;
}

.radio_input .error {
  left: -15px;
  top: -30px;
  right: inherit;
}

.terms span.error {
  top: -30px;
  left: -15px;
  right: inherit;
}

.form-control {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-size: 0.875rem;
  height: calc(2.85rem + 2px);
  color: #fff;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.4);
}
.form-control:focus {
  box-shadow: none;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
}

.review_message {
  height: 250px !important;
}
@media (max-width: 767px) {
  .review_message {
    height: 200px !important;
  }
}

.checkbox_radio_container {
  margin-bottom: 10px;
  position: relative;
}
.checkbox_radio_container input[type="checkbox"] {
  display: none;
}
.checkbox_radio_container input[type="radio"] {
  display: none;
}
.checkbox_radio_container label {
  cursor: pointer;
}

.checkbox_radio_container .radio,
.checkbox_radio_container .checkbox {
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 5px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  z-index: 9;
  left: 8px;
  top: 14px;
	border: 1px solid #0d6cbc;
}
.checkbox_radio_container .radio:after,
.checkbox_radio_container .checkbox:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #0d6cbc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transform: translate(4px, 11px) rotate(-45deg);
  transform-origin: left;
  transition: all 150ms;
  transition-delay: 0ms;
}
.checkbox_radio_container .radio:before,
.checkbox_radio_container .checkbox:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #0d6cbc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transform: translate(1px, 6px) rotate(45deg);
  transform-origin: left;
  transition: all 150ms;
  transition-delay: 150ms;
}
.checkbox_radio_container .checkbox {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.checkbox_radio_container .wrapper {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
	border: 1px solid #0d6cbc;
  border-radius: 3px;
  background-color: black;
  background-color: #f1f1f1;
  /* OPACITY AND COLOR OF THE RADIO AND CHECKBOX*/
  position: relative;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
	height: 100%;
	min-height: 70px;
  padding: 10px 10px 10px 44px;
	margin-bottom: 30px;
  font-weight: normal;
  cursor: pointer;
	color: #272727;
	font-size: 16px;
	line-height: 28px;
}

.checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:before, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="radio"]:checked ~ .radio:before {
  width: 7px;
  transition-delay: 0ms;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:after, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="radio"]:checked ~ .radio:after {
  width: 13px;
  transition-delay: 150ms;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .wrapper, .checkbox_radio_container input[type="radio"]:checked ~ .wrapper {
  transition: all 450ms;
  background-color: #0d6cbc;
  color: #fff;
}

/* Checkbox style */