.kskmodal{
  background: #45411e;
  color: #fff;
  border-radius: 5px;
  padding: 60px 90px;
  width: 500px;
}
.hystmodal__close{
  right: 20px;
  top: 20px;
  width: 25px;
  height: 25px;
  outline: none !important;
}
@media (max-width:767px) {
  .kskmodal{
    padding: 40px 30px;
  }
  .hystmodal__close{
    filter:invert(1);
  }
}
.modalform__title{
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.modalform__desciption{
  color: #fff;
  line-height: 1.5rem;
  margin: 0;
  margin-bottom: 30px;
  text-align: center;
}







/* === === === === === === FORM STYLING BUNDLE - START  === === === === === === */
.form > :last-child {
  margin-bottom: 0;
}
.form__fields {
  margin-bottom: 20px;
}
.form__fields > :last-child {
  margin-bottom: 0;
}
.form__fields--two-cols {
  display: flex;
  flex-wrap: wrap;
}
.form__fields--two-cols .form__field {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
}
.form__fields--two-cols .form__field:nth-of-type(2n) {
  margin-right: 0;
}
.form__fields--two-cols .form__field:nth-last-of-type(1), .form__fields--two-cols .form__field:nth-last-of-type(2) {
  margin-bottom: 0;
}
@media (max-width: 765px) {
  .form__fields--two-cols .form__field {
    width: 100%;
    margin-right: 0;
 }
  .form__fields--two-cols .form__field:nth-last-of-type(2) {
    margin-bottom: 20px;
 }
}

.form__fields--special-two-cols {
  display: flex;
  flex-wrap: wrap;
}

.form__col-left {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
}

.form__col-right {
  width: calc((100% - 20px) / 2);
}

.form__fields--three-cols {
  display: flex;
  flex-wrap: wrap;
}
.form__fields--three-cols .form__field {
  width: calc((100% - 30px * 2) / 3);
  margin-right: 30px;
}
.form__fields--three-cols .form__field:nth-of-type(3n) {
  margin-right: 0;
}
.form__fields--three-cols .form__field:nth-last-of-type(1), .form__fields--three-cols .form__field:nth-last-of-type(2), .form__fields--three-cols .form__field:nth-last-of-type(3) {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .form__fields--three-cols .form__field {
    width: calc((100% - 30px) / 2);
 }
  .form__fields--three-cols .form__field:nth-of-type(3n) {
    margin-right: 30px;
 }
  .form__fields--three-cols .form__field:nth-of-type(2n) {
    margin-right: 0;
 }
  .form__fields--three-cols .form__field:nth-last-of-type(3) {
    margin-bottom: 20px;
 }
}
@media (max-width: 765px) {
  .form__fields--three-cols .form__field {
    width: 100%;
    margin-right: 0;
 }
  .form__fields--three-cols .form__field:nth-of-type(3n) {
    margin-right: 0;
 }
  .form__fields--three-cols .form__field:nth-last-of-type(2) {
    margin-bottom: 20px;
 }

  .form__col-left {
    width: 100%;
    margin-right: 0;
  }

  .form__col-right {
    width: 100%;
  }
}
.form__field {
  margin-bottom: 20px;
}
.form__agreement {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 1500px) {
  .form__agreement {
    font-size: 13px;
 }
}
.form__agreement a {
  text-decoration: underline;
  color: var(--blue);
}
.form__agreement a:hover {
  color: var(--header);
}
.form__btn {
  margin-top: 20px;
}
.form__button {
  width: auto;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 0 60px;
  height: 55px;
  font-weight: 500;
}
@media (max-width: 765px) {
  .form__button {
    width: 100%;
    font-size: 16px;
 }
}


.field {
  position: relative;
}
.field > :last-child {
  margin-bottom: 0;
}
.field--error .field__element input, .field--error .field__element textarea, .field--error .field__element select {
  border-color: #ff3636;
}
.field--error .field__error {
  display: block;
}
.field__label {
  display: block;
}
.field__name {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}
@media (max-width: 765px) {
  .field__name {
    font-size: 13px;
 }
}
.field__name span {
  color: #ff3636;
}
.field__element {
  position: relative;
  z-index: 1;
  display: block;
}
.field__element input, .field__element textarea, .field__element select {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  height: 55px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.25;
  text-align: left;
  color: #000;
  background: #fff;
  border: 1px solid #d7d8d9;
  outline: 0;
  border-radius: 5px;
  box-shadow: none;
  transition: 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  resize: none;
}

@media (max-width: 765px) {
  .field__element input, .field__element textarea, .field__element select {
    font-size: 14px;
    padding: 0 15px;
    height: 50px !important;
 }

  .field__element--type-1 textarea {
    height: 140px !important;
  }
}
.field__element input::-ms-expand, .field__element textarea::-ms-expand, .field__element select::-ms-expand {
  display: none;
}
.field__element input[type="number"]::-webkit-inner-spin-button, .field__element textarea[type="number"]::-webkit-inner-spin-button, .field__element select[type="number"]::-webkit-inner-spin-button, .field__element input[type="number"]::-webkit-outer-spin-button, .field__element textarea[type="number"]::-webkit-outer-spin-button, .field__element select[type="number"]::-webkit-outer-spin-button, .field__element input[type="search"]::-webkit-search-decoration, .field__element textarea[type="search"]::-webkit-search-decoration, .field__element select[type="search"]::-webkit-search-decoration, .field__element input[type="search"]::-webkit-search-cancel-button, .field__element textarea[type="search"]::-webkit-search-cancel-button, .field__element select[type="search"]::-webkit-search-cancel-button, .field__element input[type="search"]::-webkit-search-results-button, .field__element textarea[type="search"]::-webkit-search-results-button, .field__element select[type="search"]::-webkit-search-results-button, .field__element input[type="search"]::-webkit-search-results-decoration, .field__element textarea[type="search"]::-webkit-search-results-decoration, .field__element select[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.field__element input[type="number"], .field__element textarea[type="number"], .field__element select[type="number"] {
  -moz-appearance: textfield;
}
.field__element input:focus, .field__element textarea:focus, .field__element select:focus {
  border-color: #aaa;
}
.field__element input:disabled, .field__element textarea:disabled, .field__element select:disabled {
  opacity: 0.6;
}
.field__element textarea {
  height: 120px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.6;
}
.field__element--type-1 textarea {
  height: 254px;
}
.field__element select {
  padding-right: 42px;
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 10px 6px;
}
.field__error {
  display: none;
  margin-top: 3px;
  font-size: 13px;
}
@media (max-width: 1500px) {
  .field__error {
    font-size: 11px;
 }
}
.field__error span {
  display: block;
  border-radius: 5px;
  padding: 8px 15px;
  color: #fff;
  background-color: #ff5252;
}


.checkbox a {
  text-decoration: underline;
  color: var(--blue);
}
.checkbox a:hover {
  color: var(--header);
}
.checkbox__label {
  cursor: pointer;
  margin-bottom: 10px;
  display: block;
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
}
.checkbox__input:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.121' height='8.121'%3E%3Cg fill='none' stroke='%23147814' stroke-linecap='round' stroke-width='1.5'%3E%3Cpath d='m1.061 3.061 4 4'/%3E%3Cpath d='m11.061 1.061-6 6'/%3E%3C/g%3E%3C/svg%3E");
}
.checkbox__name {
  display: block;
  padding-left: 30px;
  font-size: 13px;
  line-height: 20px;
  position: relative;
  user-select: none;
}
.checkbox__name::before {
  content: "";
  width: 20px;
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  box-sizing: border-box;
  border: 1px solid #d7d8d9;
  border-radius: 3px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.notification--error .notification__message span {
  background-color: #ff5252;
}
.notification--warning .notification__message span {
  background-color: #ffa852;
}
.notification--success .notification__message span {
  background-color: #67b960;
}
.notification--hidden {
  display: none;
}
.notification--hidden.visible {
  display: block;
}
.notification--type-1 {
  margin-bottom: 20px;
}
.notification--type-2 {
  margin-top: 10px;
}
.notification__message {
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 765px) {
  .notification__message {
    font-size: 13px;
 }
}
.notification__message span {
  display: block;
  padding: 6px 14px;
  border-radius: 0;
  color: #fff;
  background-color: var(--blue);
}
/* === === === === === === FORM STYLING BUNDLE - START  === === === === === === */
