@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
:root {
    --theme-color: #333038;
    --theme-bg: #f5e0c4;
    --hover-color: #eaa653;
    --black-color: #000;
    --red-color: #e13223;
    --blue-color: #5a31f4;
    --font-bootstrap-icon: 'bootstrap-icons';
    --white-color: #fff;
    --light-green: #667e65;
    --gray-color: #f5f8f8;
}

body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Alata', sans-serif;
    font-weight: 400;
    color: var(--theme-color);
}

.ShowOverlayDesk {
    position: relative;
    width: 100%;
    height: 100vh;
}

.ShowOverlayDesk::before {
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9;
    transition: all 0.8s;
    animation: fadeIn 0.8s;
    -webkit-animation: fadeIn 0.8s;
    -moz-animation: fadeIn 0.8s;
    -o-animation: fadeIn 0.8s;
    -ms-animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a,
button,
.btn {
    transition: all 0.8s;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

input,
input:focus,
input:active,
select:focus,
select:active,
option:focus,
option:active,
textarea:focus,
textarea:active,
button:focus,
button:active,
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active,
.form-control:focus,
.form-control:active {
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    margin: 0px;
    padding: 0px;
}

h1,
.h1 {
    font-size: 42px;
    line-height: 50px;
}

h2,
.h2 {
    font-size: 36px;
    line-height: 44px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 32px;
}

h5,
.h5 {
    font-size: 18px;
    line-height: 26px;
}

a,
a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    color: var(--hover-color);
}

img {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    max-width: 100%;
}

p a {
    color: var(--hover-color);
}
p a:hover {
    color: var(--theme-color);
}
a:hover{
    color: var(--theme-color);
}

p {
    line-height: 26px;
    margin-bottom: 15px;
}

p strong {
    font-family: var(--font-medium);
}

ol li {
    list-style-type: decimal;
    padding-bottom: 10px;
}

header .main-nav-top.fixedheader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    padding: 8px 0;
    animation: slide-down 0.7s;
    -moz-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
    -o-animation: slide-down 0.7s;
    -ms-animation: slide-down 0.7s;
    border-radius: 0;
    z-index: 3;
}

.

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.navbar-brand {
    font-size: 22px;
    font-weight: 900;
    color: var(--orange-color);
}

header .main-nav-top.fixedheader .navbar-brand {
    max-width: 125px;
}

.main-nav-top.fixedheader .navbar {
    max-width: 1240px;
    margin: 0 auto;
}

.navbar-brand {
    position: relative;
    display: inline-block;
    height: 100%;
}

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    right: 10px;
    bottom: 10px;
    overflow: hidden;
    padding: 12px;
}

