/*
@include mq(tablet) {
  //....
}
*//*
@include mh(tablet) {
  //....
}
*//*
@include display(flex, row, flex-start, flex-start);
*//*
@include aspect-ratio(16,9);
*//*
@include font(12, #fff, 400, 12);
*//*
  *****************************
  ********** COLORS ***********
  *****************************
*//*
  *****************************
  ********** WIDTHS ***********
  *****************************
*//*
  *****************************
  *********** FONT ************
  *****************************
*/::-moz-selection {
 /* Code for Firefox */
  color: #fff;
  background: #eebaba;
}

::selection {
  color: #fff;
  background: #006baf;
}

* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 174, 77, 0);
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #d7cab8;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-align: center;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}

.logo {
  display: inline-block;
  width: 250px;
}

.main {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 90px;
  width: 100%;
  min-height: 100vh;
  background-image: url("../image/background.jpg");
  background-position: top center;
  background-size: cover;
  background-color: #006baf;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0px;
  padding: 0 24px;
  width: 100%;
}

.form {
  position: relative;
  z-index: 33;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.form__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 9px 8px 0 8px;
  width: 100%;
}

.form .form-group input,.form .form-group textarea {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px;
  width: 100%;
  height: 55px;
  border: 1px solid #0b5792;
  border-radius: 5px;
  background-color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  font-size: 18px;
  color: #474749;
  font-weight: 400;
}

.form .form-group label.error,.form .form-group span.error {
  display: none;
  padding: 8px;
  margin-top: 8px;
  width: 100%;
  background: #d71f26;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  text-align: left;
}

.form .form-group textarea {
  height: 100px;
  resize: none;
}

.form button {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 0;
  width: 100%;
  max-width: 40%;
  height: 60px;
  background: #055288;
  border: 2px solid #fff;
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.form button:hover {
  background: #03426e;
  color: #fff;
}

input.error,.textarea.error {
  border-color: #d71f26 !important;
}

label.error {
  display: inline-block;
}

.checkbox-group {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 20px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px 0;
  width: 100%;
}

.checkbox-group input {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 0;
  background: #fff;
  border-radius: 4px;
}

.checkbox-group label {
  display: inline-block;
  margin-left: 8px;
  width: 100%;
  font-size: 17px;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.checkbox-group label a {
  color: #fff;
}/*
  Checkbox
*/.checkbox {
  display: inline-block;
}

.checkbox__input[type='checkbox'] {
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #dfd6d6;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-appearance: none;
  -moz-font-smoothing: antialiased;
  -webkit-appearance: none;
}

.checkbox__input[type='checkbox']:checked:before {
  position: relative;
  display: block;
  margin: 4px;
  width: 20px;
  height: 20px;
  background: transparent url(../image/tik.png) no-repeat center center;
  border-radius: 4px;
  -webkit-appearance: none;
  content: '';
}

.checkbox .error__input[type='checkbox'] {
  border: 1px solid #aa001f !important;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  display: none;
  padding: 24px;
  width: 90vw;
  height: 80vh;
  background: #fff;
  border-radius: 12px;
}

.modal.-response {
  height: auto;
}

.modal.-response p {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}

.modal.-active {
  display: inline-block;
}

.modal__content {
  display: inline-block;
  overflow-y: scroll;
  padding-right: 30px;
  width: 100%;
  height: 100%;
}

.modal h3 {
  display: inline-block;
  width: 100%;
  font-size: 13px;
}

.modal p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.modal ul li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.overlay.-active {
  display: inline-block;
}

#agree-error {
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  color: red;
}

#privacy-error {
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  color: red;
}

#policy-error {
  display: inline-block;
  position: absolute;
  bottom: -34px;
  left: 0;
  padding: 8px;
  margin-top: 8px;
  margin-left: 0;
  width: 100%;
  background: #d71f26;
  border-radius: 8px;
  color: #fff;
}

#text-error {
  display: inline-block;
  position: absolute;
  bottom: -34px;
  left: 0;
  padding: 8px;
  margin-top: 8px;
  margin-left: 0;
  width: 100%;
  background: #d71f26;
  border-radius: 8px;
  color: #fff;
}

#referans-error {
  display: inline-block;
  position: absolute;
  bottom: -34px;
  left: 0;
  padding: 8px;
  margin-top: 8px;
  margin-left: 0;
  width: 100%;
  background: #d71f26;
  border-radius: 8px;
  color: #fff;
}



/*
  Selectbox
*/.selectbox {
  display: flex;
  margin: 0;
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  height: 50px;
  border: 1px solid #343319;
  border-radius: 8px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.4 7.1'%3E%3Cstyle%3E.st0%7Bfill:%23055288%7D%3C/style%3E%3Cpath class='st0' d='M3.3 6.6L.1 1.5C-.1 1 0 .4.5.1.6 0 .8 0 1 0h6.4c.6 0 1 .4 1 1 0 .2-.1.4-.2.5L5 6.6c-.2.5-.9.6-1.3.3-.2 0-.3-.1-.4-.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat,repeat;
  background-position: right 15px top 50%,0 0;
  background-size: .65em auto,100%;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #343434;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.selectbox::-ms-expand {
  display: none;
}

.selectbox option {
  font-size: 14px;
  font-weight: 400;
  color: #100e17;
}

.kampanya {
  position: relative;
  display: inline-block;
  top: -62px;
  width: 63%;
  max-width: 390px;
}

.form button.clear {
  margin-right: 12px;
  background: #343319;
}

@font-face {
  font-family:'formula_condensedbold';src:url("../font/formulacondensed-bold-webfont.woff2") format("woff2"), url("../font/formulacondensed-bold-webfont.woff") format("woff");font-weight:normal;font-style:normal;
}

@font-face {
  font-family:'formula_condensedlight';src:url("../font/formulacondensed-light-webfont.woff2") format("woff2"), url("../font/formulacondensed-light-webfont.woff") format("woff");font-weight:normal;font-style:normal;
}

@media only screen and (min-width: 680px) {
  .modal {
    width: 60vw;
  }

  .modal h3 {
    font-size: 23px;
  }

  .modal p {
    font-size: 14px;
  }

  .modal ul li {
    font-size: 14px;
  }

  .kampanya {
    top: -110px;
    width: 35%;
  }
}

@media only screen and (min-width: 769px) {
  .kampanya {
    width: 45%;
  }
}

@media only screen and (min-width: 1441px) {
  .main__container {
    padding: 0;
    width: 1200px;
  }
}

/*
  *****************************
  ********** COLORS ***********
  *****************************
*//*
  *****************************
  ********** WIDTHS ***********
  *****************************
*//*
  *****************************
  *********** FONT ************
  *****************************
*/@font-face {
  font-family:'formula_condensedbold';src:url("../font/formulacondensed-bold-webfont.woff2") format("woff2"), url("../font/formulacondensed-bold-webfont.woff") format("woff");font-weight:normal;font-style:normal;
}

@font-face {
  font-family:'formula_condensedlight';src:url("../font/formulacondensed-light-webfont.woff2") format("woff2"), url("../font/formulacondensed-light-webfont.woff") format("woff");font-weight:normal;font-style:normal;
}
