body {
    font-family: 'Manrope', sans-serif;
}

a {
    color: inherit;
}

a:hover {
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.p10 {
    padding: 2rem 0;
}
select{
    accent-color: var(--color1);
}
:root {
    --color1: #35322E;
    --color2: #2dbab6;
    --color3: #346e76;
    --color4: #006580;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 137px;
}

ul.header-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
    font-size: 18px;
    color: var(--color1);
}

header.destkop {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.header-menu li a:before {
    content: '';
    height: 2px;
    background-color: var(--color3);
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.header-menu li a:hover:before {
    width: 100%;

}

ul.header-menu li a {
    width: 100%;
    position: relative;
    font-family: 'Young Serif', serif;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 30px;
    font-weight: 600;
    color: var(--color3);
    font-family: 'Young Serif', serif;
    letter-spacing: 1.3px;
}

table {
    background-color: transparent;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    color: var(--color3);
    font-family: 'Young Serif', serif;
    letter-spacing: 1.3px;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #7faaa1;
    color: var(--color1);
    font-weight: 500;
}

.table>thead>tr>th {
    vertical-align: bottom;
}

.vakit-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 6%;
    left: 0;
    opacity: .4;
    z-index: -2;
}

.vakit {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.vakit-bg img {
    width: 100%;
    height: 76%;
    object-fit: contain;
}

.vakit tbody {
    background: #dcf4efab;
    border: 2px solid var(--color3);
}

.vakit thead {
    border: 2px solid var(--color3);
}

.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>td {
    border-top: 0;
}

.table>tbody+tbody {
    border-top: 2px solid #ddd;
}

.table .table {
    background-color: #fff;
}

.table-condensed>thead>tr>th,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #ddd;
}

.table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
    border: 1px solid #ddd;
}

.table-bordered>thead>tr>th,
.table-bordered>thead>tr>td {
    border-bottom-width: 2px;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover>tbody>tr:hover {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

.table>thead>tr>td.active,
.table>tbody>tr>td.active,
.table>tfoot>tr>td.active,
.table>thead>tr>th.active,
.table>tbody>tr>th.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>tbody>tr.active>td,
.table>tfoot>tr.active>td,
.table>thead>tr.active>th,
.table>tbody>tr.active>th,
.table>tfoot>tr.active>th {
    background-color: #f5f5f5;
}

.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover,
.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr.active:hover>th {
    background-color: #e8e8e8;
}

.table>thead>tr>td.success,
.table>tbody>tr>td.success,
.table>tfoot>tr>td.success,
.table>thead>tr>th.success,
.table>tbody>tr>th.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>tbody>tr.success>td,
.table>tfoot>tr.success>td,
.table>thead>tr.success>th,
.table>tbody>tr.success>th,
.table>tfoot>tr.success>th {
    background-color: #dff0d8;
}

.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover,
.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr.success:hover>th {
    background-color: #d0e9c6;
}

.table>thead>tr>td.info,
.table>tbody>tr>td.info,
.table>tfoot>tr>td.info,
.table>thead>tr>th.info,
.table>tbody>tr>th.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>tbody>tr.info>td,
.table>tfoot>tr.info>td,
.table>thead>tr.info>th,
.table>tbody>tr.info>th,
.table>tfoot>tr.info>th {
    background-color: #d9edf7;
}

.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover,
.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr.info:hover>th {
    background-color: #c4e3f3;
}

.table>thead>tr>td.warning,
.table>tbody>tr>td.warning,
.table>tfoot>tr>td.warning,
.table>thead>tr>th.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>tbody>tr.warning>td,
.table>tfoot>tr.warning>td,
.table>thead>tr.warning>th,
.table>tbody>tr.warning>th,
.table>tfoot>tr.warning>th {
    background-color: #fcf8e3;
}

.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover,
.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr.warning:hover>th {
    background-color: #faf2cc;
}

.table>thead>tr>td.danger,
.table>tbody>tr>td.danger,
.table>tfoot>tr>td.danger,
.table>thead>tr>th.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>tbody>tr.danger>td,
.table>tfoot>tr.danger>td,
.table>thead>tr.danger>th,
.table>tbody>tr.danger>th,
.table>tfoot>tr.danger>th {
    background-color: #f2dede;
}

.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover,
.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
    background-color: #ebcccc;
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

    .table-responsive>.table {
        margin-bottom: 0;
    }

    .table-responsive>.table>thead>tr>th,
    .table-responsive>.table>tbody>tr>th,
    .table-responsive>.table>tfoot>tr>th,
    .table-responsive>.table>thead>tr>td,
    .table-responsive>.table>tbody>tr>td,
    .table-responsive>.table>tfoot>tr>td {
        white-space: nowrap;
    }

    .table-responsive>.table-bordered {
        border: 0;
    }

    .table-responsive>.table-bordered>thead>tr>th:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child {
        border-left: 0;
    }

    .table-responsive>.table-bordered>thead>tr>th:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child {
        border-right: 0;
    }

    .table-responsive>.table-bordered>tbody>tr:last-child>th,
    .table-responsive>.table-bordered>tfoot>tr:last-child>th,
    .table-responsive>.table-bordered>tbody>tr:last-child>td,
    .table-responsive>.table-bordered>tfoot>tr:last-child>td {
        border-bottom: 0;
    }
}

.vakit-table tbody tr:first-child {
    background-color: rgba(233, 244, 246, 0.47);
}

.title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color3);
    font-family: 'Young Serif', serif;
    letter-spacing: 1.3px;
}