.scroll-top-wrapper .scroll-top-inner {
    color: var(--theme-color);
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 44px;
    border: 1px solid var(--theme-color);
    border-radius: 55px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.scroll-top-wrapper .scroll-top-inner i {
    font-size: 26px;
}

.scroll-top-wrapper:hover .scroll-top-inner {
    background: var(--theme-color);
    color: #fff;
    border: none;
    border: 1px solid #fff
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

::-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

.section-title .h1 {
    display: block;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: var(--font-medium);
    position: relative;
}

.section-title.btm-line .h1:before {
    width: 60%;
    height: 0px;
    border-bottom: 5px dotted var(--theme-background);
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    right: 0;
    margin: auto;
}

.section-title .subhdng {
    display: block;
    font-size: 22px;
    text-transform: capitalize;
    color: #747474;
    margin-bottom: 5px;
    font-family: var(--font-medium);
}

.section-title.white-text .h1,
.section-title.white-text .subhdng {
    color: #fff;
}

.section-title.white-text .h1:before {
    border-color: #fff;
}

.section-title.text-center .h1 {
    display: table;
    margin: 0 auto;
}

.over-visible {
    overflow: visible;
}

section{
    float: left;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}
footer {
    float: left;
    width: 100%;
    padding: 40px 0 20px;
    overflow: hidden;
}

.btn-primary {
    background: var(--hover-color);
    border-radius: 0px;
    color: var(--white-color);
    border: 3px solid var(--white-color);
    padding: 14px 50px;
    transition: all 0.8s;
    font-size: 18px;
}

.btn-primary:focus,
.btn-primary:hover {
    background: var(--theme-color);
    color: var(--white-color);
    border: 3px solid var(--white-color);
}

.btn-secondry {
    background: var(--blue-color);   
    color: var(--white-color);
    border: 1px solid var(--blue-color);
    padding: 14px 50px;
    transition: all 0.8s;
}

.btn-secondry:focus,
.btn-secondry:hover {
    background: var(--theme-color);
    color: var(--white-color);
    border: 1px solid var(--white-color) !important;
}
.main-nav{
    background: var(--theme-bg);
    padding-top: 15px;
}
.HeaderNav {
    padding: 10px 0px;
    border-radius: 0 0 10px 10px;
}

header {
    position: relative;
}

header .fixedheader {
    position: fixed;
    width: 100%;
    background: var(--white-color);
    z-index: 9;
    left: 0;
    top: 0;
    box-shadow: 0 0 10px rgb(236, 236, 236);
    animation: slide-down 0.5s;
}
.main-nav .container {
    position: relative;
}
.HeaderTop a {
    color: var(--hover-color);
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 20px;
}
.HeaderTop a span {
    background: #de8c73;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: var(--white-color);
    display: inline-block;
    font-size: 13px;
    text-align: center;
    position: relative;
    top: -10px;
    left: -9px;
  }
.HeaderTop a:hover {
    color: var(--theme-color);
    
}
.HeaderTop a .bi{
    font-size: 30px;
    position: relative;
    top: 6px;
}
.main-nav .navbar .menu-item a {
    padding: 10px 10px;
    display: block;
    margin-left: 2px;
    color: var(--theme-color);
    border-radius: 5px;
    font-weight: 400;
    font-size: 18px;
}
.main-nav .navbar-nav{
    width: 100%;
    display: flex;
    justify-content: center;
}
.main-nav .navbar .menu-item a:focus,
.main-nav .navbar .menu-item a:hover,
.main-nav .navbar .menu-item.current-menu-item  a{
    background: var(--hover-color);
    color: var(--white-color);
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 0;
    min-width: 200px;
    max-width: 300px;
    border-radius: 5px;
    white-space: nowrap;
    transition: all 0.8s;
    animation: 0.8s slide-up;
    background: var(--white-color);
}

.navbar-expand-lg .navbar-nav .dropdown-menu li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid var(--gray-color);
    background: var(--white-color);
}

#navbarTogglerDemo {
    margin-top: 2px;
    justify-content: end;
}

@keyframes slide-up {
    from {
        margin-top: 10%;
        height: 100%;
    }
    to {
        margin-top: 0%;
        height: 100%;
    }
}

