/* Soft Reset */

* {
  box-sizing: border-box;
}

button, .btn {
  border: 0;
  text-decoration: none;
  padding: .5rem;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1rem;
  vertical-align: baseline;
  /*
  display: flex;
  align-items: center;
  */
  
  /*
  transition-duration: .25s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: box-shadow, color, background-color;
  will-change: box-shadow;
  */
  transition: all .25s cubic-bezier(0,1,.5,1);
  /*
  transform-style: preserve-3d;
  perspective: 1000px;
  */
}

button + button,
.btn + .btn,
button + .btn,
.btn + button {
  margin-left: .5rem;
}

button::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  
  /*
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: opacity;
  will-change: opacity;
  transform-style: preserve-3d;
  perspective: 1000px;
  */
  transition: all .5s cubic-bezier(0,1,.5,1);
}

button:hover::before {
  opacity: .1;
}

button:hover,
.btn:hover {
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

.btn.btn-block {
  display: block;
  max-width: 100%;
  margin: 0 0 1rem 0;
}

.btn.btn-block:last-of-type {
  margin: 0;
}

.btn.btn-sm {
  font-size: .8rem;
  padding: .4rem;
  margin-bottom: .8rem;
}

.btn.btn-xs {
  font-size: .8rem;
  padding: .2rem;
  margin-bottom: .5rem;
}

[disabled],
[disabled="true"] {
  cursor: not-allowed;
}

label {
  display: block;
  margin-bottom: .25rem;
  font-size: .75rem;
}

input,
select,
textarea {
  border: 1px solid rgba(0,0,0,.1);
  padding: .5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  display: block;
  border-width: 0;
  border-bottom-width: 1px;
  border-width: 1px;
  border-width: 0;
  height: 2.5rem;
  background-color: #f5f5f5;
}

textarea {
  height: auto;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #00bcd4;
}

select[multiple] {
  height: auto;
}
/*
input[type="file"] {
  border-width: 0;
  padding-left: 0;
}

textarea {
  border-width: 1px;
}

select {
  border-width: 1px;
}
*/
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  display: inline-block;
  height: 1rem;
  vertical-align: middle;
}

.input {
  padding-bottom: 1rem;
}

.input:last-child {
  padding-bottom: 0;
}

.material-icons {
  font-size: inherit;
}

.owl-carousel .owl-nav>div {
  position: absolute;
  top: 50%;
  margin-top: -1rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 100%;
  text-align: center;
  font-size: 2rem;
  background-color: #26C6DA;
  color: #fff;
  
  /*
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: background-color, color;
  transform-style: preserve-3d;
  will-change: background-color, color;
  perspective: 1000px;
  */
  transition: all .5s cubic-bezier(0,1,.5,1);
}

.owl-carousel .owl-nav>div.disabled {
  background-color: #ddd!important;
  cursor: not-allowed;
}

.owl-carousel .owl-prev {
  left: .5rem;
}

.owl-carousel .owl-next {
  right: .5rem;
}

.owl-carousel .owl-nav>div:hover {
  background-color: #0097A7;
}

.owl-carousel .owl-dots {
  text-align: center;
  bottom: 1.5rem;
  width: 100%;
  height: 0;
  position: absolute;
  z-index: 1;
}

.owl-carousel .owl-dot {
  background-color: rgba(255,255,255,.5);
  display: inline-block;
  width: .75rem;
  height: .75rem;
  box-shadow: 0 0 .5rem rgba(0,0,0,.5);
  border-radius: 100%;
  margin: 0 .25rem;
}

.owl-carousel .owl-dot::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: inherit;
  transform: scale(3);
  visibility: hidden;
  opacity: 0;
  position: relative;
  
  transition: all .5s cubic-bezier(0,1,.5,1);
}

