/***********************************************/

/* * {
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
  } */
#bottom-line{
	margin-top:5px;
}

/*   Navbar Begins  */
@keyframes zoom-in {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(0.90, 1);
    }

    100% {
        transform: scale(0.90, 1);
    }

}

@keyframes zoom-out {
    0% {
        transform: scale(0.90, 1);
    }

    50% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }

}

.zoom-in {

    animation: zoom-in 1s ease;
    transform: scale(0.90, 1);
}

.zoom-out {

    animation: zoom-out 0.5s ease;
    transform: scale(1, 1);
    margin-top: -60px;
}

.nav-bar {
    margin: 0px;
    padding: 0px;
    background-color: rgb(12, 12, 12);
    height: 60px;
    display: flex;
    align-items: center;
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
    z-index: 1000;

    transition: 'all 0.5s ease-in';
}

.slider {
    margin: 0px;
    padding: 0px;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.5);
    width: 100%;
    z-index: 3000;
    margin-left: -1px;
    margin-top: -60px !important;
    display: none;
    left: 0;
    top: 0;
    bottom: 0;
}

#slider-image {
    margin: 0px;
    padding: 0px;
    background-color: black;
    width: 100%;
    padding: 8px;
    height: 60px;
    display: flex;
    align-items: center;

}

.slider-items {
    width: 30%;
    height: 100%;
    background-color: white;
    position: relative;
}

.slider-list {
    margin-top: 16px;
    list-style: none;
    list-style-type: none;
    list-style-position: inside;
    padding-left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;


}

.slider-list>li {
    list-style: none;
    text-decoration: none;
    margin-left: 0px;
    margin: 0px;
    padding: 0px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 16px;
    font-weight: bold;
    cursor: pointer;

}

#line {
    margin: 8px auto;
    height: 1px;
    background-color: rgb(211, 211, 211);
    width: 93%;
}

.close-slider-box {
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 68px;
    right: 10px;
}

.close-slider {
    font-size: 28px;
    cursor: pointer;
}

.nav-bar:target {
    height: 150px;
}

.nav-bar-inner {
    width: 93%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.fa-bars {
    color: white;
    visibility: hidden;
}

#logo-centered {
    display: none;
    cursor: pointer;
}

.nav-center {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.nav-center>ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
}

.nav-center>ul>li {
    display: inline;
    text-decoration: none;
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
    color: #fff;
    cursor: pointer;
}

.nav-right {
    width: 25%;
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
}

.nav-right>a {
    display: inline;
    text-decoration: none;
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
    color: white !important;
    cursor: pointer;
}

.nav-right>a:hover {
    display: inline;
    text-decoration: none;
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
    color: var(--primary-yellow) !important;
    cursor: pointer;
}

.nav-right>p {
    margin: 0px;
    padding: 0px;
    display: inline;
    text-decoration: none;
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
    color: white !important;
    cursor: pointer;
    height: 80%;
}


.nav-left {
    width: 25%;
    display: flex;
    margin-left: auto;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: var(--primary-yellow);
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -10px;
    left: 0;
    background-color: var(--primary-yellow);
    transform-origin: bottom center;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom center;
}

#search-image {
    cursor: pointer;
}

#expandable-search-box {
    height: 40px;
    width: 200px;
    background-color: white;
    border-radius: 100px;
    display: flex;
    align-items: center;
    display: none;

    transition: width 2s, height 2s;
}

#expandable-search-box:hover {
    width: 300px;
}

#search-query {
    height: 35px;
    border: 1px solid red;
    width: 70%;
    border: none;
    margin-left: 16px;
}

#search-query:focus {
    border: 0px solid transparent;
    outline: none;
}

.close-search {
    margin-left: auto;
    font-size: 25px;
    cursor: pointer;
    margin-right: 16px;
}



.suggestions-c {
    height: auto;
    background-color: white;
    width: 500px;
    position: fixed;
    z-index: 9000;
    display: none;
    border: 1px solid rgb(178, 178, 178);
    display: flex;
    padding: 1%;
    overflow: scroll;
    overflow-x: hidden;
    display: none;

}

