@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
    --primary: #FFBA00;
    --secondary: #8a8a8a;
    --tertiary: #d9d9d9;
    --danger: #e72419;
    --light-gray: #f7f7f7;
    --gray: #ECECEC;
    --dark: #333;
    --dark-gray: #777777;
    --black: #000000;
    --white: #FFFFFF;
    --text-color: #434343;
}


/* ---- preset style START ---- */

html {
    margin-top: 0 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

.form-control::placeholder {
    color: var(--placeholder);
}

html,
body {
    -webkit-text-size-adjust: none;
    margin: 0px;
    padding: 0px;
    /*height: 100%;*/
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
}

.rounded {
    border-radius: var(--rounded) !important;
    overflow: hidden;
}

img {
    border: none;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
a:link,
a:visited,
a:focus,
input:focus,
textarea:focus {
    outline: none;
    text-decoration: none;
    color: var(--primary);
}

select:focus {
    outline: none;
}

textarea {
    resize: none;
}

form,
input,
select,
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}

    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

iframe {
    display: block;
}

p + p {
    margin-top: 1.5em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time {
    display: block;
    margin: 0;
    padding: 0;
}

::selection {
    background: #1C1C1C;
    color: #FFFFFF;
}

::-moz-selection {
    background: #1C1C1C;
    color: #FFFFFF;
}

ul {
    list-style: none;
}

li {
    padding: 0;
    margin: 0;
}

label {
    font-weight: normal !important;
}

.fa-ul > li:not(:last-child) {
    margin-bottom: 15px;
}

.lead {
    font-size: 1.2em;
    line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Sans Pro', sans-serif;
}

h1 {
    font-size: 2.25em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.50em;
}

h5 {
    font-size: 1.25em;
}

h6 {
    font-size: 1em;
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 2.0em;
    }

    h2 {
        font-size: 1.770em;
    }

    h3 {
        font-size: 1.540em;
    }

    h4 {
        font-size: 1.310em;
    }

    h5 {
        font-size: 1.1em;
    }

    h6 {
        font-size: 1em;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 1.750em;
    }

    h2 {
        font-size: 1.570em;
    }

    h3 {
        font-size: 1.390em;
    }

    h4 {
        font-size: 1.210em;
    }

    h5 {
        font-size: 1.075em;
    }

    h6 {
        font-size: 1em;
    }
}

@media only screen and (min-width: 1601px) {
    section > .minHeight {
        min-height: 250px;
    }
}

.underlined {
    padding-bottom: .75em;
    margin-bottom: 1em;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

    .underlined:after {
        content: "";
        width: 150px;
        height: 5px;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        background-color: var(--danger);
    }

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-size: 0.8em;
    display: block;
    line-height: 1.5em;
    font-family: "RobotoLight";
}

p:last-child {
    margin-bottom: 0;
}

.stretched {
    letter-spacing: 1px;
}

.text-default:focus,
.text-default:active,
.text-default {
    color: var(--dark) !important;
}

.text-secondary:focus,
.text-secondary:active,
.text-secondary {
    color: var(--secondary) !important;
}

.text-tertiary:focus,
.text-tertiary:active,
.text-tertiary {
    color: var(--tertiary) !important;
}

.text-quaternary:focus,
.text-quaternary:active,
.text-quaternary {
    color: var(--quaternary) !important;
}

.text-white:focus,
.text-white:active,
.text-white {
    color: var(--white);
}

.text-danger:focus,
.text-danger:active,
.text-danger {
    color: var(--danger) !important;
}


/* .tooltip,
.popover {
    font-family: "BentonSansBook";
} */

.tooltip-inner {
    font-size: 0.875em;
}

.bgGradient::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(60%, rgba(153, 153, 153, 0)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#333333', GradientType=0);
}

.hoverIcon,
.bgOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.bg-white {
    background: var(--white) !important;
}

.bg-dark {
    background: var(--primary) !important;
}

.bg-gray {
    background: var(--gray) !important;
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--dark-gray);
    opacity: 1;
    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--dark-gray);
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--dark-gray);
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.rounded-2x {
    border-radius: 1.5rem !important;
}


/* ---- preset style END ---- */

body {
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    line-height: 150%;
    overflow-x: hidden;
    padding-top: 0;
    color: var(--text-color);
}

.logoContainer {
    text-align: center;
    margin: auto;
    padding-left: 85px;
}

    .logoContainer img {
        max-width: 220px;
    }