.owl-carousel .owl-dot.active::before {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

.rating-xs {
  font-size: 1em;
}

.rating-sm {
  font-size: 1.5em;
}

.rating-md {
  font-size: 2em;
}

.rating-lg {
  font-size: 2.5em;
}

.rating-xl {
  font-size: 3em;
}

.rating-container .empty-stars,
.rating-container .filled-stars {
  text-shadow: none;
  -webkit-text-stroke: 0;
}

/* Custom */

* {
  -webkit-tap-highlight-color: transparent;
  /*
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
}
/*
::-webkit-scrollbar {
  background-image: linear-gradient(0,#fff 50vh,#80DEEA 50vh);
  background-image: linear-gradient(0,#fff 50vh,#26C6DA 50vh);
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #80DEEA;
  background-color: #26C6DA;
  min-height: 51vh;
}
*/
::selection {
  background-color: #26C6DA; /* WebKit/Blink Browsers */
}

::-moz-selection {
  background-color: #26C6DA; /* Gecko Browsers */
}

body {
  margin: 0;
  background-image: url(../img/cupcake.png);
  background-image: initial;
  overflow: hidden;
  overflow-y: auto;
  
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
}

body.drawer-active,
body.drawer-right-active {
  /*
  overflow-y: hidden;
  */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-zoom-in {
  cursor: -moz-zoom-in; 
  cursor: -webkit-zoom-in; 
  cursor: zoom-in;
}

.m-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.top-0 {
  top: 0;
}

.top-025 {
  top: .25rem;
}

.top-05 {
  top: .5rem;
}

.top-1 {
  top: 1rem;
}

.top-2 {
  top: 2rem;
}

.top-3 {
  top: 3rem;
}

.right-0 {
  right: 0;
}

.right-025 {
  right: .25rem;
}

.right-05 {
  right: .5rem;
}

.right-1 {
  right: 1rem;
}

.right-2 {
  right: 2rem;
}

.right-3 {
  right: 3rem;
}

.bottom-0 {
  bottom: 0;
}

.bottom-025 {
  bottom: .25rem;
}

.bottom-05 {
  bottom: .5em;
}

.bottom-1 {
  bottom: 1rem;
}

.bottom-2 {
  bottom: 2rem;
}

.bottom-3 {
  bottom: 3rem;
}

.left-0 {
  left: 0;
}

.left-025 {
  left: .25rem;
}

.left-05 {
  left: .5rem;
}

.left-1 {
  left: 1rem;
}

.left-2 {
  left: 2rem;
}

.left-3 {
  left: 3rem;
}

.font-weight-normal {
  font-weight: normal;
}

.font-weight-bold {
  font-weight: bold;
}

.font-weight-lighter {
  font-weight: lighter;
}

.picture {
  border-radius: 100%;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  background-color: #fff;
}

.picture.picture-05 {
  width: 2rem;
  height: 2rem;
}

.picture.picture-1 {
  width: 3rem;
  height: 3rem;
}

.picture.picture-2 {
  width: 6rem;
  height: 6rem;
}

.picture.picture-3 {
  width: 9rem;
  height: 9rem;
}

.picture-shadow-light {
  box-shadow: 0 0 3rem 2rem #fff;
}

.picture-1.picture-margin-top {
  margin-top: -3rem;
}

.picture-2.picture-margin-top {
  margin-top: -6rem;
}

.picture-3.picture-margin-top {
  margin-top: -9rem;
}

.cover {
  overflow: hidden;
  position: relative;
}

.cover.cover-1 {
  height: 15vw;
  min-height: 10rem;
  max-height: 15rem;
}

.cover.cover-2 {
  height: 30vw;
  min-height: 15rem;
  max-height: 25rem;
}

.cover.cover-3 {
  height: 50vw;
  min-height: 25rem;
  max-height: 35rem;
}

.cover.cover-4 {
  height: 75vw;
  min-height: 35rem;
  max-height: 45rem;
}

.cover>.cover-container {
  width: 100%;
  height: 100%;
}

.display-inline {
  display: inline;
}

.display-block {
  display: block;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.max-width-10rem {
  max-width: 10rem;
}

.max-width-30rem {
  max-width: 30rem;
}

.width-auto {
  width: auto;
}

.width-100 {
  width: 100%;
}

.min-width-100 {
  min-width: 100%;
}

.width-inherit {
  width: inherit;
}

.flex-grow-1 {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.flex-column {
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.clearfix {
  clear: both;
}

.line-height-0 {
  line-height: 0;
}

.line-height-1 {
  line-height: 1;
}

.line-height-110 {
  line-height: 1.1;
}

.line-height-120 {
  line-height: 1.2;
}

.line-height-130 {
  line-height: 1.3;
}

.line-height-140 {
  line-height: 1.4;
}

.line-height-150 {
  line-height: 1.5;
}

.line-height-180 {
  line-height: 1.8;
}

.line-height-2 {
  line-height: 2;
}

.line-height-250 {
  line-height: 2.5;
}

.line-height-3 {
  line-height: 3;
}

.line-height-3rem {
  line-height: 3rem;
}

.height-0 {
  height: 0;
}

.height-0-important {
  height: 0!important;
}

.height-100 {
  height: 100%;
}

.height-100vh {
  height: 100vh;
}

.height-150vh {
  height: 150vh;
}

.flex-grow-10 {
  -webkit-box-flex: 10;
  flex-grow: 10;
}

.font-size-3 {
  font-size: 3rem;
}

.font-size-4 {
  font-size: 4rem;
}

.font-size-5 {
  font-size: 5rem;
}

.font-size-06 {
  font-size: .6rem;
}

.font-size-07 {
  font-size: .7rem;
}

.font-size-075 {
  font-size: .75rem;
}

.font-size-08 {
  font-size: .8rem;
}

.font-size-09 {
  font-size: .9rem;
}

.font-size-1 {
  font-size: 1rem;
}

.font-size-110 {
  font-size: 1.1rem;
}

.font-size-120 {
  font-size: 1.2rem;
}

.font-size-130 {
  font-size: 1.3rem;
}

.font-size-140 {
  font-size: 1.4rem;
}

.font-size-150 {
  font-size: 1.5rem;
}

.font-size-250 {
  font-size: 2.5rem;
}

.font-size-2 {
  font-size: 2rem;
}

.hide {
  display: none!important;
}

.white-space-nowrap {
  white-space: nowrap;
}

.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

.bottom-0 {
  bottom: 0;
}

.shadow-hover-0,
.shadow-hover-05,
.shadow-hover-1,
.shadow-hover-2,
.shadow-hover-3,
.shadow-hover-4,
.shadow-hover-5 {
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: all 1s cubic-bezier(0,1,.5,1);
}

.shadow-hover-0:hover,
.shadow-hover-05:hover,
.shadow-hover-1:hover,
.shadow-hover-2:hover,
.shadow-hover-3:hover,
.shadow-hover-4:hover,
.shadow-hover-5:hover {
  transition: all .5s cubic-bezier(0,1,.5,1);
  z-index: 1;
}

.shadow-0,
.shadow-hover-0:hover {
  box-shadow: none!important;
}

.shadow-05,
.shadow-hover-05:hover {
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.08),0 2px 10px 0 rgba(0,0,0,0.06)!important;
}

.shadow-1,
.shadow-hover-1:hover {
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;
}

.shadow-2,
.shadow-hover-2:hover {
  box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)!important;
}

.shadow-3,
.shadow-hover-3:hover {
  box-shadow: 0 12px 15px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19)!important;
}

.shadow-4,
.shadow-hover-4:hover {
  box-shadow: 0 16px 28px 0 rgba(0,0,0,0.22),0 25px 55px 0 rgba(0,0,0,0.21)!important;
}

.shadow-5,
.shadow-hover-5:hover {
  box-shadow: 0 27px 24px 0 rgba(0,0,0,0.2),0 40px 77px 0 rgba(0,0,0,0.22)!important;
}

.vertical-align-top {
  vertical-align: top;
}

.vertical-align-baseline {
  vertical-align: baseline;
}

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

.vertical-align-bottom {
  vertical-align: bottom;
}

.vertical-align-sub {
  vertical-align: sub;
}

.image-cover {
  object-fit: cover;
}

.image-contain {
  object-fit: contain;
}

.font-family-josefin-sans {
  font-family: 'Josefin Sans', sans-serif;
}

.background-tiffany-blue {
  background-color: #60DFE5;
}

.color-tiffany-blue {
  color: #60DFE5;
}

.color-inherit {
  color: inherit;
}

.background-inherit {
  background: inherit;
}

.background-white {
  background-color: #fff;
}

.background-black {
  background-color: #000;
}

.background-black-075 {
  background-color: rgba(0,0,0,.75);
}

.overflow-visible {
  overflow: visible;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000;
}

.text-decoration-underline {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.opacity-05 {
  opacity: .5;
}

.layout {
  min-height: calc(100vh - 3.5rem);
  min-height: calc(100vh - 3rem);
  min-height: calc(100vh - 2.5rem);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.header {
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  box-shadow: 0 0 .5rem rgba(0,0,0,.25);
  font-family: 'Raleway', sans-serif;
  font-size: .8rem;
  font-size: .9rem;
  position: relative;
  background-color: #fff;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.25;
  opacity: 0.1;
  background-image: url(../img/marble.jpg);
  background-size: cover;
}

.header::after {
  content: '';
  display: block;
  clear: both;
}

.header .container-fluid {
  position: relative;
  padding: 0;
  z-index: 1;
}

.header .content {
  display: flex;
}

.header > .main-logo {
  position: relative;
}

.header > .main-logo a {
  display: block;
  margin: 0 auto;
  width: 8rem;
}

.header > .main-logo img {
  max-width: 100%;
  display: block;
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}

.header .content > .left {
  display: flex;
  justify-content: flex-start;
  flex: 1;
}

.header .content > .center {
  display: flex;
  justify-content: center;
  justify-content: space-around;
  flex: 1;
}

.header .content > .right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.header .drawer-button {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  padding: 1rem;
  padding: .75rem;
  padding: .5rem;
  display: flex;
  align-items: center;
  padding: 1rem;
}

@media(max-width: 767px) {
  .header .drawer-button {
    padding: 3rem 1rem;
  }
  .header .btn-header {
    padding: 1rem .5rem!important;
  }
}

.header .title {
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  padding: .5rem;
}

.header .title img {
  max-height: 3rem;
  max-width: 100%;
}

@media (max-width:767px) {
  .header .title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
  }
  .header .title img {
    max-height: 6rem;
  }
}

.header .link {
  text-decoration: none;
  padding: 1rem;
  vertical-align: top;
  display: flex;
  align-items: center;
}

.header .menu-link {
  font-size: 1rem;
  text-transform: uppercase;
}

.header .btn-header {
  display: flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1rem;
  margin: 0;
  padding: 1rem;
  padding: .75rem;
  padding: .5rem;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 1rem;
}

.header .search-form {
  display: flex;
  align-items: center;
}

.header .search-query {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 1rem;
}

.drawer {
  position: fixed;
  max-width: 20rem;
  z-index: 300;
  height: calc(100% + 3rem);
  height: 100%;
  top: 0;
  box-shadow: 0 0 1rem .25rem rgba(0,0,0,.25);
  box-shadow: 0 0 0;
  background-color: #fff;
  width: calc(100% - 5rem);
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  
  /*
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: transform, visibility, box-shadow;
  transform-style: preserve-3d;
  will-change: transform, visibility, box-shadow;
  perspective: 1000px;
  */
  transition: all .3s cubic-bezier(0,1,.5,1);
}

.drawer-full {
  width: 100%;
}

.drawer,
.drawer.drawer-left {
  left: 0;
  transform: translate3d(-110%,0,0);
}

.drawer.drawer-right {
  left: initial;
  right: 0;
  transform: translate3d(110%,0,0);
}

.drawer-active .drawer.active,
.drawer-right-active .drawer.active {
  /*
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transform: translateX(0);
  */
  transform: translate3d(0,0,0);
  visibility: visible;
  opacity: 1;
}

.drawer .navigation-link {
  display: block;
}

.drawer .title {
  max-width: calc(100% - 1.5rem);
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin: 0;
}

#DrawerHeaderUser .user-name {
  max-width: calc(100% - 6rem);
  display: inline-block;
  vertical-align: middle;
}

.cart-updated {
  height: 0;
  top: 4px;
  position: fixed;
  right: 16px;
  margin-top: .25rem;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(0,1,.5,1);
}

.cart-updated.in {
  opacity: 1;
  visibility: visible;
}

.cart-updated .content {
  cursor: pointer;
  background-color: #006064;
  color: #fff;
  width: 7rem;
  max-width: calc(100vw - .5rem);
  padding: .5rem;
  border-radius: .2rem;
  position: relative;
  font-size: .8rem;
}

.cart-updated .content::before {
  position: absolute;
  top: -.25rem;
  right: .5rem;
  content: '';
  border-left: .25rem solid transparent;
  border-right: .25rem solid transparent;
  border-bottom: .25rem solid #006064;
}

.navigation-overlay {
  background-color: rgba(0,0,0,.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 4rem);
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  
  /*
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: opacity, visibility;
  transform-style: preserve-3d;
  will-change: opacity, visibility;
  perspective: 1000px;
  */
  transition: all .3s cubic-bezier(0,1,.5,1);
}

.navigation-overlay.active {
  visibility: visible;
  opacity: 1;
  transition-duration: .3s;
}

.main .navigation {
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem 0;
}

.main .navigation .navigation-link-container {
  
}

.main .navigation .navigation-link-container .navigation-link {
  padding: 1rem 0;
  margin: 0 .5rem;
  text-decoration: none;
  display: inline-block;
}

.main .logo {
  max-height: 12rem;
  max-width: calc(100% - 2rem);
  padding: 0 1rem;
  vertical-align: middle;
}

.main>.content {
  position: relative;
  z-index: 100;
  z-index: initial;
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.main {
  position: relative;
  -webkit-box-flex: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  
  transform-origin: 50% 50%;
  /*
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: transform;
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 1000px;
  */
  transition: all .15s cubic-bezier(0,1,.5,1);
}

.parallax-mirror {
  transition: transform .15s cubic-bezier(0,1,.5,1);
}

.drawer-active .main,
.drawer-active .parallax-mirror {
  /*
  transform: translateX(10vw);
  transition-duration: .1s;
  transition-delay: .1s;
  transform: rotateY(-25deg) translate(5%) scale(.75);
  transform: scale(.9);
  transform: translateX(-50%);
  transform: translate3d(100px, 0, 0)!important;
  */
}

.drawer-right-active .main,
.drawer-right-active .parallax-mirror {
  /*
  transform: translateX(-10vw);
  transition-duration: .2s;
  transition-delay: .1s;
  transform: rotateY(25deg) translate(-5%) scale(.75);
  transform: scale(.9);
  transform: translateX(50%);
  transform: translate3d(-100px, 0, 0)!important;
  */
}

.badge {
  position: relative;
}

.badge::after {
  content: attr(data-content);
  display: block;
  position: absolute;
  font-family: monospace;
  background-color: #006064;
  color: #fff;
  font-size: .8rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  text-align: center;
  top: -.25rem;
  right: -.25rem;
}

.badge-still::after {
  top: initial;
  right: initial;
  position: relative;
}

.badge-2::after {
  background-color: #26c6da;
  color: #000;
}

.badge-3::after {
  background-color: #f44336;
  color: #fff;
}

a {
  color: #26c6da;
  text-decoration: none;
  
  /*
  transition-duration: .5s;
  transition-timing-function: ease;
  transition-property: background-color, color;
  transform-style: preserve-3d;
  will-change: background-color, color;
  perspective: 1000px;
  */
  transition: all .5s cubic-bezier(0,1,.5,1);
}

hr {
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
  margin: 1rem 0;
}

.hr-1 {
  margin: 0;
  height: 36px;
  background-color: transparent;
  border: 0;
  background-image: url(../img/hr-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  opacity: .1;
}

.hr-white {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.9);
  margin: 1rem 0;
}

.box-hover-flip {
  position: relative;
}

.box-hover-flip .box-item-back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotateY(90deg);
  
  /*
  transition-duration: .2s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: transform;
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 1000px;
  */
  transition: all .2s cubic-bezier(0,1,.5,1);
}

.box-hover-flip .box-item {
  transition-delay: .2s;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: all;
  /*
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 1000px;
  */
}

.box-hover-flip:hover .box-item-back {
  transform: rotateY(0);
  transition-delay: .2s;
}

.box-hover-flip:hover .box-item {
  transform: rotateY(90deg);
  transition-delay: 0s;
}

.box-item {
  /*
  display: flex;
  flex-direction: column;
  */
  height: 100%;
}

.box-item .top-right-btn {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 2.5rem;
  height: 2rem;
  width: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.box-item .top-left-btn {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 2.5rem;
  height: 2rem;
  width: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.box-item .box-item-hover {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  background-color: rgba(0,0,0,.8);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  
  /*
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: opacity, visibility;
  transform-style: preserve-3d;
  will-change: opacity, visibility;
  perspective: 1000px;
  */
  transition: all .2s cubic-bezier(0,1,.5,1);
}

.box-item:hover .box-item-hover {
  opacity: 1;
  visibility: visible;
}

.box-item .category-name {
  text-align: center;
  padding: .5rem;
}

.box-item .image {
  -webkit-box-flex: 1;
  flex-grow: 1;
  height: 100%;
  max-width: 100%;
  
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: transform;
  /*
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 1000px;
  */
}

.box-item .image:hover {
  /*
  transform: scale(1.1);
  */
}

.box-item .name {
  text-align: center;
  padding: .5rem;
}

.box-item-back {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.footer {
  z-index: 100;
  z-index: initial;
  position: relative;
}

.footer .social-media {
  font-weight: bold;
  font-size: 1.5rem;
}

.footer .social-media img {
  width: 1.5rem;
  padding: .2rem;
  vertical-align: middle;
}

.post-sidebar .post {
  margin-bottom: 1rem;
}

.fb-page {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.post-sidebar .post .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post-sidebar .post .title {
  overflow: hidden;
  height: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
}

.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.border-radius-100 {
  border-radius: 100%;
  overflow: hidden;
}

.owl-carousel .owl-dot {
  width: 1rem;
  height: 1rem;
}

.btn-facebook-login .fa,
.btn-google-login .fa {
  margin-right: -1.5rem;
}

.profile-picture {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  vertical-align: middle;
}

.btn-header .profile-picture {
  margin: -1.25rem .5rem -1rem 0;
  width: 2rem;
  height: 2rem;
}

#DrawerHeaderLeft {
  background-image: url('../img/marble.jpg?2017-12-27');
  background-size: cover;
  background-position: center center;
}

#DrawerHeaderLeft::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255,255,255,0.9);
  z-index: -1;
}

#DrawerHeaderLeft .drawer-button {
  padding: 1rem;
}

#DrawerHeaderLeft .navigation-link {
  text-decoration: none;
  padding: 1rem;
}

#Users .profile-picture {
  width: initial;
  height: initial;
  display: block;
  margin: 0 auto 1rem;
  max-width: 10rem;
  max-width: 80%;
}

.post {
  position: relative;
}

.post .title {
  /*
  margin: 0;
  overflow: hidden;
  height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  */
  text-align: center;
  color: #000;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
}

.post .embed-responsive-item.show-on-hover {
  overflow: hidden;
}

.post .embed-responsive-item.show-on-hover .title {
  position: absolute;
  opacity: 0;
  color: #fff;
  transform: translate3d(0,200%,0);
  top: 0;
  text-align: center;
  left: 0;
  right: 0;
  overflow: hidden;
  
  transition: all .5s cubic-bezier(0,1,.5,1);
}

.post .embed-responsive-item.show-on-hover .description {
  position: absolute;
  opacity: 0;
  transform: translate3d(0,100%,0);
  bottom: 0;
  margin: 1rem;
  text-align: center;
  left: 0;
  right: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  
  transition: all .5s cubic-bezier(0,1,.5,1);
}

.post:hover .embed-responsive-item.show-on-hover .title {
  opacity: 1;
  transform: translate3d(0,0,0);
}

.post:hover .embed-responsive-item.show-on-hover .description {
  opacity: 1;
  transform: translate3d(0,0,0);
}

.post .embed-responsive-item.show-on-hover::before {
  content: '';
  z-index: 0;
  position: absolute;
  background-color: rgba(0,0,0,.8);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  
  /*
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0,1,.5,1);
  transition-property: opacity, visibility;
  transform-style: preserve-3d;
  will-change: opacity, visibility;
  perspective: 1000px;
  */
  transition: all .5s cubic-bezier(0,1,.5,1);
}

.post:hover .embed-responsive-item.show-on-hover::before {
  opacity: 1;
  visibility: visible;
}

#Posts .view .post .title {
  height: auto;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
}

#Possts .view .post .description {
  margin-bottom: 1rem;
  text-align: center;
}