.all-coupons {
    color: black;
    font-weight: 600;
    font-weight: bolder;
    font-size: 14px;
}

.all-coupons:hover {
    color: var(--primary-yellow);
    cursor: pointer;
    text-decoration: underline;
}

.design-list-c {
    margin: 0px;
    padding: 0px;
    border: 1px solid black;
    width: fit-content;
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 8px;
    margin-bottom: 8px;
}

.design-list-c:hover {
    color: white;
    background-color: var(--primary-yellow);
    text-decoration: underline;
}

#result-c {

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.result-c-items {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 16px !important;
}

.b-line {
    margin: 0px;
    padding: 0px;
    color: blue;
    font-weight: bold;
    width: fit-content;
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 8px;
    margin-bottom: 8px;
}

.b-line:hover {
    text-decoration: underline;
}


/*   Navbar Ends  */
/***********************************************/


 
.main {
    margin: 0px;
    padding: 0px;
    width: 100%;
    margin: 0 auto;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 10px;
}

.c {
    margin: 0px;
    padding: 0px;
    height: auto;
    background-color: white;
    border: 1px solid rgb(209, 209, 209);
    display: flex;
    align-items: center;
}

.root-row {
    margin: 0px;
    padding: 0px;
}

.left {
    margin: 0px;
    padding: 0px;
    margin-bottom: 16px;
}

.left>div {
    width: 110% !important;
    margin: 0px;
    padding: 0px;
    height: auto;
    border: 1px solid rgb(209, 209, 209);
}

.left>div:hover {
    box-shadow: -1px -1px 5px 5px rgba(124, 124, 124, 0.38);
    -webkit-box-shadow: -1px -1px 5px 5px rgba(124, 124, 124, 0.38);
    -moz-box-shadow: -1px -1px 5px 5px rgba(124, 124, 124, 0.38);
}

.top {
    background-color: #4b4b4b !important;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top>h2 {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.image {
    height: 80px;
    width: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 auto;
    margin-top: -24px;
    border-radius: 100px;
    background-color: white;
    border: 4px solid rgb(221, 221, 221);
}

.promo-code {
    width: fit-content;
    margin: 0 auto;
    padding: 5px 8px;
    background-color: rgb(167, 230, 144);
    color: purple;
	margin-bottom:8px;
    margin-top:14px;
    font-size: 18px!important;
}

.title {
	font-size: 10px;
    margin-bottom: 5px;
    height: 40px;
}

.founds {
    margin-top: 5px;
    display: flex;
    flex-direction: row;

}
 .root-row .coupon-fix title{
	height: 30px;
	margin-bottom:0;
 }
.f-left {
    width: 80%;
    margin-bottom: -8px;
}

.f-right {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    cursor: pointer;

}

.f-left>p {
    margin: 0px;
    padding: 0px;
    margin-bottom: 8px;
    font-size: 10px;
}

.name {
    color: white;
    font-size: 14px;
}

.bg-black {
    padding: 8px 8px;
    background-color: black;
    margin-left: 8px;
}

.display-ads-container {
    position: sticky;

}

.display-ads {
    margin-top: -8px;
    background-color: white;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../image/ads.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    position: sticky;
    top: 8%;
}

