/*  
    designed by arnoma marketing
*/
body {
  padding: 0;
  margin: 0;
  background-color: #2b2b2b;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.d_flex {
  display: flex;
}

button,
a {
  transition: 0.2s;
}

button,
.btn_class {
  background-color: #eb840a;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
  color: #fff;
}

button:hover,
.btn_class:hover {
  background-color: #ff981b;
}

.color1,
a:hover,
.standart_page a .sssHeader {
  color: #eb840a;
}

.sssHeader {
  cursor: pointer;
  color: #eb840a;
}

.sssHeader:hover {
  color: white;
}

.standart_page a:hover {
  color: #ffffff;
}

ul li a,
ul li {
  text-decoration: none;
  list-style-type: none;
  color: #fff;
}

.img-fluid {
  width: 100%;
  height: auto;
}

h1 {
  font-size: 41px;
}

h2 {
  font-size: 33px;
}

h3 {
  font-size: 25px;
}

.clear-fixed {
  clear: both;
}

/* -------------------------- */
/* ------- HEADER ----------- */
/* -------------------------- */
header {
  position: relative;
  z-index: 99;
  padding-top: 5px;
}

.logo {
  display: block;
  position: relative;
  width: 201px;
}

.mobile_header {
  position: fixed;
  top: 0;
  padding: 15px;
  display: none;
}

.mobile_header .logo {
  z-index: 2;
}

.mobile_header {
  width: 159px;
}

.search_icon {
  width: 19px;
}

.search_bar input {
  border: 1px solid #eb840a;
  padding: 5px 10px;
  height: 25px;
  width: 390px;
  background-color: inherit;
  color: #fff;
}

.search_bar input:focus {
  outline: none !important;
  border-color: #ff981b;
}

.search_bar input::placeholder {
  color: #997954;
}

.scn_btn {
  height: 37px;
}

.menu .d_flex {
  align-items: center;
}

.yukle_btn {
  display: flex;
  border: 1px solid #eb840a;
  padding: 9px 15px;
  align-items: center;
  max-width: 191px;
}

.category-filter {
  overflow: visible;
  margin-right: 11px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.category-filter-container {
  overflow: scroll;
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  align-self: flex-start;
  top: 0;
  width: 300px;
  scrollbar-width: 10px;
  scrollbar-color: gray;
}

.form_group_users {
  width: 100%;
  height: 37px;
}

.yukle_btn img {
  position: relative;
  width: 17px;
  border-radius: 15px;
  background-color: #eb840a;
  margin-right: 5px;
}

.yukle_btn:hover {
  border-color: #ff981b;
  background-color: #eb840a;
  color: #fff;
}

.flags {
  display: flex;
  position: relative;
  /* margin-top: -24px; */
  justify-content: flex-end;
}

.lang-flags img {
  width: 21px;
}

.flags-content {
  display: flex;
  gap: 2px;
  position: absolute;
  margin-top: -29px;
  right: -7px;
}

.english-flag img {
  width: 19px;
  margin-top: 1px;
  margin-right: 5px;
}

.desktop_header {
  justify-content: space-between;
  align-items: center;
  max-width: 1700px;
  margin: auto;
  padding: 13px 15px 3px;
}

.desktop_header ul li {
  padding: 5px;
}

.desktop_header .first_link {
  padding-right: 29px;
}

.desktop_header .last_link {
  margin-left: 29px;
}

.desktop_header .logout img {
  max-width: 19px;
  margin-left: 7px;
  margin-top: 3px;
}

.logout .tooltiptext {
  visibility: hidden;
  width: 60px;
  background-color: #eb8408;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  margin-left: -46px;
  margin-top: -30px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s;
}

.logout:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Mobile menu */

#menuToggle {
  display: block;
  position: relative;
  top: 3px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

#menuToggle a:hover {}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 2px;
  margin-bottom: 7px;
  position: relative;
  background: #ffffff;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #ffffff;
}

#menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: calc(100vw - 50px);
  height: 100vh;
  overflow-y: auto;
  margin: -150px 0 0 calc(-100vw);
  padding: 50px;
  padding-top: 175px;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(38 38 38) 17%);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-300%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked~ul {
  transform: none;
}

#menuToggle input:checked~.mobile_header {
  height: 300px;
}

.office-addresses {
  position: relative;
  margin-top: 25px;
}

.office-addresses h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 15px 0 0;
}

.office-addresses p {
  margin: 5px 0 0;
}

/* -------------------------- */
/* ------- HOME   ----------- */
/* -------------------------- */
.slider.home-slider {
  z-index: 1;
  display: flex;
  position: relative;
  margin-top: -98px;
}

.mobil_slider {
  display: none !important;
}

.slider .swiper-slide img {
  width: 100vw;
}

.swiper-slide2 {
  width: auto !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.products2 {
  gap: 10px;
}

.page_banners .swiper-slide {
  width: inherit !important;
}

.masaustu_slider .swiper-slide {
  width: 100% !important;
}

.swiper-pagination-bullet {
  width: 19px !important;
  height: 19px !important;
}

.swiper-pagination-bullet {
  background-color: #ff981b !important;
}

.static_bloks {
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
}

.blok1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
}

.blok1 div {
  border-radius: 10px;
  overflow: hidden;
}

.left_blok {
  margin-right: 5px;
}

.right_blok {
  margin-left: 5px;
}

