
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf");
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/poppins/Poppins-Medium.ttf");
}

@font-face {
  font-family: "Muli-Bold";
  src: url("../fonts/muli/Muli-Bold.ttf");
}


/* ==================================================
   GENEL
   ================================================== */

html,
body {
  min-height: 100%;
}

body {
  font-family: "Poppins-Regular", sans-serif;
  font-size: 15px;
  color: #666;
  margin: 0;
  background: url("../images/form-wizard-bg.jpg") center center / cover fixed no-repeat;
}

textarea {
  resize: none;
}

input,
textarea,
select,
button {
  font-family: "Poppins-Regular", sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

:focus {
  outline: none;
}

.clear {
  clear: both;
}


/* ==================================================
   BAŞVURU ANA CONTAINER - WRAPPER
   ================================================== */

.wrapper {
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 20px 20px;
}


  /* ==================================================
   WRAPPER - SOL GÖRSEL ALAN
   ================================================== */

  .wrapper .image-holder {
    width: 50%;
    position: relative;
    text-align: center;
  }

    .wrapper .image-holder > .img {
      width: 100%;
      height: auto;
      opacity: 0.5;
    }

    .wrapper .image-holder .text {
      position: absolute;
      border-top: solid 1px #fff;
      border-bottom: solid 1px #fff;
      padding: 10px 0;
      color: #fff;
      width: 70%;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .wrapper .image-holder > p {
      position: absolute;
      border-top: solid 1px #fff;
      border-bottom: solid 1px #fff;
      padding: 10px 40px;
      color: #fff;
      width: 95%;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      margin: 0;
    }

    .wrapper .image-holder .header-logo {
      position: absolute;
      top: 15%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: auto;
    }

      .wrapper .image-holder .header-logo img {
        max-width: 100%;
      }

    .wrapper .image-holder .logo {
      position: absolute;
      background-color: #fff;
      opacity: 0.5;
      padding: 10px;
      width: 95%;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

      .wrapper .image-holder .logo img {
        display: inline-block;
        width: 115px;
        max-width: 18%;
        height: auto;
      }

    .wrapper .image-holder .main-image img {
      position: absolute;
      background-color: #fff;
      max-height: 475px;
      width: 95%;
      height: auto;
      top: 69.2%;
      left: 50%;
      transform: translate(-50%, -50%);
    }


  /* ==================================================
   WRAPPER - FORM
   ================================================== */

  .wrapper > form {
    width: 50%;
    min-width: 0;
  }


  /* ==================================================
   WRAPPER - BAŞLIKLAR
   ================================================== */

 /* .wrapper h2 {
    font-size: 13px;
    border-bottom: solid 1px #e6e6e6;
    margin-bottom: 5px;
    padding-bottom: 5px;
    color: #004A87;
  }*/

  .wrapper h3 {
    font-family: "Poppins-SemiBold";
  }


/* ==================================================
   WIZARD
   ================================================== */

#wizard {
  width: 100%;
  min-height: 834px;
  background: #fff;
  padding: 60px 20px 40px;
}

.wizard > .steps .current-info,
.wizard > .steps .number {
  display: none;
}


/* ==================================================
   STEPS
   ================================================== */

.steps {
  margin-bottom: 30px;
}

  .steps ul {
    display: flex;
    position: relative;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

    .steps ul li {
      flex: 1 1 0;
      width: auto;
      margin-right: 0;
      padding: 0;
    }

      .steps ul li a {
        display: block;
        width: 100%;
        height: 7px;
        background: #e6e6e6;
        border-radius: 3.5px;
      }

      .steps ul li.first a,
      .steps ul li.checked a {
        background: #004A87;
        transition: all 0.5s ease;
      }

    .steps ul:before {
      content: "Başvuru Pozisyonu";
      font-size: 22px;
      font-family: "Poppins-SemiBold";
      color: #004A87;
      top: -38px;
      position: absolute;
    }

    .steps ul.step-2:before {
      content: "Kişisel Bilgiler";
    }

    .steps ul.step-3:before {
      content: "Öğrenim Bilgileri";
    }

    .steps ul.step-4:before {
      content: "Deneyim";
    }

    .steps ul.step-5:before {
      content: "Yabancı Dil";
    }

    .steps ul.step-6:before {
      content: "Onay ve Gönder";
    }


/* ==================================================
   FORM ROW
   ================================================== */

#myForm .form-row {
  margin-bottom: 16px;
}

  #myForm .form-row label {
    font-size: 12px;
    font-weight: bold;
    color: #004A87;
    margin-bottom: 4px;
    display: block;
  }

  #myForm .form-row.form-group {
    display: flex;
  }

    #myForm .form-row.form-group .form-holder {
      width: 50%;
      margin-right: 5px;
    }

      #myForm .form-row.form-group .form-holder:last-child {
        margin-right: 0;
      }

