@media (max-width: 1200px) {

}

@media (max-width: 992px) {

#header .header-menu-block {
  flex-direction: row-reverse;
}

#hero h1{
  font-size: 2.4rem;
}
#hero p {
    font-size: 1rem;
}

#navigation {
    flex: unset;
    margin-left: 15px;
}
#header-button-group{
  flex: 1;
  justify-content: flex-end;
}
#menu-toggle{
  display: block;
}
#main-menu {
  position: fixed;
  background-color: var(--bg-color-1);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);

  /* FULL SCREEN */
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  max-width: none;

  padding: 78px 15px 15px;
  flex-direction: column;
  align-items: flex-start;

  box-shadow: var(--shadow);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  transition: right 0.2s linear;
  z-index: 9999;
}

#main-menu.active{
  right: 0%;
  transition: right 0.2s linear;
}

#main-menu > li {
  width: 100%;
  border-bottom: 1px dashed var(--border-color);
}
#main-menu > li > a {
  display: block;
  height: 32px;
  line-height: 32px;
}
#main-menu > li.mega-menu > .mega-menu-inner {
  position: relative;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  max-height: 0px;
  margin-bottom: 0px;
}
#main-menu > li.mega-menu:hover > .mega-menu-inner {
  max-height: 1000px;
  margin-bottom: 15px;
}
#main-menu .menu-close{
  position: absolute;
  top: 18px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border-color);
  z-index: 10000;
}

.menu-overlay{
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.menu-overlay.active{
    z-index:9;
  opacity: 1;
  pointer-events: auto;
}

/* Diğer mevcut kurallar */
.navigation-links > *{
  border-left: none;
}
#footer .subfooter > .col-6 {
    text-align: center;
}

.row.border > *:last-child {
    border-left: none;
}
.sidebar{
    margin-top: 15px;
}

}

@media (max-width: 768px) {
  #dream{
    width: 75%;
  }
  #dream.wide,
  #dream.uwide{
    width: 100%;
  }
.table-cover {
    overflow: auto;
}
.table-cover .price-table thead{
  position: inherit;
}
.table-cover .price-table tr td:first-child,
.table-cover .price-table tr th:first-child{
  position: sticky;
  left: 0;
  background-color: var(--bg-color-1);
  z-index: 5;
}
.extension-prices .price-block {
    padding: 7.5px;
}
.extension-prices .price-block > .extension-registrar {
    padding: 5px 0;
}
.extension-prices .price-block.active img {
    height: 60px;
}
.extension-prices .price-block img {
    height: 36px;
}
.input-block.min{
  width: 100%;
}
}

@media (max-width: 576px) {
  #dream{
    width: 100%;
  }

#header .btn > i.fa {
    width: 22px;
    height: 22px;
}
#currencySelector {
    margin: 0;
}
}
body.menu-open { overflow: hidden; }
@media (max-width: 992px) {
  /* Mobilde görünür olsun */
  #main-menu .menu-close{
    display: flex !important;
  }
  .menu-overlay{
    display: block !important;
  }
}