.blok2 {
  justify-content: center;
  align-items: center;
  background-color: #3b3b3b;
  padding: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.blok2 .right_blok {
  width: 640px;
  line-height: 24px;
}

.blok2 .left_blok {
  margin-right: 30px;
}

.scenario_sliders {
  padding: 41px;
  padding-top: 10px;
  display: block;
  position: relative;
}

.scenario_slider_item {
  width: 100%;
  overflow: hidden;
}

.scenario_slider_item h3,
footer h3,
.under_line {
  text-decoration: underline;
  text-decoration-color: #eb840a;
  text-underline-offset: 9px;
  text-decoration-thickness: 1px;
}

.scenario_slider_item .swiper-slide,
.product_link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

.scenario_slider_item .swiper-slide *,
.product_link * {
  position: relative;
  display: block;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.scenario_slider_item .swiper-slide img,
.product_link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scenario_slider_item .image_content,
.product_link .image_content {
  overflow: hidden;
}

.ribbon {
  position: absolute !important;
  top: 17%;
  left: -35%;
  z-index: 1;
  padding: 4px 8px;
  background-color: #ff0000;
  color: #ffffff;
  transform: rotate(-45deg);
  font-size: 12px;
  width: 127%;
  height: 30px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.ribbon.preproduction {
  background-image: linear-gradient(to right,
      #383232 0%,
      #979191 50%,
      #d1d1d1 100%);
}

.ribbon.production {
  background-image: linear-gradient(to right, #ff0000, #f17f81);
}

.ribbon.post_production {
  background-image: linear-gradient(to right, #00c3ff, #c17ff1);
}

.ribbon.onair {
  background-image: linear-gradient(to right, #ff7f00, #ffaf00);
}

.scenario_slider_item .swiper-slide span,
.product_link span {
  margin-top: 15px;
  text-align: center;
  height: 100%;
}

.scenario_slider_item .swiper-slide:hover>.image_content>img,
.product_link:hover>.image_content>img {
  transform: scale(1.1);
}

.scenario_slider_item .swiper-slide:hover {
  color: #eb840a;
}


.verifyForm {
  flex-direction: column;
  position: relative;
}

.verify-info {
  margin: 20px 10px;
}

.verifyForm input {
  margin: 0 0 23px;
  width: 194px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px;
}

.verify-link {
  color: #32df66;
}

.verify-link:hover {
  color: #0aff54;
}

.certificate.s_error {
  border: 1px solid rgb(244 67 54 / 42%);
}

.s_error #downloadBtn {
  background-color: #f44337;
}

.s_error #downloadBtn:hover {
  background-color: #ff2111;
}

.certificate.s_error h3 {
  color: #f44337;
}

.certificate {
  max-width: 600px;
  margin: 20px auto;
  padding: 7px;
  border: 1px solid rgb(51 223 102 / 29%);
  border-radius: 10px;
  text-align: center;
}

#downloadBtn {
  padding: 3px 33px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  /* border-radius: 5px; */
  display: inline-block;
  cursor: pointer;
  margin-bottom: 17px;
  position: relative;
  transition: 0.3s;
}

#downloadBtn:hover {
  background-color: #37de3c;
}

.certificate h3 {
  color: #32df66;
}

/* Standart Pages  */
.standart_page {
  max-width: 968px !important;
}

.standart_page section {
  line-height: 27px;
  font-size: 16px;
}

.standart_page h4 {
  color: #ffa132;
  font-size: 17px;
}

/* -------------------------- */
/* ------- FOOTER ----------- */
/* -------------------------- */

footer {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  font-weight: 300;
}

.social_container {
  width: 100%;
  background-color: #eb840a;
  height: 69px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer_links {
  width: 100%;
  background-color: #363636;
  min-height: 200px;
}

.footer_links h3 {
  font-size: 21px;
  font-weight: 500;
}

.social_container a {
  text-decoration: none;
  margin-right: 5px;
}

.social_container a:hover>img {
  filter: invert(1);
}

.social_container a img {
  width: 32px;
  transition: 0.2s;
}

.copyright {
  width: 100%;
  background-color: #2f2f2f;
  min-height: 60px;
}

.copyright .d_flex {
  max-width: 1200px;
  margin: auto;
  margin-top: 19px;
  font-style: italic;
  font-weight: 200;
  color: #8d8d8d;
}

.link_container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 50px;
}

.link_container h3 {
  margin: 25px 0 5px;
}

.link_container .d_flex {
  flex-direction: column;
  max-width: 301px;
}

.link_container ul {
  margin: 10px 0;
  padding: 0;
}

.link_container ul li {
  margin-top: 11px;
}

.subscribe a {
  color: #fff;
}

.subscribe_input {
  line-height: 20px;
}

.subscribe button {
  margin-bottom: 10px;
}

/* .custom-swal{
  width: 320px;
} */
.swal-title {
  font-size: 15px !important;
  font-weight: 400;
}

/* .swal-container{
  font-size: 13px !important;
}
.swal-icon img{
  width: 30px;
  height: 30px;
} */
.iti * {
  color: #282828;
}

.iti {
  width: calc(100% - 161px);
}

#phone {
  width: 100%;
}

.iyzico-logos {
  max-width: 100%;
}

/* -------------------------- */
/* ------- Category --------- */
/* -------------------------- */

.page_container {
  max-width: 1700px;
  display: block;
  position: relative;
  margin: auto;
  padding: 0 15px;
}

.page_header {
  border-bottom: 1px solid #494949;
  margin-bottom: 30px;
}

.page_header h1 {
  font-size: 31px;
  margin-bottom: 1px;
  font-weight: 600;
}

.page_container .filter {
  max-width: 200px;
}

.collapsible span {
  float: right;
  font-size: 20px;
  font-weight: 200;
}

.filter_title {
  margin: 15px 0 15px 10px;
  font-size: 17px;
  font-weight: 600;
  width: 200px;
}

.filterButton {
  margin-top: 15px;
  color: #fff;
}

.filterResetButton {
  color: #fff;
  background-color: #494949;
}

.collapsible {
  background-color: #272727;
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #343434;
}

.content label:first-child,
.content select:first-child {
  margin-top: 25px;
}

.content label:last-child,
.content select:last-child {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-right: 10px;
}

.content select {
  width: 150px;
  min-height: 30px;
}

.content input {
  margin-bottom: 7px;
}

.products {
  display: flex;
  padding: 5px;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}

.product_item {
  margin: 20px 3px 35px;
  box-sizing: border-box;
}

.product_item * img {
  aspect-ratio: 1/1.414;
  width: 220px;
  height: auto;
  overflow: hidden;
}

.filter-content {
  overflow: hidden;
}

.filter-content.collapsed {
  height: 0;
}

#filter .multiple-select {
  width: 100%;
  height: 133px;
}

.filter-content.content,
.filter_title {
  background: none;
  padding: 0;
}

#adminCheckboxDialog {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 20;
  border-radius: 10px;
  border: 1px solid #ffffff38;
  background-color: #2b2b2b;
  display: none;
  box-sizing: border-box;
  padding: 10px;
  width: 100vw;
}

.adminCheck {
  display: none;
}

#getAdminCheckLink {
  cursor: pointer;
  margin-top: 30px;
}

.tabCount {
  background-color: #eb8408;
  border-radius: 100px;
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  right: 5px;
  top: 5px;
}

.scenario-name {
  height: 20px;
}

.productsImageWrapper {
  height: 314px !important;
  width: auto;
}

@media (max-width: 1200px) {
  .category-filter-container {
    top: 100px;
    position: initial;
    height: initial;
  }

  .page_detail_content {
    padding: 30px 3%;
  }
}