.main-nav .navbar li:hover>a,
.main-nav .navbar li.active>a,
.main-nav .navbar li.current_page_item .nav-link {
    background: var(--theme-light-color);
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child a {
    border-bottom: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:first-child a {
    border-radius: 5px 5px 0 0;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child a {
    border-radius: 0 0 5px 5px;
}

.navbar-nav>.dropdown>a::after {display: inline-block;margin-left: 10px;vertical-align: .255em; content: "";position: relative;top: 2px;
    border: solid var(--theme-color);border-width: 0 1px 1px 0;display: inline-block;padding: 4px;transform: rotate(45deg);
    -webkit-transform: rotate(45deg);}
	
.gtranslate_wrapper{display: flex;align-items: center;justify-content: end;}
.gtranslate_wrapper a[data-gt-lang="de"] {width: 32px;height: 32px;position: relative;top: 2px;}
.gtranslate_wrapper a[data-gt-lang="de"]::after {content: '';background: url(/wp-content/themes/cele/images/flag-32-austi.png) no-repeat center center / 32px auto;width: 32px;height: 24px;position: absolute;left: 0;top: 4px;border-radius: 2px;}
.gtranslate_wrapper a[data-gt-lang="de"] img {display: none;}
	
.main_slider .carousel-arrow {width: 50px;height: 50px;border: 1px solid var(--white-color);border-radius: 10px;opacity: 1;bottom: 70px;
    top: auto;left: 0px;transition: all 0.7s;}
.main_slider .carousel-arrow .bi {font-size: 30px;}
.main_slider .carousel-arrow:hover {box-shadow: 0 0 10px var(--theme-dark-color);color: var(--theme-dark-color); border-color: var(--theme-dark-color);}
.main_slider .carousel-arrow.carousel-control-next {left: 65px}
.main_slider .carousel-item {-webkit-transform-style: preserve-3d;-moz-transform-style: preserve-3d;transform-style: preserve-3d;}
.main_slider .carousel-caption {top: 50%;transform: translateY(-50%);bottom: initial;left: 0;text-align: left;padding: 40px; max-width: 100%;width: 100%;}
#slider {box-shadow: 0 -3px 5px #0000001a;}
#slider .container {position: relative;}
#slider .container .h1 b:last-child {display: block;}
#slider .TxtBox {text-align: center;margin: 0 auto;}
#slider.innerBanner .TxtBox {max-width: 600px;}
#slider .TxtBox .h1 {color: var(--theme-light-color);font-size: 50px;padding: 20px 0 30px;font-weight: 900;letter-spacing: 2px;line-height: 60px;}
#slider .TxtBox h5 {color: var(--white-color);font-size: 26px;border-bottom: 2px dashed var(--white-color);display: inline-block;
    padding-bottom: 5px;margin-bottom: 10px;}
#slider .TxtBox h6 {color: var(--white-color);font-size: 18px;margin-bottom: 20px;}
#slider .TxtBox a {text-transform: uppercase;min-width: 200px;margin: 0 5px;font-size: 22px;}
#slider .carousel-item {position: relative;}
#slider .carousel-item::before {position: absolute;content: '';left: 0;top: 0;width: 100%;height: 100%;background: rgb(0, 26, 87, 0.2);}
.work-bx img{box-shadow: 0 0px 10px var(--hover-color);padding: 20px;border-radius: 50%;}
  .work-bx:hover img{transform: scale(1.06);box-shadow: 0 0px 10px var(--theme-color);}

/* --------- Bread Shop css ------- */
#BreadshopWrapp{
    background:#e8cab0 url(../images/breadbg.png);
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    text-align: center;
}
#BreadshopWrapp h3{
    text-align: center;
    margin-bottom: 30px;
}
#BreadshopWrapp h3 span{
    display: inline-block;
    padding: 10px 50px;
    font-size: 35px;
    border-bottom: 2px solid var(--theme-color);
}
.ShopTxtBox {
    background: var(--white-color);
    position: relative;
    box-shadow: 0 10px 0px var(--light-green);
    margin: 0 15px 15px 10px;
    padding: 20px;
    border-radius: 5px;
    min-height: 260px;
    background: var(--white-color);
    text-align: center;
}
.ShopTxtBox h4{
    font-size: 25px;
}
.ShopTxtBox h5{
    font-size: 22px;
    padding: 15px 0;
    color: var(--light-green);
}
.ShopTxtBox img {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50%;
    display: inline-block !important;
    margin-bottom: 20px;
    transition: all .8s; 
  }
  .ShopTxtBox:hover img{
    transform: scale(1.06);
  }
  .ShopTxtBox:hover .btn-primary{
    background: var(--theme-color);
    color: var(--white-color);
    border: 2px solid var(--theme-color);
  }
.ShopTxtBox .btn-primary{
    width: 80%;
    text-transform: uppercase;
}


/* #BreadshopWrapp::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(232, 202, 176, 0.2);
  } */
/* --------- About css ------- */

#AboutWrapp {
    position: relative;
}
#AboutWrapp .container{
    position: relative;
}
#AboutWrapp .container::before {
    position: absolute;
    content: '';
    right: 0;
    top: 12%;
    width: 90%;
    height: 80%;
    z-index: 0;
    border: 8px solid #de8c73;
}

#AboutWrapp p {
    font-size: 22px;
    line-height: 30px;
    color: #4a4a49;
}
#AboutWrapp ul{
    margin-top: 30px;
}
#AboutWrapp ul li {
    background: var(--hover-color);
    margin-bottom: 10px;
}
.HmAboutLeft {
    padding-right: 20px;
    position: relative;
}
.HmAboutLeft img{
    border: solid 5px #d3d2d2;
    box-shadow: 0 0 5px #d3d2d2;
}
.AbRight{
    position: relative;
    z-index: 1;
    padding-right: 25px;
}
.AbRight ul li{
    display: flex;
    justify-content: center;
}
.AbRight ul li span{
    display: block;
    font-size: 22px;
    padding: 15px;
    width: calc(100% - 180px);

}
.AbRight ul li a{
    display: block;
    font-size: 22px;
    padding: 15px;
    width: 180px;
    text-align: center;
    background: var(--theme-color);
    color: var(--white-color);

}
.AbRight ul li a:hover{
    background: var(--black-color);
    color: var(--white-color);

}
/*------- Bread & Cake Css -------*/