.form-holder {
  position: relative;
}

  .form-holder i {
    position: absolute;
    top: 33px;
    right: 19px;
    font-size: 17px;
    color: #999;
  }


/* ==================================================
   BOOTSTRAP 5 FORM CONTROL UYARLAMASI
   ================================================== */

#myForm .form-control {
  min-height: 32px;
  height: 32px;
  border: 1px solid #e6e6e6;
  background: transparent;
  width: 100%;
  padding: 0 3px;
  font-size: 12px;
  border-radius: 0;
}

  #myForm .form-control:focus {
    border-color: #004A87;
    box-shadow: none;
  }

  #myForm .form-control::placeholder {
    color: #999;
    font-size: 11px;
    opacity: 1;
  }

#myForm textarea.form-control {
  height: auto;
  min-height: 80px;
  padding-top: 11px;
  padding-bottom: 11px;
}


/* ==================================================
   SELECT
   ================================================== */

#myForm select.form-control {
  cursor: pointer;
}


/* ==================================================
   OPTION
   ================================================== */

.option {
  color: #999;
}


/* ==================================================
   ACTION BUTTONS - JQUERY STEPS
   ================================================== */

.actions ul {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}

  .actions ul.step-last {
    /* justify-content: flex-end; */
  }

    .actions ul.step-last li:first-child {
      /* display: none; */
    }

.actions li {
  list-style: none;
}

  .actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 51px;
    width: 135px;
    align-items: center;
    background: #004A87;
    cursor: pointer;
    position: relative;
    padding-left: 41px;
    color: #fff;
    transform: perspective(1px) translateZ(0);
    transition: background-color 0.3s ease;
    font-weight: 400;
  }

    .actions li a:before {
      content: '\f2ee';
      position: absolute;
      top: 15px;
      right: 41px;
      font-family: Material-Design-Iconic-Font;
    }

    .actions li a:hover {
      background: #97ADC7;
    }

  .actions li[aria-disabled="true"] a {
    display: none;
  }

  .actions li:first-child a {
    background: #004A87;
    padding-left: 48px;
  }

    .actions li:first-child a:before {
      content: '\f2ea';
      left: 26px;
    }

    .actions li:first-child a:hover {
      background: #97ADC7;
    }

  .actions li:last-child a {
    padding-left: 29px;
    background: #004A87;
    font-weight: 400;
  }

    .actions li:last-child a:before {
      right: 30px;
    }


/* ==================================================
   CHECKBOX
   ================================================== */

.checkbox {
  position: relative;
}

  .checkbox label {
    padding-left: 21px;
    cursor: pointer;
    color: #999;
  }

  .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

    .checkbox input:checked ~ .checkmark:after {
      display: block;
    }

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 12px;
  width: 13px;
  border-radius: 2px;
  background-color: #ebebeb;
  border: 1px solid #ccc;
  font-family: Material-Design-Iconic-Font;
  color: #000;
  font-size: 10px;
  font-weight: bolder;
}

  .checkmark:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    content: '\f26b';
  }


/* ==================================================
   RADIO / CIRCLE CHECKBOX
   ================================================== */