@media (max-width: 768px) {
  .iti {
    width: calc(100% - 102px);
  }

  .productsImageWrapper {
    height: 190px !important;
  }

  .scenario-name2 {
    width: 170px;
  }

  .page_detail_content {
    padding: 30px 15px;
  }

  .scenario_slider_item .image_content,
  .product_link {
    height: 203px;
  }
}

@media (max-width: 576px) {
  .multiple-select {
    height: 19px !important;
  }

  .product_item {
    flex: 0 0 calc(50% - 10px);
    /* 50% genişlik, aralarda 15px boşluk bırak */
  }
}

/* -------------------------- */
/* ------- Product Detail  -- */
/* -------------------------- */

.page_images {
  max-width: 27%;
  display: flex;
  overflow: hidden;
}

.page_variables {
  display: block;
  width: 45%;
  margin-left: 33px;
}

.page_banners {
  display: block;
  overflow: hidden;
  width: calc(27% - 33px);
  margin-top: 83px;
}

.page_banners .swiper-pagination {
  position: relative;
  text-align: left;
  margin-top: 15px;
}

.page_banners img {
  max-width: 100%;
}

.page_variables button,
.page_variables .btn_class {
  margin: 20px;
  width: calc(100% - 40px);
  padding: 17px 0;
  font-size: 16px;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  display: block;
  text-align: center;
  color: #0d0d0d;
  text-decoration: none;
}

.page_variables .info {
  height: 400px;
  overflow: hidden;
  transition: height 0.5s;
}

.page_variables button:hover,
.page_variables .btn_class:hover {
  background-color: #eb840a;
}

.page_variables .fazla-goster,
.page_variables .az-goster {
  background-color: #0d0d0d;
  color: #fff;
  font-weight: 200;
  line-height: 25px;
}

.page_variables .fazla-goster {
  background: rgb(43, 43, 43);
  background: linear-gradient(180deg,
      rgba(43, 43, 43, 0) 0%,
      rgba(43, 43, 43, 1) 56%);
  display: flex;
  height: 140px;
  position: relative;
  color: #fff;
  width: 100%;
  padding: 0;
  left: -20px;
  top: -140px;
  margin-bottom: -140px;
  align-items: flex-end;
  justify-content: center;
}

.page_variables .fazla-goster:hover {
  background: rgb(43, 43, 43);
  background: linear-gradient(180deg,
      rgba(43, 43, 43, 0) 0%,
      rgba(43, 43, 43, 1) 100%);
}

.fazla-goster img {
  filter: invert(1);
  width: 24px;
  margin-right: 10px;
}

.page_images .swiper-slide,
.page_images .swiper-slide img {
  max-width: 100%;
}

.reactionButtons {
  position: absolute;
  z-index: 20;
  top: 500px;
  user-select: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
  left: 0px;
}

.reactionMain {
  display: flex;
  align-items: center;
  border-radius: 30px;
  background-color: #202020;
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 0;
  transition: all 0.5s;
  width: 48px;
  height: 48px;
}

.reactionIconWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 30px;
  position: relative;
  background-color: #202020;
}

.reactionText>p {
  background-color: #202020;
  border-radius: 20px;
  padding: 3px 10px;
}

.form_group>label {
  font-size: 14px;
  line-height: 16px !important;
}

.reactionText>svg {
  position: absolute;
  top: 39px;
}

.reactionText {
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

.reactionIconWrapperInner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

.reactionText {
  position: absolute;
  top: -55px;
  text-wrap: nowrap;
  pointer-events: none;
}

.reactionIconBorder {
  height: 30px;
  width: 1px;
  background-color: white;
  opacity: 0.25;
}

.reactionMultipleIcons {
  box-sizing: border-box;
  padding: 0 10px;
  width: 175px;
  z-index: 25;
  transition: all 0.2s;
  display: flex;
  background-color: #202020;
  border-radius: 30px;
  justify-content: space-between;
  align-items: center;
  height: 45px;
}

.reactionIcon {
  opacity: 0.5;
  transition: all 0.2s;
  z-index: 25;
  width: 28px;
  height: auto;
}

.opacity05 {
  opacity: 0.5;
}

.opacity0 {
  opacity: 0;
}

.opacity1 {
  opacity: 1;
}

.reaction1svg {
  transition: transform 0.5s;
  transform: translateY(0px);
}

.likeButton1Active {
  animation: like-animation1 0.5s ease-in-out forwards;
}

.likeButton2Active {
  animation: like-animation2 0.5s ease-in-out forwards;
  animation-delay: 0.1s;
}

#reaction2svg {
  transition: transform 0.5s;
  transform: scale(1);
  fill: white;
}

.reaction2svgActive {
  animation: love-animation 0.5s ease-in-out forwards;
}

@keyframes love-animation {
  0% {
    transform: scale(1);
    fill: white;
  }

  40% {
    transform: scale(1.2);
    fill: #f64773;
  }

  70% {
    transform: scale(1.2);
    fill: #f64773;
  }

  100% {
    transform: scale(1);
    fill: white;
  }
}

@keyframes like-animation1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes like-animation2 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

.svgStars {
  transition: all 0.7s;
  transform: scale(0.3);
  transform-origin: center;
  position: absolute;
  opacity: 0;
}

.svgStarsActive {
  animation: star-animation 0.7s ease-in-out forwards;
}

@keyframes star-animation {
  0% {
    transform: scale(0.3) translateX(0px);
    opacity: 0;
  }

  50% {
    transform: scale(1.3) translateX(5px);
    opacity: 1;
  }

  70% {
    transform: scale(1.3) translateX(5px);
    opacity: 1;
  }

  100% {
    transform: scale(0.3) translateX(0px);
    opacity: 0;
  }
}

#reactionMainText {
  transition: all 0.2s;
}

.big-images {
  /* width: 200px !important; */
}

.thumbs {
  width: 59px;
  display: block;
  margin-right: 15px;
}

.displayNone {
  display: none;
}

.thumbs .swiper-slide {
  height: 81px;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #2b2b2b;
  background-color: #272727;
  border: 1px solid #dedede;
}

.thumbs .swiper-slide:hover {
  border: 1px solid #ed850b;
}

.logline,
.area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.swiper-content .logline,
.swiper-content .area {
  margin-top: 30px;
  max-height: 44vh;
}

.swiper-content .area-title,
.swiper-content .logline-title {
  position: absolute;
  left: 20px;
  top: 0px;
  color: #ed850b;
  font-weight: 600;
  font-size: 18px;
}

