.field-validation-error {
  color: red;
  display: block;
  margin-top: 0.4rem;
}

.Error {
  color: red;
  display: block;
  margin: 0.5rem 0;
}
.Error div.validation-summary-errors ul {
  padding: 0 !important;
  margin: 0 !important;
  padding-bottom: 15px !important;
}
.Error div.validation-summary-errors ul li:before {
  display: none !important;
}

input:focus, input:hover, textarea:focus, textarea:hover {
  outline: none;
}

.Group {
  width: 100%;
}
.Group:after {
  content: " ";
  display: block;
  clear: both;
}
.Group div.Left {
  display: block;
  float: left;
  width: 48%;
}
.Group div.Right {
  display: block;
  float: right;
  width: 48%;
}
.Group div.ValidationError {
  margin-top: 0px;
}
@media only screen and (max-width: 759px) {
  .Group div.Left, .Group div.Right {
    display: block;
    width: 100%;
  }
}

div.CheckBox__Container {
  display: inline-flex;
  gap: 10px;
  /* margin: auto; */
  /* width: 100%; */
}
div.CheckBox__Container div.CheckBox {
  position: relative;
  height: 20px;
  width: 20px;
  z-index: 0;
  margin-top: 6px;
}
div.CheckBox__Container div.CheckBox .fal.fa-check:before {
  content: "";
}
div.CheckBox__Container div.CheckBox input {
  margin: 0;
  opacity: 0;
  width: inherit;
  height: inherit;
}
div.CheckBox__Container div.CheckBox input:checked + div.CheckBoxIcon i:before,
div.CheckBox__Container div.CheckBox input:checked + input[type=hidden] + div.CheckBoxIcon i:before {
  content: "\f00c";
}
div.CheckBox__Container div.CheckBox div.CheckBoxIcon {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid grey;
  display: inline-block;
  z-index: -1;
}
div.CheckBox__Container div.CheckBox div.CheckBoxIcon i {
  top: 50%;
  left: 50%;
  font-size: 12px;
  position: absolute;
  transform: translate(-50%, -50%);
}
div.CheckBox__Container label {
  display: inline-block;
  min-height: 0;
}

.Select {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  border: 1px solid transparent !important;
  white-space: nowrap;
  text-align: left !important;
  margin-bottom: 8px;
  height: 32px;
  line-height: 32px;
  width: 100%;
}
.Select.Centered {
  margin-top: 8px;
  margin-left: 5px;
}
.Select select {
  text-align: left !important;
  margin: 0 !important;
  vertical-align: top;
  display: inline-block;
  outline: 0;
  min-height: 0 !important;
  height: 30px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.Select select::-ms-expand {
  display: none;
}
.Select:after {
  content: " ";
  pointer-events: none;
  position: absolute;
  vertical-align: middle;
  display: inline-block;
  background: white url("Shared/Sprite.png") no-repeat -6px -224px;
  top: 50%;
  margin-top: -5px;
  right: 5px;
  width: 10px;
  height: 10px;
}

input[type=checkbox], input[type=radio] {
  /*position: absolute;*/
  width: 14px;
  height: 14px;
  z-index: 1;
  cursor: pointer;
  /*&:checked {
      & + label {
          &:before {
              background-image: url('Shared/CheckBoxSelected.png');
          }
      }

      & + input[type='hidden'] {
          & + label {
              &:before {
                  background-image: url('Shared/CheckBoxSelected.png');
              }
          }
      }
  }*/
  /* & + label {
       position: relative;
       padding-left: 25px !important;
       cursor: pointer;

       &:before {
           display: inline-block;
           position: absolute;
           z-index: 2;
           pointer-events: none;
           background: url('Shared/CheckBox.png') no-repeat center;
           background-size: contain;
           cursor: pointer;
           width: 15px;
           height: 15px;
           content: " ";
           left: 0px;
           top: 7px;
       }
   }*/
  /*& + input[type='hidden'] {
      & + label {
          position: relative;
          padding-left: 25px;
          cursor: pointer;

          &:before {
              display: inline-block;
              position: absolute;
              z-index: 2;
              pointer-events: none;
              background: url('Shared/CheckBox.png') no-repeat center;
              background-size: contain;
              cursor: pointer;
              width: 15px;
              height: 15px;
              content: " ";
              left: 0px;
              top: 7px;
          }
      }
  }*/
}

.GenericForm input, .GenericForm label, .GenericForm select {
  display: block;
  min-height: 32px;
  line-height: 32px !important;
}
.GenericForm input {
  height: 32px;
}
.GenericForm span.Red {
  color: red;
  margin-bottom: 8px;
}
.GenericForm label span.Red {
  display: inline !important;
}
.GenericForm label a {
  text-decoration: underline !important;
}
.GenericForm span.Red + span {
  margin-bottom: 8px;
  line-height: 32px !important;
}
.GenericForm div.Blank {
  height: 73px;
}
.GenericForm div.Blank.Small {
  height: 60px;
}
.GenericForm .AfterCheck {
  margin-bottom: 20px !important;
}
.GenericForm input[type=radio], .GenericForm input[type=checkbox], .GenericForm .AfterCheck {
  display: inline-block;
  vertical-align: top;
  /* margin-bottom: 8px; */
  min-height: 0;
}
.GenericForm input[type=radio] + label, .GenericForm input[type=checkbox] + label, .GenericForm input[type=hidden] + label, .GenericForm .AfterCheck {
  display: inline-block;
  vertical-align: top;
  height: 20px;
  padding-left: 5px;
}
.GenericForm input, .GenericForm .Submit {
  height: 32px;
  margin: 0;
  padding: 0;
}
.GenericForm .input-validation-error {
  border: 1px solid red !important;
}
.GenericForm input[type=text], .GenericForm input[type=number], .GenericForm input[type=password], .GenericForm textarea, .GenericForm select {
  padding-left: 10px;
  margin-bottom: 8px;
  width: 100%;
  border: 1px solid #dedede;
  font-size: 14px;
}
.GenericForm textarea {
  height: 100px;
}
.GenericForm input[type=submit], .GenericForm .Submit, .GenericForm .BlackButton, .GenericForm .Coupon__Btn {
  cursor: pointer;
  display: block;
  float: right;
  transition: all linear 0.3s;
  background-color: black;
  border: 1px solid black;
  color: white !important;
  text-transform: uppercase;
  font-family: FrankieGarageBold;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 32px;
  margin-left: 25px;
}
.GenericForm .BlackButton {
  float: unset;
  margin-left: 0;
  display: inline-block;
}
.GenericForm span.Red.Left {
  float: left;
}