#Posts .view .post .profile-picture {
  vertical-align: middle;
}

#Posts .view .post .content {
  position: relative;
  overflow: hidden;
}

#Posts .view .post .content::after {
  content: '';
  display: block;
  clear: both;
}

.shop-picture {
  width: 6rem;
  height: 6rem;
  position: relative;
  overflow: hidden;
}

.shop-picture-sm {
  width: 3rem;
  height: 3rem;
}

.shop-picture-lg {
  width: 9rem;
  height: 9rem;
}

#Users .shop-name {
  width: 6rem;
}

#Posts .edit .post-cover {
  height: 8rem;
  width: 100%;
}

#Shops .view .shop-picture {
  margin-top: -8rem;
  box-shadow: 0 0 3rem 2rem #fff;
}

#Shops .view .shop-cover {
  height: 50vw;
  max-height: 20rem;
  min-height: 15rem;
  position: relative;
}

#Shops .view .shop-cover::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  box-shadow: 0 -5rem 5rem -1rem rgba(255,255,255,1) inset;
}

.cover-shadow-light {
  /*
  background-image: url(../img/shadow/cover-bottom-light.png);
  background-repeat: repeat-x;
  background-position: center bottom;
  */
  background-color: #fff;
  box-shadow: 0 0 3rem 4rem #fff;
  position: relative;
}

