.request-info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
}

.form-group {
  margin-bottom: 20px;
  clear: both;
  position: relative;
  width: calc(50% - 12px);
}
.form-group.full {
  width: 100%;
}
.form-group.one-third {
  width: calc(33.3333% - 16px);
}

.submit-button {
  margin-top: 12px;
}

.form-group label {
  display: block;
  padding-bottom: 4px;
}
.form-group label.check-label {
  width: auto;
  float: none;
  display: inline-block;
}
.form-subgroup {
  float: left;
  line-height: 40px;
}
.request-info input[type="text"],
.request-info textarea,
.request-info select {
  width: 100%;
  border: 1px solid #c7cacc;
  border-radius: 4px;
  margin: 0;
  padding: 14px;
  box-sizing: border-box;
}

.request-info select {
  background: #ffffff url(../img/selectarrow2.png) no-repeat right center;
  width: 100%;
}
.request-info select::-ms-expand {
  /* for IE 11 */
  display: none;
}
.request-info textarea {
  height: 68px;
  width: 100%; /*font-family: "PT Sans", sans-serif !important;*/
}
.request-info .error input[type="text"] {
  border: 1px solid #ee4036 !important;
}
.error-tooltip {
  left: 33%;
  display: none;
  position: absolute;
  top: -55px;
  color: #ffffff;
  padding: 10px 15px;
  font-size: 12px;
  background: #333;
  width: 250px;
  opacity: 0;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}
.error-tooltip:before {
  content: " ";
  border-style: solid;
  border-width: 10px 12px 0px 12px;
  border-color: #333 transparent transparent transparent;
  position: absolute;
  bottom: -10px;
}
.show-tooltip .error-tooltip {
  display: inline-block;
  -moz-animation: tooltip 5s 1;
  animation: tooltip 5s 1;
  -webkit-animation: tooltip 5s 1;
}

.request-info input[type="checkbox"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.request-info input[type="checkbox"] + label {
  background-image: url(../img/unchecked2.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  padding: 0px 0 5px 58px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  min-height: 30px;
}
.request-info input[type="checkbox"]:checked + label {
  background-image: url(../img/checked2.png);
}


#error-message-box {
  display: none;
  background: #ee4036;
  color: #fff !important;
  padding: 30px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin-bottom: 30px;
}
body.ri-error #error-message-box {
  display: block;
}
body.ri-error #error-message-box .fa {
  font-size: 25px;
  margin: 0 35px 0 0;
  float: left;
}
body.ri-error #main {
  padding-top: 20px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1023px) {
  .request-info input[type="checkbox"] + label {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  body.ri-error #main {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  body.ri-error #main {
    padding-top: 80px;
  }

  .form-group {
    width: 100%;
  }
  .form-group.one-third {
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  /* .form-group label,
  .request-info input[type="text"],
  .request-info textarea,
  .request-info select {
    width: 100%;
  } */
  .error-tooltip {
    left: 0;
  }
}
@media screen and (max-width: 540px) {
  body.ri-error #main {
    padding-top: 120px;
  }
}



.alert { color: #ee4036; }