.loginMenus {
    position: relative;
    right: 0;
    /* padding-top: 1.2rem; */
    display: flex;
    align-items: center;
}

    .loginMenus ul {
        margin: 0;
        padding: 0;
    }

        .loginMenus ul li {
            display: inline-block;
        }

            .loginMenus ul li:first-child {
                border-right: solid 1px var(--dark);
                /* padding-right: .5rem;
    margin-right: .5rem; */
            }

            .loginMenus ul li a {
                color: var(--dark);
                font-weight: 300 !important;
                padding: .58rem !important;
            }


/* menu style */

.navbar {
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .menu-items {
    display: flex;
}

.navbar .nav-container li {
    list-style: none;
}

.navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    padding: 0.7rem;
}

    .navbar .nav-container a:hover {
        font-weight: bolder;
    }

.nav-container {
    display: block;
    position: relative;
    height: 60px;
}

    .nav-container .checkbox {
        position: absolute;
        display: block;
        height: 32px;
        width: 32px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .nav-container .hamburger-lines {
        display: block;
        height: 26px;
        width: 32px;
        position: absolute;
        top: 17px;
        left: 20px;
        z-index: 4;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .nav-container .hamburger-lines .line {
            display: block;
            height: 4px;
            width: 100%;
            border-radius: 10px;
            background: #0e2431;
        }

        .nav-container .hamburger-lines .line1 {
            transform-origin: 0% 0%;
            transition: transform 0.4s ease-in-out;
        }

        .nav-container .hamburger-lines .line2 {
            transition: transform 0.2s ease-in-out;
        }

        .nav-container .hamburger-lines .line3 {
            transform-origin: 0% 100%;
            transition: transform 0.4s ease-in-out;
        }

.navbar .menu-items {
    position: fixed;
    padding-top: 120px;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    text-align: center;
    background: var(--primary);
    top: 0;
    left: 0;
    z-index: 3;
}

    .navbar .menu-items ul {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .navbar .menu-items li {
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
        font-weight: 500;
    }

.nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo {
    display: none;
}

.navbar .menu-items ul {
    position: relative;
    left: 0;
    text-align: left;
    transform: translate(-0, -50%);
}

.navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: solid 1px #333;
    max-width: 180px;
    padding-bottom: .5rem;
    text-transform: uppercase;
    font-family: "Montserrat";
}

    .navbar .menu-items li:last-child {
        border-bottom: none;
    }

.navbar .menuCenter {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
}

.menu-leftCont {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.socialMedia li {
    border-bottom: none !important;
}

.homeBanTxt {
    max-width: 740px;
    margin: auto;
}

.headingFont {
    font-family: 'Montserrat', sans-serif;
}

.heading {
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark);
}

.heading-sm {
    font-weight: 300;
    font-size: 1.8rem;
}


/* home category btn */

.homeCatBtns {
    background: var(--light-gray);
    max-width: 600px;
    margin: 3rem auto 1rem;
    border: solid 1px #e2e2e2;
}

    .homeCatBtns ul {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
    }

        .homeCatBtns ul li {
            text-align: center;
            border-right: solid 1px #e2e2e2;
            width: 33.3%;
            padding: 2rem 0;
            border-bottom: 8px solid var(--light-gray);
        }

            .homeCatBtns ul li:last-child {
                border-right: none;
            }

            .homeCatBtns ul li:hover {
                border-bottom: 8px solid var(--primary);
            }

            .homeCatBtns ul li.active {
                border-bottom: 8px solid var(--primary);
            }

    .homeCatBtns img {
        max-width: 100px;
        max-height: 70px;
    }

.homeCatBx h5 {
    color: var(--dark-gray);
    margin-top: 1rem;
}

.footer {
    border-top: 1px solid #e2e2e2;
    padding: .75rem 0;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--dark-gray);
}


/* visual lens page */

.lensBg {
    position: relative;
}

    .lensBg::before {
        content: "";
        background: url(../images/lens-img-left.png) no-repeat left;
        position: absolute;
        width: 50%;
        height: 100%;
        left: -30px;
        max-width: 430px;
        top: 7rem;
        background-size: contain;
        z-index: -1;
    }

    .lensBg::after {
        content: "";
        background: url(../images/lens-img-right.png) no-repeat right;
        background-size: auto;
        position: absolute;
        width: 75%;
        height: 100%;
        right: -50px;
        top: 7rem;
        max-width: 400px;
        background-size: contain;
        z-index: -1;
    }

.lensHeading {
    max-width: 613px;
    margin: auto;
    margin-top: 6rem;
}


/* search field */

.searchArea {
    max-width: 600px;
    margin: auto;
    margin-top: 5rem;
}

#upload {
    opacity: 0;
}