.thumbs img {
  min-width: 59px;
}

.logline-title,
.area-title,
.logline-desc,
.area-desc {
  display: flex;
  text-align: center;
  line-height: 20px;
  font-size: 13px;
}

.overflowText {
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumbs .area .area-title,
.thumbs .logline .logline-title {
  color: #ed850b;
  font-size: 12px;
  text-align: center;
}

.tabs {
  display: flex;
  width: 100%;
}

.tab {
  /* flex: 1; */
  text-align: center;
  padding: 20px;
  cursor: pointer;
  font-size: 21px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #dfdfdf;
  text-underline-offset: 14px;
  text-decoration-thickness: 1px;
}

.tab.active {
  text-decoration-color: #eb840a;
}

.tab-content {
  display: none;
  padding: 20px;
  line-height: 20px;
  font-weight: 300;
  min-width: 50%;
}

.tab-content ul li {
  list-style-type: disc;
}

.tab-content li {
  margin-bottom: 5px;
}

.tab-content.active {
  display: block;
}

.info {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

.data-row {
  display: flex;
  flex-direction: row;
  min-height: 35px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(237, 237, 237, 0.5);
  border-bottom: none;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.data-row:last-child {
  border-bottom: 1px solid #fff;
}

.data-row:first-child {
  border-top: 1px solid #fff;
}

.d1 {
  font-weight: 300;
  width: 30%;
  margin-right: 20px;
  color: #ffa133;
}

.feedbackMailContent {
  list-style-type: disc;
}

.d2 {
  width: calc(70% - 30px);
  font-weight: 300;
}

/* -------------------------- */
/* ------- Checkout  -------- */
/* -------------------------- */

.checkout_page {
  max-width: 1200px;
  margin: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.c_page {
  max-width: 771px;
}

.login_side {
  flex-direction: column;
  padding: 20px;
  width: calc(50% - 70px);
  background-color: #333333;
}

.payment_side {
  flex-direction: column;
  padding: 20px;
  width: calc(50% - 70px);
  margin-left: 20px;
  background-color: #363636;
}

.login-info {
  margin-top: 91px;
  font-style: italic;
  font-weight: 200;
}

.product-detail-container {
  display: flex;
  position: relative;
  width: calc(100% - 40px);
  flex-wrap: wrap;
  flex-direction: column;
  padding: 20px;
}

.payment-table {
  border: 1px solid #4d4c4c;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
  background-color: #262626;
}

.payment-product-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.payment-product-name {
  font-weight: 200;
}

.payment-product-detail img {
  max-width: 100px;
  margin-right: 15px;
}

.login_side button {
  background-color: #333333;
  border: 1px solid #ff981b;
}

.login_side button:hover {
  background-color: #ff981b;
}

.payment_side button,
.login_side button {
  min-width: 151px;
  padding: 11px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  float: right;
  margin-top: 17px;
  margin-right: 40px;
}

.order-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.order-detail .order-title {
  font-weight: 100;
}

.order-detail .price {
  font-size: 19px;
  font-weight: 600;
}

.order-container {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  margin-top: 37px;
  max-width: 100%;
}

.order-info {
  font-weight: 200;
}

.order-document {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 29px;
}

.order-document a {
  color: #fff;
}

.order-panel {
  padding: 3px 15px;
}

.order-panel label {
  margin: 0;
}

.order-button {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  margin-right: 10px;
  margin-top: 12px;
}

.order-button button {
  min-width: 191px;
  padding: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-button img {
  width: 34px;
  margin-right: 10px;
}

.form_group {
  margin-bottom: 10px;
}

#user_payment .form_group {
  display: flex;
}

.form_group label {
  width: 110px;
  min-height: 30px;
  line-height: 30px;
  display: block;
  position: relative;
  float: left;
}

.form_group input,
.form_group select {
  width: calc(100% - 168px);
  height: 30px;
}

.form_group textarea {
  width: calc(100% - 168px);
}

.phone-group input {
  width: 100%;
}

.hide {
  display: none;
}

.form_group select {
  width: calc(100% - 160px);
  height: 37px;
}

.form_group input:focus-visible,
.form_group select:focus-visible,
textarea:focus-visible,
.code_send input:focus-visible,
#card-form input:focus-visible {
  outline-color: #eb8408;
}

.phone-group button {
  margin-top: 0;
  min-width: 10px;
}

.activation_page {
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: auto;
  text-align: center;
  line-height: 26px;
  font-weight: 200;
}

.activation_page p {
  font-style: italic;
}

.activation_page form {
  display: flex;
  align-items: center;
}

.code_send input {
  height: 30px;
}

.code_send_btn button {
  height: 36px;
  margin-left: 5px;
}

.alert.alert-danger {
  display: block;
  position: relative;
  margin: 15px;
  max-width: 100%;
  padding: 20px;
  font-weight: 700;
  background-color: #eb0f08;
}

.scenario_form .alert.alert-danger {
  width: 100%;
}

.scenario_form form {
  width: 100%;
  max-width: 665px;
}

.scenario-add-button {
  margin-right: 10px;
}

.senaryo-isim {
  max-width: 301px;
  margin-left: calc(30% + 30px);
  margin-top: 21px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffa132;
  font-style: italic;
}

.CCBackground {
  max-width: 100%;
  display: flex;
}

.outercontainer {
  margin: 0px auto;
  border: 1px solid #373737;
  padding: 50px 10px;
  width: 701px;
  max-width: calc(100% - 40px);
  background: #262626;
}

.formcontainer {
  margin-top: 20px;
}

.purchasebtn {
  margin-top: 20px;
}

.btn-success {
  background-color: #0032a0;
}

#card-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-content: center;
}

#card-form input {
  padding: 15px 3px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.long-input {
  width: 351px;
  max-width: calc(100% - 6px);
  display: flex;
  position: relative;
}

.shorts {
  display: flex;
  max-width: 100%;
}

.short-input {
  display: flex;
  width: 171px;
  max-width: 47%;
}

.card-wrapper>.jp-card-container {
  transform: scale(1);
  transform-origin: center;
}

@media (max-width: 450px) {
  .card-wrapper {
    max-width: 80vw;
    width: 100%;
    margin: 20px auto;
    overflow-x: hidden;
  }

  .card-wrapper>.jp-card-container {
    transform: scale(0.85) !important;
    transform-origin: left center;
  }
}

/* -------------------------- */
/* ---- Reader Dashboard ---- */
/* -------------------------- */

.panel_page {
  max-width: 100%;
  margin: auto;
  justify-content: start;
  flex-wrap: wrap;
}

.panel-title {
  display: flex;
  width: 100%;
  margin-left: 275px;
  margin-bottom: 30px;
}

.panel-menu {
  width: 250px;
}

.panel-menu ul {
  padding: 15px 0;
}

.panel-menu li {
  display: flex;
  position: relative;
  width: 215px;
}

.panel-menu li a {
  padding: 15px 15px;
  width: 100%;
  font-weight: 300;
  margin-bottom: 1px;
  background-color: #0d0d0d;
}

.panel-menu li:first-child {
  margin-top: -30px;
}

.panel-menu li a:hover,
.panel-menu li a.active {
  background-color: #eb8408;
  color: white;
}

.panel-container {
  margin-left: 25px;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 280px);
}

.panel-box {
  display: flex;
  width: 205px;
  height: 99px;
  padding: 36px;
  margin: 10px;
  justify-content: space-between;
  align-items: center;
  background-color: #232323;
  cursor: pointer;
  transition: 0.3s;
}

.panel-box:hover {
  box-shadow: 0px 0px 20px 0px #ffffff4a;
  border-radius: 9px;
}

.box-text-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: end;
}

