﻿@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");

:root {
    --color-black: hsl(0, 0%, 10%);
    --color-darks: hsl(0, 0%, 25%);
    --color-greys: hsl(0, 0%, 60%);
    --color-light: hsl(0, 0%, 95%);
    --color-white: hsl(0, 0%, 100%);
    --color-blue-100: hsl(217, 91%, 65%);
    --color-blue-200: hsl(221, 83%, 55%);
    --color-blue-300: hsl(224, 76%, 45%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
h1 {font-size:1.5rem;}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #554e45;
    background-color: #fde6df;
    padding-top: 50px;
    padding-bottom: 60px;
}

main {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-transform: unset;
    color: #fff;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.section {
    margin: 0 auto;
    padding: 5rem 0 2rem;
}

.container {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0.5rem;
}

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    position: fixed;
    right: 7rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-blue-200);
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    margin: 0 auto;
    background-color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.navbar {
    background: #fde6df;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 3rem;
    margin: 0 auto;
}

.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow-y: auto;
    padding-bottom: 60px;
    background-color: hsl(14deg 88.24% 93.33%);
    box-shadow: var(--shadow-medium);
    transition: all 0.5s ease-in-out;
}

    .menu.is-active {
        top: 0;
        left: 0;
    }

.menu-inner {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    margin: 1.25rem;
}

.menu-link {
    /*font-family: inherit;*/
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    /* text-transform: uppercase; */
    color: hsl(0deg 3.76% 19.87%);
    transition: all 0.3s ease;
}

    .menu-link:hover {
        color: #F44336;
    }

@media only screen and (min-width: 48rem) {
    .menu {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        margin-left: auto;
        background: none;
        box-shadow: none;
    }

    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 1.75rem;
        margin: 0 auto;
        margin-right: 5rem;
    }

    .menu-link {
        text-transform: capitalize;
    }

    .menu-block {
        margin-left: 2rem;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    order: -1;
    width: 1.6rem;
    height: auto;
    border: none;
    outline: none;
    visibility: visible;
}

.burger-line {
    display: block;
    cursor: pointer;
    width: 90%;
    height: 2px;
    margin: 5px auto;
    transform: rotate(0deg);
    border-radius: 1rem;
    background: var(--color-black);
}