.checkbox-circle {
  margin-top: 41px;
  margin-bottom: 46px;
}

  .checkbox-circle label {
    cursor: pointer;
    padding-left: 26px;
    color: #999;
    display: block;
    margin-bottom: 15px;
    position: relative;
  }

    .checkbox-circle label.active .tooltip {
      display: block;
    }

  .checkbox-circle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

    .checkbox-circle input:checked ~ .checkmark:after {
      display: block;
    }

  .checkbox-circle .checkmark {
    position: absolute;
    top: 11px;
    left: 0;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #ebebeb;
    border: 1px solid #cdcdcd;
  }

    .checkbox-circle .checkmark:after {
      content: "";
      top: 6px;
      left: 6px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #666;
      position: absolute;
      display: none;
    }

  .checkbox-circle .tooltip {
    padding: 9px 22px;
    background: #f2f2f2;
    line-height: 1.8;
    position: relative;
    margin-top: 16px;
    margin-bottom: 28px;
    display: none;
  }

    .checkbox-circle .tooltip:before {
      content: "";
      border-bottom: 10px solid #f2f2f2;
      border-right: 9px solid transparent;
      border-left: 9px solid transparent;
      position: absolute;
      bottom: 100%;
    }


/* ==================================================
   ESKİ TEMPLATE ÜRÜN ALANLARI
   ================================================== */

.product {
  margin-bottom: 33px;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 30px;
}

  .item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }

  .item .left {
    display: flex;
    align-items: center;
  }

  .item .thumb {
    display: inline-flex;
    width: 100px;
    height: 90px;
    justify-content: center;
    align-items: center;
    border: 1px solid #f2f2f2;
  }

  .item .purchase {
    display: inline-block;
    margin-left: 21px;
  }

    .item .purchase h6 {
      font-family: "Poppins-Medium";
      font-size: 16px;
      margin-bottom: 4px;
      font-weight: 500;
    }

      .item .purchase h6 a {
        color: #333;
      }

  .item .price {
    font-size: 16px;
  }

.checkout {
  margin-bottom: 44px;
}

  .checkout span.heading {
    font-family: "Poppins-Medium";
    font-weight: 500;
    margin-right: 5px;
  }

  .checkout .subtotal {
    margin-bottom: 18px;
  }

  .checkout .shipping {
    margin-bottom: 19px;
  }

    .checkout .shipping span.heading {
      margin-right: 4px;
    }

  .checkout .total-price {
    font-family: "Muli-Bold";
    color: #333;
    font-weight: 700;
  }


/* ==================================================
   KVKK
   ================================================== */

.kvkk {
  font-size: 12px;
}

  .kvkk a {
    color: #004A87;
    font-weight: bold;
    text-decoration: none;
  }

    .kvkk a:hover {
      text-decoration: underline;
    }

.kvkk-check {
  width: 100%;
  padding: 7px 8px;
  margin-bottom: 10px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background-color: #f8f9fa;
}

.kvkk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.kvkk-checkbox {
  flex: 0 0 auto;
}

.kvkk-text {
  flex: 1 1 auto;
  font-size: 11px;
  line-height: 1.2;
  color: #343a40;
}

  .kvkk-text a {
    font-weight: 600;
    text-decoration: none;
  }

    .kvkk-text a:hover {
      text-decoration: underline;
    }


/* ==================================================
   HATALAR
   ================================================== */

.ucret-error {
  font-size: 11px;
  color: #dc3545;
  margin-top: 4px;
  display: none;
}

.tc-kimlik-error {
  display: none;
  margin-top: 4px;
  font-size: 11px;
  color: #dc3545;
}

.email-error {
  display: none;
  margin-top: 4px;
  font-size: 11px;
  color: #dc3545;
}

.input-error {
  border: 1px solid red !important;
}


/* ==================================================
   EMAIL ÖNERİLERİ
   ================================================== */

#emailSuggestions {
  max-height: 200px;
  overflow-y: auto;
}

  #emailSuggestions li a {
    text-decoration: none !important;
    display: block;
    padding: 6px 12px;
    color: #333;
  }

    #emailSuggestions li a:hover {
      background-color: #f5f5f5;
      color: #262626;
    }

  #emailSuggestions li.selected {
    background-color: #e5e5e5;
  }

    #emailSuggestions li.selected a {
      color: #000;
    }


/* ==================================================
   AYDINLATMA / AÇIK RIZA - ESKİ MODAL
   ================================================== */

.aydinlatma-modal-dialog {
  width: 50%;
  max-width: 1200px;
  height: 90vh;
  margin: 5vh auto;
}