#Shops .edit .shop-cover,
#Shops .edit .shop-logo {
  height: 8rem;
  width: 100%;
}

#Pages .about .video-container {
  height: 50vw;
  min-height: 20rem;
  max-height: 30rem;
  overflow: hidden;
}

#Pages .about .video-container video {
  width: 100%;
  height: 100%;
}

#Products .edit .product-picture {
  height: 8rem;
  width: 100%;
}

.collapse {
  visibility: hidden;
  transition: all .5s cubic-bezier(0,1,.5,1);
  display: block;
  overflow: hidden;
}

.collapse.fade {
  opacity: 0;
}

.collapse.scroll {
  max-height: 0;
}

.collapse.collapse-dropdown {
  transform: translate3d(0,-1rem,0);
}

.collapse.in {
  transform: translate3d(0,0,0);
  visibility: visible;
}

.collapse.fade.in {
  opacity: 1;
}

.collapse.scroll.in {
  max-height: 100vh;
}

#MenuShopNowCollapse {
  width: 10rem;
}

#MenuShopNowCollapse .link {
  display: block;
}

#MenuCollapse .link {
  display: block;
}

#ProductCategories .cakes .container-content,
#ProductCategories .flowers .container-content,
#ProductCategories .accessories .container-content {
  margin-top: -5rem;
  z-index: 1;
  position: relative;
}

