
form .action {
  display: inline-block;
  width: 100%;
}
form .action .agree-col {
  padding-top: 15px;
  padding-left: 20px;
  box-sizing: border-box;
  width: calc(100% - 200px);
  float: left;
  margin-bottom: 20px;
}
form .action .submit {
  width: 200px;
  float: left;
}
form .action .submit .btn {
  width: 100%;
  text-align: center;
}
form .action.full {
  display: inline-block;
  width: 100%;
}
form .action.full .agree-col {
  padding: 0;
  width: 100%;
  margin: 20px 0 0;
}
form .action.full .submit {
  width: 100%;
}
form .action.full .submit .btn {
  width: 100%;
  text-align: center;
}
form .note-block {
  display: inline-block;
  width: 100%;
}
form .note-block .note {
  display: inline-block;
  width: 100%;
  position: relative;
  padding-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 23px;
}
@media only screen and (max-width: 1024px) {
  form .note-block .note {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 766px) {
  form .note-block .note {
    font-size: 12px;
    line-height: 17px;
  }
}
form .note-block .note.success {
  color: #5cb85c;
}
form .note-block .note.success:before {
  border-color: #5cb85c;
}
form .note-block .note.error {
  color: #d9534f;
}
form .note-block .note.error:before {
  border-color: #d9534f;
}
form .note-block .note.warning {
  color: #f0ad4e;
}
form .note-block .note.warning:before {
  border-color: #f0ad4e;
}
form .note-block .note:before {
  content: "";
  display: inline-block;
  width: 88px;
  height: 0;
  border-top: 2px solid #777;
  position: absolute;
  left: 0;
  top: 0;
}
form .form-group {
  display: inline-block;
  width: calc(100% + 20px);
  margin-left: -10px;
}
form .form-group .form-col {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}
form .form-group .form-col.col-20 {
  width: 20%;
}
form .form-group .form-col.col-25 {
  width: 25%;
}
form .form-group .form-col.col-33 {
  width: 33.333%;
}
form .form-group .form-col.col-50 {
  width: 50%;
}
form .form-group .form-col.col-66 {
  width: 66.666%;
}
form .form-group .form-col.col-75 {
  width: 75%;
}
form .form-group .form-col.col-80 {
  width: 80%;
}
form .form-group .form-col.col-100 {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  form .form-group .form-col.col-20-sm {
    width: 20%;
  }
  form .form-group .form-col.col-25-sm {
    width: 25%;
  }
  form .form-group .form-col.col-33-sm {
    width: 33.333%;
  }
  form .form-group .form-col.col-50-sm {
    width: 50%;
  }
  form .form-group .form-col.col-66-sm {
    width: 66.666%;
  }
  form .form-group .form-col.col-75-sm {
    width: 75%;
  }
  form .form-group .form-col.col-80-sm {
    width: 80%;
  }
  form .form-group .form-col.col-100-sm {
    width: 100%;
  }
}
@media only screen and (max-width: 766px) {
  form .form-group .form-col.col-20-xs {
    width: 20%;
  }
  form .form-group .form-col.col-25-xs {
    width: 25%;
  }
  form .form-group .form-col.col-33-xs {
    width: 33.333%;
  }
  form .form-group .form-col.col-50-xs {
    width: 50%;
  }
  form .form-group .form-col.col-66-xs {
    width: 66.666%;
  }
  form .form-group .form-col.col-75-xs {
    width: 75%;
  }
  form .form-group .form-col.col-80-xs {
    width: 80%;
  }
  form .form-group .form-col.col-100-xs {
    width: 100%;
  }
}
form .form-field {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
form .form-field .select, form .form-field .input, form .form-field .checkcontainer, form .form-field .file-upload {
  display: inline-block;
  width: 100%;
  position: relative;
}
form .form-field .select.error .name, form .form-field .input.error .name, form .form-field .checkcontainer.error .name, form .form-field .file-upload.error .name {
  color: #d9534f;
}
form .form-field .select.success .name, form .form-field .input.success .name, form .form-field .checkcontainer.success .name, form .form-field .file-upload.success .name {
  color: #5cb85c;
}
form .form-field .select.warning .name, form .form-field .input.warning .name, form .form-field .checkcontainer.warning .name, form .form-field .file-upload.warning .name {
  color: #f0ad4e;
}
form .form-field .select .name, form .form-field .input .name, form .form-field .checkcontainer .name, form .form-field .file-upload .name {
  display: inline-block;
  width: 100%;
  margin-bottom: 6px;
}
form .form-field .select .name mark, form .form-field .input .name mark, form .form-field .checkcontainer .name mark, form .form-field .file-upload .name mark {
  color: #0057f8;
  background: none;
  font-weight: bold;
}
form .form-field .select .note, form .form-field .input .note, form .form-field .checkcontainer .note, form .form-field .file-upload .note {
  display: inline-block;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 0.7;
  color: #777;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
}
form .form-field .checkcontainer {
  width: 100%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-style: normal;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
form .form-field .checkcontainer.radio .checkmark {
  border-radius: 50%;
}
form .form-field .checkcontainer.error .checkmark {
  border-color: #d9534f;
}
form .form-field .checkcontainer.success .checkmark {
  border-color: #5cb85c;
}
form .form-field .checkcontainer.warning .checkmark {
  border-color: #f0ad4e;
}
form .form-field .checkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
form .form-field .checkcontainer input:checked ~ .checkmark {
  background-color: white;
}
form .form-field .checkcontainer input:checked ~ .checkmark::after {
  opacity: 1;
  transition: all 300ms ease;
}
@media (hover: hover) {
  form .form-field .checkcontainer:hover input ~ .checkmark {
    background-color: #dddddd;
    transition: all 300ms;
  }
}
form .form-field .checkcontainer .checkmark {
  float: left;
  left: 0px;
  top: 0px;
  height: 17px;
  width: 17px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 5px;
  border: 1px solid gray;
  position: relative;
  transition: all 300ms;
}
form .form-field .checkcontainer .checkmark::after {
  content: "";
  position: absolute;
  display: inline-block;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 6px;
  border: solid var(--brand-primary);
  border-width: 0 2px 2px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 300ms ease;
}
form .form-field .checkcontainer .name {
  margin: 0;
  float: left;
  width: calc(100% - 17px - 10px);
  margin-left: 10px;
}
form .form-field .select.error .selectric-selectric-select .selectric {
  border-color: #d9534f;
}
form .form-field .select.error .selectric-selectric-select .selectric .label {
  color: #d9534f;
}
form .form-field .select.success .selectric-selectric-select .selectric {
  border-color: #5cb85c;
}
form .form-field .select.success .selectric-selectric-select .selectric .label {
  color: #5cb85c;
}
form .form-field .select.warning .selectric-selectric-select .selectric {
  border-color: #f0ad4e;
}
form .form-field .select.warning .selectric-selectric-select .selectric .label {
  color: #f0ad4e;
}
form .form-field .select .selectric-selectric-select .selectric {
  background: #FFFFFF;
  border: 1px solid #CED2D5;
  box-sizing: border-box;
  border-radius: 1px;
  height: 40px;
}
form .form-field .select .selectric-selectric-select .selectric .label {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 40px;
  color: #111111;
  display: block;
  margin: 0 40px 0 13px;
  height: 100%;
  width: calc(100% - 60px);
}
form .form-field .select .selectric-selectric-select .selectric .button {
  height: 38px;
  width: 38px;
  border-left: 1px solid #CED2D5;
  box-sizing: border-box;
  transition: all 300ms;
  right: 0;
}
form .form-field .select .selectric-selectric-select .selectric .button:hover {
  background-color: #dddddd;
  transition: all 300ms;
}
form .form-field .select .selectric-selectric-select .selectric .button:after {
  border: none;
  background-image: url(../img/select-shevron.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-clip: border-box;
  width: 100%;
  height: 100%;
}
form .form-field .select .selectric-selectric-select .selectric-items {
  background: #FFFFFF;
  border: 1px solid #CED2D5;
}
form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul {
  position: relative;
  width: 100%;
  max-height: 282px;
  overflow: hidden;
}
form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul li {
  display: flex;
  align-items: center;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  min-height: 40px;
  padding: 10px 10px 10px 15px;
  box-sizing: border-box;
}
form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul li:hover {
  background: #dddddd;
}
form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul li.selected {
  background: #0057f8;
  color: white;
}
form .form-field .input.addon input {
  padding: 0px 30px 0 14px;
}
form .form-field .input.error input, form .form-field .input.error textarea {
  border-color: #d9534f;
  color: #d9534f;
}
form .form-field .input.error input::-webkit-input-placeholder, form .form-field .input.error textarea::-webkit-input-placeholder {
  color: #d9534f;
}

form .form-field .input.error input:-moz-placeholder, form .form-field .input.error textarea:-moz-placeholder {
  color: #d9534f;
}

form .form-field .input.error input::-moz-placeholder, form .form-field .input.error textarea::-moz-placeholder {
  color: #d9534f;
}

form .form-field .input.error input:-ms-input-placeholder, form .form-field .input.error textarea:-ms-input-placeholder {
  color: #d9534f;
}

form .form-field .input.error input:focus, form .form-field .input.error textarea:focus {
  border-color: #d9534f;
}
form .form-field .input.success input, form .form-field .input.success textarea {
  border-color: #5cb85c;
}
form .form-field .input.success input::-webkit-input-placeholder, form .form-field .input.success textarea::-webkit-input-placeholder {
  color: #5cb85c;
}

form .form-field .input.success input:-moz-placeholder, form .form-field .input.success textarea:-moz-placeholder {
  color: #5cb85c;
}

form .form-field .input.success input::-moz-placeholder, form .form-field .input.success textarea::-moz-placeholder {
  color: #5cb85c;
}

form .form-field .input.success input:-ms-input-placeholder, form .form-field .input.success textarea:-ms-input-placeholder {
  color: #5cb85c;
}

form .form-field .input.success input:focus, form .form-field .input.success textarea:focus {
  border-color: #5cb85c;
}
form .form-field .input.warning input, form .form-field .input.warning textarea {
  border-color: #f0ad4e;
}
form .form-field .input.warning input::-webkit-input-placeholder, form .form-field .input.warning textarea::-webkit-input-placeholder {
  color: #f0ad4e;
}

form .form-field .input.warning input:-moz-placeholder, form .form-field .input.warning textarea:-moz-placeholder {
  color: #f0ad4e;
}

form .form-field .input.warning input::-moz-placeholder, form .form-field .input.warning textarea::-moz-placeholder {
  color: #f0ad4e;
}

form .form-field .input.warning input:-ms-input-placeholder, form .form-field .input.warning textarea:-ms-input-placeholder {
  color: #f0ad4e;
}

form .form-field .input.warning input:focus, form .form-field .input.warning textarea:focus {
  border-color: #f0ad4e;
}
form .form-field .input input, form .form-field .input textarea {
  display: inline-flex;
  float: left;
  width: 100%;
  height: 40px;
  align-items: center;
  padding: 0px 10px 0 14px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 40px;
  background: white;
  border: 1px solid var(--light-gray);
  box-sizing: border-box;
  border-radius: 8px;
  transition: all 300ms;
  color: #000;
}
form .form-field .input input:focus, form .form-field .input textarea:focus {
  outline: none;
  border-color: var(--gray);
  transition: all 300ms;
}
form .form-field .input input:disabled, form .form-field .input textarea:disabled {
  background: #F6F7FA;
  color: #777;
}
form .form-field .input input:disabled:focus, form .form-field .input textarea:disabled:focus {
  background: #F6F7FA;
  color: #777;
  border-color: #CED2D5;
}
@media only screen and (max-width: 1024px) {
  form .form-field .input input, form .form-field .input textarea {
    height: 34px;
    font-size: 14px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 766px) {
  form .form-field .input input, form .form-field .input textarea {
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
}
form .form-field .input input::-webkit-input-placeholder, form .form-field .input textarea::-webkit-input-placeholder {
  color: #777;
}

form .form-field .input input:-moz-placeholder, form .form-field .input textarea:-moz-placeholder {
  color: #777;
}

form .form-field .input input::-moz-placeholder, form .form-field .input textarea::-moz-placeholder {
  color: #777;
}

form .form-field .input input:-ms-input-placeholder, form .form-field .input textarea:-ms-input-placeholder {
  color: #777;
}

form .form-field .input textarea {
  padding: 11px 10px 0 14px;
  height: 200px;
}
form .form-field .input .addon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
form .form-field .input .addon button {
  padding: 0;
  margin: 0;
  background: none;
  outline: none;
  border: none;
  color: #000;
  transition: all 300ms;
}
form .form-field .input .addon button:hover {
  color: #7300df;
  transition: all 300ms;
}
form .form-field .input .addon a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  transition: all 300ms;
}
form .form-field .input .addon a:hover {
  color: #7300df;
  transition: all 300ms;
}
form .form-field .file-upload {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
form .form-field .file-upload.error .filename {
  color: #d9534f;
}
form .form-field .file-upload.success .filename {
  color: #5cb85c;
}
form .form-field .file-upload.warning .filename {
  color: #f0ad4e;
}
form .form-field .file-upload input {
  display: none;
}
form .form-field .file-upload .btn {
  float: left;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  padding: 14px 12px;
  margin: 0 0 5px;
}
form .form-field .file-upload .btn .icon {
  float: left;
  margin-right: 10px;
}
form .form-field .file-upload .btn .icon svg {
  width: 24px;
  height: 24px;
}
form .form-field .file-upload .btn .text {
  float: left;
}
form .form-field .file-upload .filename {
  float: left;
  margin-left: 20px;
}
form .form-field .rating {
  display: flex;
  align-items: center;
}
form .form-field .rating .name {
  color: #777;
  font-size: 16px;
  line-height: 140%;
  margin-right: 10px;
}
form .form-field .rating .review-rating {
  margin: 0 -1.5px;
}
form .form-field .rating .review-rating .star {
  margin: 0 1.5px;
  float: left;
}
form .form-field .rating .review-rating .star.selected a {
  color: #0057f8;
}
form .form-field .rating .review-rating .star.focus a {
  color: #0057f8;
}
form .form-field .rating .review-rating .star a {
  color: #dddddd;
}
form .form-field .rating .review-rating .star a svg {
  width: 18px;
  height: auto;
}