#upload-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.image-area {
    border: 2px dashed rgba(255, 255, 255, 0.7);
    padding: 1rem;
    position: relative;
}

    .image-area::before {
        content: 'Uploaded image result';
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 0.8rem;
        z-index: 1;
    }

    .image-area img {
        z-index: 2;
        position: relative;
    }

.searchArea .input-group {
    border: solid 1px #e2e2e2;
    min-height: 60px;
}

    .searchArea .input-group .btn {
        background: var(--dark);
        color: #fff;
        min-height: 56px;
        border: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 0;
    }

.searchArea .cameraIcon {
    margin-right: .5rem;
    border-right: solid 1px #e2e2e2;
    padding-right: .5rem;
    overflow: hidden;
}

    .searchArea .cameraIcon i {
        margin-top: .85rem;
        font-size: 1.7rem;
    }

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.userProfiles {
    display: flex;
    align-items: center;
}


/* user profile */

.table_center {
    display: table-cell;
    vertical-align: middle;
}

.drop-down {
    display: inline-block;
    position: relative;
}

.drop-down__button {
    display: inline-block;
    text-align: left;
    cursor: pointer;
}

.drop-down__name {
    font-size: 9px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
}

.drop-down__icon {
    width: 18px;
    vertical-align: middle;
    margin-left: 14px;
    height: 18px;
    border-radius: 50%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.drop-down__menu-box {
    position: absolute;
    width: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
    margin-top: 5px;
    z-index: 1;
}

.drop-down__menu {
    margin: 0;
    padding: 0 13px;
    list-style: none;
}

.drop-down__menu-box:before {
    content: '';
    background-color: transparent;
    border-right: 8px solid transparent;
    position: absolute;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-top: 8px solid transparent;
    top: -15px;
    right: 18px;
}

.drop-down__menu-box:after {
    content: '';
    background-color: transparent;
}

.drop-down__item {
    font-size: 13px;
    padding: 13px 0;
    text-align: left;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #e0e2e9;
}

.drop-down__item-icon {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0px;
    fill: #8995b6;
}

.drop-down__item:last-of-type {
    border-bottom: 0;
}

.drop-down--active .drop-down__menu-box {
    visibility: visible;
    opacity: 1;
    margin-top: 15px;
}

.drop-down__item:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 28px;
    background-color: var(--primary);
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.drop-down__item:hover:before {
    display: block;
}

.innerBanner {
    min-height: 400px;
    background-position: center;
    background-size: cover;
    position: relative;
}

    .innerBanner:before {
        content: '';
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
    }

    .innerBanner h1 {
        font-size: 2.5rem;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: -2px;
    }

.collectionSearch {
    background: var(--light-gray);
    border: solid 1px #e2e2e2;
    border-radius: 3rem;
    padding: .25rem;
}

    .collectionSearch .form-control {
        background: transparent;
        border-color: var(--light-gray);
        color: var(--dark-gray);
    }

    .collectionSearch .form-select {
        margin: .25rem 0;
        margin-right: 1rem;
        border-radius: 2rem !important;
        color: var(--dark-gray);
        max-width: 120px;
    }

    .collectionSearch .btn {
        min-width: 120px;
        border-top-right-radius: 1.2rem;
        border-bottom-right-radius: 1.2rem;
        background: var(--dark);
        border-color: var(--dark);
        display: flex;
        justify-content: center;
        align-items: center;
    }


/* .collectionSearch .btn i {
    padding-top: 5px;
} */

.grid:after {
    content: "";
    display: block;
    clear: both;
}

.grid-sizer,
.grid-item {
    width: 33.33%;
}

.grid-item {
    float: left;
}

    .grid-item:hover {
        cursor: pointer;
    }

    /*.grid-item img {
        display: block;
        max-width: 100%;*/
        /* border: 10px solid white; */
    /*}*/

    .grid-item img {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        object-fit: cover;
    }

@media screen and (max-width: 414px) {
    .grid-item img {
        border: 5px solid white;
    }
}

.grid-item.grid-item__expanded {
    width: 66.66%;
    z-index: 2;
}

.slick-slide .collectionSingle {
    position: relative;
    margin: 10px;
    border-radius: 1rem;
    overflow: hidden;
    height: auto;
}

.collectionSingle {
    position: relative;
    margin: 10px;
    border-radius: 1rem;
    overflow: hidden;
    height: 300px;
}
    .collectionSingle .overlay {
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        padding: 2rem;
    }

    .collectionSingle img {
        transition: all 0.5s ease;
    }

    .collectionSingle h4 {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .collectionSingle .infoTxt {
        display: flex;
        justify-content: space-between;
        color: #fff;
        font-weight: 300;
        margin-top: .75rem;
    }

    /*.collectionSingle:hover img {
        transform: scale(1.15);
    }*/

.filterHead {
    margin-bottom: 2rem;
}

    .filterHead .tabs ul {
        border: 0;
        justify-content: center;
    }

    .filterHead .tabs.is-fullwidth li {
        flex-shrink: 0;
        flex-grow: unset;
    }

        .filterHead .tabs.is-fullwidth li a {
            background: var(--gray);
            margin-right: 1rem;
            border-radius: 2rem;
            padding: .35rem 1.2rem;
            color: var(--dark-gray);
        }

    .filterHead .tabs.is-boxed a {
        border: 0;
    }

    .filterHead .tabs.is-boxed li.is-active a {
        background: var(--primary);
        color: #fff;
    }

.resultCount {
    width: 100%;
    text-align: center;
    position: relative;
    max-width: 1280px;
    margin: auto;
    margin-bottom: 1.5rem;
}

    .resultCount:before {
        content: '';
        width: 100%;
        height: 1px;
        background-color: var(--gray);
        position: absolute;
        top: 50%;
        transform: translate(-50%);
        z-index: 0;
    }

    .resultCount h5 {
        font-weight: 800;
        font-size: 1.5rem;
        position: relative;
        overflow: hidden;
        z-index: 1;
        background: #fff;
        max-width: 400px;
        margin: auto;
        /* display: initial; */
        padding: 0 1rem;
    }

.resultCount2 {
    width: 100%;
    position: relative;
    margin-bottom: 1.5rem;
}

    .resultCount2:before {
        content: '';
        width: 100%;
        height: 1px;
        background-color: var(--gray);
        position: absolute;
        top: 50%;
        z-index: 0;
    }

    .resultCount2 h5 {
        font-weight: 800;
        font-size: 1.5rem;
        position: relative;
        overflow: hidden;
        z-index: 1;
        background: #fff;
        display: initial;
        padding: 0 1rem;
    }

.btn-primary,
.btn-primary:focus {
    background: var(--primary);
    color: var(--dark) !important;
    border-color: var(--primary);
}

    .btn-primary:hover {
        background: var(--dark);
        color: var(--white) !important;
        border-color: var(--dark);
    }

.btn-light {
    color: var(--dark-gray);
    background: var(--gray);
    border-radius: 1.5rem;
    padding: .3rem 1.6rem;
}

    .btn-light:hover {
        background: var(--dark);
        border-color: var(--dark);
        color: #fff;
    }

.collectionListing {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

    .collectionListing li {
        width: 33.3%;
    }

.slick-arrow {
    width: 50px;
    height: 50px;
    color: var(--white);
    display: block;
    border-radius: 50%;
    font-size: 30px;
    border: none;
    text-indent: -9999px;
    position: absolute;
    top: 45%;
    background: url('../images/next_arrow.png') no-repeat center;
    filter: brightness(0);
    z-index: 2;
}

.slickPrev {
    left: -25px;
    transform: rotate(-180deg);
}

.slickNext {
    right: -25px;
}

.slick-arrow:hover {
    background-color: var(--primary);
    filter: brightness(1);
    border: none;
}

.collections-sm {
    display: flex;
    flex-wrap: wrap;
}

    .collections-sm li {
        max-width: 25%;
    }

    .collections-sm .collectionSingle {
        border-radius: .75rem;
    }

        .collections-sm .collectionSingle .overlay {
            content: '';
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
            padding: .5rem;
            display: flex;
            align-items: flex-end;
        }

        .collections-sm .collectionSingle p {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
        }


/* restaurant page filter */

.filter-menu {
    margin-bottom: 20px;
    text-align: center;
}

    .filter-menu li {
        display: inline-block;
        background: var(--gray);
        margin-right: 1rem;
        border-radius: 2rem;
        padding: .35rem 1.2rem;
        color: var(--dark-gray);
        cursor: pointer;
    }

        .filter-menu li:hover,
        .filter-menu li.current {
            background: var(--primary);
            color: #fff;
        }

.filter-item li {
    width: 50%;
    padding: 2px;
    float: left;
}

    .filter-item li.active {
        width: 50%;
        padding: 2px;
        transition: all 0.5s ease;
    }

    .filter-item li.deleted {
        width: 0;
        padding: 0;
        transition: all 0.5s ease;
        opacity: 0;
    }

.filter-item img {
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {
    .filter-item li.active,
    .filter-item li {
        width: 33.33%;
    }
}

@media screen and (min-width: 1280px) {
    .filter-item li.active,
    .filter-item li {
        width: 25%;
    }
}

.btn-black {
    background: var(--dark);
    border-radius: 2rem !important;
    padding: .75rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.greyBg {
    background: var(--gray);
    padding: 2rem;
    border-radius: .75rem;
    margin-top: 3rem;
}

.detBox {
    text-align: center;
}

    .detBox h5 {
        margin-top: 1rem;
    }

.btn-border {
    background: #fff;
    border: solid 1px var(--dark-gray);
    border-radius: 2rem;
    color: var(--dark);
    padding: .5rem 1.2rem;
    font-weight: 600;
}

    .btn-border:hover {
        background: var(--dark);
        color: #fff;
    }

.detailsRight {
    text-align: right;
}

.detIconsCont {
    display: flex;
    justify-content: flex-end;
}

.icnImg {
    border: solid 1px var(--gray);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .75rem;
    border-radius: .5rem;
    margin-bottom: .5rem;
}

    .icnImg i {
        font-size: 1.4rem;
        color: var(--dark-gray);
    }

.favIcon {
    cursor: pointer;
}

    .favIcon i.active {
        color: var(--primary);
    }

.detIcns {
    text-align: center;
}

    .detIcns h6 {
        font-size: 1.3rem;
        color: var(--dark);
        font-weight: 700;
    }

    .detIcns p {
        font-size: .95rem;
    }

.restDetbanner {
    margin-top: 6rem;
}


/* Active center slide (You can change anything here for cenetr slide)*/

.restaurant-slide .slick-list {
    overflow: visible;
}

.restaurant-slide .slick-center,
.restaurant-slide .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);
}

.restaurant-slide .slick-current.slick-active {
    transform: scale(1.5);
    position: relative;
    z-index: 1;
}

.slick-next,
.slick-prev {
    z-index: 5;
}

.slick-next {
    right: 15px;
}

.slick-prev {
    left: 15px;
}

    .slick-next:before,
    .slick-prev:before {
        color: #000;
        font-size: 26px;
    }

.restDetbanner .collectionSingle .overlay {
    height: 80px;
    padding: 1rem 2rem;
}

.restDetbanner .collectionSingle .infoTxt a {
    font-size: .9rem;
    color: #fff;
}


/* slick dots style */

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    position: relative;
    /* z-index: 3; */
}

    .slick-dots li {
        margin: 0 0.25rem;
    }

    .slick-dots span {
        display: block;
        width: 10px;
        height: 10px;
        padding: 0;
        border: none;
        border-radius: 100%;
        background-color: var(--dark-gray);
        text-indent: -9999px;
    }

    .slick-dots li.slick-active span {
        background-color: var(--primary);
    }

.restDetbanner .slick-dots {
    margin-top: 3rem;
}


/* moodboard css */

#moodBoardTab {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(rgb(249, 249, 249), rgb(240, 240, 240));
    border-radius: 4rem;
    overflow: hidden;
    height: auto;
    padding: 1rem 0;
    z-index: 0;
}

.moodBoardCont .moodIcons {
    display: block;
    margin: auto;
    max-width: 40px;
}

.moodBoardCont .nav-tabs .nav-link {
    text-align: center;
    min-width: 156px;
    color: var(--text-color);
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

    .moodBoardCont .nav-tabs .nav-link img {
        max-height: 60px;
    }

.moodBoardCont .nav-tabs .nav-item {
    border-right: solid 1px #e2e2e2;
}

    .moodBoardCont .nav-tabs .nav-item:last-child {
        border-right: 0;
    }

.moodBoardCont .nav-tabs .nav-link:hover {
    border: none;
}

    .moodBoardCont .nav-tabs .nav-link:hover img {
        transform: scale(1.1);
    }

.moodBoardCont .nav-tabs .nav-link.active {
    background: transparent;
    border: 0;
    color: var(--primary);
}

.moodBoardCont .moodPic {
    height: 60px;
}

.moodBoardCont .nav-tabs .nav-link.active img {
    filter: invert(100%) sepia() saturate(10000%) hue-rotate(-46deg);
}

.moodBoardCont .collectionSingle {
    border: solid 1px #e2e2e2;
}


/* add media button */

.filelabel {
    width: 99%;
    border: 2px dashed grey;
    border-radius: 1rem;
    padding: 5px;
    transition: border 300ms ease;
    cursor: pointer;
    text-align: center;
    margin: auto;
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .filelabel i {
        display: block;
        font-size: 30px;
        padding-bottom: 5px;
    }

    .filelabel i,
    .filelabel .title {
        color: var(--primary);
        transition: 200ms color;
    }

    .filelabel:hover {
        border: 2px solid var(--primary);
    }

        .filelabel:hover i,
        .filelabel:hover .title {
            color: var(--primary);
        }

#FileInput {
    display: none;
}

.colorPallete {
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-size: cover;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: solid 3px var(--light-gray);
    margin: auto;
}

.colorPallete-sq {
    /*background-color: var(--primary);*/
    background-repeat: no-repeat;
    background-size: cover;
    width: 46px;
    height: 46px;
    /* border: solid 3px var(--light-gray); */
    margin: auto;
}

.modal-backdrop {
    z-index: 19;
}

.boxInline {
    display: flex;
    flex-wrap: wrap;
}

    .boxInline .colorBox {
        padding: .5rem;
        text-align: center;
        margin: .75rem;
    }

.colorBox-sq {
    padding: 0rem;
    text-align: center;
    margin: .25rem;
}

.boxInline h6 {
    font-weight: 600;
    font-size: 1rem;
}

.boxInline p {
    font-size: .9rem;
    color: var(--text-color);
}

.prodDetails {
    margin: 15px;
}

    .prodDetails h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-color);
    }

    .prodDetails .tag {
        background: var(--primary);
        color: #fff;
        font-weight: 600;
    }

    .prodDetails small {
        color: var(--dark-gray);
    }