.flash-container {
  position: fixed;
  z-index: 65536;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  overflow: visible;
  text-align: center;
}

.flash-container .flash-list {
  width: 30rem;
  margin: 3rem auto 0;
  max-width: 100%;
}

.flash-container .message {
  border-radius: 2px;
  text-align: left;
  position: relative;
  margin: 0 .25rem .25rem;
  overflow: hidden;
  padding-top: .25rem;
}

.flash-container .message .message-content {
  max-width: calc(100% - 4.5rem);
}

#ssIFrame_google {
  top: -100px;
}

#Shops .view .shop-owner .profile-picture {
  height: initial;
  display: inline-block;
  margin: 0 .25rem 1rem;
  width: 3rem;
}

#Shops .view .shop-bakers {
  max-width: 11rem;
  margin: 0 auto;
}

#Shops .view .shop-owner .profile-picture.profile-picture-owner {
  width: initial;
  margin: 0 auto 1rem;
  max-width: 10rem;
  display: block;
}

img.gateway-image {
  width: 75px;
}

.parallax {
  opacity: 0;
  transition: opacity .3s cubic-bezier(0,1,.5,1);
}

/*
.parallax {
  height: 200%;
}

.parallax[data-reverse="true"] {
  height: 200%;
}
*/

.zoomImg {
  min-height: 100%;
  min-width: 100%;
  cursor: move;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

#DrawerHeaderCart,,
#DrawerHeaderNotification {
  max-width: 25rem;
  width: calc(100% - 2.5rem);
}

#DrawerHeaderCart .product:hover {
  background-color: #f5f5f5;
}

#DrawerHeaderCart .product .info {
  width: calc(100% - 5.75rem);
  display: inline-block;
}

#DrawerHeaderCart .product .action {
  width: 2rem;
  display: inline-block;
  vertical-align: top;
  text-align: right;
}

.loading {
  position: fixed;
  top: 5rem;
  left: calc(50% - 1rem);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 100%;
  z-index: 1000000;
  
  transition: all .5s cubic-bezier(0,1,.5,1);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -5rem, 0) scale(0.5);
}