.aydinlatma-modal-content {
  height: 100%;
}

.aydinlatma-modal-body {
  height: calc(100% - 120px);
  overflow-y: auto;
}

.acik-riza-modal-dialog {
  width: 50%;
  max-width: 1200px;
  height: 90vh;
  margin: 5vh auto;
}

.acik-riza-modal-content {
  height: 100%;
}

.acik-riza-modal-body {
  height: calc(100% - 120px);
  overflow-y: auto;
}


/* ==================================================
   DEVEXTREME KVKK POPUP
   ================================================== */

.aydinlatma-popup .dx-popup-content,
.acik-riza-popup .dx-popup-content {
  padding: 0;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}


/* ==================================================
   KVKK AYDINLATMA METNİ
   ================================================== */

.kvkk-document {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 40px;
  font-family: Garamond, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
  color: #000;
}

  .kvkk-document,
  .kvkk-document * {
    box-sizing: border-box;
  }


    /* ==================================================
   KVKK - BAŞLIKLAR
   ================================================== */

    .kvkk-document h1 {
      margin: 0;
      text-align: center;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 700;
    }

      .kvkk-document h1 + h1 {
        margin-top: 2px;
        margin-bottom: 24px;
      }

    .kvkk-document h2 {
      margin: 24px 0 12px;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 700;
      text-align: justify;
      color: #004A87;
    }

    .kvkk-document h3 {
      font-family: "Poppins-SemiBold";
    }


    /* ==================================================
   KVKK - PARAGRAFLAR
   ================================================== */

    .kvkk-document p {
      margin: 0 0 12px;
      text-align: justify;
    }


    /* ==================================================
   KVKK - ŞİRKET BİLGİLERİ
   ================================================== */

    .kvkk-document .company-details {
      margin: 0 0 18px;
      padding: 0;
      list-style: none;
    }

      .kvkk-document .company-details li {
        margin-bottom: 5px;
      }

      .kvkk-document .company-details .labell,
      .kvkk-document .contact-details .labell {
        font-weight: 400;
      }


    /* ==================================================
   KVKK - NUMARALI LİSTELER
   ================================================== */

    .kvkk-document .numbered-list {
      margin: 8px 0 16px;
      padding: 0;
      list-style: none;
    }

      .kvkk-document .numbered-list li {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 6px;
        margin-bottom: 8px;
        text-align: justify;
      }

      .kvkk-document .numbered-list.transfer-list li {
        grid-template-columns: 42px minmax(0, 1fr);
      }

    .kvkk-document .item-number {
      font-weight: 700;
      white-space: nowrap;
    }


    /* ==================================================
   KVKK - AMAÇ LİSTESİ
   ================================================== */

    .kvkk-document .purpose-list {
      margin: 8px 0 16px 24px;
      padding: 0;
      list-style: none;
    }

      .kvkk-document .purpose-list li {
        position: relative;
        margin-bottom: 5px;
        padding-left: 18px;
        text-align: justify;
      }

        .kvkk-document .purpose-list li::before {
          content: "-";
          position: absolute;
          left: 0;
          top: 0;
          color: #000;
          font-weight: 700;
        }


    /* ==================================================
   KVKK - İLETİŞİM BİLGİLERİ
   ================================================== */

    .kvkk-document .contact-details {
      margin: 12px 0 18px;
    }

      .kvkk-document .contact-details p {
        margin-bottom: 5px;
      }


    /* ==================================================
   KVKK - LİNKLER
   ================================================== */

    .kvkk-document a {
      color: inherit;
      text-decoration: underline;
    }


    /* ==================================================
   KVKK - TARİH / ONAY / İMZA
   ================================================== */

    .kvkk-document .update-date {
      margin-top: 22px;
    }

    .kvkk-document .confirmation {
      margin-top: 28px;
    }

      .kvkk-document .confirmation strong {
        text-decoration: underline;
      }

    .kvkk-document .signature {
      margin-top: 36px;
      text-align: right;
    }


/* ==================================================
   CV YÜKLEME
   ================================================== */
.resume-upload-row {
  margin-bottom: 30px;
}

.resume-upload-container {
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  padding: 20px;
  background-color: #fff;
}