.box-icon img {
  width: 51px;
}

.box-number {
  font-size: 25px;
  font-weight: 800;
}

.box-text {
  font-weight: 300;
}

/* -------------------------- */
/* ------- Reader Access ---- */
/* -------------------------- */

.list-item {
  display: flex;
  position: relative;
  width: 100%;
  height: 101px;
  background-color: #202020;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
  margin-bottom: 2px;
  z-index: 2;
}

.scenario-list-item {
  width: 70vw;
}

.list-item.invoice-list {
  height: 70px;
}

.list-item:hover {
  background-color: #282828;
  box-shadow: 0px 0px 15px 0px #ffffff4a;
  z-index: 99;
}

.list-item * {
  color: #fff;
}

.list-item .column {
  padding: 19px;
  display: flex;
  align-items: center;
}

.list-item .date {
  margin-right: 21px;
  font-style: italic;
  color: #767676;
}

.list-item .column .item-afis {
  height: 85px;
  margin-right: 15px;
}

.list-item .column a {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: underline;
}

.list-item .column a img {
  height: 25px;
  margin-right: 12px;
}

.list-item .column a .download-image {
  height: 24px;
  margin-right: 0px;
  margin-left: 12px;
}

.access-container .payment_side {
  margin-left: 0;
  width: 400px;
}

/* Scenarist Panel  */
.scenarist-access .list-item {
  height: 59px;
}

.scenarist-access .list-item .column .item-afis {
  height: 45px;
}

.list-item.pending {
  background-color: #0d0d0d;
}

.list-item.pending .status-text {
  margin-right: 15px;
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  color: #eb840a;
}

.list-item .scenario {
  margin-right: 15px;
  width: 110px;
}

.list-item .status {
  color: #eb840a;
  font-size: 13px;
  font-style: italic;
}

.list-item .status.active {
  color: #32df66;
}

.scenarist-payment .date {
  font-size: 13px;
}

.list-item a .destek {
  font-size: 13px;
}

.list-item .price {
  margin-right: 10px;
  font-weight: 700;
}

.input-info {
  display: block;
  position: relative;
  width: 100%;
  margin: 17px 0;
  font-style: italic;
  font-weight: 200;
  color: #8d8d8d;
}

.multiple-select {
  min-height: 150px;
  width: 100%;
}

.tab-content .form_group {
  margin: 3px;
}

.panel-info {
  max-width: 691px;
}

.panel-info .form_group input {
  width: 100%;
}

.panel-info .form_group select {
  width: calc(100% + 7px);
}

.slider-line {
  margin: 7px 0;
}

input[type="text"].ui-datepicker-input {
  width: 100px;
  height: 30px;
  border: 1px solid black;
  font-size: 16px;
  background-color: #8d8d8d;
}

.scenario-detail-text {
  width: 500px;
  height: 200px;
  max-width: 100%;
}

.save-button {
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  margin-right: 19px;
  margin-top: 17px;
  font-weight: 300;
  font-size: 15px;
  font-family: "Inter", sans-serif;
}

.save-button img {
  width: 23px;
  margin-right: 13px;
}

.file-upload-content {
  min-width: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border: 1px dotted #ffffff38;
  padding: 15px;
  margin-bottom: 13px;
}

.file-upload-content input[type="file"],
.scenario-upload input[type="file"] {
  opacity: 0;
  position: absolute;
  width: 1px;
}

.afis-image {
  max-width: 60px;
  display: block;
  float: left;
}

.file-select-button {
  background-color: #232323;
  padding: 15px;
  border-radius: 8px;
  font-style: italic;
  margin-left: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.file-select-button:hover {
  background-color: #ed850b;
}

.file-select-button img {
  max-width: 23px;
  top: 6px;
  position: relative;
}

.tab-image-content {
  width: calc(70% - 20px);
  display: flex;
  align-items: center;
}

.content-info {
  font-style: italic;
  font-size: 10px;
  font-weight: 200;
  color: #bfbdbd;
}

.panel-logline {
  height: 150px;
  width: 100%;
  background-color: #232323;
  color: #c5c5c5;
  padding: 5px;
  border: 1px solid #1e1e1e;
}

.scenario-upload {
  min-width: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border: 1px dotted #ffffff38;
  padding: 15px;
  margin-bottom: 13px;
  max-width: 665px;
}

.scenario-upload .file-select-button {
  margin-left: 0;
}

.scenario-upload-info {
  max-width: 301px;
  font-size: 13px;
  margin-left: calc(30% + 20px);
  margin-top: 15px;
}

.scenario-upload-info span {}

.download-scenario a {
  color: #fff;
}

.download-scenario a:hover {
  color: #ffa133;
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #2b2b2b;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #484848;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal .modal-info {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.modal-info .info-title,
.modal-info .info-value {
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #4d4c4c;
}

.modal-info .info-title {
  width: 130px;
  font-weight: 800;
}

.modal-info .info-value {
  width: calc(100% - 130px);
}

/* Other CSS */

.selected-items {
  list-style-type: none;
  padding: 0;
}

.selected-items li {
  display: inline-block;
  margin: 5px;
  background-color: #eb840a;
  padding: 5px 13px;
  border-radius: 5px;
  position: relative;
}

#filter .selected-items li {
  font-size: 11px;
}

.selected-items li .remove-item {
  cursor: pointer;
  position: absolute;
  right: -6px;
  top: -6px;
  background-color: #2b2b2b;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  padding: 0px 4px;
}

/* Slider */
.slider-container {
  width: 300px;
  max-width: 100%;
  margin-bottom: 7px;
}

.f_slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 15px;
  background: #dcdcdc;
  outline: none;
  opacity: 0.9;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.f_slider:hover {
  opacity: 1;
}

.f_slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 15px;
  cursor: pointer;

  border-radius: 15px;

  background: rgb(235, 235, 235);
  background: linear-gradient(90deg,
      rgba(235, 235, 235, 1) 10%,
      rgba(255, 205, 0, 1) 47%,
      rgba(235, 59, 10, 1) 100%);
}