.loading.in {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

body.wait {
  /*
  overflow: hidden;
  */
}

body.wait,
body.wait * {
  cursor: progress!important;
  cursor: wait!important;
}

body.wait > * {
  pointer-events: none!important;
}

ol {
  margin: 0;
  padding-left: 2rem;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.table th,
.table td {
  padding: .75rem;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #eceeef;
  text-align: left;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #eceeef;
}

.table tbody + tbody {
  border-top: 2px solid #eceeef;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: .3rem;
}

.table-bordered {
  border: 1px solid #eceeef;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #eceeef;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover tbody tr:hover {
  background-color: #f5f5f5;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: #f5f5f5;
}

.table-hover .table-active:hover {
  background-color: #e8e8e8;
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: #e8e8e8;
}

.table-responsive {
  display: block;
  width: 100%;
  min-height: .01%;
  overflow-x: auto;
}

/*
#Cart .checkout .product .info {
  width: calc(100% - 4.75rem);
  display: inline-block;
}

#Cart .checkout .product .action {
  width: 1rem;
  display: inline-block;
  vertical-align: top;
  text-align: right;
}
*/

#Cart .product:hover {
  background-color: #fafafa;
}

.picker__select--month, .picker__select--year {
  height: initial;
  display: initial;
}

.picker__button--clear, .picker__button--close, .picker__button--today {
  margin: 0;
  box-shadow: initial!important;
}

.picker__button--clear::before, .picker__button--close::before, .picker__button--today::before {
  background-color: initial;
  opacity: initial!important;
}

.input.required.legend {
  color: #ff9800;
}

.input.required.legend::before {
  content: '* ';
}

.input.required label:first-child {
  color: #ff9800;
  font-weight: bold;
}

.input.required label:first-child::after {
  content: ' *';
}

.input.checkbox input,
.input.radio input {
  margin-right: .25rem;
}

.mdc-bg-white {
  background-color: #ffffff;
}

a.mdc-bg-white:hover,
a.mdc-bg-white:focus {
  background-color: #fafafa;
}

.mdc-text-white {
  color: #ffffff;
}

a.mdc-text-white:hover,
a.mdc-text-white:focus {
  color: #fafafa;
}

.btn-shop-settings,
.btn-product-settings,
.btn-post-settings {
  top: 6rem;
  left: 0;
  position: fixed;
  z-index: 200;
  line-height: 0;
  font-size: 1.5rem;
  transition: all .25s cubic-bezier(0,1,.5,1);
}

.btn-shop-settings.animated,
.btn-product-settings.animated,
.btn-post-settings.animated {
  transform: translate3d(-1rem, 0, 0);
}

.btn-shop-settings.animated:hover,
.btn-product-settings.animated:hover,
.btn-post-settings.animated:hover {
  transform: translate3d(0, 0, 0);
}

.notification-mark-read {
  position: absolute;
  margin-top: -1.5rem;
  right: 1rem;
  line-height: 0;
  border-radius: 100%;
  cursor: pointer;
}

#Posts .content {
  padding: 1rem;
}

#Posts .content img {
  max-width: 100%;
  height: auto;
}

.order-response-add .input.textarea {
  margin: 0;
}

.auto-paragraph p {
  margin-bottom: .5rem;
}

.auto-paragraph p:last-child {
  margin-bottom: 0;
}

.btn-toggle-shop-conversation {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}

.btn-toggle-shop-conversations {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}

#DrawerHeaderConversation {
  max-width: 25rem;
}

#ConversationContainer {
  overflow: hidden;
  overflow-y: auto;
  height: calc(100vh - 7.6rem);
  height: auto;
  -webkit-box-flex: 1;
  flex-grow: 1;
}

#DrawerHeaderConversation .message {
  position: relative;
  display: inline-block;
  border-radius: .25rem;
}

#DrawerHeaderConversation .message.arrow-left::before {
  content: '';
  display: block;
  position: absolute;
  top: .5rem;
  left: -.5rem;
  width: 0;
  height: 0;
  border-top: .5rem solid transparent;
  border-bottom: .5rem solid transparent;
  
  border-right: .5rem solid #f5f5f5;
}

#DrawerHeaderConversation .message.arrow-right::before {
  content: '';
  display: block;
  position: absolute;
  top: .5rem;
  right: -.5rem;
  width: 0;
  height: 0;
  border-top: .5rem solid transparent;
  border-bottom: .5rem solid transparent;
  
  border-left: .5rem solid #00bcd4;
}

#DrawerHeaderConversation .dialog-sent,
#DrawerHeaderConversation .dialog-received {
  display: block;
}

#DrawerHeaderConversation .dialog-sent:first-child,
#DrawerHeaderConversation .dialog-received:first-child {
  padding-top: .5rem;
}

#DrawerHeaderConversation .dialog-sent:last-child,
#DrawerHeaderConversation .dialog-received:last-child {
  padding-bottom: .5rem;
}

#DrawerHeaderConversation .dialog-sent + .dialog-sent .arrow-right::before,
#DrawerHeaderConversation .dialog-received + .dialog-received .arrow-left::before {
  display: none;
}

#DrawerHeaderConversation .dialog-sent + .dialog-sent .embed-responsive,
#DrawerHeaderConversation .dialog-received + .dialog-received .embed-responsive {
  display: none;
}

#DrawerHeaderConversation .dialog-sent + .dialog-received,
#DrawerHeaderConversation .dialog-received + .dialog-sent {
  padding-top: .5rem;
}

#DrawerHeaderConversations .conversation + .conversation {
  margin-top: -.25rem;
}

#DrawerHeaderConversations .conversation:hover {
  z-index: 1;
  position: relative;
}

#DrawerHeaderConversations .conversation .label-new {
  display: none;
  margin-left: .25rem;
  background-color: #f00;
  color: #fff;
  width: .9rem;
  height: .9rem;
  line-height: .9rem;
  font-size: .8rem;
  border-radius: 100%;
  text-align: center;
  font-weight: bold;
}

#DrawerHeaderConversations .conversation.new .label-new {
  display: block;
}

#LiveNotification {
  position: fixed;
  bottom: 0;
  left: 0;
  max-width: calc(100vw);
  width: 20rem;
  z-index: 1000;
}

#LiveNotification .live-notification-container {
  padding: 0 .5rem;
  position: relative;
}

#LiveNotification .live-notification {
  border-radius: .25rem;
  margin: .5rem 0;
  padding: .5rem 0;
  transition: all .25s cubic-bezier(0,1,.5,1);
}

#LiveNotification .live-notification.out {
  opacity: 0;
  visibility: hidden;
}

#Pages.index .grid-layout {
  margin: -.25rem;
  padding: .5rem 0;
}

#Pages.index .grid-layout .grid {
  padding: .25rem;
}

#Pages.index .toggle-tab-cakes,
#Pages.index .toggle-tab-flowers,
#Pages.index .toggle-tab-shops,
#Pages.index .toggle-tab-accessories {
  display: block;
  padding: .75rem;
  text-align: center;
  background-color: #eee;
  color: #000;
  text-transform: uppercase;
  font-size: .9rem;
  font-size: 1.25rem;
}

#Pages.index .toggle-tab-cakes.active,
#Pages.index .toggle-tab-cakes:hover {
  background-color: #FF9800;
  color: #fff;
}

#Pages.index .toggle-tab-flowers.active,
#Pages.index .toggle-tab-flowers:hover {
  background-color: #0097A7;
  color: #fff;
}