#BreadsCakes{
    background: var(--theme-bg);
}
.CakeTitle {
    position: relative;
    text-align: center;
    font-size: 35px;
    padding-bottom: 50px;
    margin-bottom: 60px;
}

.CakeTitle::before {
    content: '';
    position: absolute;
    width: 430px;
    height: 5px;
    left: auto;
    bottom: 0;
    border-bottom: 3px solid var(--theme-color);
    margin-left: -50px;
}
.CakeTitle::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 104px;
    left: 50%;
    top: 40px;
    margin-left: -35px;
    background: url(../images/title_icon.png);
}
#BreadsCakes p {
  font-size: 24px;
  width: 80%;
  line-height: 35px;
  margin: 0 auto 35px;
}
.ProImgBox{
    max-height: 430px;
    min-height: 430px;
    overflow: hidden;
    border: 3px solid var(--white-color);
}


/* ------------ Video css ------------ */
.VedioBox {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .VedioBox img {
    box-shadow: 0 0 25px #fbe3c5;
  }
.VedioBox a{
    display: block;
    width: 80px;
    height: 80px;
    background: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--theme-color);
    color: var(--hover-color);
    font-size: 60px;
    line-height: 80px;
    position: absolute;
}
/* ------------ Newsletter ------------ */
#NewsletterWrapp {
    background: #eaa653 url(../images/subsBg.png);
      background-repeat: repeat;
      background-size: auto;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    text-align: center;
  }
  
