header {
    background-image: none;
}
.sozlesmeler {
    padding: 40px;
    flex: 1;
    background: #f4f4f4;
    border-top: 1px solid #eee;
  }
  
  .titles a {
    padding: 20px;
    white-space: nowrap;
    padding-right: 40px;
    margin-right: -20px;
    cursor: pointer;
  }
  
  .titles a.active {
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  }
  
  .aggreement {
    padding: 20px;
    background: #fff;
    max-height: calc(100vh - 200px);
    overflow: auto;
    border-radius: 25px;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-column {
    flex-direction: column;
  }
  
  .flex-1 {
    flex: 1;
  }
  
  .mobile-mdl-wrapper {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    pointer-events: auto;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.32);
  }
  
  .mobile-mdl-wrapper .mdl-content {
    max-width: 600px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    padding: 30px;
    background: #fff;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #27aa67;
    width: 100%;
  }
  
  .mobile-mdl-wrapper .mdl-body {
    padding: 40px;
    max-height: 80vh;
    overflow: auto;
  }
  
  .mobile-mdl-wrapper .mdl-footer button {
    text-transform: uppercase;
    border-radius: 25px;
    background: #27aa67;
    color: #fff;
    padding: 10px 20px;
    font-family: "Cabin Condensed", sans-serif;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.9px;
    font-weight: 700;
    border: 0;
  }
  
  #loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  #myDiv {
    display: none;
    text-align: center;
  }
  
  @media screen and (max-width: 986px) {
    .sozlesmeler {
    
    }
    .mobile-mdl-wrapper {
      display: flex;
    }
    .aggreement {
      display: none;
    }
    .titles a {
      white-space: normal;
      margin-right: 0;
      padding: 20px;
      text-align: center;
    }
    .titles a.active {
      border-radius: 10px;
      color: #000;
    }
    .mobile-mdl-wrapper .mdl-footer button {
      margin-top: 17px;
      float: right;
    }
  }
  