.resume-upload-header {
  margin-bottom: 15px;
}

.resume-upload-title {
  display: block;
  color: #004A87;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.resume-upload-title span {
  color: #888;
  font-size: 13px;
  font-weight: 400;
}

.resume-upload-info {
  color: #666;
  font-size: 13px;
}

#file-uploader {
  margin-bottom: 15px;
}

.drop-zone {
  border: 2px dashed #bdbdbd;
  border-radius: 6px;
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
}

.drop-zone-text {
  font-size: 14px;
  margin-bottom: 5px;
}

.drop-zone-info {
  font-size: 12px;
  color: #777;
}

.drop-zone-active {
  border-style: solid;
}

.selected-resume {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 15px;
  padding: 12px 15px;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
}

.selected-resume-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-resume-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.resume-upload-rules {
  margin-top: 15px;
  font-size: 12px;
  color: #777;
}

.resume-upload-rules div {
  margin-bottom: 3px;
}

#resume-error {
  margin-top: 10px;
}

/* ================================================== */
/* BAŞVURU TAMAMLAMA HEADER */
/* ================================================== */

.onay-header {
  margin-bottom: 20px;
}

.onay-header .form-holder {
  padding: 0;
}

.onay-title {
  color: #004A87;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}

.onay-description {
  color: #666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 750px;
}


/* ================================================== */
/* MOBİL */
/* ================================================== */

@media (max-width: 576px) {

  .onay-header {
    margin-bottom: 15px;
  }

  .onay-title {
    font-size: 17px;
  }

  .onay-description {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* ==================================================
   RESPONSIVE - WRAPPER / GENEL YAPI
   ================================================== */
/* ==================================================
   1200px ve altı
   Masaüstünden tablete geçiş
   ================================================== */
@media (max-width: 1199.98px) {
  .wrapper {
    max-width: 100%;
    padding: 20px;
  }

    .wrapper .image-holder {
      width: 45%;
    }

    .wrapper > form {
      width: 55%;
    }

  #wizard {
    min-height: 829px;
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* ==================================================
   991px ve altı
   Tablet
   Image-holder üstte, form altta
   ================================================== */

@media (max-width: 991.98px) {

  .wrapper {
    min-height: 100vh;
    height: auto;
    display: block;
    padding: 20px;
  }

    .wrapper .image-holder {
      display: block;
      width: 100%;
      max-width: 760px;
      margin: 0 auto 25px;
    }

    .wrapper > form {
      display: block;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
    }

  #wizard {
    min-height: 0;
    margin-right: 0;
    padding: 50px 35px 35px;
  }

  #myForm .form-row.form-group {
    display: block;
  }

    #myForm .form-row.form-group .form-holder {
      width: 100%;
      margin-right: 0;
      margin-bottom: 14px;
    }

      #myForm .form-row.form-group .form-holder:last-child {
        margin-bottom: 0;
      }

  .steps {
    margin-bottom: 35px;
  }

    .steps ul {
      gap: 7px;
    }

      .steps ul li a {
        height: 6px;
      }

      .steps ul:before {
        font-size: 19px;
        top: -34px;
      }
}


/* ==================================================
   767px ve altı
   Telefon
   ================================================== */

@media (max-width: 767.98px) {

  body {
    background-attachment: scroll;
  }

  .wrapper {
    min-height: 100vh;
    height: auto;
    display: block;
    padding: 15px;
  }

    .wrapper .image-holder {
      display: block;
      width: 100%;
      max-width: 620px;
      margin: 0 auto 20px;
    }

    .wrapper > form {
      display: block;
      width: 100%;
      max-width: 620px;
      margin: 0 auto;
    }

  #wizard {
    min-height: 0;
    margin-right: 0;
    padding: 48px 25px 30px;
  }

  .steps {
    margin-bottom: 32px;
  }

    .steps ul {
      gap: 5px;
    }

      .steps ul li a {
        height: 6px;
      }

      .steps ul:before {
        font-size: 17px;
        top: -31px;
      }

  #myForm .form-row {
    margin-bottom: 14px;
  }

    #myForm .form-row.form-group {
      display: block;
    }

      #myForm .form-row.form-group .form-holder {
        width: 100%;
        margin-right: 0;
        margin-bottom: 14px;
      }

        #myForm .form-row.form-group .form-holder:last-child {
          margin-bottom: 0;
        }

  .actions ul {
    gap: 10px;
  }

  .actions li a {
    width: 120px;
    height: 45px;
    padding-left: 25px;
  }

  .actions li:last-child a {
    width: 145px;
    padding-left: 20px;
  }

  .actions li a:before {
    top: 16px;
    right: 20px;
  }

  .actions li:first-child a:before {
    left: 18px;
  }
}