#NewsletterWrapp h3{
    text-align: center;
    margin-bottom: 30px;
}
#NewsletterWrapp h3 span{
    display: inline-block;
    padding: 10px 50px;
    font-size: 35px;
    color: var(--white-color);
    border-bottom: 2px solid var(--white-color);
}
#NewsletterWrapp p{
    color: var(--white-color);
    font-size: 24px;
}
.subscribBox{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.subscribBox input{
    width: calc(100% - 200px);
    background: var(--white-color);
    height: 70px;
    line-height: 70px;
    border-radius: 40px;
    padding: 10px 20px;
    border: none;
    box-shadow: 0 0 10px #aeaeae;
}
.subscribBox .subBtn{
    width:200px;
    background: #de8c73;
    color: var(--white-color);
    height: 70px;
    line-height: 70px;
    border-radius: 40px;
    padding: 0px 20px;
    border: none;
    position: relative;
    left: -50px;
    box-shadow: 5px 0 10px #aeaeae;
}
/* ------------ About us css ------------ */
.AboutTopBox{
    background: var(--gray-color);
    text-align: center;
}
.InnerTitle{
    text-align: center;
    margin-bottom: 30px;
}
.InnerTitle span{
    display: inline-block;
    padding: 10px 50px;
    font-size: 35px;
    color: var(--theme-color);
    text-transform: uppercase;
    z-index: 0;
    border-bottom: 2px solid var(--theme-color);
}
.AboutTopBox p {
    font-size: 22px;
    line-height: 30px;
    color: #4a4a49;
}
.AboutBottomBox {
    position: relative;
}
.AboutBottomBox .container{
    position: relative;
    z-index: 1;
}
.AboutBottomBox::before {
    position: absolute;
    content: '';
    right: 0;
    top: 12%;
    width: 100%;
    height: 63%;
   background: var(--gray-color);
}
.LayerBox img{
    border: 5px solid #fcfdce;
    box-shadow: 0 0 20px #fcfdce;
}
/* ------------ Login css ------------ */
.LoginWrapper{
    background: var(--gray-color);
    padding: 30px;
    margin: 0 auto;
    width: 80%;
}
.FormBox .form-group{
    display: flex;
    flex-flow: wrap;
    position: relative;
}
.FormBox .form-group label{
    width: 100%;
}
.FormBox .form-group input{
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: var(--white-color);
    color: var(--theme-color);
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 10px 55px 10px 15px;
    margin-top: 8px;
    margin-bottom: 20px;
}
.FormBox span .bi {
    color: var(--hover-color);
    font-size: 25px;
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
.FormBox a {
    color: var(--hover-color);
  }
  /* ------- custome checkbox -------- */
.custCheckbox {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .custCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .custCheckbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    background: var(--white-color);
    border: 1px solid #e1e1e1;
  }

  .custCheckbox input:checked ~ .checkmark {
    background-color: var(--hover-color);
  }
  
  .custCheckbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .custCheckbox input:checked ~ .checkmark:after {
    display: block;
  }
  .custCheckbox .checkmark:after {
    left: 8px;
    top: 1px;
    width: 12px;
    height: 19px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
/* ------------ Bread Shop css ------------ */
.ShopRight{
    background: var(--gray-color);
    padding: 20px;
}
.SeachBox{
    position: relative;
}
.SeachBox input{
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: var(--white-color);
    color: var(--theme-color);
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    padding: 10px 55px 10px 25px;
    margin-top: 8px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px #e1e1e1;
}
.SeachBox button {
    font-size: 25px;
    position: absolute;
    right: 20px;
    top: 17px;
    background: none;
    border: none;
  }
.SeachBox button .bi {
    color: var(--hover-color);
  }
.ShopLeft{
    background: var(--theme-bg);
    padding: 20px 0;
    height: 100%;
}
.ShopLeft h3{
    font-size: 24px;
    padding: 017px 20px;
}
.ShopLeft h4{
    font-size: 24px;
    background: var(--hover-color);
    color: var(--white-color);
    padding: 20px;
    margin: 20px 0;
    position: relative;
}
.ShopLeft h4::before{
    background: var(--hover-color);
    position: absolute;
    height: 2px;
    width: 100%;
    content: '';
    top: -3px;
    left: 0;
}
.ShopLeft ul{
    margin: 0;
    padding: 0;
}
.ShopLeft ul li a{
    margin: 0;
    padding: 10px 20px 10px 30px;
    display: block;
    position: relative;
    color: var(--theme-color);
}
.ShopLeft ul li a:hover,
.ShopLeft ul li.active a{
    color: var(--hover-color);
}
.ShopLeft ul li a::before,
.ShopLeft ul li a::after{
    margin: 0;
    padding: 0;
    position: absolute;
    content: '';
    top: 18px;
}
.ShopLeft ul li a::before{
    width: 10px;
    height: 10px;
    left: 10px;
    border-radius: 50%;
    background: #919191;
}
.ShopLeft ul li a:hover::before,
.ShopLeft ul li.active a::before{
    width: 10px;
    height: 10px;
    left: 10px;
    border-radius: 50%;
    background: var(--hover-color);
}
.ShopLeft ul li a::after{
    width: 0; 
    height: 0; 
    right: 10px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;    
    border-left: 8px solid var(--theme-color);
}
.ShopLeft ul li a:hover::after,
.ShopLeft ul li.active a::after{
    width: 0; 
    height: 0; 
    right: 10px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;    
    border-top: 8px solid var(--hover-color);
}
.ShopRight .ShopTxtBox{
    margin: 0 0 25px 0;
    box-shadow: 0 6px 0px var(--light-green);
}
.ShopRight .ShopTxtBox h4{
    font-size: 16px;
  }
.ShopRight .ShopTxtBox h5 {
    font-size: 15px;
    padding: 10px 0;
  }
  
.ShopRight .ShopTxtBox p {
    font-size: 12px;
    line-height: 20px;
  }
.ShopRight .ShopTxtBox .btn-primary{
    font-size: 12px;
    padding: 10px;
  }
.ShopRight .ShopTxtBox img{
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 10px;
  }

/* ------------ Product details css ------------ */
.RelatedProducts{
    background: var(--gray-color);
    padding: 40px 0;
    margin-top: 50px;
}
.ShopDetailRight h3 {
    font-size: 25px;    
  }
.ShopDetailRight small a {
    color: #627361;
    font-size: 14px;
    text-decoration: underline;   
    display: inline-block;
    top: -17px;
    position: relative;
  }
.ShopDetailRight h5 {
    font-size: 20px;
    padding: 5px 0 20px;
    color: var(--light-green);
    text-decoration: underline;
  }
.ShopDetailRight span {
    font-size: 16px;
    padding: 12px 0 12px 15px;
    color: #627361;
    display: inline-block;
    border: 1px dotted var(--hover-color);
    width: 100%;
    position: absolute;
  }
.ShopDetailRight .btn-primary,
.ShopDetailRight .btn-secondry{
    width: 80%;
}
.ShopDetailRight .btn-secondry {
    font-size: 15px;
    color: var(--white-color);
    border-radius:0 ;
  }
.ShopDetailRight .btn-secondry span{
    font-size: 15px;
    color: var(--blue-color);
    background: var(--white-color);
    padding: 5px 15px;
    border-radius: 5px;

  }
.DetailsTxt{
    margin-top: 30px;
}
#myform {
    padding: 10px;
    border: 1px dotted var(--hover-color);
    margin: 15px 0;
    display: flex;
    align-items: center;
}
.QboX .qty {
    width: 30px;
    height: 25px;
    text-align: center;
    background: none;
    border: none;
}
.QboX input.qtyminus,
.QboX input.qtyplus { 
    width:25px; 
    height:25px;
    background: none;
    border: none;
}
.QboX {
    width: 80%;margin-top: 30px;
    position: relative;
  }
span.san_incl, span.san_incl a{color: #627361;}
span.san_incl a{text-decoration: underline;} 
#myform span{
    width: calc(100% - 40%);
    display: block;
    padding: 0;
}
.InputBox {
    width: 40%;
    text-align: right;
    margin-bottom: 0;
  }
.img-display{
    overflow: hidden;
}
.img-showcase{
    display: flex;
    width: 100%;
    max-height: 550px;
    transition: all 0.5s ease;
    margin-bottom: 10px;
}
.img-showcase img{
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1%;
    border-radius: 15px;
    box-shadow:inset 0 0 10px var(--hover-color);
}
.img-select{
    display: flex;
}
.img-item{
    margin: 0.3rem;
}
.img-select .img-item {
    height: 130px;
    width: 32%;
  }
.img-item img {
    box-shadow: 0 0 10px var(--hover-color);
    height: 130px !important;
    width: 100%;
    object-fit: cover;
  }
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}
.img-item:hover{
    opacity: 0.8;
}
.woocommerce div.product form.cart div.quantity{
    float: none !important;
    display: inline-block;
}
.plus,
.minus {
    border: none;
    background: no-repeat;
    position: relative;
    top: 12px;
  }
  .minus {margin-left: 60%;}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.ppc-button-wrapper {
    width: 80%;
  }
/* Firefox */
.quantity input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
  position: relative;
  top: 13px;
}
.ShopDetailRight h5 span,
.wcsatt-options-wrapper.wcsatt-options-wrapper-grouped.wcsatt-options-wrapper-radio.closed span {
    padding: 0;
    border: none;
    width: auto;
    position: inherit;
  }
  .san_incl {
    border: none !important;
    position: inherit !important;
    padding: 0 !important;
  }
  .single_add_to_cart_button.button.btn.btn-primary.alt.wp-element-button {
    margin-top: 40px;
  }
  .single_add_to_cart_button.button.btn.btn-primary.alt.wp-element-button {
    width: 100%;
  }
  .gpay-card-info-container.black, .gpay-card-info-animation-container.black {
    background-color: var(--blue-color) !important;
  }
  .gpay-card-info-container.black:hover, .gpay-card-info-animation-container.black:hover {
    opacity: .8;
  }