.similarProd .grid-item .simCont {
    border: solid 1px #e2e2e2;
    margin: .5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.similarProd .grid-item .collectionSingle {
    margin: 0;
    border-radius: 0;
}

.prodContBox {
    border: solid 1px #e2e2e2;
    border-radius: 1rem;
    /* max-width: 900px; */
    margin: 3rem auto;
    padding: 3rem 6rem;
}

.xzoom {
    box-shadow: none !important;
}

.xactive {
    box-shadow: 0px 0px 3px 0px var(--primary);
    border: 1px solid var(--primary);
}

.prodDetBox {
    padding-left: 3rem;
    border-left: 1px solid #e2e2e2;
    height: 100%;
}


/* pointer css */

.prodPoints img {
    border-radius: 1rem;
    filter: brightness(50%);
    position: relative;
    max-height: 756px;
}

.point1,
.point2,
.point3,
.point4 {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    left: 16.5%;
    top: 39.5%;
    background: var(--light-gray);
    border: none;
    animation: pulse 1.5s infinite;
    -webkit-animation: pulse 1.5s infinite;
    cursor: pointer
}

.mapLocation:hover {
    animation: none
}

.mapLocation + .popover {
    border-radius: 0;
    color: #000
}

    .mapLocation + .popover .popover-content {
        padding: 10px;
        letter-spacing: 1px;
        font-family: Dubai-Medium;
        text-transform: uppercase
    }

    .mapLocation + .popover .popover-title {
        padding: 5px 14px;
        text-transform: uppercase
    }

    .mapLocation + .popover > .arrow::after {
        border-left-width: 5px;
        border-right-width: 5px;
        margin-left: -5px
    }

.point2 {
    left: 56.7%;
    top: 47.5%;
    animation-delay: .2s;
    -webkit-animation-delay: .2s
}

.point3 {
    left: 23%;
    top: 74%;
    animation-delay: .4s;
    -webkit-animation-delay: .4s
}

.point4 {
    left: 62%;
    top: 52%;
    animation-delay: .6s;
    -webkit-animation-delay: .6s
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(204, 169, 44, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 0 0 #fff
    }

    70% {
        -moz-box-shadow: 0 0 0 15px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 15px rgba(204, 169, 44, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

.mobOnly {
    display: none;
}

.mobHidden {
    display: block;
}

.xzoom-thumbs img {
    max-width: 80px;
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines {
    position: fixed;
    top: 40px;
}

.nav-container input[type="checkbox"]:checked {
    top: 37px;
    left: 15px;
    position: fixed;
}

.lMap {
    margin-top: 3rem;
}

.contContent {
    margin-top: 4rem;
}

.form-control {
    font-weight: 300;
    border-radius: 1.2rem;
}

.btn-rounded {
    border-radius: 1.2rem;
}

.loginBg {
    /* background-repeat: no-repeat;
    background-size: cover; */
    background: #efefef;
}

.loginContainer {
    width: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.loginBox {
    width: 100%;
    max-width: 820px;
    border-radius: 1rem;
    box-shadow: 0 0 20px #d4d4d4;
    padding: 3rem 2rem;
    font-size: 1rem;
    background: #fff;
    position: relative;
}

.loginLogo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.loginBox .input-group-text {
    background: transparent;
    border-radius: 1.2rem;
    /* padding-right: 0; */
}

.loginBox .form-control {
    border-left: 0;
}

.loginBox span i {
    font-size: .85rem;
}

.loginBox .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.copyRight {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: -40px;
}

.linkStyle,
.linkStyle2 {
    font-weight: 600;
    transition: transform 0.8s ease-in-out;
}

    .linkStyle:hover {
        margin-left: 10px;
    }

.input-group .form-control.is-invalid,
.input-group .form-select.is-invalid,
.was-validated .input-group .form-control:invalid {
    border-color: #dc3545;
    border-left: 1px solid #dc3545;
}

.was-validated .input-group .form-control:valid {
    border-left: solid 1px #198754;
}


/* .was-validated .input-group .input-group-text {
    border: solid 1px #dc3545;
} */


/* new additions */

.exploreContainer {
    text-align: center;
    padding: 1.2rem;
    border: solid 1px var(--gray);
    border-radius: 1.2rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    cursor: pointer;
}

.exploreImg {
    background: var(--primary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -50px auto 0;
}

    .exploreImg img {
        width: 60px;
    }

.exploreContainer:hover {
    /* background: var(--primary); */
    transform: scale(1.1);
}

.exploreSection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
}

    .exploreSection .tab-content {
        padding: 3rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
        border-radius: 1rem;
        margin: 1.5rem 0;
        /* box-shadow: 0 0 20px #e2e2e2; */
        background: #fff;
    }

.fullHeight {
    height: calc(100vh - 200px);
}

.accordion-button {
    display: block;
    text-align: center;
    color: var(--dark-gray);
}

    .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-button:active {
        outline: 0;
        box-shadow: none !important;
        border: 0 !important;
    }

    .accordion-button:after {
        display: none;
    }

    .accordion-button:not(.collapsed) {
        background: #fff;
        color: var(--dark-gray);
    }

#colorpicker {
    height: 38px;
}

.form-select {
    color: #8d8e8e;
}

.accordion-body {
    background: #f1f1f1;
    border-radius: 12rem;
    padding: 2rem 2rem;
}

.bg-brown {
    background: #cd9d6d !important;
}

.featDetailsBox {
    min-height: 470px;
}

.zoom-out,
.zoom-in,
.zoom-value {
    position: relative;
    top: -8px;
}

.zoom-value {
    color: var(--text-color);
}

@media (max-width:991px) {
    .homeContent {
        min-height: 60vh;
        display: flex;
        align-items: center;
    }

    .grid-sizer,
    .grid-item {
        width: 50%;
    }

    .searchSec {
        display: flex;
    }

        .searchSec .btn-filter img {
            width: 30px;
        }

    .collectionSearch .btn {
        min-width: 50px;
    }

    .filter-Modal .modal-dialog {
        position: fixed;
        top: auto;
        right: auto;
        left: auto;
        bottom: 0;
        width: 100%;
        margin: 0;
    }

    .filter-Modal .modal-content {
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
        margin: 0;
    }

    .collectionSearch .form-select {
        display: none;
    }

    .mobOnly {
        display: block;
    }

    .mobHidden {
        display: none;
    }

    .btn-filter {
        color: var(--dark-gray);
        background: var(--gray);
        border-radius: 1.5rem;
        padding: .5rem 1rem;
    }

        .btn-filter:hover {
            background: var(--gray);
        }

    .filter-Modal .modal-dialog {
        width: 100%;
        max-width: none;
    }

    .filter-Modal .modal-content {
        width: 100%;
    }

    .prodContBox {
        padding: 3rem 2rem;
    }
}

@media (max-width:490px) {
    .logoContainer {
        padding-left: 0;
        margin: 0 0 0 50px;
    }

        .logoContainer img {
            max-width: 160px;
        }

    .loginMenus {
        display: none;
    }

    .homeContent {
        min-height: 50vh;
        display: flex;
        align-items: center;
    }

    .homeCatBtns img {
        max-width: 70px;
        max-height: 45px;
    }

    .homeCatBx h5 {
        color: var(--dark);
        font-size: 1rem;
    }

    .menu-leftCont .socialMedia {
        transform: translate(0) !important;
        margin-top: 1rem;
    }

    .navbar .menu-items ul {
        margin-top: 0;
    }

    .navbar .menu-items .menuCenter li {
        max-width: none;
        font-size: 1.1rem;
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
        padding-bottom: 0;
        margin: 0;
    }

        .navbar .menu-items .menuCenter li a {
            width: 100%;
            display: block;
            padding: .75rem .5rem;
        }

    .searchArea .cameraIcon {
        border-right: 0;
    }

    .mobOnly {
        display: block;
    }

    .mobHidden {
        display: none;
    }

    .menu-leftCont img {
        max-width: 200px;
    }

    .userProfiles p {
        display: none;
    }

    .lensHeading {
        margin-top: 4rem;
    }

    .lensBg:before,
    .lensBg:after {
        display: none;
    }

    .searchArea {
        margin: 2rem auto 4rem;
    }

        .searchArea .input-group-append {
            position: absolute;
            bottom: -70px;
            margin: auto;
            left: 50%;
            transform: translate(-50%);
        }

    .grid-sizer,
    .grid-item {
        width: 100%;
    }

    #buttonGroup {
        display: flex;
        flex-wrap: wrap;
    }

    .filterHead .tabs.is-fullwidth li {
        margin: 7px;
        font-size: .9rem;
    }

        .filterHead .tabs.is-fullwidth li a {
            margin-right: .5rem;
            padding: .35rem .75rem;
        }

    .collectionSearch .form-select {
        display: none;
    }

    .searchSec {
        display: flex;
    }

        .searchSec .btn-filter img {
            width: 30px;
        }

    .collectionSearch .btn {
        min-width: 50px;
    }

    #filterModal .modal-dialog {
        position: fixed;
        top: auto;
        right: auto;
        left: auto;
        bottom: 0;
        width: 100%;
        margin: 0;
    }

    #filterModal .modal-content {
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
        margin: 0;
    }
    /* restaurant page */
    .filter-item li {
        max-width: none;
    }

    .collections-sm li {
        max-width: 50%;
    }

    .drop-down__menu-box {
        left: auto;
        right: 0;
        width: 130px;
    }

    .detailsRight {
        text-align: center;
        margin-top: 1.2rem;
        border-top: solid 1px #e2e2e2;
        padding-top: 2rem;
    }

    .detIconsCont {
        justify-content: center;
    }

    .detBox {
        padding-bottom: 1rem;
        border-bottom: 1px solid #e2e2e2;
        margin-bottom: 1rem;
    }

    .filter-menu li {
        font-size: 1rem;
        margin-top: .5rem;
        margin-right: .5rem;
    }
    /* tag-details page */
    .prodContBox {
        margin-top: 0;
        padding: 1rem 2rem;
    }

    .xzoom-thumbs img {
        max-width: 50px;
    }

    .prodDetBox {
        padding-left: 0;
        border-left: 0;
        margin-top: 2rem;
    }

    #moodBoardTab {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
}

/*Scanning css*/
/* Default jquery-loading styles */

.loading-overlay {
    display: table;
    opacity: 0.7;
}

.loading-overlay-content {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 1.15em;
    font-weight: bold;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.loading-overlay.loading-theme-light {
    background-color: #fff;
    color: #000;
}

.loading-overlay.loading-theme-dark {
    background-color: #000;
    color: #fff;
}

.collectionSearch .form-select{

    max-width: 180px;
}

.capitalize {
    text-transform: capitalize;
}

.popover{
    z-index: 1050;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

.select2-container .select2-selection--single {
    height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-top: 4px;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 5px;
}

.materialBox-sq .colorPallete-sq {
    width: 140px;
    height: 80px;
}

.img-obj {

    min-height: 200px;
}

.collectionSingle.city{
    /*min-height: 320px;*/
}

#top-cities-panel .slick-slide img {
    min-height: 250px;
}



#top-cities-panel .slick-slide .collectionSingle.city {
    height: 250px;
}

.buttons button {
    border-radius: 50%;
    border: none;
    /*padding: 0px 8px 5px 8px;*/
    
}

    .buttons button:hover {
        background: #ffbb00;
    }

@media only screen and (max-width:767px) {
    .collectionSearch {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
        border-radius: 1.2rem;
    }

    .collectionSearch > * {
        width: 98% !important;
    }
    .collectionSearch .btn {
        border-radius: 1.2rem !important;
    }
}