.gen-box img {
    max-width: 267px;
    padding: .5rem;
}

.gen-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 10px;
    margin: .5rem;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
}

.gen-box .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: .5rem;
}

.desc {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--color1);
    font-family: 'Young Serif', serif;
    letter-spacing: .2px;
    flex-grow: 1;
}

.subdesc {
    font-size: 14px;
    font-weight: 500;
    color: var(--color3);
    font-family: 'Young Serif', serif;
    letter-spacing: 1.3px;
}

.mb {
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 16px;
    color: var(--color3);
    font-weight: 500;
    font-family: 'Young Serif';
}

.gen-box:hover {
    box-shadow: rgb(52 110 118) 0px 5px 35px 0px;
    scale: .9;
}

.blog-box img {
    width: 100%;
    max-width: 200px;
    min-height: 200px;
    object-fit: contain;
}

.blog-box {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    height: 100%;
    padding: 1rem;
    align-items: center;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
    margin: .5rem;
}

.blog-box:hover {
    border-bottom: 3px solid var(--color3);
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--color3);
    font-family: 'Young Serif', serif;
    letter-spacing: 1.3px;
}

.link-border span b {
    font-weight: 400;
}

.link-border {
    display: inline-block;
    position: relative;
    font-size: 1.25rem;
    font-weight: 500;
    color: black;
    padding: .75rem 1rem
}

.btn.link-border {
    border-width: 0;
    background-color: transparent;
    border-radius: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    outline: 0
}

.link-border span {
    display: inline-flex;
    font-size: 18px;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: all .3s .1s ease;
    transform: translateX(-1rem)
}

.link-border:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100%;
    width: 100%;
    height: 0;
    transition: height .3s ease;
    background-color: var(--color3);
}

.link-border__left {
    text-align: right
}

.link-border__left::after,
.link-border__left::before {
    left: auto;
    right: 0
}

.link-border__left span {
    transform: translateX(1rem)
}

.link-border:hover {
    text-decoration: none
}

.link-border:hover span {
    transform: translateX(0);
    color: #fff
}

.link-border:hover:before {
    height: 100%;
    transition: height .3s ease
}

footer img {
    width: 256px;
    max-width: 100%;
}

ul.footer-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    font-size: 18px;
    font-weight: 600;
    color: var(--color1);
}

ul.footer-menu li {
    transition: all .3s;
}

ul.footer-menu li:hover {
    color: var(--color3);
}

footer {
    box-shadow: 0 13px 19px 0 rgb(52 110 118 / 43%);
    position: relative;
}

.kandil {
    position: absolute;
    right: 0;
    width: 449px;
    top: 0px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    font-size: 18px;
    color: var(--color3);
}

.pagination a {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
}

.pagination .active {
    background: var(--color3);
    color: white;
    border: 1px solid var(--color3);
}

.content figure img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.content p {
    margin: auto;
    color: #183B56;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}


.content .picture {
    gap: 1rem;
    align-items: center;
    justify-content: center;
    display: flex;
}

.content .picture img {
    width: 100%;
    height: 100%;
    max-width: 320px;
}

ul.blog-detail-social {
    display: flex;
    gap: 1rem;
    font-size: 20px;
    color: var(--color3);
}

ul.blog-detail-social li {
    padding: 1rem;
    width: 30px;
    height: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(68, 91, 120, 0.15);
}

.send-to {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 2rem 0;
}

.meal-box {
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 16px;
    font-weight: 500;
    color: var(--color1);
    border: 1px solid #7faaa1;
    margin: 0 .5rem 0 0;
    padding: .5rem;
    transition: all .3s ease;
}

.meal-box img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.meal-box:hover {
    color: white;
    background: #7faaa1;
    scale: 1.02;
}

.meal {
    position: relative;
    z-index: 2;
}

.meal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    bottom: 0;
}