@media screen and (min-width: 992px){
    .card{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
    .card-wrapper{
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .product-content{
        padding-top: 0;
    }
}
/* ------------ Payment css ------------ */
.PaymentWrapper{
    background: var(--gray-color);
    padding: 50px 0;
}
.paymentLeft h5 span{
    display: block;
    float: right;
  }
.paymentLeft input{
    height: 60px;
    line-height: 60px;
    border: 2px solid #e1e1e1;
    margin-bottom: 25px;
}
.paymentLeft select{
    height: 60px;
    border: 2px solid #e1e1e1;
    margin-bottom: 25px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}
.Return{
    background: var(--white-color);
    border-radius: 0px;
    color: var(--hover-color);
    border: 3px solid var(--hover-color);
    padding: 14px 50px;
    transition: all 0.8s;
    font-size: 18px;
}
.Return:hover{
    background: var(--white-color);
    color: var(--theme-color);
    border: 3px solid var(--theme-color);
}
.PaymentRightTop{
    background: var(--theme-bg);    
    margin-top: 40px;
}
.PaymentRightBottom{
    background: var(--white-color);
    padding: 20px 10px;
}
.SelectItems{
    display: flex;
    padding: 20px 10px;
    align-items: center;
}
.SelectItems img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.SelectItems strong{
    font-size: 15px;
    display: inline-block;
    padding: 0 10px;
}
.SelectItems span{
    font-size: 14px;
   text-decoration: underline;
   color: var(--light-green);
}
.CoupanCode input{
    height: 60px;
    line-height: 60px;
    border: 2px solid #e1e1e1;
    width: calc(100% - 85px);
    border-right: 0;
    padding: 10px;
}
.CoupanCode {
    display: flex;
    padding-top: 20px;
}
.CoupanCode .btn-primary {
    padding: 0;
}
.CoupanCode .btn-primary {
    padding: 0 30px;
    position: relative;
    left: -3px;
    height: 67px;
    top: -4px;
}
.CoupanCode ul{
    width: 100%;  
    margin-bottom: 20px;
}
.CoupanCode li{
    border: 1px solid #e1e1e1; 
    width: 100%;  
    padding: 10px;
}
.CoupanCode li strong{
   color: #676363;
   font-size: 16px;
}
.CoupanCode li span{
   float: right;
   text-decoration: underline;
   display: block;
   font-size: 15px;
}
.TotalCast li {
    border: none;
    padding: 0px;
}
.TotalCast li:last-child span{
    float: none;
}

/*----------- Partner --------------*/
.PartnersWrapper{
    padding: 50px 0;
}
.PartnerLogo{
    height: 230px;
    width: 230px;
    overflow: hidden;
    box-shadow: 0 0px 10px var(--hover-color);
    border-radius: 50%;
    margin: 10px;
    transition: all .8s;
}
.PartnerLogo img{
    padding: 20px;
}
.PartnerLogo:hover img{
    margin-top: -180px;
}
.PartnerLogo:hover{
    background: #1d1d1b;
}

/*----------- Gallery --------------*/

.GalleryBoxs,
.GalleryBoxs * {
    box-sizing: border-box;
    margin: 0;
}

.GalleryWrapper {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}


/* .GalleryBoxs {
    display: inline-block;
    font-size: 0;
    width: 100%;
    border-bottom: none;
    background: #fff;
    padding: 0px;
    height: auto;
    background-clip: padding-box;
    position: relative;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
    margin: 0px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--theme-light-color);
} */

.GalleryBoxs>span {
    display: block;
    cursor: pointer;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    transition: all ease-in-out 0.8s 0s;
}

.GalleryBoxs:hover span {
    transform: scale(1.2);
}

.GalleryBoxs .bi {
    color: var(--theme-bg);
    font-size: 35px;
}

.lcl_fade_oc.lcl_pre_show #lcl_overlay,
.lcl_fade_oc.lcl_pre_show #lcl_window,
.lcl_fade_oc.lcl_is_closing #lcl_overlay,
.lcl_fade_oc.lcl_is_closing #lcl_window {
    opacity: 0 !important;
}

.lcl_fade_oc.lcl_is_closing #lcl_overlay {
    -webkit-transition-delay: .15s !important;
    transition-delay: .15s !important;
}