/* ==================================================
   575px ve altı
   Çok küçük telefonlar
   ================================================== */

@media (max-width: 575.98px) {

  .wrapper {
    padding: 10px;
  }

    .wrapper .image-holder {
      margin-bottom: 15px;
    }

  #wizard {
    padding: 44px 15px 25px;
  }

  .steps {
    margin-bottom: 30px;
  }

    .steps ul {
      gap: 4px;
    }

      .steps ul li a {
        height: 5px;
      }

      .steps ul:before {
        font-size: 16px;
        top: -29px;
      }

  #myForm .form-row {
    margin-bottom: 13px;
  }

    #myForm .form-row.form-group .form-holder {
      margin-bottom: 12px;
    }

  .actions ul {
    margin-top: 25px;
  }

  .actions li a {
    width: 110px;
    height: 43px;
    font-size: 12px;
  }

  .actions li:last-child a {
    width: 135px;
  }

  .actions li a:before {
    top: 15px;
  }

  .actions li:first-child a:before {
    left: 16px;
  }

  .actions li:last-child a:before {
    right: 18px;
  }

  .kvkk {
    font-size: 11px;
  }
}


/* ==================================================
   RESPONSIVE - AYDINLATMA / AÇIK RIZA
   ================================================== */

@media (max-width: 767px) {

  .aydinlatma-modal-dialog,
  .acik-riza-modal-dialog {
    width: 90%;
    height: 90vh;
    margin: 5vh auto;
  }
}


/* ==================================================
   RESPONSIVE - AYDINLATMA / AÇIK RIZA - MOBİL
   ================================================== */

@media (max-width: 767.98px) {

  .aydinlatma-modal-dialog,
  .acik-riza-modal-dialog {
    width: auto;
    max-width: none;
    margin: 0.5rem;
    height: calc(100vh - 1rem);
  }
}


/* ==================================================
   KVKK RESPONSIVE
   ================================================== */

@media (max-width: 768px) {

  .kvkk-document {
    max-width: none;
    padding: 24px 20px;
    font-size: 15px;
  }

    .kvkk-document h1 {
      font-size: 17px;
    }

    .kvkk-document h2 {
      font-size: 15px;
    }

    .kvkk-document .numbered-list li {
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 5px;
    }

    .kvkk-document .numbered-list.transfer-list li {
      grid-template-columns: 38px minmax(0, 1fr);
    }
}


@media (max-width: 480px) {

  .kvkk-document {
    padding: 20px 15px;
    font-size: 14px;
    line-height: 1.5;
  }

    .kvkk-document h1 {
      font-size: 16px;
    }

    .kvkk-document h2 {
      font-size: 15px;
      margin-top: 20px;
    }

    .kvkk-document .numbered-list li,
    .kvkk-document .numbered-list.transfer-list li {
      grid-template-columns: 38px minmax(0, 1fr);
      gap: 4px;
    }

    .kvkk-document .purpose-list {
      margin-left: 15px;
    }
}


/* ==================================================
   ANİMASYON
   ================================================== */

@keyframes hvr-icon-wobble-horizontal {

  16.65% {
    transform: translateX(6px);
  }

  33.3% {
    transform: translateX(-5px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}



.wrapper h2 {
  font-size: 13px;
  border-bottom: solid 1px #e6e6e6;
  margin: 0;
  padding: 8px 10px;
  color: #004A87;
  font-weight: 600;
}

.step-section {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  margin-bottom: 20px;
  background: #fff;
}

.step-section h2 {
  background: #fafafa;
  border-bottom: 1px solid #e6e6e6;
}

.step-section-content {
  padding: 12px;
}