.mar-top-0 {
  margin-top: 0 !important; }

.mar-top-3p {
  margin-top: 3%; }

.mar-top-5 {
  margin-top: 5px; }

.mar-top-10 {
  margin-top: 10px; }

.mar-top-12 {
  margin-top: 12px; }

.mar-top-15 {
  margin-top: 15px; }

.mar-top-min15 {
  margin-top: -15px; }

.mar-top-20 {
  margin-top: 20px; }

.mar-top-30 {
  margin-top: 30px; }

.mar-top-50 {
  margin-top: 50px; }

.mar-top-70 {
  margin-top: 70px; }

.mar-right-10 {
  margin-right: 10px; }

.mar-left-10 {
  margin-left: 10px; }

.mar-btm-0 {
  margin-bottom: 0; }

.mar-btm-10 {
  margin-bottom: 10px; }

.mar-btm-15 {
  margin-bottom: 15px; }

.mar-btm-20 {
  margin-bottom: 20px; }

.mar-btm-50 {
  margin-bottom: 50px; }

.no-mar-right {
  margin-right: 0 !important; }

.no-mar-btm {
  margin-bottom: 0 !important; }

.no-pad-right {
  padding-right: 15px; }
  @media (min-width: 768px) {
    .no-pad-right {
      padding-right: 0; } }
.no-pad-left {
  padding-left: 15px; }
  @media (min-width: 768px) {
    .no-pad-left {
      padding-left: 0; } }
.pad-top-10 {
  padding-top: 10px; }

.pad-top-20 {
  padding-top: 20px; }

.pad-btm-10 {
  padding-bottom: 10px; }

.pad-btm-50 {
  padding-bottom: 50px; }

.pad-top-60 {
  padding-top: 60px; }