.ads {
    margin: 0px auto;
    width: 100%;
    display: flex;
    height: 200px;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;

    background-image: url(../image/ads2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 93% 93%;
}

.c-item-root {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
    height: auto;


}

.c-item {
    margin: 0px;
    padding: 0px;
    padding: 4px;
    background-color: #f4f6f5;
    width: fit-content;
    padding-right: 8px;
    padding-left: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: black;
    cursor: pointer;
    height: 30px;

}

.c-item-2 {
    margin: 0px;
    padding: 0px;
    padding: 4px;
    background-color: #f4f6f5;
    width: fit-content;
    padding-right: 8px;
    padding-left: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: black;
    cursor: pointer;
    height: 30px;

}

.active-list {
    margin: 0px;
    padding: 0px;
    padding: 4px;
    background-color: var(--primary-yellow);
    width: fit-content;
    padding-right: 8px;
    padding-left: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: white;
    cursor: pointer;
    height: 30px;

}

.c-item:hover {
    color: white;
    background-color: var(--primary-yellow)
}

.c-item-2:hover {
    color: white;
    background-color: var(--primary-yellow)
}

.hide {
    display: none;
}

.selected-item {
    background-color: var(--primary-yellow);
    color: white;
    pointer-events: none;
}

.selected-item-b {
    background-color: var(--primary-yellow);
    color: white;
    pointer-events: none;
}

.not-found {
    display: none;
    justify-content: center;
    align-items: center;
    height: 400px;
    text-align: center;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.page-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    flex-direction: row;
}


.page-item {
    height: 40px;
    width: 40px;
    margin: 0px;
    padding: 0px;
    float: left;
    list-style-type: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.page-item:hover {
    background: var(--primary-yellow);
    color: white;
}

.pagination {
    display: inline;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 40px;
}



.p-button {
    margin-left: 8px;
    margin-right: 8px;
    height: 40px;
    background: none;
    border: 1px solid rgb(128, 128, 128, 0.5);
    outline: none;
    width: 40px;

}

.p-button:hover {
    background-color: rgb(228, 228, 228);

}

.events-childs {
    margin: 0px;
    padding: 0px;
    height: auto;
    background-color: white;
    border: 1px solid rgb(209, 209, 209);
    display: flex;
    align-items: center;
    display: none;
}

.events-childs>p {
    background-color: white;
    font-weight: bold;

}

.c-items-events {
    display: flex;
    flex-wrap: wrap;
}

.block-fs-75perc {
    font-size: 75%;
    width: auto;
}

/***********************************************/
/*   Footer Begins  */

.footer-container {

    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: rgb(0, 0, 0);

}

.footer-inner-container {
    height: auto;
    width: 93%;
    margin: 0px;
    margin: 0 auto;
}

.heading {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    margin-top: 32px;
    font-size: 20px;
    font-weight: bolder;
    color: white;
}

.footer-inner-container>div {
    margin: 0px;
    padding: 0px;
}

.s {
    margin: 0px;
    padding: 0px;
    color: white;
}


.s>ul {
    text-decoration: none;
    list-style-type: none;
    list-style-position: inside;
    padding-left: 0;
    margin-top: 32px;
}

.s>ul>li {
    margin: 0px;
    padding: 0px;
    color: white;
    cursor: pointer;
    margin-bottom: 2px;
    text-decoration: none;
    margin-top: 4px;
    font-size: 16px;
}

.s>ul>li:hover {
    text-decoration: underline;
    color: var(--primary-yellow);
}

.bottom {
    display: flex;
    width: 100%;
    align-items: center;
    background-color: rgb(66, 66, 66);
    height: 60px;
    margin-top: auto;
    margin-top: 48px;
}

.bottom>p {
    width: 93%;
    margin: 0 auto;
    padding: 0px;
    text-align: left;
    font-size: 16px;
    color: white;

}

/*   Footer Ends  */
/***********************************************/

@media (min-width: 1500px) {

    .b-root {
        display: flex !important;
        text-align: center !important;
        justify-content: center !important;
        width: 90% !important;
        flex-direction: column;
        margin: 0 auto !important;
        transition: 0.3s all !important;

    }

    .nav-bar-inner,
    .footer-inner-container {

        width: 90%;
        /* Full width */
        transition: 0.3s all !important;
    }

    .footer-container {

        width: 100% !important;
        /* Full width */
        transition: 0.3s all !important;
    }


}

@media (min-width: 1650px) {

    .b-root {
        display: flex !important;
        text-align: center !important;
        justify-content: center !important;
        width: 80% !important;
        flex-direction: column;
        margin: 0 auto !important;
        transition: 0.3s all !important;

    }

    .nav-bar-inner,
    .footer-inner-container {

        width: 80%;
        /* Full width */
        transition: 0.3s all !important;
    }

    .footer-container {

        width: 100% !important;
        /* Full width */
        transition: 0.3s all !important;
    }


}

@media (min-width: 1800px) {

    .b-root {
        display: flex !important;
        text-align: center !important;
        justify-content: center !important;
        width: 75% !important;
        flex-direction: column;
        margin: 0 auto !important;
        transition: 0.3s all !important;

    }

    .nav-bar-inner,
    .footer-inner-container {

        width: 75%;
        /* Full width */
        transition: 0.3s all !important;
    }

    .footer-container {

        width: 100% !important;
        /* Full width */
        transition: 0.3s all !important;
    }


}

@media (min-width: 2000px) {

    .b-root {
        display: flex !important;
        text-align: center !important;
        justify-content: center !important;
        width: 67% !important;
        flex-direction: column;
        margin: 0 auto !important;
        transition: 0.3s all !important;

    }

    .nav-bar-inner,
    .footer-inner-container {

        width: 67%;
        /* Full width */
        transition: 0.3s all !important;
    }

    .footer-container {

        width: 100% !important;
        /* Full width */
        transition: 0.3s all !important;
    }
}

@media (min-width: 2300px) {

    .b-root {
        display: flex !important;
        text-align: center !important;
        justify-content: center !important;
        width: 50% !important;
        flex-direction: column;
        margin: 0 auto !important;
        transition: 0.3s all !important;

    }

    .nav-bar-inner,
    .footer-inner-container {

        transition: 0.3s all !important;
        width: 50%;
        /* Full width */
    }

    .footer-container {

        width: 100% !important;
        /* Full width */
        transition: 0.3s all !important;
    }

}

@media (min-width: 3000px) {

    .b-root {
        display: flex !important;
        text-align: center !important;
        justify-content: center !important;
        width: 33% !important;
        flex-direction: column;
        margin: 0 auto !important;
        transition: 0.3s all !important;

    }

    .nav-bar-inner,
    .footer-inner-container {

        transition: 0.3s all !important;
        width: 33%;
        /* Full width */
    }

    .footer-container {

        width: 100% !important;
        /* Full width */
        transition: 0.3s all !important;
    }
}

@media (min-width: 4000px) {

    .b-root {
        display: flex !important;
        text-align: center !important;
        justify-content: center !important;
        width: 25% !important;
        flex-direction: column;
        margin: 0 auto !important;
        transition: 0.3s all !important;

    }

    .nav-bar-inner,
    .footer-inner-container {

        transition: 0.3s all !important;
        width: 25%;
        /* Full width */
    }

    .footer-container {

        width: 100% !important;
        /* Full width */
        transition: 0.3s all !important;
    }
}




@media (max-width: 1024px) {

    .nav-left {

        display: flex;
        align-items: center;
    }

    #logo {

        display: none;
    }

    #logo-centered {
        display: flex;
    }

    .fa-bars {
        margin: 0px;
        padding: 0px;
        color: white;
        visibility: visible;
        font-size: 30px;
        margin: auto 0px;
    }


    .nav-center>ul {
        display: none;
    }

    .nav-right {
        display: flex;
        margin-left: auto;
    }

}