#Pages.index .toggle-tab-shops.active,
#Pages.index .toggle-tab-shops:hover {
  background-color: #0097A7;
  color: #fff;
}

#Pages.index .toggle-tab-accessories.active,
#Pages.index .toggle-tab-accessories:hover {
  background-color: #0097A7;
  color: #fff;
}

.grid-0 .container,
.grid-0 .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.grid-0 .row {
  margin-left: 0;
  margin-right: 0;
}

.grid-0 .row > div {
  padding-left: 0;
  padding-right: 0;
}

.grid-sm .container,
.grid-sm .container-fluid {
  padding-left: .5rem;
  padding-right: .5rem;
}

.grid-sm .row {
  margin-left: -.25rem;
  margin-right: -.25rem;
}

.grid-sm .row > div {
  padding-left: .25rem;
  padding-right: .25rem;
}


.tab {
  /*
  visibility: hidden;
  opacity: 0;
  */
  display: none;
}

.tab.active {
  /*
  visibility: visible;
  opacity: 1;
  */
  display: initial;
}

.embed-responsive-8by3 {
  padding-bottom: calc(100% / 8 * 3);
}

.min-width-0 {
  min-width: 0;
}

#OwlCarouselInstagramContainer {
  padding: 0 2rem;
}

#OwlCarouselInstagramContainer .owl-nav>div {
  height: 100%;
  margin-top: 0;
  line-height: 0;
  border-radius: 0;
  top: 0;
  background-color: #fff;
  color: #26C6DA;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

#OwlCarouselInstagramContainer .owl-nav>div:hover {
  background-color: #26C6DA;
  background-color: #fff;
  color: #000;
}

#OwlCarouselInstagramContainer .owl-nav>.disabled {
  background-color: #fff!important;
  color: #eee!important;
  cursor: not-allowed;
}

#OwlCarouselInstagramContainer .owl-prev {
  left: -2rem;
}

#OwlCarouselInstagramContainer .owl-next {
  right: -2rem;
}

#OwlCarouselInstagramContainer .owl-stage-outer {
  box-shadow: 0 -1.5rem 1rem -1rem #fff inset,0 1.5rem 1rem -1rem #fff inset,1rem 0rem 1rem -1rem rgba(0,0,0,.25) inset,-1rem 0rem 1rem -1rem rgba(0,0,0,.25) inset;
}

#OwlCarouselInstagramContainer .owl-stage {
  box-shadow: 1.5rem 0rem .5rem -0.5rem #fff inset,-1.5rem 0rem .5rem -.5rem #fff inset,0rem 0rem 0rem 100vw #fff;
}

.shop-halal {
  height: 2rem;
  vertical-align: middle;
  padding-bottom: .5rem;
}

.shop-verified {
  display: inline-block;
  border-radius: 100%;
  font-size: 1rem;
  vertical-align: middle;
  background-color: #26c6da;
  color: #fff;
  text-align: center;
  line-height: 1rem;
  height: 1.25rem;
  width: 1.25rem;
}

.embed-responsive {
  overflow: visible;
}

#Pages.index .search-container,
#Pages.search .search-container,
#Shops.index .search-container {
  box-shadow: 0rem -2rem 2rem -2rem rgba(0,0,0,.1) inset;
}

#Pages.index .search-container .search-query,
#Pages.search .search-container .search-query,
#Shops.index .search-container .search-query {
  background-color: #fff;
  border: 1px solid #ccc;
}

#Pages.index .search-container .btn-search,
#Pages.search .search-container .btn-search,
#Shops.index .search-container .btn-search {
  margin-left: -1px;
}

#Pages.index #OwlCarouselPosts .owl-nav>div,
#Pages.index #OwlCarouselSlideshow .owl-nav>div {
  border-radius: 0;
  height: 5rem;
  line-height: 5.5rem;
  margin-top: -2.75rem;
  background-color: #f5f5f5;
  color: #26C6DA;
}

#Pages.index #OwlCarouselPosts .owl-prev {
  left: -1rem;
}

#Pages.index #OwlCarouselSlideshow .owl-prev {
  left: 0;
}

#Pages.index #OwlCarouselPosts .owl-next {
  right: -1rem;
}

#Pages.index #OwlCarouselSlideshow .owl-next {
  right: 0;
}

#Pages.index #OwlCarouselPosts .owl-nav>div:hover,
#Pages.index #OwlCarouselSlideshow .owl-nav>div:hover {
  background-color: #26C6DA;
  color: #fff;
}

@media (max-width:1024px) {
  #Pages.index #OwlCarouselSlideshow .r.r-2-1 {
    /*
    */
    padding-bottom: calc(100% / 4 * 3);
  }
}
@media (max-width:768px) {
  #Pages.index #OwlCarouselSlideshow .r.r-2-1 {
    /*
    */
    padding-bottom: calc(100%);
  }
}

#Pages.index #OwlCarouselPosts .owl-nav>.disabled {
  color: #eee!important;
  background-color: transparent!important;
}

#Pages.celebration #OwlCarouselCelebrationImages .owl-nav>div {
  border-radius: 0;
  height: 5rem;
  line-height: 5.5rem;
  margin-top: -2.75rem;
  background-color: #f5f5f5;
  color: #26C6DA;
}

#Pages.celebration #OwlCarouselCelebrationImages .owl-prev {
  left: 0;
}

#Pages.celebration #OwlCarouselCelebrationImages .owl-next {
  right: 0;
}

#Pages.celebration #OwlCarouselCelebrationImages .owl-nav>div:hover {
  background-color: #26C6DA;
  color: #fff;
}

.picker__select--month, .picker__select--year {
  padding: 0!important;
}

.social-share-facebook,
.social-share-twitter,
.social-share-google-plus {
  color: #fff;
  margin: .25rem .5rem .25rem 0!important;
  align-self: center;
  padding: .5rem;
  width: 2.2rem;
  height: 2.2rem;
  text-align: center;
}

.social-share-facebook {
  background-color: #3B5998;
}

.social-share-twitter {
  background-color: #00aced;
}

.social-share-google-plus {
  background-color: #dd4b39;
}