.HoverBox {
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    bottom: 0;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.GalleryBoxs:hover .HoverBox {
    opacity: 1;
}

.HoverBox p {
    color: #fff;
    font-size: 20px;
}

.HoverBox img {
    margin-bottom: 20px;
}

#lcl_overlay {
    background-color: #000 !important;
    opacity: 0.8;
}

.lcl_tn_image.lcl_sel_thumb {
    border: 4px solid var(--theme-dark-color);
}

#lcl_elem_wrap {
    border-radius: 10px;
    background: var(--theme-bg);
}

.img-holder {
    flex-grow: 1;
    margin: .7rem;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 0 10px var(--light-green);
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.8s;
}

.img-holder:hover {
    border: 3px solid var(--red-color);
}

.img-holder img {
    display: block;
    min-width: 100%;
    height: 16rem;
    object-fit: cover;
    transition-duration: 300ms;
    transition: all 0.8s;
}

.img-holder img:hover {
    transform: scale(1.1);
}

.GalleryBox #carousel-thumbs img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.GalleryBox #carousel-thumbs .bi {
    color: var(--red-color);
    font-size: 40px;
}

.GalleryBox .BigPicBox img {
    max-height: 450px;
    object-fit: cover;
}

.GalleryBox .close {
    background: var(--red-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 25px;
    line-height: 35px;
}

.GalleryBox .close span {
    position: relative;
    top: -5px;
}
.GalleryBox .carousel-control-prev,
.GalleryBox .carousel-control-next {
    width: 80px;
  }
.GalleryBox .modal-header{
    padding-top: 5px;
    padding-bottom: 5px;
  }  

/* ------------ Blog css ------------ */
.BlogWrapper .SeachBox{
    width: 50%;
    margin: 0 auto;
}
.BlogListBox {
    box-shadow: inset 0 0px 10px var(--theme-bg);
    border-radius: 10px;
    padding-bottom: 30px;
    overflow: hidden;
}

.BlogListBox:hover .thumsBox img {
    transform: scale(1.1);
}

.TxtTop {
    padding: 10px;
    margin: -50px auto 0;
    position: relative;
    background: var(--white-color);
    width: 90%;
    border-radius: 5px;
}

.TxtTop h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.TxtTop span {
    color: var(--white-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--hover-color);
    border-radius: 50%;
    display: inline-block;
    font-size: 22px;
}

.BlogListBox a {
    color: var(--black-color);
}

.BlogListBox p {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    font-size: 14px;
}

.BlogListBox .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    color: var(--white-color);
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
    background: var(--hover-color);
}