@media (max-width: 700px) {

    .slider-items {
        width: 40%;
        height: 100%;
        background-color: white;
    }

    #slider-image>img {
        height: 20px;
    }
}


.top-loading {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6f5;
    background: linear-gradient(110deg, #f4f6f5 8%, #f4f6f5 18%, #f4f6f5 33%);
    border-radius: 5px;
    background-size: 200% 100%;

    -webkit-animation: shine-loading-image 2s infinite ease-out;
    animation: shine-loading-image 2s infinite ease-out;
}

.image-loading {
    height: 80px;
    width: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 auto;
    margin-top: -24px;
    border-radius: 100px;
    background-color: white;
    border: 4px solid rgb(221, 221, 221);
    background: #f4f6f5;
    background: linear-gradient(110deg, #f4f6f5 8%, #f4f6f5 18%, #f4f6f5 33%);

    background-size: 200% 100%;

    -webkit-animation: shine-loading-image 2s infinite ease-out;
    animation: shine-loading-image 2s infinite ease-out;
}

.title-loading {

    margin: 0 auto;
    margin-top: 8px;
    font-size: 10px;
    height: 50px;
    background: #f4f6f5;
    background: linear-gradient(110deg, #f4f6f5 8%, #f4f6f5 18%, #f4f6f5 33%);
    border-radius: 5px;
    background-size: 200% 100%;

    -webkit-animation: shine-loading-image 2s infinite ease-out;
    animation: shine-loading-image 2s infinite ease-out;
    width: 93%;
}

.promo-code-loading {
    margin: 0 auto;
    margin-top: 8px;
    font-size: 10px;
    height: 50px;
    background: #f4f6f5;
    background: linear-gradient(110deg, #f4f6f5 8%, #f4f6f5 18%, #f4f6f5 33%);
    border-radius: 5px;
    background-size: 200% 100%;

    -webkit-animation: shine-loading-image 2s infinite ease-out;
    animation: shine-loading-image 2s infinite ease-out;
    width: 93%;
}

.founds-loading {
    margin: 0 auto;
    margin-top: 8px;
    font-size: 10px;
    height: 50px;
    background: #f4f6f5;
    background: linear-gradient(110deg, #f4f6f5 8%, #f4f6f5 18%, #f4f6f5 33%);
    border-radius: 5px;
    background-size: 200% 100%;

    -webkit-animation: shine-loading-image 2s infinite ease-out;
    animation: shine-loading-image 2s infinite ease-out;
    width: 93%;
}

.left-loading {
    margin-bottom: 16px;
}

.left-loading>div {
    margin: 0px;
    padding: 0px;
    height: auto;
    border: 0px solid rgb(209, 209, 209);
}

.c-item-loading {
    margin: 0px;
    padding: 0px;
    padding: 4px;
    background-color: var(--primary-yellow);
    width: fit-content;
    padding-right: 8px;
    padding-left: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: white;
    background: #f4f6f5;
    background: linear-gradient(110deg, #f4f6f5 8%, #f4f6f5 18%, #f4f6f5 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    width: 100px;
    height: 30px;
    -webkit-animation: shine-loading-image 2s infinite ease-out;
    animation: shine-loading-image 2s infinite ease-out;

}

@keyframes shine-loading-image {
    0% {
        background-position: -32px;
    }

    40%,
    100% {
        background-position: 208px;
    }
}

.s>ul>li>a {
    color: white;
    text-decoration: none;
}

.s>ul>li>a:hover {
    color: white;
    text-decoration: underline;
}


/* new changes for auth buttons and logo */
@media (max-width: 1024px) {
    .nav-right>a {
        font-size: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-right>a:hover {
        font-size: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-right>p {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
    .nav-left {
        width: auto;
        margin-left: 0;
    }

    .nav-center {
        width: auto;
        margin-left: 18px;
    }

    #logo-centered {
        height: 26px;
    }


}

@media (max-width: 500px) {
    .p-button {
        width: 25px;
        height: 25px;
        line-height: 1;
    }

    .page-item {
        width: 25px;
        height: 25px;
    }

    #logo-centered {
        height: 20px;
    }

    .nav-right>a {
        font-size: 12px;
    }

    .hero-search {
        width: 93%;

    }
}

/* new changes for auth buttons and logo ends */

@media (max-width: 694px) {

    .pagination-container {
        display: flex;
        width: 100%;
        margin: 0 auto;
        height: auto;
    }

    .page-navigation {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
    }

    .pagination {

        display: flex;
        flex-wrap: wrap;
        height: auto;
    }
}


@media only screen and (max-width: 991px) {

    .main {
        width: 85% !important;
    }


}

@media (max-width: 767px) {

    .coupon-fix {
        margin-right: 32px !important;
        overflow: hidden;
    }

    .coupon-fix>div {
        width: 100% !important;
        margin-right: 32px !important;
    }


}