@media only screen and (min-width: 48rem) {
    .burger {
        display: none;
        visibility: hidden;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
}

    .overlay.is-active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

.search-toggle, .search-cancel {
    display: block;
    cursor: pointer;
    font-size: 1.45rem;
    line-height: inherit;
    color: var(--color-black);
}

.search-block {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    background-color: hsl(14deg 88.24% 93.33%);
    transition: all 0.35s ease-in-out;
}

    .search-block.is-active {
        top: 0;
        right: 0;
    }

.search-form {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.search-input {
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    width: 100%;
    height: auto;
    padding: 0.65rem 1.25rem;
    border: none;
    outline: none;
    border-radius: 0.8rem;
    color: var(--color-black);
    background-color: var(--color-light);
}

    .search-input::-webkit-search-decoration, .search-input::-webkit-search-cancel-button {
        display: none;
        visibility: hidden;
    }

.slide-container {
    margin: auto;
    width: 600px;
    text-align: center;
}

.wrapper {
    /*padding-top: 40px;
  padding-bottom: 40px;*/
}

    .wrapper:focus {
        outline: 0;
    }

.clash-card {
    background: #fde6df;
    /* width: 300px; */
    display: inline-block;
    margin: auto;
    border-radius: 19px;
    margin: 0.5rem;
    /* position: relative; */
    text-align: center;
    box-shadow: -1px 15px 30px -12px black;
    z-index: 9999;
}

.clash-card__image {
    position: relative;
    /*height: 230px;*/
    /*margin-bottom: 35px;*/
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.clash-card__image--barbarian {
    /*background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/195612/barbarian-bg.jpg");*/
}

    .clash-card__image--barbarian img {
        width:100%;
        border-top-left-radius: 19px;
        border-top-right-radius: 19px;
        /*width: 400px;
  position: absolute;
  top: -65px;
  left: -70px;*/
    }

.clash-card__image--archer {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/195612/archer-bg.jpg");
}

    .clash-card__image--archer img {
        width: 400px;
        position: absolute;
        top: -34px;
        left: -37px;
    }

.clash-card__image--giant {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/195612/giant-bg.jpg");
}

    .clash-card__image--giant img {
        width: 340px;
        position: absolute;
        top: -30px;
        left: -25px;
    }

.clash-card__image--goblin {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/195612/goblin-bg.jpg");
}

    .clash-card__image--goblin img {
        width: 370px;
        position: absolute;
        top: -21px;
        left: -37px;
    }

.clash-card__image--wizard {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/195612/wizard-bg.jpg");
}

    .clash-card__image--wizard img {
        width: 345px;
        position: absolute;
        top: -28px;
        left: -10px;
    }

.clash-card__level {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.clash-card__level--barbarian {
    color: #EC9B3B;
}

.clash-card__level--archer {
    color: #EE5487;
}

.clash-card__level--giant {
    color: #F6901A;
}

.clash-card__level--goblin {
    color: #82BB30;
}

.clash-card__level--wizard {
    color: #4FACFF;
}

.clash-card__unit-name {
    font-size: 1rem;
    color: #554e45;
    padding: 10px 0px;
}

.clash-card__unit-description {
    padding: 15px;
    padding-top: 0px;
    /*margin-bottom: 10px;*/
}

.clash-card__unit-stats--barbarian {
    background: #554e45;
}

    .clash-card__unit-stats--barbarian .one-third {
        border-right: 1px solid hsl(0, 0%, 25%);
    }

.clash-card__unit-stats--archer {
    background: #EE5487;
}

    .clash-card__unit-stats--archer .one-third {
        border-right: 1px solid #D04976;
    }

.clash-card__unit-stats--giant {
    background: #F6901A;
}

    .clash-card__unit-stats--giant .one-third {
        border-right: 1px solid #de7b09;
    }

.clash-card__unit-stats--goblin {
    background: #82BB30;
}

    .clash-card__unit-stats--goblin .one-third {
        border-right: 1px solid #71a32a;
    }

.clash-card__unit-stats--wizard {
    background: #4FACFF;
}

    .clash-card__unit-stats--wizard .one-third {
        border-right: 1px solid #309eff;
    }

.clash-card__unit-stats {
    color: white;
    font-weight: 700;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

    .clash-card__unit-stats .one-third {
        width: 33%;
        float: left;
        padding: 10px 10px;
    }

    .clash-card__unit-stats sup {
        position: absolute;
        bottom: 4px;
        font-size: 45%;
        margin-left: 2px;
    }

    .clash-card__unit-stats .stat {
        position: relative;
        font-size: 20px;
        /*margin-bottom: 10px;*/
    }

    .clash-card__unit-stats .stat-value {
        text-transform: uppercase;
        font-weight: 400;
        font-size: 12px;
    }

    .clash-card__unit-stats .no-border {
        border-right: none;
    }

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.slick-prev {
    left: 100px;
    z-index: 999;
}

.slick-next {
    right: 100px;
    z-index: 999;
}



/*footer nav bar start*/
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    will-change: transform;
    transform: translateZ(0);
    display: flex;
    height: 60px;
    box-shadow: 0 -2px 5px -2px #333;
    background-color: #fde6df;
}

.mobile-bottom-nav__item {
    flex-grow: 1;
    text-align: center;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .mobile-bottom-nav__item a {
        color: #554e45;
    }

.mobile-bottom-nav__item--active {
    color: #ff0011;
}

.mobile-bottom-nav__item-content {
    display: flex;
    flex-direction: column;
}

.mobnavicon {
    font-size: 20px !important;
}
/*footer nav bar end*/

.nav-header nav {
    width: 100%;
}

.nav-header {
    border-radius: 15px;
}

.menulogo {
    text-align: center;
    border-right: 1px solid #ece4e4;
    padding: 7px 40px 8px;
}

    .menulogo img {
        width: 100%;
        display: inline-block;
        vertical-align: center;
    }

.itemlist {
    padding: 5px 10px;
    border-radius: 10px;
    margin-top: 7px;
    color: #464442;
    font-weight: 400;
}

    .itemlist:not(:last-child) {
        border-right: 1px solid #ece4e4;
    }
/*header,
nav {
  font-size: 0;
}*/
.itemlist {
    font-size: 24px;
}

.menulogo,
.itemlist,
.center {
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
}

.scrolltab :hover {
    background-color: #f3d9d2;
}

.scrolltab {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .scrolltab::-webkit-scrollbar {
        display: none;
    }

@media (max-width: 765px) {
    .itemlist {
        font-size: 14px;
    }
}

/*Toggle for description and title*/
.content {
    display: block;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.toggle-button {
    cursor: pointer;
}

    .toggle-button h2 {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
        padding: 10px;
    }

.content h3 {
    font-weight: 100;
    text-align: left;
    font-size: 16px;
}
/*End of toggle for description and title*/

/*loader css*/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-icon {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*end of loader css*/


.cardpop {
    position: fixed;
    border-radius: 1rem 1rem 0 0;
    top: 0;
    left: 0;
    bottom: 60px;
    width: 100%;
    height: auto;
    z-index: 10;
    margin: 0 auto;
    background-color: hsl(14deg 100% 97.63%);
    box-shadow: var(--shadow-medium);
}

.dismisspop {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: #ff2e3c;
    color: white;
    border: 2px solid #f9bab6;
    font-size: 1.5rem;
    font-weight: 300;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    transition: .3s ease;
}

    .dismisspop:hover {
        background-color: #ee0d0d;
        border: 2px solid #ee0d0d;
        color: #fff;
    }

.headerpop {
    padding: 1.25rem 1rem 1rem 1rem;
}

.imagepop {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffdbcf;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    animation: animate .6s linear alternate-reverse infinite;
    transition: .6s ease;
}

    .imagepop svg {
        color: #0afa2a;
        width: 2rem;
        height: 2rem;
    }

.contentpop {
    margin-top: 0.75rem;
    text-align: center;
}

.titlepop {
    color: #ff121f;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.messagepop {
    margin-top: 0.5rem;
    color: #595b5f;
    font-size: 1rem;
    line-height: 1.5rem;
}

.actionspop {
    margin: 0.75rem 1rem;
}

.history {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background-color: #ff0011cf;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5rem;
    /*font-weight: 500;*/
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.track {
    display: inline-flex;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
    /*font-weight: 500;*/
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #D1D5DB;
    background-color: #554e45;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.followus {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
}

.facebook {
    color: #3F51B5 !important;
}

.youtube {
    color: #ff3d00 !important;
}

.insta {
    color: #e4405f !important;
}

.followus i {
    margin: 0 5px; /* Add spacing between icons */
}

@keyframes animate {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.09);
    }
}

.backarrow {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
}

.toast {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}
.dvPincode {
    position: absolute;
    right: 2rem;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
}
#areaName {font-size:x-small}
#pincode {font-size:small;font-weight: 500;}