.meal-bg img {
    z-index: -1;
    height: 100%;
    object-fit: contain;
    opacity: .2;
    width: 100%;
}


.meal-detail .active {
    background: white;
    color: var(--color3);
}

.meal-detail .filter {
    display: none;
}

.meal-detail .filter.block {
    display: block;
}

.meal-detail .filtered {
    display: none;
}

.meal-detail .filtered.block {
    display: block;
}

.meal-detail ul.websites.filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 18px;
    font-style: normal;
    background: var(--color3);
    font-weight: 500;
    line-height: 18px;
    /* 144.444% */
    color: white;
    border: 1px solid var(--color3);
    margin-right: 1rem;
}

.meal-detail ul.websites.filters li {
    letter-spacing: 0.05rem;
}

.meal-detail ul.websites.filters li a {
    display: flex;
    align-items: center;
    padding: .5rem;
    font-family: 'Young Serif', serif;
}



.mail-detail tr th {
    color: #3c3c3c;
}

.mail-detail tr td {
    padding: 5px 10px;
}

.mail-detail tr td:last-child {
    width: 100px;
}

.mail-detail tr td.line_dot {
    padding: 0;
}

.mail-detail tbody tr td.line a {
    color: #333333;
    width: 100%;
    display: block;
}

.sure-img img {
    width: 100%;
    height: 100%;
}.search {
    background-color: var(--color3);
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    margin: 1rem 0;
}

.search .box_head {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-family: 'Young Serif';
}

.search label {
    color: #fff;
    font-weight: 500;
    display: block;
    padding: 2px 0;

}
.search input {
    border: none;
    border-radius: 5px;
    width: 95%;
    outline: none;
    height: 42px;
    background: white;
    padding: .5rem;
}

.search select {
    outline: none;
    border-radius: 5px;
    padding: .5rem;
    border: none;
    background: white;
    height: 44px;
    width: 95%;
}

.search button {
    background: white;
    border-radius: 5px;
    font-size: 18px;
    padding: .5rem;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    height: 44px;
    align-items: center;
    color: var(--color1);
}
.ti-takvim {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Young Serif';
    color: var(--color3);
    background: #e8f6f5;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
}

.time-calender {
    background: var(--color3);
    color: white;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.ti-hicri {
    font-weight: 400;
    font-size: 18px;
}

.top-times {
    /* padding: 1rem; */
    font-size: 20px;
}


.js-countdown-shipping {
    font-size: 26px;
}

.top-times {
    font-family: 'Young Serif';
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #346e76ad;
}

div#today-pray-times-row {
    font-size: 22px;
    font-weight: 600;
    background: #e8f6f5;
    color: var(--color3);
    font-family: 'Young Serif';
    border-radius: 5px;
}
.tpt-cell.active-tpt-cell {
    background: var(--color3);
    color: white;
    border-bottom: 1px solid;
}

.tpt-cell {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    border-left: 1px solid;
}
#today-pray-times-row,.kible .tpt-cell:first-child{
    border-left: none;
  }
  div#localTimeField {
    font-size: 26px;
}
.bayram-vakit {
    font-size: 16px;
    font-weight: 500;
    color: white;
    font-family: 'Young Serif';
    padding: 1rem;
    background: #346e76ad;
}

.bayram-info-col-inner {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    text-align: center;
}


.bayram-info-title {
    font-size: 22px;
}
.calender-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .1;
    z-index: -2;
    top: 0;
    bottom: 0;
}

.calender-bg img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}
.kible {
    font-size: 18px;
    font-weight: 500;
    background: #e8f6f5;
    color: var(--color3);
    font-family: 'Young Serif';
    border: 2px solid #e8f6f5;
    border-radius: 5px;
}
.region {
    background: var(--color3);
}

