html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

body.pkp_op_view {
  position: unset;
}

.row-middle {
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .row-middle {
    display: block;
  }
}

.row-middle p {
  margin: 0;
}

.scrolltop-wrap {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 9999999;
}
.scrolltop-wrap #scrolltop-bg {
  fill: black;
}
.scrolltop-wrap #scrolltop-arrow {
  fill: white;
}
.scrolltop-wrap a:hover #scrolltop-bg {
  fill: #1a96cd;
}
.scrolltop-wrap a:hover #scrolltop-arrow {
  fill: white;
}
@supports (-moz-appearance: meterbar) {
  .scrolltop-wrap {
    clip: rect(0, 3rem, auto, 0);
  }
}
.scrolltop-wrap a {
  position: fixed;
  position: sticky;
  top: -6rem;
  width: 4rem;
  height: 4rem;
  margin-bottom: -6rem;
  transform: translateY(100vh);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: inline-block;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
  outline: none;
  overflow: hidden;
}
.scrolltop-wrap a svg {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.scrolltop-wrap a svg path {
  transition: all 0.1s;
}
.scrolltop-wrap a #scrolltop-arrow {
  transform: scale(0.66);
  transform-origin: center;
}
@media print {
  .scrolltop-wrap {
    display: none !important;
  }
}

/* Footer */
.ozgur-footer {
  background-color: #eee;
  margin-top: 4em;
}

.ozgur-footer-p1 {
  padding: 2em 0;
}

.ozgur-footer-p2 {
  background-color: #eee;
  color: #333;
  text-align: center;
  padding: 50px 0 30px 0;
}

.ozgur-footer-p2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ozgur-footer-p2 li:not(:first-child),
.ozgur-footer-p3 a:not(:first-child) {
  border-left: 1px solid #ddd;
  padding-left: 15px;
  margin-left: 10px;
}

.ozgur-sm {
  padding: 10px !important;
  font-size: 90%;
}

.ozgur-footer-p3 {
  padding: 20px 0;
  background-color: black;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 575px) {
  .ozgur-footer-p3-text-align {
    text-align: center !important;
    margin: 5px 0;
  }
}

.ozgur-footer-p3 a {
  white-space: nowrap;
  color: #fff;
  font-weight: bold;
}

@media (min-width: 576px) {
  .ozgur-footer-p3 a:last-child {
    margin-right: 30px;
  }
}

/** Recapthca **/
.ozgur-grecaptcha {
  margin: 1.5rem 0;
}

.input-box {
  max-width: 0px;
  margin: 0 30px 0 0px;
  background-color: #fff;
  height: 35px;
  border-radius: 1.5em;
  transition: all 0.5s ease-in-out;
}

.input-box.open {
  max-width: 350px;
}

@media (max-width: 768px) {
  .input-box {
    margin: 0 10px;
  }

  .input-box input {
    max-width: unset !important;
  }

  .input-box.open {
    max-width: 300px;
    width: 100%;
  }

  .ozgur-nav {
    border: unset;
  }
}

.input-box input {
  width: 100%;
  max-width: 20vh;
  height: 100%;
  border: none;
  border-radius: 6px;
  outline: none;
  transition: all 0.5s ease-in-out;
}

.input-box.open input {
  padding: 0 5px 0 40px;
}

.input-box .search {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10;
}

.input-box.open .search {
  border-radius: 8px 0 0 8px;
}

.search .search-icon {
  font-size: 15px;
  color: #fff;
}

.input-box .close-icon {
  position: absolute;
  top: 50%;
  font-size: 15px;
  color: black;
  padding: 5px;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
}

.input-box.open .close-icon {
  transform: translateY(-50%) rotate(180deg);
  pointer-events: auto;
  opacity: 1;
}