.croppie-container .cr-viewport {
  border-color: #f00;
}

table .price {
  display: flex;
  justify-content: space-between;
  max-width: 6.5rem;
}

.pagination {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination>li {
  display: block;
  list-style: none;
}

.pagination>li>a {
  box-sizing: content-box;
  padding: .5rem;
  display: block;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  border-radius: 100%;
  text-align: center;
  transition: all .3s cubic-bezier(.1, 1, 1, 1);
}

.pagination>li>a:hover {
  background-color: #eee;
}

.pagination>li.disabled>a {
  color: #ccc;
  background-color: transparent;
  cursor: not-allowed;
}

.pagination>li.active>a {
  color: #fff;
  background-color: #26c6da;
}

.pagination .material-icons {
  display: block;
  font-size: 1rem;
  line-height: 1rem;
}

.btn-flex {
  display: flex;
}

header .notification-count::before {
  content: attr(data-count);
  display: block;
  position: absolute;
  font-family: monospace;
  background-color: #006064;
  color: #fff;
  font-size: .8rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  text-align: center;
  top: .25rem;
  right: 0;
  top: -.25rem;
  right: -.25rem;
}

header .notification-count[data-count="0"] {
  display: none;
}

header .notification-count:not([data-count="0"]) ~ .notification-none {
  display: none;
}
header .notification-count[data-count="0"] ~ .notification-active {
  display: none;
}

.clear-both {
  clear: both;
}

.nav-breadcrumb {
  background-color: #fff;
  position: relative;
  margin-bottom: 1rem;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 0 .5rem rgba(0,0,0,.1);
  z-index: 900;
}

.nav-breadcrumb .bits {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-breadcrumb .bits .item {
  display: flex;
  align-items: center;
  padding: .5rem;
}

.nav-breadcrumb .bits .indicator {
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.nav-breadcrumb .bits .item + .item::before {
  content: 'chevron_right';
  font-family: 'Material Icons';
  display: block;
  font-size: 1em;
  word-wrap: normal;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  padding-right: inherit;
}

.nav-breadcrumb::after {
  content: '';
  display: block;
  clear: both;
}

.nav-breadcrumb>.dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  width: 100%;
  box-shadow: 0 -0.5rem 0 0rem #fafafa, 0 0 0.5rem rgba(0,0,0,.1);
}

.nav-breadcrumb .dropdown {
  display: none;
}

.nav-breadcrumb .dropdown.active {
  display: block;
}

.nav-breadcrumb>.dropdown .item {
  display: flex;
  padding: .5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-breadcrumb [data-toggle*="dropdown"]>.dropdown-indicator {
  transition: all .3s cubic-bezier(.1, 1, 1, 1);
  transform: rotate(0);
}

.nav-breadcrumb [data-toggle*="dropdown"].active>.dropdown-indicator {
  transform: rotate(180deg);
}

.nav-breadcrumb>.dropdown .dropdown {
  background-color: #f7f7f7;
  background-color: rgba(0, 0, 0, .02);
  flex-grow: 1;
  width: 100%;
  padding-left: 1rem;
}

.nav-breadcrumb>.dropdown .item {
  background-color: #fff;
  border: 0;
}

.nav-breadcrumb .dropdown .item {
  color: #26c6da;
}

.nav-breadcrumb [data-toggle*="dropdown"].active {
  background-color: rgba(0, 0, 0, .02);
}
.nav-breadcrumb .dropdown .item:hover {
  background-color: rgba(0, 0, 0, .02);
}

#DropdownBackdrop.active {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255,0,0,.5);
  background-color: initial;
  background-color: rgba(0,0,0,.1);
  z-index: 800;
}

#DashboardPromotions .index .promotion-image {
  max-width: 20rem;
}

#Promotions .index .promotions {
  padding: .5rem;
  display: flex;
  flex-wrap: wrap;
}

#Promotions .index .promotions .promotion {
  padding: .5rem;
  width: calc(100% / 4);
}

@media (max-width: 1024px) {
  #Promotions .index .promotions .promotion {
    width: calc(100% / 3);
  }
}

@media (max-width: 768px) {
  #Promotions .index .promotions .promotion {
    width: calc(100% / 2);
  }
}

@media (max-width: 512px) {
  #Promotions .index .promotions .promotion {
    width: calc(100% / 1);
  }
}

.title-style-1 {
  position: relative;
  padding-bottom: 2rem;
  margin: 0;
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
}

.title-style-1::after {
  content: '';
  width: 50%;
  display: block;
  margin: 0 auto;
  padding-top: 1rem;
  border-bottom: 0.125rem solid #000;
}

#Pages.index .section-featured {
  display: flex;
  padding: 0.5rem;
  flex-wrap: wrap;
}

#Pages.index .section-featured > .item {
  width: calc(100% / 3);
  padding: 0.5rem;
  display: flex;
}

@media (max-width: 640px) {
  #Pages.index .section-featured > .item {
    width: 100%;
  }
}

#Pages.index .section-featured > .item .box {
  border: 1px solid rgba(0,0,0,0.1);
}

#Pages.index .section-featured .title {
  font-weight: bold;
}

#Pages.index .section-featured .description {
  font-size: .9rem;
  color: #555;
}

#Pages.index .section-whats-new {
  padding: .5rem;
  display: flex;
  flex-wrap: wrap;
}

#Pages.index .section-whats-new > .item {
  width: calc(100% / 4);
  padding: .5rem;
}

@media (max-width: 1024px) {
  #Pages.index .section-whats-new > .item {
    width: calc(100% / 3);
  }  
}

@media (max-width: 768px) {
  #Pages.index .section-whats-new > .item {
    width: calc(100% / 2);
  }  
}

@media (max-width: 512px) {
  #Pages.index .section-whats-new > .item {
    width: 100%;
  }  
}

#Pages.index .section-whats-new > .item .title {
  font-weight: bold;
}

#Workshops.index .name {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
}

#Workshops.index .description {
  text-align: center;
}

#Workshops.index .workshop-box {
  border: 1px solid #eee;
  background-color: #fff;
}

#Workshops.index .price {
  position: absolute;
  right: -1rem;
  top: .5rem;
  padding: .5rem 1rem;
  font-size: 1.5rem;
}