.region select {
    width: 98%;
    padding: .5rem;
    border: none;
    border-radius: 5px;
    background: #e8f6f5;
    outline: none;
    margin-bottom: .5rem;
}
.mobile-menu .detail .header-wrapper {
    color: black;
  }
  
  .mobile-menu .detail {
    box-shadow: 0px 4px 30px rgba(204, 204, 204, 0.25);
    padding: 1rem 0;
  }
  
  .mobile-menu .detail .header-right .hamburger div {
    background: black;
  }
  
  .mobile-menu .header-wrapper {
    position: relative;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .mobile-menu .header-center ul {
    display: flex;
    gap: 2rem;
    font-size: 18px;
  }
  
  .mobile-menu .header-left img {
    width: 82px;
  }
  
  
  #toggle {
    display: none;
  }
  
  /**
    Hamburger
  **/
  .mobile-menu .header-right .hamburger {
    position: absolute;
    top: -1.5em;
    right: 0;
    cursor: pointer;
    width: 4em;
    height: 45px;
    z-index: 5;
  }
  
  .mobile-menu .header-right .hamburger div {
    position: relative;
    width: 2.4em;
    height: 3px;
    border-radius: 3px;
    background-color: var(--color3);
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }
  
  /**
  Nav Styles
  **/
  .mobile-menu .header-right .nav {
    position: fixed;
    width: 70%;
    height: 100%;
    background-color: white;
    top: -100%;
    left: 0;
    right: 0;
    cursor: pointer;
    bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
  }
  
  .mobile-menu .nav-wrapper {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  
  .mobile-menu .header-right nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    overflow: hidden;
    align-items: start;
    width: 100%;
    margin-left: 1rem;
  }
  
  .mobile-menu .header-right nav a {
    position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    display: inline-block;
    transition: color 0.2s ease-in-out;
    color: var(--color3);
    font-family: 'Young Serif';
  }
  
  .mobile-menu .header-right nav a:before {
    content: '';
    height: 0;
    position: absolute;
    width: 0.25em;
    background-color: white;
    left: -0.5em;
    transition: all 0.2s ease-in-out;
  }
  
  .mobile-menu .header-right nav a:hover {
    color: var(--color3);
  }
  
  .mobile-menu .header-right nav a:hover:before {
    height: 100%;
  }
  
  /**
  Animations
  **/
  #toggle:checked+.hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 25px;
  }
  
  #toggle:checked+.hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  
  #toggle:checked+.hamburger .meat {
    transform: rotate(45deg);
    margin-top: -3px;
  }
  
  #toggle:checked+.hamburger+.nav {
    top: 0;
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 25px;
  }
  
  .header-right {
    position: relative;
  }
  
  header.mobile-menu {
    background: white;
  }
  
  .nav-top img {
    width: 140px;
  }
  
  .header-right nav .mobil-w {
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  
  header.mobile-menu {
    display: none;
  }
  .mobile-menu .header-left a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
    font-weight: 600;
    color: var(--color3);
    font-family: 'Young Serif', serif;
    letter-spacing: 1.3px;
}
.nav-top {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
    font-weight: 600;
    color: var(--color3);
    font-family: 'Young Serif', serif;
    letter-spacing: 1.3px;
}
  @media only screen and (min-width: 320px) and (max-width: 568px) {
    header.destkop {
      display: none;
    }
  
    header.mobile-menu {
      display: block;
    }
    .gen-box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    caption {
        font-size: 16px;
        padding: .5rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    ul.footer-menu {
        padding: 1rem;
    }
    
    .tpt-cell {
        border-left: none;
        padding: .5rem;
    }
    
    .top-times {
        font-size: 16px;
        padding: 1rem;
    }
    
    div#today-pray-times-row {
        font-size: 22px;
    }
    
    .bayram-info-title {
        font-size: 18px;
    }
    .kible {
        font-size: 14px;
    }
    
    .bayram-vakit {
        display: flex;
        gap: 2rem;
    }
    
    .today-pray-times .tpt-cell {
        border-bottom: 1px solid;
    }
    .kible .tpt-cell {
        border-bottom: 1px solid;
    }
    .kible:last-child {
        border-bottom: none;
    }
    .meal-detail ul.websites.filters {
        flex-direction: row;
        flex-wrap: wrap;
        margin-right: 0;
        line-height: 14px;
    }
    
    .meal-detail ul.websites.filters li a {
        font-size: 14px;
    }
    .meal-left {
        margin-bottom: 2rem;
    }
    .search input {
        width: 100%;
        margin-bottom: .5rem;
    }
    
    .search select {
        width: 100%;
        margin-bottom: .5rem;
    }
    
    .search .box_head {
        margin-bottom: 1rem;
    }
    .content .picture {
        flex-direction: column;
    }
    
    .send-to {
        flex-direction: column;
    }
    
    .p10 {
        padding: 1rem 0;
    }
    .kandil {
        display: none;
    }
  }  
  