.f_slider::-moz-range-track {
  width: 100%;
  height: 15px;
  cursor: pointer;
  background: #dcdcdc;
  border-radius: 15px;
  background: rgb(235, 235, 235);
  background: linear-gradient(90deg,
      rgba(235, 235, 235, 1) 10%,
      rgba(255, 205, 0, 1) 47%,
      rgba(235, 59, 10, 1) 100%);
}

.f_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffa900;

  cursor: pointer;
  margin-top: -5px;
}

.f_slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffa900;
  cursor: pointer;
}

.slider-label {
  margin-bottom: 11px;
  margin-left: 5px;
}

.var-yok {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin-bottom: 15px;
  margin-left: 5px;
  width: 300px;
  max-width: 100%;
}

/* Big Screens */
@media only screen and (min-width: 1400px) {}

/* Laptop Screens */
@media only screen and (max-width: 1200px) {
  .desktop_header {
    display: none;
  }

  .search_bar {
    flex-shrink: 1;
    flex-grow: 1;
    justify-content: center;
  }

  .search_bar * input {
    width: calc(100vw - 250px);
    height: 17px;
  }

  .search_icon {
    width: 17px !important;
  }

  .scn_btn {
    height: 29px;
  }

  .logo {
    width: 100px;
  }

  .mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 30px);
    background: rgb(43, 43, 43);
    background: linear-gradient(180deg,
        rgba(43, 43, 43, 1) 41%,
        rgba(43, 43, 43, 0.8491771708683473) 65%,
        rgba(43, 43, 43, 0.3393732492997199) 83%,
        rgba(43, 43, 43, 0) 100%);
  }

  #menuToggle input {
    display: block;
    width: 20px;
    height: 16px;
    position: absolute;
    top: -3.5px;
    left: -2.5px;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
  }

  #menuToggle span {
    display: block;
    width: 16.5px;
    height: 1px;
    margin-bottom: 3.5px;
    position: relative;
    background: #ffffff;
    z-index: 1;
    transform-origin: 2px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  .slider {
    margin-top: 0 !important;
  }

  .page_container {
    margin-top: 91px;
  }

  .panel-title {
    margin-left: 0;
  }
}

.numeric_container {
  display: block;
  position: relative;
  max-width: 300px;
}

.numeric_container nav {
  display: flex;
  position: relative;
}

.numeric_container nav ul {
  padding: 0;
  display: flex;
}

.numeric_container nav ul li {
  padding: 0 7px;
  border-right: 1px solid #ffffff36;
}

.numeric_container nav ul li:last-child {
  border-right: none;
}

.numeric_container nav ul .active a,
.numeric_container nav ul li a:hover {
  color: #37de3c;
}

.f-right {
  float: right;
  margin-bottom: 25px;
}

.user-list-item {
  height: 49px;
}

.search-item {
  background: none;
  height: 50px;
  justify-content: end;
}

.search-item>* {
  display: flex;
  flex-direction: row;
}

.search-item input {
  color: black;
}

.senariosSenarioName {}

.search-item:hover {
  background: none;
  box-shadow: none;
}

.search-item {
  color: #ffffff;
  outline-color: #eb8408;
  height: 20px;
  width: 150px;
  background-color: #181818;
  border: none;
  padding: 3px;
}

.item-slider {
  height: 49px;
}

.item-img {
  max-width: 250px;
  max-height: 50px;
}

.slider-save {
  height: 21px !important;
  /* margin-top: 8px; */
  margin-right: 10px;
  margin-left: 5px;
}

.item-slider form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.item-slider input {
  width: 40px;
  color: #202020 !important;
}

.new-sld {
  margin: auto;
  width: 100%;
  display: flex;
}

.add-sld {
  width: 25px;
  margin: auto;
  border: 1px dotted #8e8e8e;
  border-radius: 50%;
  padding: 2px;
  transition: 0.3s;
  cursor: pointer;
}

.new-sld:hover>.add-sld {
  background: #eb840d;
  border: 1px dotted white;
}

.sort-input {
  outline-color: #eb8408;
  height: 20px;
  width: 50px;
  margin-left: 20px;
  margin-top: 11px;
  border: none;
  padding: 3px;
}

.long-input {
  width: 190px;
}

.sss-content {}

.sss-content .form_group {
  width: 100%;
}

.sss-content .form_group input {
  width: 100%;
  max-width: 500px;
}

.sss-content .form_group textarea {}

.sss_container {
  display: flex;
  flex-direction: column;
}

.sss_item {
  display: flex;
  position: relative;
  padding: 15px;
  background-color: #363636;
  margin-bottom: 3px;
  border-radius: 18px;
}

.contact-container {
  display: flex;
  flex-direction: column;
}

.contact-container h3 {
  text-align: center;
  margin-bottom: 75px;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 75px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
  background-color: #303030;
  width: calc(33% - 47px);
  margin-bottom: 20px;
  border-radius: 15px;
  margin-right: 15px;
}

.contact-item:last-child {
  margin-right: 0;
}

