/* font  */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: 'Rubik', sans-serif;  */

:root {
    --primary-color: #008dd4;
    --white: #fff;
    --black: #000;
    --light-pink: #fdcbe3;
    --major-blue: #05264E;
}

::selection {
    background-color: var(--primary-color);
    color: #fff;
}

/* html,
body {
    overflow-x: hidden !important;
} */

body {
    overflow-x: hidden !important;
}

.color-white {
    color: var(--white);
}



ul {
    list-style-type: none;
    margin-bottom: 0px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
}

.top-header {
    background-color: var(--primary-color);
    padding: 8px 0px;
}

.font-xs {
    font-size: 12px !important;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.text-white {
    color: var(--white);
}

.location-container {
    padding-left: 20px;
    background: url('../img/location.svg') left 0px center no-repeat;
}

.c-pointer {
    cursor: pointer;
}

.desktop-header {
    padding: 7px 0px;
    background-color: #fff;
}

.logo {
    width: 200px;
}

.color-headline {
    color: #05264E !important;
}

.desktop-header-left {
    display: flex;
    align-items: center;
}

.header-fixed {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
}

.color-primary {
    color: #EE4799;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        -o-transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
    }

}

.serach input {
    padding: 10px 15px 10px 40px;
    margin: 0px 20px;
    width: 400px;
    outline: none;
    background: url('../img/search.svg') no-repeat left 10px center;
    border: 1px solid #E0E6F7;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.serach input::placeholder {
    color: #A0ABB8;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.serach input:focus {
    transition: all 0.5s ease;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
}

.menu ul {
    list-style-type: none !important;
    display: flex;
    margin-bottom: 0px !important;
    align-items: center;
    line-height: 50px;
}

.menu ul li:first-child {
    margin-left: 0px;
}

.menu li {
    margin-right: 40px;
    cursor: pointer;
}