.no-pad {
  margin: 0;
  padding: 0;
  width: 100%; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.clearfix {
  clear: both; }

.flipIn {
  animation: flipdown 0.5s ease both; }

.no-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

body {
  background-color: white;
  letter-spacing: 0.5px;
  margin: 0;
  overflow-x: hidden; }
  body.bg-index {
    background: #fbecb8; }

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

section {
  clear: both;
  overflow: hidden; }

hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: solid 1px #E5E5E5; }
  hr.dashed {
    border-top: dashed 1px #E5E5E5 !important; }

p {
  font-family: 'Eina-Light', sans-serif;
  font-size: 18px; }
  @media (max-width: 768px) {
    p {
      font-size: 12px; } }
  p.bold {
    font-family: 'Eina-Bold', sans-serif; }

a {
  color: #000000; }
  a:hover {
    text-decoration: none;
    color: #593982; }
  a.full-block {
    display: block; }

/*
 * Select
 */
/* Hover state */
/* Uncomment if you need it, but be aware of the sticky iOS states.
.select select:hover {
  background-color: #ddd;
}
*/
/* Focus */
.select select:focus {
  box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9; }

/* Active/open */
.select select:active {
  color: #fff;
  background-color: #0074d9; }

/* Hide the arrow in IE10 and up */
.select select::-ms-expand {
  display: none; }

/* Media query to target Firefox only */
@-moz-document url-prefix() {
  /* Firefox hack to hide the arrow */
  .select select {
    text-indent: 0.01px;
    text-overflow: '';
    padding-right: 1rem; }
  /* <option> elements inherit styles from <select>, so reset them. */
  .select option {
    background-color: white; } }

/* IE9 hack to hide the arrow */
@media screen and (min-width: 0\0) {
  .select select {
    z-index: 1;
    padding: .5rem 1.5rem .5rem 1rem; }
  .select:after {
    z-index: 5; }
  .select:before {
    position: absolute;
    top: 0;
    right: 1rem;
    bottom: 0;
    z-index: 2;
    content: "";
    display: block;
    width: 1.5rem;
    background-color: #eee; }
  .select select:hover,
  .select select:focus,
  .select select:active {
    color: #555;
    background-color: #eee; } }

.box-button {
  margin-top: 5px; }

.box-input {
  margin-top: 5px;
  margin-bottom: 15px; }
  .box-input:last-child {
    margin-bottom: 0; }
  .box-input input {
    padding: 10px;
    width: 100%;
    margin-top: 15px;
    font-family: "Eina-Medium", sans-serif;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    border: solid 1px #E5E5E5; }
    .box-input input:first-child {
      margin-top: 0; }
    .box-input input:hover, .box-input input:active {
      -webkit-border-radius: 7px;
      -moz-border-radius: 7px;
      border-radius: 7px; }
  .box-input label p {
    font-size: 14px;
    font-family: 'Eina-Medium', sans-serif;
    margin: 0;
    margin-top: 3px;
    color: grey; }
  .box-input label span {
    color: red; }

.abs-state {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0; }

.hidden-xs {
  display: block !important; }
  @media (max-width: 768px) {
    .hidden-xs {
      display: none !important; } }
.visible-xs {
  display: none !important; }
  @media (max-width: 768px) {
    .visible-xs {
      display: block !important; } }
.center-position {
  text-align: center;
  margin: 0 auto; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.img-middle {
  vertical-align: middle; }

.hide {
  visibility: hidden; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

.img-center {
  display: block;
  margin: 0 auto; }

.full-image {
  width: 100%; }

.no-padding {
  padding: 0; }

.yellowstar {
  color: #ffc452; }

.link-white {
  color: white; }
  .link-white:hover {
    opacity: 0.5; }

.opacity50 {
  opacity: 0.5; }

body {
  background: #65995a;
  font-family: Eina-Bold;
  position: relative; }

.navbar-cake {
  position: fixed;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  @media (max-width: 768px) {
    .navbar-cake {
      position: absolute; }
      .navbar-cake .fa-chevron-right {
        font-size: 12px; }
      .navbar-cake .navbar-collapse {
        padding: 20px 0px; } }
  .navbar-cake .navbar-nav {
    font-size: 16px; }
  @media (max-width: 1200px) {
    .navbar-cake {
      background: #000;
      z-index: 10000; } }
  .navbar-cake img {
    margin-right: 50px; }

@media (max-width: 768px) {
  .dropdown-item.active, .dropdown-item:active {
    background: transparent; }
  .dropdown-item.hover, .dropdown-item:hover {
    background: transparent; } }

.searchpopup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #B87390;
  z-index: 10001;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms; }
  .searchpopup.show {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 300ms; }
  .searchpopup .searchtable {
    margin: 0 auto;
    text-align: center;
    display: table;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    text-align: center; }
    .searchpopup .searchtable .searchmiddle {
      display: table-cell;
      vertical-align: middle;
      width: 100%;
      height: 100%; }
      .searchpopup .searchtable .searchmiddle i {
        color: white;
        position: absolute;
        top: 37%;
        right: 37px; }
      .searchpopup .searchtable .searchmiddle input:focus, .searchpopup .searchtable .searchmiddle input:hover, .searchpopup .searchtable .searchmiddle input:active {
        outline: none;
        box-shadow: none; }
      .searchpopup .searchtable .searchmiddle .form-search {
        background: transparent;
        border: transparent;
        border-bottom: solid 1px white;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        padding: 30px;
        color: white; }

#cartcount {
  position: relative; }
  #cartcount:hover {
    color: white !important; }
  #cartcount span {
    position: absolute;
    background: #e92449;
    top: 0;
    left: 0;
    padding: 2px 5px;
    width: auto;
    height: 17px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-size: 10px; }

#about-theme {
  position: fixed;
  right: -480px;
  top: 0;
  background: #000;
  width: 480px;
  height: 100%;
  padding: 50px;
  z-index: 10002;
  overflow: scroll;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  #about-theme.active-theme {
    right: 0; }
  #about-theme p {
    font-size: 14px;
    padding: 15px 40px; }
  #about-theme h3 {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px; }
  #about-theme .border-theme {
    border-right: solid 1px #fff;
    border-top: solid 1px #fff; }
    #about-theme .border-theme:nth-child(2) {
      border-right: transparent 1px solid;
      border-top: transparent 1px solid; }
    #about-theme .border-theme:last-child {
      border-right: transparent 1px solid; }
    #about-theme .border-theme:first-child {
      border-top: transparent 1px solid; }
  #about-theme .socmed-theme {
    margin: 0 auto;
    text-align: center;
    margin-top: 30px; }
    #about-theme .socmed-theme li {
      display: inline-block; }

.show-cart {
  position: relative;
  padding: 20px; }
  .show-cart:hover .show-menu-cart {
    opacity: 1; }
  .show-cart .show-menu-cart {
    position: absolute;
    top: 20px;
    left: 20px;
    content: '';
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 10; }
  .show-cart .btn-smc {
    padding: 10px 13px;
    margin-right: 10px; }

.btn-black {
  background: black;
  color: white;
  padding: 6px 0px;
  border-radius: 50px; }
  .btn-black .menu-burger {
    width: 17px;
    margin-right: 0; }
  .btn-black:hover {
    color: white; }

.btn-white-outline {
  padding: 15px 30px;
  background: transparent;
  border: solid 1px white;
  color: white;
  border-radius: 0;
  margin-right: 15px; }
  .btn-white-outline:last-child {
    margin-right: 0; }
  .btn-white-outline:hover {
    color: white;
    background: #a55376;
    border: solid 1px #a55376; }

.box-quantity {
  display: inline-block;
  color: white;
  border: solid 1px white;
  background: transparent; }
  .box-quantity .left-label {
    padding: 15px 15px; }
  .box-quantity .right-input {
    position: relative;
    margin-right: 27px; }
    .box-quantity .right-input span {
      position: absolute; }
      .box-quantity .right-input span.plus {
        top: 0;
        right: -27px;
        height: 27px;
        border-bottom: solid 1px white;
        width: 27px; }
      .box-quantity .right-input span.minus {
        bottom: 0;
        right: -27px;
        height: 27px;
        width: 27px; }
  .box-quantity .right-input, .box-quantity input {
    max-width: 50px;
    drop-shadow: transparent;
    outline: none;
    border: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 54px;
    text-align: center;
    background: transparent; }
  .box-quantity .left-label, .box-quantity .right-input {
    display: inline-block; }
  .box-quantity .right-input input {
    border-right: solid 1px white; }

a.box-add-cart {
  color: white; }

.box-add-cart {
  display: inline-block;
  margin-left: 15px;
  padding: 15px 40px;
  border: solid 1px white;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  @media (max-width: 768px) {
    .box-add-cart {
      display: block;
      width: 100%;
      margin-left: 0;
      text-align: center; }
      .box-add-cart:first-child {
        margin-left: 0; } }
  .box-add-cart:first-child {
    margin-left: 0; }
  .box-add-cart:hover {
    background: #a55376;
    border: solid 1px #a55376; }
  .box-add-cart.full-width {
    width: 100%;
    display: block;
    text-align: center; }

.account-details {
  margin-bottom: 50px; }

.white-link {
  color: white;
  padding-left: 15px; }
  .white-link:hover {
    color: white;
    opacity: .5; }

.mar-left-0 {
  margin-left: 0 !important; }

.btn-cart {
  margin-left: 10px; }
  .btn-cart a {
    color: white;
    padding-right: 10px;
    padding-left: 10px;
    border-right: 1px #353535 dashed; }
    .btn-cart a i {
      font-size: 14px; }
    .btn-cart a:last-child {
      border-right: transparent;
      padding-right: 10px; }
      .btn-cart a:last-child i {
        font-size: 14px; }

.dropdown-general {
  border: solid 1px white;
  background-color: transparent;
  color: white; }
  @media (max-width: 768px) {
    .dropdown-general {
      width: 100%; } }
  .dropdown-general button {
    background: transparent;
    border: transparent;
    padding: 15px 40px;
    color: white;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
    @media (max-width: 768px) {
      .dropdown-general button {
        width: 100%; } }
    .dropdown-general button:hover, .dropdown-general button:focus, .dropdown-general button:active, .dropdown-general button .dropdown-toggle {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0;
      background: #a55376;
      drop-shadow: none;
      outline: none; }
  .dropdown-general.full-width {
    width: 100%;
    display: block; }
    .dropdown-general.full-width button {
      width: 100%; }
    .dropdown-general.full-width .dropdown-menu {
      width: 100%; }
  .dropdown-general .dropdown-item {
    font-family: 'Eina-Bold';
    min-width: 218px !important; }

.filter-general {
  margin-top: 20px; }
  .filter-general li {
    font-family: 'Eina-Medium';
    margin-bottom: 10px; }

.checkout-details {
  margin-bottom: 50px; }
  .checkout-details .coupon-box {
    margin-top: 50px;
    margin-bottom: 50px;
    border: dashed 1px #d08da9;
    padding: 20px; }
    .checkout-details .coupon-box h3 {
      font-family: 'Times';
      font-size: 24px;
      font-style: italic; }
  .checkout-details p a {
    color: white;
    margin-bottom: 0;
    padding-bottom: 0; }
  .checkout-details p {
    margin-bottom: 0;
    padding-bottom: 0; }

.order-section {
  margin-top: 50px; }
  .order-section tr {
    color: white; }
    .order-section tr.no-bor-top th {
      border: none; }
    .order-section tr td, .order-section tr th {
      vertical-align: middle; }
    .order-section tr td {
      border-top: solid 1px #be7f9a; }

.dashed {
  border: dashed 1px #d09eb4; }

.shop-filter {
  margin: 0 auto;
  text-align: center; }
  .shop-filter ul {
    margin-bottom: 40px;
    border-bottom: solid 1px #d09eb4; }
  .shop-filter li {
    display: inline-block;
    padding: 30px 30px 15px;
    opacity: .5;
    position: relative; }
    .shop-filter li.active {
      opacity: 1; }
    .shop-filter li:hover {
      opacity: 1; }
      .shop-filter li:hover:after {
        width: 100%; }
    .shop-filter li:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 0;
      z-index: 2;
      height: 1px;
      background: white;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .shop-filter li:last-child {
      margin-right: 0; }

.paging-custom {
  margin-top: 20px; }
  .paging-custom .pagination .page-link {
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 15px 25px; }
    @media (max-width: 768px) {
      .paging-custom .pagination .page-link {
        padding: 15px 14.5px; } }
    .paging-custom .pagination .page-link:hover {
      color: white; }
  .paging-custom a {
    color: white; }
  .paging-custom .disabled .page-link {
    color: #cccccc; }

.box-article-promo {
  padding: 30px;
  background: #a55376; }
  .box-article-promo h3 {
    font-family: "Times";
    font-style: italic; }
  .box-article-promo p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px; }
  .box-article-promo a {
    color: white; }

.bg-hero-img {
  position: absolute;
  width: 100%;
  z-index: 1; }
  @media (max-width: 768px) {
    .bg-hero-img {
      position: initial; } }
  .bg-hero-img img {
    width: 100%;
    display: block;
    margin: 0 auto; }

.logo-banner img {
  padding: 10px 0px 0px 72px;
  display: block;
  margin: 0 auto;
  width: 68%;
  padding-top: 100px; }

.pattern-grid-xl {
  background-position: center top; }

.pattern-grid-xl.rmx {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: .1;
  top: 0px; }

.content__item--current {
  background: #65995a;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.dropdown-custom .dropdown-menu {
  border: transparent;
  top: 48px; }
  .dropdown-custom .dropdown-menu a {
    color: black !important;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
    .dropdown-custom .dropdown-menu a:hover {
      padding-left: 40px; }
  .dropdown-custom .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    min-width: 200px; }
    .dropdown-custom .dropdown-menu .dropdown-item.disabled {
      font-size: 12px;
      opacity: .5; }

.cart-details {
  margin-top: 20px;
  margin-bottom: 100px;
  color: white; }
  @media (max-width: 768px) {
    .cart-details thead {
      display: none; } }
  .cart-details tr {
    color: white; }
    .cart-details tr.no-bor-top th {
      border: none; }
    .cart-details tr td, .cart-details tr th {
      vertical-align: middle; }
      @media (max-width: 768px) {
        .cart-details tr td, .cart-details tr th {
          display: block; } }
    .cart-details tr td {
      border-top: solid 1px #be7f9a; }
  .cart-details .img-product {
    width: 60px;
    display: inline-block;
    margin-right: 15px;
    border: solid 1px white; }
  .cart-details .title-product {
    display: inline-block; }
  .cart-details .price-product {
    font-family: "Eina-Medium"; }

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0; }
  .navbar .nav-item:hover .nav-link {
    color: #fff; }
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%; }
  .navbar .dropdown-menu.fade-up {
    top: 180%; }
  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg); } }

@media (min-width: 992px) {
  .dropdown-menu .dropdown-toggle:after {
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid; }
  .dropdown-menu .dropdown-menu {
    margin-left: 0;
    margin-right: 0; }
  .dropdown-menu li {
    position: relative; }
  .nav-item .submenu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: -8px !important; }
  .nav-item .submenu-left {
    right: 100%;
    left: auto; }
  .dropdown-menu > li:hover > .submenu {
    display: block !important; } }

.h-obt {
  height: 138px; }
  @media (max-width: 768px) {
    .h-obt {
      height: 0; } }
.slideshow {
  height: 111vh; }
  @media (max-width: 768px) {
    .slideshow {
      height: 70vh;
      margin-top: 70px; } }
  .slideshow .slideshow__deco {
    border-radius: 12px;
    background: transparent;
    z-index: 2; }
  .slideshow .slide__img-wrap {
    border-radius: 15px; }
  .slideshow .slide__img {
    border-radius: 15px; }
  .slideshow .slide__side {
    color: white; }
  .slideshow .slide__title-wrap {
    left: -50%;
    bottom: 33%; }
    @media (max-width: 768px) {
      .slideshow .slide__title-wrap {
        bottom: -60%; } }
    .slideshow .slide__title-wrap img {
      width: 90px;
      right: 6px;
      top: -40px;
      position: absolute; }

.text-about-recipe {
  padding-top: 50px; }
  .text-about-recipe h3 {
    font-family: times;
    font-style: italic; }

.content .content__title {
  font-size: 40px; }
  .content .content__title span {
    background: black;
    padding: 15px; }

.slideshow h4 {
  font-family: Eina-SemiBold;
  font-size: 18px; }
  @media (max-width: 768px) {
    .slideshow h4 {
      font-size: 12px; } }
.nav-white a {
  color: white !important;
  font-family: Eina-SemiBold; }

.bg-pink {
  background: #b87390f2;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.about-kedai {
  margin-top: 50px; }

.opening-hours {
  margin-top: 50px; }
  .opening-hours .table-oh {
    color: white; }
  .opening-hours .title-oh {
    font-family: times;
    font-style: italic;
    text-align: center; }

.text-place h3 {
  font-family: times;
  font-style: italic; }

.how-to-order {
  margin-top: 50px; }
  .how-to-order h2 {
    margin-bottom: 50px; }
  .how-to-order h4 {
    margin-top: 30px; }
  .how-to-order .hto-size {
    width: 200px; }

.gallery {
  margin-top: 50px; }
  .gallery h2 {
    margin-bottom: 50px; }
  .gallery h4 {
    margin-top: 30px; }
  .gallery h3 {
    font-family: times;
    font-style: italic; }

.pinknav {
  background: #000;
  z-index: 10000;
  border-bottom: solid 1px #000; }

.form-lovecake {
  padding: 15px 15px;
  text-align: center;
  background: transparent;
  border: transparent;
  border-bottom: solid 1px white;
  color: white; }
  @media (max-width: 768px) {
    .form-lovecake {
      width: 100%;
      margin-bottom: 20px; } }
  .form-lovecake:hover, .form-lovecake:focus {
    outline: none;
    box-shadow: none; }
  .form-lovecake.full-form {
    display: block;
    width: 100%;
    text-align: left; }

::placeholder {
  color: white !important;
  opacity: 1;
  /* Firefox */ }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white !important; }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white !important; }

.card-gallery {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  .card-gallery:hover {
    opacity: .5; }

.bg-footer {
  background: black; }

.footer {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media (min-width: 960px) {
    .footer {
      background-image: linear-gradient(#ffffff26 1px, transparent 1px), linear-gradient(to right, #ffffff26 1px, transparent 1px);
      background-size: 100px 100px;
      background-position: center center; } }
  .footer .list-footer, .footer .list-footer li {
    display: inline-block;
    text-align: right;
    float: right; }
  .footer .footer-date {
    font-size: 14px;
    font-family: Eina-Medium; }
  .footer span {
    font-family: Times;
    font-style: italic; }
  .footer .address-cake a {
    color: pink; }

::-webkit-scrollbar {
  width: 1px;
  height: 1px; }

::-webkit-scrollbar-button {
  width: 1px;
  height: 1px; }

:root {
  --cursor-rad: 21px;
  --duration: .2s; }

ul.list {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }

ul.list li {
  list-style-type: none;
  font-size: 4vw;
  font-weight: bold;
  margin: 20px;
  background-color: #272744;
  padding: 15px; }

/* HIDE BROWSER CURSOR */
/** CURSOR **/
#cursor {
  pointer-events: none;
  /* IMPORTANT */
  z-index: 100000; }

.cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%); }

.cursor .dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  transition-property: transform, background-color;
  transition-duration: var(--duration);
  transition-timing-function: ease-in; }

.cursor .go, .cursor .irow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #222;
  font-size: 18px;
  font-weight: bold;
  -webkit-user-select: none;
  user-select: none;
  visibility: hidden;
  opacity: 0;
  transition-duration: var(--duration); }

/** CURSOR EFFECT **/
.cursor.scale .dot {
  transform: scale(2);
  background: #efba00; }

.cursor.color .dot {
  background-color: #706fd3; }

.cursor.go .dot, .cursor.irow .dot {
  transform: scale(4); }

.cursor.go .go, .cursor.irow .irow {
  visibility: visible;
  opacity: 1; }

/** ELEMENTS EFFECT **/
[class*=cursor-] {
  transition: all ease var(--duration);
  -webkit-user-select: none;
  user-select: none; }

.point-active {
  position: relative; }
  .point-active:after {
    content: '';
    position: absolute;
    top: -4px;
    right: 4px;
    width: 10px;
    height: 10px;
    background: red;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px; }

.breadcrumb-custom .breadcrumb {
  padding-left: 0;
  padding-right: 0; }

@media (min-width: 550px) {
  .breadcrumb-custom {
    margin-top: 50px; }
    .breadcrumb-custom .breadcrumb {
      float: right; } }

.list-food {
  margin-bottom: 100px;
  color: white; }
  @media (max-width: 768px) {
    .list-food {
      overflow: hidden; } }
  .list-food .promo-product {
    background: #e92449;
    text-align: center;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 18px 8px;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px; }
    .list-food .promo-product.sale {
      background: #e92449; }
    .list-food .promo-product.new {
      background: #a55376; }
    .list-food .promo-product.sold {
      background: #bc8fd0; }
  .list-food .col-md-4 {
    padding-bottom: 20px; }
    @media (min-width: 768px) {
      .list-food .col-md-4 {
        border-right: solid 0.5px #d09eb4;
        border-bottom: solid 0.5px #d09eb4;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease; }
        .list-food .col-md-4:hover {
          background: #ffffff14; }
        .list-food .col-md-4:nth-child(3n) {
          border-right: transparent; }
        .list-food .col-md-4 img {
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
        .list-food .col-md-4 img:hover {
          transform: matrix(1.03, 0, 0, 1.03, 0, 0); } }
    @media (max-width: 768px) {
      .list-food .col-md-4 img {
        max-width: 250px; } }
  .list-food .col-md-3 {
    padding-bottom: 20px; }
    @media (min-width: 768px) {
      .list-food .col-md-3 {
        border-right: solid 0.5px #d09eb4;
        border-bottom: solid 0.5px #d09eb4;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease; }
        .list-food .col-md-3:hover {
          background: #ffffff14; }
        .list-food .col-md-3:last-child {
          border-right: transparent; }
        .list-food .col-md-3 img {
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
        .list-food .col-md-3 img:hover {
          transform: matrix(1.03, 0, 0, 1.03, 0, 0); } }
    @media (max-width: 768px) {
      .list-food .col-md-3 img {
        max-width: 250px; } }
  .list-food a {
    color: white; }
  .list-food h3 {
    font-style: italic;
    font-family: times;
    text-align: center;
    font-weight: bold; }
    .list-food h3 span {
      font-family: Eina-Medium;
      font-style: normal;
      font-size: 18px;
      text-decoration-line: line-through;
      padding-left: 10px;
      font-weight: normal; }
  .list-food h2 {
    text-align: center; }
  @media (max-width: 768px) {
    .list-food {
      text-align: center; 
      margin-top: 120px;}
      .list-food h3 {
        text-align: center !important; } }
.box-porto {
  height: 300px; }

@media (min-width: 768px) {
  .img-scales {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .img-scales:hover {
    transform: matrix(1.03, 0, 0, 1.03, 0, 0); } }

@media (max-width: 1200px) {
  .no-border-dot {
    border: transparent;
    padding: 0;
    margin-right: 15px; }
    .no-border-dot:hover, .no-border-dot:focus, .no-border-dot:active {
      outline: none !important; }
  .menu-dot {
    width: 25px;
    margin-right: 0 !important; }
  .text-about-recipe, .opening-hours,
  .how-to-order, .owl-testi, .gallery {
    padding: 50px 15px 15px; }
  .how-to-order .hto-size {
    width: 100%; }
  .how-to-order h4 {
    font-size: 12px; }
  .about-kedai {
    margin-bottom: 15px; }
  .about-kedai, .about-drink {
    overflow: hidden; }
  .opening-hours {
    margin-top: 0; }
  .content {
    top: 3rem; } }

.shop-head {
  padding: 40px 0 30px 0px;
  position: relative;
  background-size: 1000px; }
  .shop-head.no-pad-top {
    padding-top: 0; }
  .shop-head .pattern-grid-xl {
    opacity: .1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
  .shop-head .breadcrumb {
    background: transparent; }
    .shop-head .breadcrumb a {
      color: white; }
  .shop-head .breadcrumb-item + .breadcrumb-item::before {
    color: white; }
  .shop-head .breadcrumb-item.active {
    color: #cccccc; }

.shop-preview {
  margin-bottom: 70px; }
  .shop-preview .border-img {
    border: solid 1px #ffffff36; }
  .shop-preview h1 {
    font-size: 40px;
    margin-bottom: 0;
    padding-bottom: 0; }
  .shop-preview h3 {
    font-style: italic;
    font-family: times;
    text-align: center;
    font-weight: bold; }
    .shop-preview h3 span {
      font-family: Eina-Medium;
      font-style: normal;
      font-size: 18px;
      text-decoration-line: line-through;
      padding-left: 10px;
      font-weight: normal; }

.rel-pos {
  position: relative; }

.box-pricing-info {
  padding: 50px; }
  .box-pricing-info.silver {
    background: #a55376; }
  .box-pricing-info.gold {
    background: #c19b73; }
  .box-pricing-info.platinum {
    background: #484043; }
  .box-pricing-info h2 {
    font-size: 50px;
    font-family: 'Eina-Medium'; }
  .box-pricing-info h6 {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px; }
  .box-pricing-info ul {
    font-family: 'Eina-Light'; }

.head-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 30%;
  left: 0; }

.about-details {
  margin-top: 45px; }

.about-info {
  margin-top: 50px;
  margin-bottom: 50px; }

.box-detail-info {
  margin-top: 20px; }
  .box-detail-info h5 {
    font-size: 14px; }
  .box-detail-info span {
    font-family: 'Times';
    font-style: italic; }

.service-info {
  margin-bottom: 50px; }

.tabs-custom {
  margin-top: 70px;
  position: inherit;
  width: auto;
  height: auto;
  border-bottom: solid 1px #ffffff36;
  transition: inherit;
  pointer-events: initial;
  margin-bottom: 20px; }
  .tabs-custom li .active {
    background-color: transparent !important;
    color: white !important;
    border: transparent; }
    .tabs-custom li .active:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: white; }
  .tabs-custom li a {
    color: #cccccc;
    border: none;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
    .tabs-custom li a:after {
      content: '';
      width: 0%;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .tabs-custom li a.nav-link {
      border: none; }
    .tabs-custom li a:hover {
      border: none;
      color: white; }
      .tabs-custom li a:hover:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: white; }

.tab-content-custom {
  font-family: "Eina-Medium"; }
  .tab-content-custom hr {
    opacity: .5; }

.zoom {
  display: inline-block;
  position: relative;
  background: #B87390;
  border: solid 1px #ffffff36; }

/* magnifying glass icon */
.zoom:after {
  content: '';
  display: block;
  width: 33px;
  height: 33px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(icon.png); }

.zoom img {
  display: block; }

.zoom img::selection {
  background-color: transparent; }

@media (max-width: 960px) {
  .nav-white a {
    font-family: times;
    font-style: italic;
    font-size: 20px;
    text-align: left; }
    .nav-white a:after {
      float: right; } }

@media (max-width: 768px) {
  .navbar-cake img {
    margin-right: 0; }
  .mb-icon {
    color: white;
    font-size: 20px; }
  .abs-head {
    height: 500px;
    width: auto; }
  .hide-visible-xs {
    visibility: hidden; } }

@media (max-width: 480px) {
  .slide__img {
    background-size: 145px;
    background-repeat: no-repeat; }
  .logo-banner img {
    width: 100%;
    padding: 0;
    padding-top: 100px; }
  .btn-white-outline {
    width: 100%;
    margin-bottom: 15px; } }

.none {
  display: none; }