.contact-title {
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-address {}

.contact-mail {
  margin-top: 15px;
  font-style: italic;
}

.scenario-name {
  display: block;
  max-width: 200px;
  margin: auto;
  text-align: center;
}

.scenario-user-name {
  display: block;
  font-size: 10px;
  font-weight: 200;
  font-style: italic;
}

.scenario-user-name a {
  list-style-type: none;
  text-decoration: none;
}

.scenario-name-user-name {
  display: flex;
  flex-direction: column;
}

.success {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.success img {
  width: 45px;
}

.login-button-group {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 25px;
}

.magic-login-link {
  color: #fff;
}

.active_status * {
  color: #0d0d0d !important;
}

.active_status {
  color: #0d0d0d;
  height: 21.5px;
  margin-top: 6.1px;
  max-width: 100px;
}

.active_status_user {
  color: #0d0d0d;
  height: 23px;
  margin-right: 13px;
}

.active_status_user * {
  color: #0d0d0d;
}

.scenario_language {
  position: absolute !important;
  right: 7px;
  z-index: 20;
  top: -19px;
  background-color: #4b4b4b;
  text-transform: uppercase;
  padding: 3px;
  font-weight: 500;
  font-family: "Inter";
}

.shareButtons {
  position: absolute;
  top: 0;
  margin-left: 7px;
  left: 175px;
  display: flex;
  background-color: #202020;
  height: 45px;
  width: 175px;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 10px;
  justify-content: space-between;
  align-items: center;
  clip-path: inset(0 130px 0 0 round 30px);
  transition: all 400ms ease-in-out;
}

.shareButtons:hover {
  clip-path: inset(0 0 0 0 round 30px);
}

.shareButton {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}

.shareButton:hover {
  opacity: 1;
}

.shareButton>* {
  width: auto;
  height: 25px;
}

.fixedCenter {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#cookieModal {
  width: clamp(200px, 80vw, 600px);
  z-index: 25;
  background-color: #202020;
  filter: drop-shadow(0px 0px 15px #000000);
  border-radius: 15px;
  box-sizing: border-box;
  padding: 30px 20px;
  transition: opacity 300ms ease-in-out;
}

.cookieHide {
  opacity: 0;
}

.consentButton,
.rejectButton {
  padding: 12px 30px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consentButton {
  background: #ff981b;
  margin-right: 10px;
}

.rejectButton {
  color: white;
  background: transparent;
  border: 2px solid #ff981b;
  text-decoration: none;
}

.notifBell {
  width: 30px;
  min-width: 20px;
  height: auto;
}

.notifBell {
  fill: white;
  transition: all linear 0.2s;
}

.notifContainer:hover .notifBell {
  fill: #eb840a;
}

.notifContainer {
  height: 50px;
  width: 25px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.notification-count {
  padding-left: 3px;
  margin-bottom: -22px;
  color: red;
}

.notifContainer:hover .notiftooltiptext {
  opacity: 1;
}

.notiftooltiptext {
  width: 80px;
  background-color: #eb8408;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  margin-left: -37px;
  margin-top: -58px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tablet Screens */
@media only screen and (max-width: 992px) {}

.productsImage {}

.detailImages * {
  max-height: 450px !important;
}

.g-recaptcha {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: 37px;
  margin-top: 15px;
}

.scenarioSliders {
  overflow: scroll;
  overflow-y: hidden;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  scroll-behavior: smooth !important;
}

#goalSliders {
  overflow: scroll;
  overflow-y: hidden;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  scroll-behavior: smooth !important;
}

.arrowRight {
  right: 0;
}

.arrowLeft {
  left: 0;
}

.arrowLeft>img {
  transform: scaleX(-1);
}

.sliderArrow {
  position: absolute;
  top: 0;
  height: 100px;

  z-index: 20;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.sliderArrow:hover {
  opacity: 1;
}

.sliderArrow>img {
  height: 100%;
  width: auto;
}

.scenarioSliders::-webkit-scrollbar {
  display: none;
}

#goalSliders::-webkit-scrollbar {
  display: none;
}

.homepageSlider {
  position: relative;
}

.animate02 {
  transition: all 0.2s ease-in-out;
}

.scenarioCardHomepageOuter {
  display: flex;
  margin-right: 0px;
  position: relative;
}

.scenarioCardHomepageOuter:hover {
  margin-right: 337px;
}

.scenarioCardHomepageInner {
  z-index: 10;
  width: 250px;
  height: 400px;
}

.scenarioCardHomepageOuter:hover>.scenarioCardHomepageInner>.scenarioCardHomepageImage {
  width: 100%;
  /*border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;*/
  border-radius: 10px;
}

.scenarioCardHomepageImage {
  aspect-ratio: 1/1.414;
  object-fit: cover;
  width: 98%;
  height: auto;
}

.scenarioCardHomepageSide {
  pointer-events: none;
  position: absolute;
  height: 86.5%;
  width: 337px;
  background-color: #202020;
  z-index: 0;
  left: 0px;
  box-sizing: border-box;
  padding: 0 10px 0 30px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  opacity: 0;
}

.scenarioCardLogline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.scenarioCardHomepageSideBorder {
  height: 1px;
  width: 100%;
  background-color: #353535;
}

.scenarioCardHomepageSideCotentFlex {
  display: flex;
}

.notifBell-red {
  fill: red !important;
}

.notification-count {
  background-color: transparent !important;
  min-width: 30px;
  margin-top: -22px;
}

.scenarioCardHomepageSideCotentTitle {
  min-width: 120px;
}

.scenarioCardHomepageSideCotentFlex * {
  font-size: 12px !important;
}

.scenarioCardHomepageOuter:hover>.scenarioCardHomepageSide {
  left: 230px;
  opacity: 1;
  height: 88.5%;
}

.scenarioCardHomepageSideContent * {
  color: white;
  font-size: 15px;
}

.scenarioCardHomepageSide {
  overflow: hidden;
}

.scenarioCardHomepageSide:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(transparent 150px, #202020);
  border-bottom-right-radius: 10px;
}

.scenarioCardCategorySide {
  top: 100%;
  width: 100%;
  padding: 0 10px 0 20px;
  border-radius: 10px;
}

.scenarioCardCategoryOuter:hover {
  margin-right: 0;
}

.scenarioCardHomepageOuter:hover>.scenarioCardCategorySide {
  left: 0px;
  z-index: 30;
  top: 0px;
  opacity: 1;
  height: 354px;
}


.admin-container {
  width: 80%;
  margin: auto;
}

.admin-container input,
.admin-container select,
.admin-container button {
  padding: 8px;
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
}

.blog-list table {
  width: 100%;
  border-collapse: collapse;
}

.blog-list th,
.blog-list td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.blog-list th {
  color: black !important;
}

.blog-list th {
  background-color: #f4f4f4;
}

.actions a,
.actions button {
  margin-right: 5px;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 9 / 10;

  overflow: hidden;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* new styles */

.scenario-action-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.scenario-action-group a.confirm-button {
  font-size: 14px;
  text-decoration: underline;
  color: white;
  min-width: 80px;
  text-align: center;
}

.scenario-action-group select,
.scenario-action-group input[type="text"] {
  height: 32px;
  font-size: 14px;
  padding: 0 6px;
  border-radius: 4px;
}

.scenario-action-group form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scenario-action-group img {
  width: 20px;
  height: 20px;
  cursor: pointer;
  filter: brightness(100%);
}

.scenario-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e1e1e;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.scenario-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scenario-info img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.scenario-text {
  display: flex;
  flex-direction: column;
}

.scenario-text a {
  font-weight: bold;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.scenario-text span {
  font-style: italic;
  font-size: 14px;
  color: #ccc;
}

.my-scenarios-mini {
  margin: 20px 0 30px 0;
  padding: 15px;
  border-radius: 10px;
}

.mini-cards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mini-scenario-card {

  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  width: 200px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s;
}

.mini-scenario-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mini-scenario-card img {
  margin-right: 12px;
}

.mini-scenario-info {
  display: flex;
  flex-direction: column;
}


.verify_formContainer {
  display: flex;
  justify-items: space-between;
}

/* end of new styles */

/* Tablet and Mobile Screens */
@media only screen and (max-width: 800px) {
  .sliderArrow {
    display: none;
  }

  .scenarioCardHomepageSideCotentTitle {
    min-width: 60px;
    text-wrap: wrap;
  }

  .scenarioCardCategorySideContent * {
    color: white;
    font-size: 11px;
  }

  .scenarioCardCategorySideCotentFlex * {
    display: none;
    font-size: 9px !important;
  }

  .scenarioCardCategoryOuter {
    width: 40vw !important;
    height: 60vw;
    margin-bottom: 46px;
  }

  .scenarioCardCategoryInner {
    width: 100% !important;
  }

  .scenarioCardHomepageSide {
    display: none;
    top: 337px;
    width: 100%;
    padding: 0 10px 0 20px;
    border-radius: 10px;
  }

  .scenarioCardCategorySide {
    height: 98% !important;
  }

  .scenarioCardHomepageOuter:hover>.scenarioCardHomepageSide {
    left: 0px;
    z-index: 30;
    top: 0px;
    opacity: 1;
    height: 88.5%;
  }

  .scenarioCardHomepageOuter:hover {
    margin-right: 0;
  }

  .product_item {
    /* flex: 0 0 calc(30% - 30px); 20% genişlik, aralarda 15px boşluk bırak */
    width: 45%;
  }

  .scenario-name {
    max-width: 150px;
  }

  .product_item * img {
    aspect-ratio: 1/1.414;
    height: auto;
    width: 100%;
  }

  .category-filter {
    position: initial;
  }

  .g-recaptcha {
    padding-right: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .products2 {
    gap: 2px;
  }

  .reactionButtons {
    top: 460px;
  }

  .detailImages * {
    max-height: 450px !important;
    width: auto;
    padding-bottom: 75px;
  }

  .detailImages>div>a {
    display: flex;
  }

  .detailImages>div>a>img {
    margin: auto;
  }

  .detailImages {
    display: flex;
  }

  .flags {
    margin-top: -24px;
  }

  .login-button-group {
    justify-content: space-between;
  }

  .masaustu_slider {
    display: none !important;
  }

  .mobil_slider {
    display: flex !important;
  }

  .static_bloks {
    padding: 30px;
  }

  .static_bloks,
  .blok1,
  .blok2 {
    width: auto;
  }

  .left_blok {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .right_blok {
    margin-left: 0;
    margin-bottom: 15px;
  }

  .static_bloks .blok1 {
    padding: 0;
  }

  .blok2 .right_blok {
    width: 100%;
  }

  .blok2,
  .blok1 {
    flex-direction: column;
  }

  .link_container {
    flex-direction: column;
    padding: 50px;
  }

  .copyright .d_flex {
    margin-left: 15px;
    margin-bottom: 10px;
  }

  .page_content {
    flex-direction: column;
  }

  .page_container .filter {
    max-width: 100%;
    background-color: #eb8408;
  }

  .page_container .filter .filter_title {
    width: 100%;
  }

  .page_container .filter .filter_title .icon {
    display: block !important;
    float: right;
    margin-right: 21px;
  }

  .page_images {
    max-width: 100%;
  }

  .page_variables {
    display: block;
    width: 100%;
    margin-left: 0;
  }

  .page_banners {
    display: block;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
  }

  .tab {
    padding: 10px;
    font-size: 15px;
  }

  .tabs {
    justify-content: center;
  }

  .filter_title.collapsible {
    width: calc(100% - 30px);
  }

  .payment_side,
  .login_side {
    padding: 20px;
    width: calc(50% - 40px);
    margin-left: 0;
  }

  .form_group input,
  .form_group select,
  .form_group textarea {
    width: calc(100% - 109px);
  }

  .form_group select {
    width: calc(100% - 102px);
  }

  .slider-container {
    width: 100% !important;
  }

  .var-yok {
    width: 100%;
  }

  .scenario-detail-text {
    width: 100%;
  }

  .payment_side,
  .login_side {
    width: calc(100% - 40px);
  }

  .payment_side button,
  .login_side button {
    margin-right: 0;
  }

  .payment-table {
    flex-direction: column;
  }

  .payment-product-detail {
    justify-content: space-between;
  }

  .form_group label {
    width: 91px;
  }

  .product-detail-container {
    padding: 20px 0;
    width: 100%;
  }

  .order-detail .order-title {
    text-align: end;
    margin-bottom: 5px;
    margin-top: 25px;
  }

  .panel-title {
    margin-left: 0;
  }

  .panel-container {
    margin-left: 0;
    width: 100%;
  }

  .panel-box {
    width: 100%;
  }

  .panel-menu {
    width: 100%;
  }

  .panel-menu li {
    width: 100%;
  }

  .file-upload-content {
    flex-direction: column;
  }

  .file-upload-content .d1,
  .scenario-upload .d1 {
    width: 100%;
    margin-right: 0;
  }

  .file-upload-content .tab-image-content,
  .scenario-upload .tab-image-content {
    width: 100%;
    margin-top: 15px;
  }

  .scenario-upload {
    flex-direction: column;
  }

  .scenario-upload-info {
    margin-left: 0;
    margin-top: 25px;
  }

  .contact-item {
    margin-right: 0;
    width: 100%;
  }
}

/* Small Screens */
@media only screen and (max-width: 576px) {}

/* old Screens */
@media only screen and (max-width: 460px) {}

.flex-direction-column {
  flex-direction: column;
}

.App-Background {
  background-color: #2f2e2e !important;
}