.menu ul a {
    text-decoration: none;
    color: #05264E;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.menu ul li::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -8px;
    right: 0;
    height: 1.3px;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.menu ul li:hover>a {
    color: var(--primary-color);
}

.menu ul li a:hover::before {
    opacity: 1;
    visibility: visible;
}

.menu ul li a.submenu-icon::after {
    position: absolute;
    content: '';
    right: -58px;
    top: 7px;
    background: url('../img/arrow-down.svg') no-repeat;
    width: 50px;
    height: 50px;
}

.menu ul li a:hover::after {
    background: url('../img/arrow-down-pink .svg') no-repeat;
}

.user-log ul li img {
    width: 1.5rem;
    height: 1.5rem;
}

.desktop-header-right {
    display: flex;
    justify-content: space-between;
    line-height: 46px;
}

.icon-has-notification a {
    position: relative;
}

.icon-has-notification a span {
    position: absolute;
    height: 15px;
    width: 15px;
    text-align: center;
    line-height: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 10px;
    color: #fff;
    background-color: #41B8ED;
    top: -5px;
    right: -5px;
}

.mob-humburger {
    cursor: pointer;
    float: right;
    z-index: 1050;
    position: relative;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    top: 10px;
}

.mob-humburger.menu-active {
    top: -25px;
}

.mob-humburger.menu-active .line-one {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.mob-humburger.menu-active .line-two {
    display: none;
}

.mob-humburger.menu-active .line-three {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    margin-top: 0;
}

.mob-humburger .humMenu {
    width: 24px;
    height: 2px;
    background-color: #05264E;
    display: block;
    margin-top: 6px;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.mob-humburger .humMenu:last-child {
    margin-bottom: 6px;
}

.mob-humburger .line-two {
    width: 20px;
    margin-left: auto;
}

.mega-menu-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    width: calc(100% - 50px);
    background-color: #fff;
    border: 1px solid #E0E6F7;
    border-radius: 6px;
    margin: auto;
    padding: 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    z-index: 999;
}

.mega-c-title {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 15px;
    margin-bottom: 20px;
}

.mega-menu-dropdown ul li {
    line-height: 36px;
}

.menu .menu-has-child:hover>.mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
}

.owl-carousel {
    display: block !important;
}

.user-li {
    position: relative;
}

.user-drop-down {
    position: absolute;
    z-index: 999;
    right: 0;
    padding-left: 0px;
    background: #fff;
    padding: 20px 35px;
    border-radius: 6px;
    border: 1px solid #E0E6F7;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    width: 165px;
}

.user-drop-down li {
    line-height: 34px;
}

.user-drop-down li a {
    text-decoration: none;
    color: #05264E;
    font-size: 15px;
}

.user-drop-down li a:hover {
    color: var(--primary-color);
}

.user-li:hover .user-drop-down {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    /*display: none;
    */
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 90%;
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.09);
    z-index: 999;
    padding: 50px 30px;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.mobile-menu.menu-show {
    right: 0;
}

.mobile-menus li {
    padding: 10px 0px;
}

.mobile-menus li a {
    text-decoration: none;
    color: #05264E;
}

.mob-submenu {
    margin-top: 10px;
    display: none;
}

.sec-pad {
    padding: 60px 0px;
}

.sec-title {
    font-size: 30px;
    color: #05264E;
}

.sec-sub-title {
    color: #66789C;
    font-size: 15px;
}

.mt-70 {
    margin-top: 50px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.br-15 {
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important;
    -o-border-radius: 15px !important;
}

.deal-text-container {
    max-width: 86%;
    margin: 0px auto;
}

.deal-content {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    top: -50px;
}

.deal-content .card-title {
    color: #05264E;
    font-size: 16px;
}

.color-mute {
    color: #A0ABB8;
}

.price-new {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.price-old {
    font-size: 14px;
    font-weight: 500;
    color: #A0ABB8;
    margin-left: 8px;
    text-decoration: line-through;
}

.btn-cart {
    text-decoration: none;
    padding: 6px 10px 6px 35px;
    background-color: rgba(238, 71, 153, 0.1);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    color: var(--primary-color);
}

.btn-cart:hover {
    color: #EE4799;
}

.bg-cart {
    background: rgba(238, 71, 153, 0.1) url('../img/shopping-cart-icon.svg') no-repeat left 10px center;
}

.mb-20 {
    margin-bottom: 24px;
}

.mb-lg-20 {
    margin-bottom: 20px;
}

.deal-of-day-card {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.deal-text-container {
    position: relative;
}

.deal-count-down {
    position: absolute;
    bottom: 235px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.countdown-section {
    padding: 17px 5px 30px 5px;
    background: #ffffff;
    border-radius: 6px;
    height: 75px;
    width: 75px;
    display: inline-block;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    /* margin-right: 10px; */
}

.countdown-time {
    letter-spacing: 2px;
}

.countdown-text {
    position: absolute;
    top: 40px;
    width: 100%;
    left: 0;
    text-align: center;
}

.color-mute {
    color: #66789C;
}

.deal-of-day-card:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.first-sec {
    padding: 60px 0px 0px 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-60 {
    padding-bottom: 60px;
}

.star {
    width: 12px !important;
}

.mt-c-0 {
    top: 0px !important;
    border: 1px solid #E0E6F7;
}

.max-96 {
    max-width: 96% !important;
}

.br-10 {
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}

.side-img-banner {
    background: url('../img/side-banner.jpg') no-repeat bottom right;
    height: 455px;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.side-img-banner::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

.side-baner-text {
    padding: 0px 50px;
    position: absolute;
    top: 50px;
}

.font-30 {
    font-size: 30px !important;
}

.mb-100 {
    margin-bottom: 100px;
}

.btn-shop {
    padding: 9px 20px;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 15px;
}

.sec-20 {
    margin-top: 20px;
}

.h-up {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.h-up:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.font-500 {
    font-weight: 500;
}

.font-400 {
    font-weight: 400;
}

.font-17 {
    font-size: 17px;
}

.paralax {
    background: url('../img/events/paralax-bg.png');
    margin-bottom: 60px;
    padding: 90px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.paralax-text {
    width: 50%;
}

.title-color {
    color: #05264E;
}

.about-us-img-section {
    position: relative;
    margin-bottom: 30px;
}

.about-top-img {
    position: absolute;
    top: -32px;
    right: 54px;
    width: 32%;
}

.about-btm-img {
    position: absolute;
    bottom: -48px;
    left: 14px;
    width: 22%;
    object-fit: cover;
}

.cta-about {
    margin-top: 38px;
}

.insta img {
    margin-right: 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

.footer-link .footer-link-title {
    color: #05264E;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-link a {
    text-decoration: none;
    color: #66789C;
    font-size: 15px;
    margin-bottom: 6px;
    display: inline-block;
}

.bottom-footer {
    padding: 30px 0px;
    border-top: 1px solid #E0E6F7;
    margin-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.copyright {
    color: #4F5E64;
}

.love {
    vertical-align: sub;
    color: red;
}

.quack {
    color: var(--primary-color);
    text-decoration: none;
}

.f-card {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border: 1px solid #E0E6F7;
    padding: 12px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
}

.f-card-text-section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 13px;
    margin: 0px 13px;
    padding: 0px 12px;
    z-index: 3;
}

.f-card-text-section::before {
    position: absolute;
    content: '';
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 70%);
    top: -115px;
    z-index: -1;
}

.f-card-text-section h5 {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.f-card-img-section img {
    height: 273px;
    min-height: 100%;
    object-fit: cover;
}

.small-banner img {
    max-height: 268px;
}

.star-section img {
    width: 12px !important;
}

.deal-of-day-card.month .deal-img img {
    height: 240px !important;
    object-fit: cover;
}

.new-product .deal-img img,
.trend-product .deal-img img {
    height: 271px;
    min-height: 100%;
    object-fit: cover;
}

.gray-bg {
    background: #f1f6f6;
}

.product-top-section {
    padding: 21px 0px 22px;
}

.product-inner-list li {
    margin-right: 24px;
    font-size: 15px;
    position: relative;
}

.product-inner-list li::before {
    position: absolute;
    content: '';
    right: -18px;
    top: 10px;
    height: 2px;
    width: 12px;
    background-color: #aaa;
    transform: rotate(-67deg);
}

.product-inner-list li:last-child:before {
    display: none;
}

.main-product-img img {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.slide-product-imgs {}

.slide-product-imgs img {
    max-width: 93px;
}

.product-dec-slider .product-dec-icon {
    color: #a4a4a4;
    display: inline-block;
    font-size: 25px;
    left: 10px;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 99;
}

.product-dec-slider img {
    padding: 20px 0px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    cursor: pointer;
}

.product-information {
    padding: 30px;
}

.review {
    margin-left: 80px;
}

.review li {
    font-size: 15px;
    color: #66789C;
}

.product-review-count .star img {
    margin-left: 2px;
}

.product-inner {
    padding: 30px 0px;
}

.product-inner .price-new {
    font-size: 25px !important;
}

.product-inner .price-old {
    font-size: 15px !important;
}

.color-green {
    color: #388e3c;
}

.product-include ul li {
    color: #66789C;
    font-size: 15px;
    padding: 6px 0px;
}

.product-btn {
    text-decoration: none;
    padding: 14px 90px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.product-btn-cart {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.product-btn-cart:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-section {
    padding-top: 46px;
}

.buy-btn-cart {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.buy-btn-cart:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.product-description .nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.product-description .nav-tabs .nav-item .nav-link {
    padding-bottom: 14px;
    padding-right: 30px;
    color: #66789C;
    font-size: 18px;
}

.product-description .nav-tabs .nav-item .nav-link:hover {
    border: none !important;
    outline: none;
}

.tab-inner {
    padding: 50px 0px 20px 0px;
}

.ln-30 {
    line-height: 30px !important;
}

.tag ul {
    padding: 0px 6px;
    color: #66789C;
    font-size: 15px;
}

.product-cart-list {
    margin: 30px 0px;
}

.single-product-cart .product-cart-imgs .product-cart-img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 75px;
}

.font-18 {
    font-size: 18px !important;
}

.single-product-cart {
    display: flex;
}

.product-cart-price {
    margin-left: 20px;
    margin-top: 10px;
}

.font-400 {
    font-weight: 400;
}

.product-cart-delete a {
    text-decoration: none;
    color: #333;
    float: right;
    line-height: 28px;
}

.product-cart-delete {
    display: flex;
    flex-grow: 51;
    justify-content: flex-end;
    padding-right: 14px;
}

.single-product-cart {
    margin-bottom: 20px;
}

/* .cart-btn-section {
    position: absolute;
    width: 100%;
    bottom: 40px;
} */

.sub-total {
    display: flex;
    justify-content: space-between;
    padding: 0px 15px;
}

.cart-card {
    padding: 20px;
    background: #fff;
    border: 1px solid #E0E6F7;
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 20px;
}

.cart-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-add-btn {
    text-decoration: none;
    padding: 9px 15px;
    border: 1px solid #E0E6F7;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 14px;
}

.cart-product-img img {
    max-width: 160px;
    /* border: 1px solid #E0E6F7; */
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.cart-banner-price-info {
    padding-left: 25px;
}

.cp-cart-title {
    font-size: 16px;
    color: #05264E;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 8px;
    display: inline-block;
}

.inc-span {
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background-color: #f0f0f0;
    color: var(--primary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

.inc-input {
    text-align: center;
    border: 1px solid #E0E6F7;
    outline: none;
    width: 60px;
    font-size: 14px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.delete-cart {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #d93025;
    cursor: pointer;
}

.cart-right {
    border-bottom: 1px solid #E0E6F7;
}

.card-price-details-div {
    padding-bottom: 10px;
    border-bottom: 2px dotted #E0E6F7;
}

.sticky {
    position: sticky;
    top: 100px;
}

.addonlist li {
    margin-right: 10px;
    color: #66789C;
}

.c-pointer {
    cursor: pointer;
}

.checked svg {
    color: #4dc247;
}

.unchecked svg {
    color: rgb(239, 79, 95);
}

.add-on-modal .modal-dialog .modal-content {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.modal-btn-close {
    color: #000000 !important;
    outline: none;
    border: none;
    background: transparent;
    text-align: right;
    margin: 0px 0px 0px auto;
    font-size: 1.3rem;
    opacity: 0.6;
}

.add-on-modal .modal-body {
    max-height: 400px;
    overflow: scroll;
}

.addon-modal-img img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

/* checkbox  */
.onoffswitch {
    position: relative;
    width: 56px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 22px;
    padding: 0;
    line-height: 22px;
    font-size: 12px;
    color: black;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "ON";
    padding-left: 6px;
    background-color: #41B8ED;
    color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 6px;
    background-color: #E85764;
    color: #FFFFFF;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #FFFFFF;
    position: absolute;

    top: 2px;
    bottom: 0;
    right: 30px;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.addon-nest .product-cart-imgs img {
    width: 40px !important;
}

.product-cart-list {
    max-height: 300px;
    overflow: scroll;
}

.product-slide-nav {
    padding: 0px 22px;
    margin-top: 20px;
}

.product-slide-nav img {
    height: 90px;
    width: 90px;
}

.br-6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.product-dec-slider .product-dec-icon.product-dec-next {
    left: auto;
    right: 10px;
}

.product-dec-slider .product-dec-icon {
    color: #a4a4a4;
    display: inline-block;
    font-size: 25px;
    left: 10px;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 99;
}

.slick-prev,
.slick-next {
    display: none !important;
}

.br-20 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.pin-input {
    border: none;
    outline: none;
    border-bottom: 1px solid #E0E6F7;
    max-width: 100%;
    width: 100%;
    padding: 8px 20px 8px 10px;
}

.pin-input::placeholder {
    font-size: 15px;
    color: #A0ABB8;
}

.submit-btn {
    padding: 4px 15px;
    position: absolute;
    right: 20px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.color-black {
    color: #000;
}

.color-21 {
    color: #212121;
}

.bt-1 {
    border-top: 1px solid #E0E6F7;
}

.buy-checkout {
    padding: 13px 60px;
}

.clo-pink {
    color: var(--primary-color);
    font-size: 17px;
}

.log-hide-sec {
    display: none;
}

.acctive-before {
    position: relative;
    z-index: 3;
}

.acctive-before::before {
    position: absolute;
    content: '';
    left: -20px;
    right: -20px;
    background: var(--primary-color);
    top: -20px;
    bottom: -19px;
    z-index: -1;
}

.acctive-before .checked,
.acctive-before .buy-mob-info {
    display: none;
}

.acctive-before .buy-info-headline {
    color: #ffffff;
    font-size: 17px;
}

.color-a {
    color: #0d6efd;
}

/* floating input  */
.inputBox {
    position: relative;
}

.inputBox input,
.inputBox textarea {
    display: block;
    outline: none;
}

.inputBox span {
    position: absolute;
    top: 16px;
    left: 10px;
    color: #A0ABB8;
    font-size: 14px;
    pointer-events: none;
    transition: top 0.5s;
    -webkit-transition: top 0.5s;
    -moz-transition: top 0.5s;
    -ms-transition: top 0.5s;
    -o-transition: top 0.5s;
}

.inputBox input:focus~span,
.inputBox input:not(:placeholder-shown)~span,
.inputBox textarea:focus~span,
.inputBox textarea:not(:placeholder-shown)~span {
    top: -13px;
    padding: 4px;
    background-color: #fff;
    font-size: 12px;
}

.epic-input {
    height: 53px;
    line-height: 53px;
    font-size: 14px;
    background: #fff;
    border: 1px solid #E0E6F6;
    height: 53px;
    box-shadow: none;
    padding-left: 20px;
    width: 100%;
    padding: 11px 15px 13px 15px;
    color: #333;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.min-h-100 {
    min-height: 100px;
    height: 100%;
}

.inputBox textarea {
    resize: none;
}

.address-form,
.buy-del-hide-sec,
.del-show {
    display: none;
}

.del-show {
    color: #ffffff;
    font-size: 17px;
}

.acctive-before .del-after-hide {
    display: none;
}

.acctive-before {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.acctive-before .del-show {
    display: block;
}

.log-hide-sec {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.acctive-before~#buyAddressHideSection,
.acctive-before~#buyDelAddressHide {
    display: block !important;
}

.order-summery,
.acctive-before #changeOrderSummery {
    display: none !important;
}

.acctive-before~.order-summery {
    display: block !important;
}

.acctive-before .ods-text,
.acctive-before .payment-options-text {
    color: #fff;
    font-size: 17px;
}

.payment-innersection {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E6F7;
}

.payment-action,
.phonepayContinue,
.upiIdContinue {
    display: none;
}

.verify-btn {
    position: absolute;
    top: 15px;
    right: 22px;
    font-size: 15px;
    text-decoration: none;
    color: var(--primary-color);
}

.bb-0 {
    border-bottom: none !important;
}

.payment-method-hide-sec {
    display: none;
}

.acctive-before~.payment-method-hide-sec {
    display: block !important;
}

.bm-1 {
    border-bottom: 1px solid #E0E6F7;
    padding-bottom: 10px;
}

.active-link,
.nav-tabs .active {
    color: var(--primary-color);
}

.status-code {
    height: 10px;
    width: 10px;
    margin-right: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
}

.status-code.success {
    border: 2px solid #26a541;
    background-color: #26a541;
}

.status-code.failed {
    border: 2px solid #ff6161;
    background-color: #ff6161;
}

.notClick {
    pointer-events: none;
    color: #E0E6F7 !important;
}

/* dob  */
.form-control[readonly] {
    background: transparent !important;
}

.flatpickr-months {
    padding: 12px;
    background-color: var(--primary-color);
}

.flatpickr-months,
.flatpickr-prev-month,
.flatpickr-next-month {
    top: 8px !important;
    color: #fff;
}

.flatpickr-current-month {
    color: #fff;
}

.flatpickr-months svg {
    fill: #fff;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: var(--primary-color);
    color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--primary-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: var(--primary-color);
}

.search-result-input {
    height: 42px !important;
    line-height: 28px !important;
}

.filter {
    padding-top: 15px;
    padding-bottom: 18px;
}

.job-check-box {
    padding-left: 35px;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.total-job {
    padding: 4px 5px;
    background: #fed7ea;
    color: var(--primary-color);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    float: right;
    font-size: 12px;
}

.checkmark {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border: 1px solid #B4C0E0;
}

.checkmark::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: var(--primary-color) url('../img/tick.svg');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    height: 21px;
    width: 22px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: none;
}

.job-check-box input:checked~.checkmark::before {
    display: block !important;
}

.job-check-box input[type="checkbox"] {
    appearance: none;
}

.color-text-mute2 {
    color: #66789C;
}

.mt-30 {
    margin-top: 30px;
}

.select-variant input[type="radio"] {
    appearance: none;
    display: none;
}

.varientCard {
    padding: 10px;
    border: 1px solid #E0E6F6;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    cursor: pointer;
}

.varient-card-info img {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    cursor: pointer;

}

.varient-addon-title {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 8px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.add-on-price {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
}

.varient-input:checked~.varientCard {
    background: #fdcbe3;
    border: 1px solid #EE4799;
}

.fixed-on-scroll {
    display: none;
}

.gender-div {
    background: #fff;
    border: 1px solid #E0E6F6;
    height: 53px;
    line-height: 53px;
    box-shadow: none;
    /* padding-left: 20px; */
    font-size: 16px;
    width: 100%;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.gender-div input {
    appearance: none;
}

.gender-div label {
    border-right: 1px solid #E0E6F6;
    cursor: pointer;
}

.gender-div label {
    flex: 1 1 auto;
    text-align: center;
}

.br-4 {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.gender-div input:checked+label {
    color: var(--primary-color);
}

.gender-div input:checked+label {
    background-color: #fdcbe3;
}

.product-time-select .form-control {
    border: none !important;
    font-size: 12px !important;
    width: auto;
}

.product-time-select .form-control:focus {
    box-shadow: none !important;
    cursor: pointer;
}

.product-time-select.active .form-control[readonly] {
    background: var(--light-pink) !important;
    color: var(--primary-color);
}

.ln-20 {
    line-height: 20px !important;
    padding-top: 8px !important;
}

#selectTimeSection,
#selectTime,
#midnightTime,
#selectDeliveryType,
#selectDateSection,
.msg-on-cake,
.add-on-product-inc {
    display: none;
}

.color-main {
    color: #05264E;
}

.thum-img .active {
    border: 2px solid var(--primary-color);
}

.nav-item:focus-visible,
.nav-item:focus-visible:hover {
    border: none;
    outline: none;
    padding: none;
}

.wish-list span {
    position: absolute;
    top: 5%;
    right: 5%;
    height: 36px;
    width: 36px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    color: #a5a7ab;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.about-hide-section {
    display: none;
}

.btn-read-more {
    color: var(--primary-color);
}

.about-the-experience.active .about-hide-section {
    transition: all .5s ease-in-out;
    display: block !important;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.w-300 {
    width: 240px !important;
}

.scs-slider-viewport .scs-slider-box,
.scs-slider-box figure,
.scs-slider-box figure img {
    height: 100% !important;
    width: 100% !important;
}

.my-20 {
    margin: 20px 0px;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.font-500 {
    font-weight: 500;
}

.bg-img-gray {
    background: url('../img/bg-img-gray.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-light-fade {
    background: #f8f9fa !important;
}

.about-sm-img {
    position: absolute;
    left: 50px;
    bottom: -47px;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.scs-bg-blue {
    background: var(--primary-color);
}

.counter-section span i {
    font-size: 36px;
    color: #05264E;
    font-weight: 700;
}

.num {
    font-size: 28px;
    color: #05264E;
}

.counter-section {
    padding: 15px;
    background-color: var(--white);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.ev {
    color: #05264E;
}

.counter-pad {
    padding: 32px 0px;
    background: url('../img/counter-banner.png');
    background-repeat: repeat;
    background-position: center center;
}

.wa-chat-box-poweredby {
    display: none !important;
}

/* ev  */
.event-service-card {
    box-shadow: 0 2px 8px #00000026;
    border-radius: .5rem;
    transition: box-shadow .2s;
    cursor: pointer;
    background: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.top-br {
    border-radius: 20px 20px 0px 0px;
    -webkit-border-radius: 20px 20px 0px 0px;
    -moz-border-radius: 20px 20px 0px 0px;
    -ms-border-radius: 20px 20px 0px 0px;
    -o-border-radius: 20px 20px 0px 0px;
}

.event-text {
    padding: 30px 20px !important;
}

.event-title {
    color: #05264E;
    font-size: 18px;
}

.rq-price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .69rem 1rem;
    font-weight: 600;
    width: 100%;
    border-radius: .5rem;
    background-color: transparent;
    border: 1px solid transparent;
    margin-top: 16px;
    color: #389e56;
    border-color: #389e56;
    background-color: transparent;
    transition: all .15s;
    cursor: pointer;
    background-position: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.rq-price-btn:hover {
    color: #fff;
    border-color: #389e56;
    background-color: #389e56;
}

.owl-prev {
    position: absolute;
    top: 50%;
    left: 20px;
    border-radius: 100%;
    z-index: 999;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.owl-next {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 999;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
}

.owl-next span {
    border-radius: 100%;
    font-size: 40px;
    line-height: 40px;
    height: 50px;
    width: 50px;
    display: inline-block;
    text-align: center;
    color: #fff !important;

}

.owl-prev span {
    font-size: 40px;
    line-height: 40px;
    height: 50px;
    width: 50px;
    display: inline-block;
    text-align: center;
    color: #fff;
}

.owl-dots {
    position: absolute;
    left: 47%;
    bottom: 4px;
    transform: translate(-50%, 0%);
    z-index: 99999 !important;
}

.owl-dot span {
    height: 4px;
    width: 20px;
    background: #ccc;
    border-radius: 2.5px;
    display: inline-block;
    margin: 0px 3px;

}

.owl-dots .owl-dot.active span {
    background: #389e56;
}

.owl-nav {
    display: none;
    transition: display .3s ease-in-out;
    -webkit-transition: display .3s ease-in-out;
    -moz-transition: display .3s ease-in-out;
    -ms-transition: display .3s ease-in-out;
    -o-transition: display .3s ease-in-out;
}

.event-img-slide-section:hover .owl-nav {
    display: block !important;
}

/* ev end  */

/* gallery start  */
.florya-masonry-wrapper {
    /* width: 100%; */
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}

.scs-decor-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px !important;
}

/* ======= Gallery style ======= */
.gallery-item {
    position: relative;
    padding-top: 20px;
}

.gallery-box {
    overflow: hidden;
    position: relative;
}

.gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-box .gallery-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.gallery-box .gallery-img>img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
}

.gallery-box .gallery-detail {
    opacity: 0;
    color: #FFF;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.gallery-box .gallery-detail h4 {
    font-size: 18px;
}

.gallery-box .gallery-detail p {
    color: Rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.gallery-box .gallery-detail i {
    color: #000;
    padding: 8px;
}

.gallery-box .gallery-detail i:hover {
    color: #000;
}

.gallery-box:hover .gallery-detail {
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
}

.gallery-box:hover .gallery-img:after {
    background: rgba(0, 0, 0, 0.2);
}

.gallery-box:hover .gallery-img>img {
    transform: scale(1.05);
}

/* magnific popup custom */
.mfp-figure button {
    border: 0px solid transparent;
}

button.mfp-close,
button.mfp-arrow {
    border: 0px solid transparent;
    background: transparent;
}


/* ======= Isotope/Masonry Gallery style ======= */
.florya-masonry-wrapper {
    /* width: 100%; */
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}

.florya-gallery-items .col-md-6:nth-child(2) {
    margin-top: 0px;
}

.florya-gallery-filter {
    width: 100%;
    padding-bottom: 30px;
    padding-left: 0px;
    position: relative;
}

.florya-gallery-filter li {
    margin-right: 15px;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.florya-gallery-filter li:last-child {
    margin-right: 0;
}

.florya-gallery-filter li.active {
    color: #748173;
    content: "";
    left: 0;
    bottom: -4px;
    border-bottom: 2px solid;
    -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.florya-gallery-filter li:hover {
    color: #748173;
}

.florya-masonry-wrapper .item-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.florya-masonry-wrapper .item-img-link:hover .item-img {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
}

.florya-masonry-wrapper .item-img-link:hover .item-img:after {
    opacity: 0.3;
}

@media only screen and (max-width: 767px) {
    .florya-masonry-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .florya-gallery-items .col-md-6:nth-child(2) {
        margin-top: 0;
    }
}

@media all and (max-width: 575px) {
    .florya-gallery-items .single-item {
        padding-bottom: 30px;
    }

    .florya-gallery-filter li {
        margin-right: 10px;
        font-size: 16px;
    }

    .florya-gallery-filter li:last-child {
        margin-right: 0;
    }

    .florya-gallery-items .single-item {
        padding-bottom: 30px;
    }

}

@media only screen and (max-width: 400px) {
    .florya-masonry-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

/* gellery end  */
.scs-decor-testimonial-card {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    box-shadow: 0 2px 8px #00000026;
    margin-bottom: 30px;
    position: relative;
}

.tc-name {
    font-size: 17px;
    color: #05264E;
    font-weight: 500;
}

.sm {
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 16px;
    color: #6F6B80;
}

/* .scs-decor-testimonial-card::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 33px 0 0 27px;
    border-color: transparent transparent transparent #ffffff;
    top: calc(99% - 1px);
    transform: rotate(90deg);
    z-index: 2;
    border-bottom-right-radius: 4px;
} */
.scs-cta {
    padding: 30px 0px;
    background: url('../img/events/cta-bg.jpg') no-repeat;
}

.scs-cta-text {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.color-blue {
    color: var(--primary-color) !important;
}

.ss-btn-out-line {
    background: transparent !important;
    border: 1px solid var(--white) !important;
    color: var(--white) !important;
}

.scs-menu-has-child {
    position: relative;
}

.scs-mega-menu-container {
    display: none;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.scs-decor-mega-menu {
    position: absolute;
    top: 80%;
    left: 100%;
    display: inline-block !important;
    z-index: 99;
    width: 242px;
    background: #fff;
    border-radius: 12px;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px #00000026;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 4px solid var(--primary-color);
}

.scs-decor-mega-menu li {
    line-height: 40px !important;
}

.scs-menu-has-child:hover .scs-mega-menu-container {
    display: block !important;
}

.b-cum {
    padding: 90px 0px;
    background: url('../img/events/bread-cum.png') no-repeat;
}

.events-slider .owl-dots.disabled,
.events-slider .owl-nav {
    display: block !important;
}

.events-slider {
    margin-bottom: 46px;
}

.scs-planner-title {
    font-size: 38px;
    color: var(--major-blue);
    margin-bottom: 24px;
}

.scs-planner-secction {
    padding-bottom: 24px;
    border-bottom: 0.5px solid #E9E9E9;
    margin-bottom: 24px;
}

.planner-img-container img {
    margin-bottom: 24px;
}

.stiky-container {
    padding: 20px 30px;
    background: #EFF0F6;
    box-shadow: 0 2px 8px #00000026;
    border: 1px solid #E9E9E9;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin-bottom: 30px;
}

.also-provide {
    color: var(--major-blue);
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--major-blue);
}

.we-also-provide-div {
    margin-top: 24px;
    padding: 10px 12px;
    background: var(--white);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin-bottom: 14px;
}

.we-also-provide-div i {
    color: var(--primary-color);
}

.scs-footer {
    position: relative;
}

.scs-footer::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url('../img/events/odisha-art-2.png') no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.late {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 40px;
}

.scs-contact-card {
    padding: 50px 30px;
    background: url('../img/contact.jpg') no-repeat;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    background-size: cover !important;
    margin-bottom: 20px;
}

.scs-contact-card .icon span i {
    height: 60px;
    width: 60px;
    line-height: 60px !important;
    text-align: center;
    background: var(--primary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.before-black {
    position: relative;
    z-index: 2;
}

.before-black::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    border: 0;
    border-radius: 16px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #141414 0%, #656565 100%);
    opacity: 0.68;
    z-index: -1;
    height: 100%;
}

.scs-info {
    margin-top: 24px;
}

.scs-info span {
    font-size: 20px !important;
    color: var(--white);
    display: block;
    font-weight: 600;
}

.before-blue {
    position: relative;
    z-index: 2;
}

.before-blue::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #396d90;
    opacity: 0.8;
    z-index: -1;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.contact-card {
    box-shadow: 0 2px 8px #00000026;
    padding: 50px 24px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.scs-form {
    margin-top: 40px;
}

.scs-form .form-control {
    font-size: 15px !important;
    color: #05264E !important;
    border: 1px solid #DADADA !important;
    outline: none;
    padding: 12px 16px;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
}

.scs-form .form-control:focus {
    outline: none;
    /* box-shadow: none !important; */
}

.form-control::placeholder {
    color: #66789C !important;
}

.outline-none {
    outline: none !important;
    border: none !important;
}

.scs-jhoti {
    position: relative;
    z-index: 99;
}

.scs-jhoti::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: url('../img/events/odisha-art-2023.png') no-repeat;
    background-size: cover;
    z-index: -1;
}

.redbug {
    /* padding: 90px 0px; */
    background: var(--primary-color);
}

/* .cruve-before::before {
	position: absolute;
	content: '';
	top: 0;
	right: -27%;
	bottom: 0;
	background: url('../img/redbug/cbimage.svg') no-repeat;
	z-index: 9;
	width: 200px;
} */

.book-now-card {
    padding: 24px;
    border: 1px solid #eaf1f5;
    border-radius: 20px 4px;
    box-shadow: 0 4px 10px 0 rgba(0, 77, 255, .04);
    cursor: pointer;
    position: relative;
    background: #fff;
}

.book-now-title {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDEBFB;
    text-transform: capitalize;
    color: #05264E;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.star {
    color: red;
}

/* checkbox  */

.check-form-group {
    display: block;
    margin-bottom: 15px;
}

.check-form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    cursor: pointer;
    opacity: 0;
}

.check-form-group label {
    position: relative;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
}

.check-form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #0079bf;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 12px;
}

.check-form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-form-group input:checked+label {
    color: #0079bf;
    font-weight: 500;
}

.othExform {
    display: none;
}

.flatpickr-months {
    padding: 12px;
    background-color: var(--primary-color);
}

.flatpickr-months,
.flatpickr-prev-month,
.flatpickr-next-month {
    top: 8px !important;
    color: #fff;
}

.flatpickr-current-month {
    color: #fff;
}

.flatpickr-months svg {
    fill: #fff;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: var(--primary-color);
    color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--primary-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.form-check-input {
    margin-right: 14px !important;
}

.form-check-input:checked+label {
    color: #0079bf !important;
    font-weight: 500;
}

.stiky-container {
    position: sticky;
    top: 100px;
}

.scs-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
}

.scs-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.scs-btn-outline-two:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;

}

.scs-abg-bg {
    position: relative;
}

.scs-abg-bg::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url('../img/events/footer-bgs.jpg') repeat;
    opacity: 0.3;
}

.z-9 {
    z-index: 99;
    position: relative;
}
.form-group input:focus, .form-group input:active, .form-group textarea:active, .form-group textarea:focus{
    border:1px solid var(--primary-color) !important;
    box-shadow: 0 2px 16px  #c1eafe !important;
}
.journyStart {
	position: absolute;
	left: 0;
	top: 63%;
	width: 226px;
	border-radius: 16px;
}