@charset "UTF-8";
:root {
  --blank-value: 80px;
}

.cookie {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  min-height: 50vh;
}
.cookie-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 218px;
  background: linear-gradient(279deg, rgb(178, 225, 230) 0%, rgb(88, 148, 197) 35%, rgb(123, 120, 166) 100%);
}
.cookie-hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 54px;
  width: 100%;
  max-width: 1280px;
  min-height: inherit;
  border-left: 1px solid #6e76a2;
  border-right: 1px solid #9ac8d4;
}
.cookie-hero__sub {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
}
.cookie-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 60.8px;
  line-height: 3.8rem;
  font-weight: 600;
}
.cookie__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 90px 155px 130px 155px;
  width: 100%;
  max-width: 1280px;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}
.cookie__item {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
}
.cookie__item:first-child {
  max-width: 519px;
}
.cookie__item:last-child {
  margin: 0 0 0 50px;
  max-width: 376px;
}
.cookie__item.-wide {
  margin: 0;
  max-width: 100%;
  width: 100%;
}
.cookie-switch {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  /* Slider Circle */
  /* Slider Status Text */
  /* Change Background If checked */
  /* if checked, move slider text */
  /* if checked, move slider circle  */
  /* Language specific edits */
}
.cookie-switch__text {
  margin: 0;
  padding: 0 12px 0 0;
}
.cookie-switch .switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 34px;
}
.cookie-switch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #313130;
  transition: all 0.4s;
  border-radius: 34px;
  font-family: system-ui, sans-serif;
  font-size: 12px;
  color: #ffffff;
}
.cookie-switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: all 0.4s;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
}
.cookie-switch .slider:after {
  position: absolute;
  content: "KAPALI";
  top: 10px;
  right: 12px;
  transition: all 0.4s;
}
.cookie-switch input:checked + .slider {
  background-color: #0154a3;
}
.cookie-switch input:checked + .slider:after {
  content: "AÇIK";
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}
.cookie-switch input:checked + .slider:before {
  -webkit-transform: translateX(55px);
  transform: translateX(55px);
}
.cookie-switch .slider:lang(en):after {
  right: 10px;
  content: "OFF";
}
.cookie-switch input:checked + .slider:lang(en):after {
  content: "ON";
  right: 20px;
}
@media only screen and (max-width: 1024px){
  :root {
    --blank-value: 50px;
  }
  .cookie-hero__container {
    border: 0;
  }
  .cookie__container {
    padding: 67px;
    border: 0;
  }
  .cookie__item {
    width: 100%;
  }
  .cookie__item:last-child {
    margin: 0 0 60px 0;
  }
}
@media only screen and (max-width: 639px){
  .cookie-hero__title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 48px;
    line-height: 3rem;
    text-align: center;
  }
  .cookie__container {
    padding: 67px 24px 67px 24px;
  }
}