.BlogListBox:hover .btn {
    width: 140px;
}

.BlogListBox .btn:hover {
    background: var(--theme-color);
}

.BlogListBox .bi-plus {
    font-size: 30px;
    position: relative;
    left: -6px;
}

.BlogPagi {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.BlogPagi li a {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--theme-color);
    display: block;
    margin: 0 5px;
}

.BlogPagi li a:hover,
.BlogPagi li.active a {
    background: var(--hover-color);
}



/* ------------ Footer css ------------ */

#footer {
    background: #667e65 url(../images/footerBg.png);
    background-repeat: repeat;
    background-size: auto;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  text-align: center;
  color: var(--white-color);
}

.footer-about a {
   color: var(--white-color);
}
#footer .bi {
   font-size: 60px;
   margin-right: 10px;
}
#footer img {
   margin-left: 10px;
}
.footer-about {
    margin-top: -22px;
  }
.footer-about a{
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.swiper {
  width: 100%;
  height: auto;
  padding-bottom: 15px;
}

.swiper-slide-img {
  height: auto;
  width: 100%;
  border: none; 
  max-height:500px;
}

.swiper-slide-img:hover {
  cursor: pointer;
}

.gallery-thumbs .swiper-slide img:hover, .swiper-slide img:hover  {
    cursor: pointer;
 
}

.swiper-pagination {
  background-color: #d8d8d8;
  padding: 10px;
}

.swiper-button-prev {
  position: absolute;
  transform: translateX(-40%);
  color: black;
}

.swiper-button-prev:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.swiper-button-next {
  position: absolute;
  transform: translateX(40%);
  color: black;
  font-weight: 900;
}

.swiper-button-next:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.swiper-pagination {
  background: linear-gradient(to bottom right, #c2c2f0, #8585e0);
  border-radius: 10px;
}

/*active pagination*/
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(255, 255, 255);
}

/*other pagination*/
.swiper-pagination .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
}

.swiper-pagination .swiper-pagination-bullet:hover {
  transform: scale(1.2);
  transition: all 0.5s;
}

.swiper-pagination .swiper-pagination-bullet:focus {
    outline: none;
    background-color: rgb(255, 255, 255);
    -webkit-tap-highlight-color: rgb(248, 248, 248);
}

.minimum-height { 
    min-height: 257px;

    @include small-screen {
        min-height: calc((0.3002 * 100vw) + 21.49px);
    }
}

/* ................................................ thumbs .......................................................... */

.gallery-thumbs {
    padding: 0;
    margin-top: 10px;
    margin-bottom: 0;
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    opacity: 0.8    ;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
  
.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 70px;
    min-height: 40px;
    object-fit: cover;
}


/* ............................................. responsiveness ....................................................... */
@media all and (max-width: 520px) {
  .swiper {
    width: calc(100vw - 20px);
  }

  .swiper-button-next:after {
    font-size: 20px !important;
    transform:translateX(60%);
  }
  
  

  .swiper-button-prev:after {
    font-size: 20px !important;
    transform:translateX(-60%);
  }

  #swiper-button-next-modal {
    font-size: 20px !important;
    transform:translateX(20%);
  }
  
  #swiper-button-prev-modal {
    font-size: 20px !important;
    transform:translateX(-20%);
  }

  .swiper-pagination {
    padding: 4px;
  }

  .swiper-slide-img {
    width: calc(100vw-32px);
    height: auto;
    border: 16px solid #d8d8d8;  /* move next and prev buttons off img */ 
    min-height: calc((0.5338 * 100vw) + 48.476px); 
  }

  .swiper-pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }

.gallery-thumbs .swiper-slide img {
        height: 14vw;
    }

}


@media all and (max-width: 360px) {
  .swiper-slide-img {
    border: 1px solid #d8d8d8; 
  }
}