/**
 * Swiper 4.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 11, 2018
 */
 .swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
  }
  .swiper-container-no-flexbox .swiper-slide {
    float: left;
  }
  .swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  .swiper-container-android .swiper-slide,
  .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  .swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
  }
  .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .swiper-invisible-blank-slide {
    visibility: hidden;
  }
  /* Auto Height */
  .swiper-container-autoheight,
  .swiper-container-autoheight .swiper-slide {
    height: auto;
  }
  .swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
  }
  /* 3D Effects */
  .swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
  }
  .swiper-container-3d .swiper-wrapper,
  .swiper-container-3d .swiper-slide,
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-slide-shadow-bottom,
  .swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  /* IE10 Windows Phone 8 Fixes */
  .swiper-container-wp8-horizontal,
  .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
  }
  .swiper-container-wp8-vertical,
  .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
  }
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .swiper-button-prev.swiper-button-disabled,
  .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
  }
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
  }
  .swiper-button-prev.swiper-button-white,
  .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  }
  .swiper-button-next.swiper-button-white,
  .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  }
  .swiper-button-prev.swiper-button-black,
  .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  }
  .swiper-button-next.swiper-button-black,
  .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  }
  .swiper-button-lock {
    display: none;
  }
  .swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }
  /* Common Styles */
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  /* Bullets */
  .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
  }
  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
  }
  .swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
  }
  .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
  }
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
  }
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
  }
  .swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
  }
  /* Progress */
  .swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
  }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }
  .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
  }
  .swiper-container-horizontal > .swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }
  .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
  }
  .swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
  }
  .swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
  }
  .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff;
  }
  .swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
  }
  .swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
  }
  .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000;
  }
  .swiper-pagination-lock {
    display: none;
  }
  /* Scrollbar */
  .swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
  }
  .swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
  }
  .swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
  }
  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
  }
  .swiper-scrollbar-cursor-drag {
    cursor: move;
  }
  .swiper-scrollbar-lock {
    display: none;
  }
  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .swiper-zoom-container > img,
  .swiper-zoom-container > svg,
  .swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .swiper-slide-zoomed {
    cursor: move;
  }
  /* Preloader */
  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
  }
  .swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  }
  @-webkit-keyframes swiper-preloader-spin {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes swiper-preloader-spin {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  /* a11y */
  .swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
  .swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
  }
  .swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-fade .swiper-slide-active,
  .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-cube {
    overflow: visible;
  }
  .swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }
  .swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  .swiper-container-cube .swiper-slide-active,
  .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-cube .swiper-slide-active,
  .swiper-container-cube .swiper-slide-next,
  .swiper-container-cube .swiper-slide-prev,
  .swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-container-cube .swiper-slide-shadow-top,
  .swiper-container-cube .swiper-slide-shadow-bottom,
  .swiper-container-cube .swiper-slide-shadow-left,
  .swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
  }
  .swiper-container-flip {
    overflow: visible;
  }
  .swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
  }
  .swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-flip .swiper-slide-active,
  .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-flip .swiper-slide-shadow-top,
  .swiper-container-flip .swiper-slide-shadow-bottom,
  .swiper-container-flip .swiper-slide-shadow-left,
  .swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
  }
/*!
 *  Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/css/font-awesome/fonts/fontawesome-webfont.eot?v=4.6.1');
  src: url('https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/css/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.6.1') format('embedded-opentype'), url('https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/css/font-awesome/fonts/fontawesome-webfont.woff2?v=4.6.1') format('woff2'), url('https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/css/font-awesome/fonts/fontawesome-webfont.woff?v=4.6.1') format('woff'), url('https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/css/font-awesome/fonts/fontawesome-webfont.ttf?v=4.6.1') format('truetype'), url('https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/css/font-awesome/fonts/fontawesome-webfont.svg?v=4.6.1#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.catalog-category-view .main-container {
	width: auto;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}
body.catalog-category-view .category-products {
	max-width: 1280px;
	padding: 0 5px;
	margin-left: auto;
	margin-right: auto;
}

.category-products .products-grid {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex: 0 1 auto;
	-webkit-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.category-products .products-grid > li:nth-child(even),
.category-products .products-grid > li:nth-child(odd) {
	margin: 0;
}
.category-products .products-grid > li {
	width: 33.3333%;
	display: inline-block;
	vertical-align: top;
	float: none;
}
.category-products .products-grid > li.item {
	border-right: 1px solid #cacaca;
	border-bottom: 1px solid #cacaca;
}
.main .toolbar {
    background-color: #f4f4f4;
    padding: 10px 0 0 0;
    border-top: 1px solid #ccc;
}
.main .pager {
	margin: 0 0 10px 0;
}
.main .sort-by {
	float: left !important;
	margin: 0 0 10px 0;
}
.main .pager .count-container {
	display: block;
}
.sorter label,
.pager .limiter {
	text-transform: uppercase;
}
.main .pager {
	padding-right: 15px;
}
.sort-by label {
	color: #636363;
}
.catalog-category-view .pages a {
	color: #636363 !important;
}
.category-products .pages .next:before {
	border-left-color: #636363;
}
.category-products .products-grid > li:not(:hover) .product-info-content {
    background: none !important;
}
.category-products .products-grid > li:hover {
	color: #fff;
}
.category-products .products-grid .product-image-content,
.category-products .products-grid .product-info-content {
	padding: 10px 20px 20px 20px;
}
.category-products .products-grid > li:hover .product-name,
.category-products .products-grid > li:hover .product-name a,
.category-products .products-grid > li:hover .price-box span.price {
	color: #fff !important;
}
.category-products .products-grid .product-info-content {
	background: #808080;
	text-align: left;
	overflow: hidden;
}
.category-products .products-grid .product-info-content .shortDesc {
	display: none;
	font-size: 1em;
	clear: both;
	padding: 10px 0;
}
.category-products .products-grid .product-info-content .bt-detail {
	display: none;
	font-size: 1em;
	background-color: #fff;
	padding: 2px 20px;
	border: none;
	border-radius: 5px;
	height: auto;
}
.category-products .products-grid > li:hover .product-info-content {
	width: 100%;
	position: absolute;
	left: 0;
	z-index: 2;
}
.category-products .products-grid > li:hover .product-info-content .shortDesc,
.category-products .products-grid > li:hover .product-info-content .bt-detail {
	display: block;
}
.category-products .item button.btn-cart {
	background-image: none;
	border-radius: 5px;
	line-height: normal;
}
.category-products .products-grid .regular-price,
.category-products .products-grid .product-info-content .price-box,
.category-products .products-grid .grid-hover-content .regular-price {
	margin: 0;
}
.category-products .products-grid .product-info-content .price-box {
	max-height: 24px;
}
.category-products .products-grid .price-box .old-price {
	display: block;
	margin-top: -14px;
}
.category-products .products-grid > li .actions .changeQty a.qty-inc,
.category-products .products-grid > li .actions .changeQty a.qty-dec,
.category-products .products-grid > li:hover .actions .changeQty a.qty-inc,
.category-products .products-grid > li:hover .actions .changeQty a.qty-dec{
	background: none;
	line-height: normal;
	text-align: center;
}
.category-products .item .qty,
.category-products .products-grid .actions .changeQty,
.category-products .item button.btn-cart {
	float: none;
	display: inline-block;
	vertical-align: middle;
	height: 30px;
}
.category-products .item .changeQty {
	margin: 0;
}
.category-products .products-grid .actions .qty {
	width: 40px;
	margin: 0 10px 0 0;
	font-size: 14px;
}
.category-products button.btn-cart:disabled {
    background: #D6D6D6;
}
.category-products button.btn-cart:disabled span span {
	font-size: 12px;
}
.category-products .products-grid .actions .changeQty a {
	height: 13px;
}
.category-products .products-grid .actions .changeQty a .fa {
	display: block;
	margin: auto;
	font-size: 16px;
	line-height: 8px;
	font-weight: bold;
}
.category-products .products-grid > li:hover .actions .changeQty a .fa {
	color: #fff;
}
.category-products .products-grid .product-name, .products-list .product-name {
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: normal;
}
.bottom-bt .cart-link {
	display: block;
}
@media only screen and (max-width: 960px) {
	.category-products .products-grid .actions {
		width: 163px;
		top: auto;
	}
}

@media only screen and (min-width: 769px) {
	.category-products .products-grid > li{
		-webkit-flex-basis: 33.33%;
		-ms-flex-preferred-size: 33.33%;
		flex-basis: 33.33%;
		max-width: 33.33%;
		margin: 0 0.33%;
	}
	.category-products .products-grid > li.item:nth-of-type(3n),
	.category-products .products-grid > li.item:last-child {
		border-right: 0;
	}
	.category-products .products-grid > li:nth-child(3n+1):nth-last-child(-n+3),
  	.category-products .products-grid > li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
		border-bottom: 0;
	}
}

@media only screen and (min-width: 769px) and (max-width: 960px) {
	.category-products .products-grid > li > div {
		padding: 10px 8px 0 8px;
	}
	.category-products .products-grid > li.item {
		width: 33.33%;
	}
	.category-products .products-grid .price-box {
		width: auto;
	}
}
@media only screen and (max-width: 768px) {
	.category-products .products-grid .product-image-content, 
	.category-products .products-grid .product-info-content {
		padding: 10px;
	}
	.category-products .products-grid .actions {
		margin-top: 0 !important
	}
}

@media only screen and (max-width: 768px) and (min-width: 581px) {
	.category-products .products-grid > li.item {
		width: auto;
		float: none !important;
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.category-products .products-grid > li.item:nth-of-type(2n),
	.category-products .products-grid > li.item:last-child {
		border-right: 0;
	}
	.category-products .products-grid > li:nth-child(2n+1):nth-last-child(-n+2),
  	.category-products .products-grid > li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
		border-bottom: 0;
	}
	.category-products .products-grid .product-image img {
		width: 100%;
		height: auto;
	}
}

@media only screen and (max-width: 580px) {
	.category-products .products-grid > li.item {
		width: 100%;
		border-right: 0;
	}
	.category-products .products-grid > li:last-child {
		border-bottom: 0;
	}
	.category-products .products-grid > li:hover {
		padding-bottom: 98px;
	}
	.catalog-category-view .category-products .sort-by{
		display: block !important;
	}
	body.catalog-category-view .category-products .bottom-bt {
		width: 100% !important;
		margin-top: 30px;
	}
}
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 320px) {
	.category-products .item button.bt-detail{
		display: none;
	}

}


.consent-popup-content {
	background-color: #ffffff;
	width: 90%;
	max-height: 90%;
	max-width: 780px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);;
	padding: 30px 20px;
	overflow-y: scroll;
	z-index: 9999;
}
.consent-popup-content .content {
	margin-bottom: 15px;
}
.consent-popup-content ul.actions > li:not(:first-child) {
	margin-top: 20px;
}
.consent-popup-content ul.actions > li.control + li.control {
	margin-top: 5px;
}
.consent-popup-content button.button.submit {
	min-width: 80px;
	background-color: #503282;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "GothamRounded", Tahoma, Verdana, Arial;
    padding: 7px 10px;
    margin: 0;
}
.consent-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.4);
	z-index: 9998;
}
.consent-popup-content {
	background-color: #ffffff;
	width: 90%;
	max-height: 90%;
	max-width: 780px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);;
	padding: 30px 20px;
	overflow-y: scroll;
	z-index: 9999;
}
.consent-popup-content .content {
	margin-bottom: 15px;
}
.consent-popup-content ul.actions > li:not(:first-child) {
	margin-top: 20px;
}
.consent-popup-content ul.actions > li.control + li.control {
	margin-top: 5px;
}
.consent-popup-content button.button.submit {
	min-width: 80px;
	background-color: #503282;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "GothamRounded", Tahoma, Verdana, Arial;
    padding: 7px 10px;
    margin: 0;
}
.consent-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.4);
	z-index: 9998;
}
#ampromo-items-add {
  border: 1px solid #ededed;
  padding: 7px;
  text-align: center;
  margin-bottom: 12px;
}
#ampromo-items-add a {
  text-decoration: none;
  border-bottom: 1px dashed;
}
.amscheckout #ampromo-items-add {
  margin: 7px 10px;
}
#ampromo-overlay {
  direction: ltr;
}
#ampromo-overlay.mode-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 10000;
  text-align: center;
  overflow: scroll;
}
#ampromo-overlay.mode-popup .close {
  position: absolute;
  top: 7px;
  right: 7px;
  background: url(https://www.dolce-gusto.co.th/skin/frontend/base/default/images/amasty/ampromo/close_icon.png) no-repeat;
  width: 16px;
  height: 16px;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-size: 0;
  display: block;
  opacity: .8;
}
#ampromo-overlay.mode-popup .close:hover {
  opacity: 1;
  transition: opacity 0.2s ease;
}
#ampromo-overlay.mode-inline #ampromo-items {
  width: 100%;
  margin: 20px 0 40px;
  border: 0;
  padding: 0;
}
#ampromo-overlay.mode-inline #ampromo-items .products {
  margin: 0 -20px 25px;
  align-items: stretch;
}
#ampromo-overlay.mode-inline #ampromo-items .products .product {
  margin-bottom: 20px;
}
#ampromo-overlay.mode-inline #ampromo-items #ampromo-carousel-wrapper {
  margin: 0 -15px;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item {
  margin: 0 20px 20px;
  height: 100%;
  width: auto;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .ampromo-items-form {
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: space-between;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .ampromo-item-buttons {
  margin-top: 20px;
  text-align: center;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config .ampromo-item-options {
  margin-bottom: 0;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config.options {
  display: flex;
  align-items: flex-start;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config.options .ampromo-item-options {
  margin-left: 12px;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config.options .ampromo-item-options,
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config.options .ampromo-item-options input,
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config.options .ampromo-item-options select {
  max-width: 160px;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config.simple {
  margin: -20px -20px 0;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config.simple .ampromo-item-image-wrap {
  padding: 20px 20px 0;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-config.simple .ampromo-item-title {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-title {
  position: relative;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-title .ampromo-item-title {
  padding: 12px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-title:hover .ampromo-item-title {
  display: flex;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-title h4 {
  color: white;
  line-height: initial;
  text-align: center;
  font-size: 16px;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-item .product-title h4 a {
  color: white;
  line-height: initial;
}
#ampromo-overlay.mode-inline #ampromo-items .ampromo-add-all {
  margin-top: 7px;
  display: flex;
  justify-content: center;
}
#ampromo-overlay.mode-inline .ampromo-slide {
  margin: 10px 0;
}
#ampromo-overlay.mode-inline #ampromo-carousel-content {
  display: flex;
  flex-wrap: wrap;
}
#ampromo-overlay .ampromo-carousel-control {
  position: absolute;
  top: 260px;
  background: url(https://www.dolce-gusto.co.th/skin/frontend/base/default/images/amasty/ampromo/buttons_next_prev.png) no-repeat;
  width: 48px;
  height: 45px;
  font-size: 0;
  display: none;
}
#ampromo-overlay .ampromo-carousel-control.carousel-disabled.prev {
  background-position: 0 0 !important;
}
#ampromo-overlay .ampromo-carousel-control.carousel-disabled.next {
  background-position: -46px 0 !important;
}
#ampromo-overlay .ampromo-carousel-control.prev {
  background-position: 0 -45px;
  left: 20px;
}
#ampromo-overlay .ampromo-carousel-control.prev:hover {
  background-position: 0 -91px;
}
#ampromo-overlay .ampromo-carousel-control.next {
  background-position: -46px -45px;
  right: 20px;
}
#ampromo-overlay .ampromo-carousel-control.next:hover {
  background-position: -46px -91px;
}
#ampromo-overlay #ampromo-items {
  border: 1px solid #ededed;
  background-color: white;
  position: relative;
  margin: 0 auto;
  padding: 24px;
  display: inline-block;
  box-sizing: border-box;
}
#ampromo-overlay #ampromo-items.amcarousel {
  display: block;
  width: 950px;
}
#ampromo-overlay #ampromo-items.amcarousel #ampromo-carousel-wrapper {
  width: 780px;
}
#ampromo-overlay #ampromo-items.amcarousel #ampromo-carousel-content {
  width: 4500px;
  height: 1px;
}
#ampromo-overlay #ampromo-items.amcarousel .ampromo-carousel-control {
  display: block;
}
#ampromo-overlay #ampromo-items .ampromo-item {
  box-sizing: border-box;
  margin-bottom: 7px;
  padding: 20px;
  width: 250px;
  border: 1px solid #ededed;
  position: relative;
  margin-right: 12px;
}
#ampromo-overlay #ampromo-items .ampromo-item.ampromo-type-amgiftcard {
  width: 400px;
}
#ampromo-overlay #ampromo-items .ampromo-item.ampromo-type-amgiftcard .ampromo-item-options {
  overflow-y: scroll;
  max-height: 300px;
}
#ampromo-overlay #ampromo-items .ampromo-item-options {
  margin-bottom: 12px;
  text-align: left;
}
#ampromo-overlay #ampromo-items .ampromo-item-image {
  display: block;
  margin: 0 auto;
  width: 160px;
  height: 160px;
}
#ampromo-overlay #ampromo-items .rule .ampromo-rule-header {
  font-weight: bold;
  font-size: 18px;
  background: #f3f3f3;
  text-transform: uppercase;
  height: 45px;
  line-height: 45px;
  box-sizing: border-box;
  padding-left: 20px;
  margin-bottom: 25px;
  cursor: pointer;
}
#ampromo-overlay #ampromo-items .rule .ampromo-rule-header:after {
  content: '▲';
  margin-left: 12px;
  color: #919191;
}
#ampromo-overlay #ampromo-items .rule .products {
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 0 0 40px;
}
#ampromo-overlay #ampromo-items .rule .products .product {
  margin-left: 10px;
}
#ampromo-overlay #ampromo-items .rule .products .product .product-config.simple {
  margin: -20px -20px -40px;
}
#ampromo-overlay #ampromo-items .rule .products .product .product-config.simple .product-title {
  position: static;
}
#ampromo-overlay #ampromo-items .rule .products .product .product-config.simple .ampromo-item-image-wrap {
  padding: 20px;
}
#ampromo-overlay #ampromo-items .rule .products .product .ampromo-item {
  box-shadow: none;
  border: 1px solid #d8dae4;
  border-radius: 0;
}
#ampromo-overlay #ampromo-items .rule .products .product .ampromo-item.checked {
  outline: 1px solid #d8dae4;
}
#ampromo-overlay #ampromo-items .rule .products .product .ampromo-item .ampromo-item-title {
  border-radius: 0;
}
#ampromo-overlay #ampromo-items .rule .products .product .ampromo-item .mark input {
  position: absolute;
  left: -25px;
  top: 0;
}
#ampromo-overlay #ampromo-items .rule.collapsed .ampromo-rule-header:after {
  content: '▼';
}
#ampromo-overlay #ampromo-items .rule.collapsed .products {
  display: none;
}
@media only screen and (max-width: 820px) and (min-width: 420px) {
  #ampromo-overlay.mode-popup #ampromo-items.amcarousel {
    width: 400px;
  }
  #ampromo-overlay.mode-popup #ampromo-items.amcarousel #ampromo-carousel-wrapper {
    width: 250px;
  }
}
@media only screen and (max-width: 420px) {
  #ampromo-overlay.mode-popup #ampromo-items.amcarousel {
    width: 100%;
  }
  #ampromo-overlay.mode-popup #ampromo-items.amcarousel #ampromo-carousel-wrapper {
    width: 250px;
  }
  #ampromo-overlay.mode-popup .ampromo-carousel-control {
    z-index: 10001;
  }
  #ampromo-overlay.mode-popup .ampromo-carousel-control.next {
    right: 0;
  }
  #ampromo-overlay.mode-popup .ampromo-carousel-control.prev {
    left: 0;
  }
}
@media only screen and (max-width: 340px) {
  #ampromo-overlay.mode-popup #ampromo-items .ampromo-item {
    border: none;
  }
}
@media only screen and (max-height: 500px) {
  #ampromo-overlay.mode-popup #ampromo-items {
    padding-top: 0;
  }
  #ampromo-overlay.mode-popup #ampromo-items.amcarousel {
    top: 0 !important;
    height: 100%;
  }
  #ampromo-overlay.mode-popup #ampromo-items > h4 {
    display: none;
  }
}
#ampromo-carousel-wrapper {
  overflow: hidden;
  margin: 0 auto;
}
#ampromo-carousel-content .ampromo-slide {
  float: left;
}
.ampromo-item .qty-holder {
  display: none;
}
.ampromo-item .giftcard-send-form {
  padding: 0;
  margin: 0;
}
.ampromo-item-options select,
.ampromo-item-options input {
  max-width: 210px;
}
.ampromo-notification {
  padding: 7px;
  text-align: center;
  margin-bottom: 12px;
  border: 1px solid #f16048;
  color: #df280a;
  background: #faebe7;
}
.ampromo-items-form h4 {
  line-height: 50px;
}
.ampromo-items-form h4 a {
  display: inline-block;
  vertical-align: middle;
  line-height: 14px;
}
.ampromo-label {
  float: right;
  position: absolute;
  z-index: 500;
}
.ampromo-gift .product-image {
  float: left;
}
.ampromo-gift li {
  margin: 10px 10px;
  float: left;
}
.ampromo-tooltip {
  padding: 2px 5px;
  background: #FEC;
  border: 1px solid #FAA819;
  color: #1F5070;
  text-align: left;
  width: 300px;
  position: absolute;
  z-index: 10001;
}
.ampromo-product-name {
  font-weight: bold;
}

.calendar {
  z-index:10001;
}


.otp-verification-popup .notification-popup {
	max-width: 750px;
	padding: 60px 35px;
}

.otp-verification-popup.mobile .notification-popup {
	padding: 3% 2%;
}

.otp-verification-popup .notification-popup h3 {
	font-size: 22px;
}

.otp-verification-popup .input-box {
	margin-top: 25px;
}

.otp-verification-popup .input-text {
	width: 100%;
	max-width: 355px;
    height: 40px;
    box-shadow: -1px 1px 1px 0px rgb(0 0 0 / 8%);
    border-color: #d1d1d1;
    background: #fff;
    border-radius: 10px;
    color: #42240f;
}

.otp-verification-popup.otp .input-box {
	margin-top: 25px;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
}

.otp-verification-popup.otp .input-box:after {
	display: none;
}

.otp-verification-popup.otp .input-text {
	font-size: 45px;
    height: 65px;
    box-shadow: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    color: #42240f;
    border-bottom: 1px solid #42240f;
    outline: 0;
	outline: none;
	-webkit-flex-basis: 13%;
	-ms-flex-preferred-size: 13%;
	flex-basis: 13%;
	max-width: 65px;
	width: 13%;
	text-align: center;
	padding: 0;
	margin: 0 2%;
}

.otp-verification-popup.otp .input-text:focus,
.otp-verification-popup.otp .input-text:active {
	outline: 0;
	outline: none;
	background-color: transparent;
	border-width: 0 0 2px 0;
	border-color: #42240f;
}

.otp-verification-popup .validation-advice {
	width: 100%;
	max-width: 355px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}

.otp-verification-popup .notification-popup .choices {
	padding-top: 50px;
}

.otp-verification-popup .notification-popup .choices .button {
	max-width: 350px;
	margin-bottom: 8px;
}

.otp-verification-popup .notification-popup .choices .button.disabled {
	pointer-events: none;
	border-color: #C8C8C8;
}

.otp-verification-popup .notification-popup .choices .button.disabled .timer {
	color: #ffffff;
}

.otp-verification-popup .resend-link > a {
	font-weight: bold;
	cursor: pointer;
	white-space: nowrap;
}

.otp-verification-popup .resend-link > a.disabled {
	color: #C8C8C8;
    cursor: not-allowed;
    pointer-events: none;
}

.otp-verification-popup .timer {
	font-weight: bold;
	color: #e1261c;
}

.otp-verification-popup .otp-validate-msg {
	color: #e1261c;
}

.form-register .form-list .field-mobile .verify-code {
	display: inline-block;
	vertical-align: middle;
	border: solid 2px #42240f;
	height: 40px;
	padding: 7px 15px;
	min-width: 235px;
	width: 100%;
	margin-left: 0;
	margin-top: 10px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	margin-top: 0;
}

.form-register .form-list .field-mobile .verify-code.verified,
.form-register .form-list .field-mobile .verify-code.disabled {
	color: #fff;
    background: #C8C8C8;
    border-color: #C8C8C8;
    cursor: not-allowed;
    pointer-events: none;
}

.form-register .form-list .field-mobile .verify-code:not(.verified):not(.disabled):hover {
	color: #42240f;
	background-color: #ffffff;
}

@media only screen and (min-width : 641px) {

	.form-register .form-list .field-mobile .verify-code {
		font-size: 16px;
		width: auto;
		display: inline-block;
		vertical-align: top;
		padding: 5px 15px;
		margin-top: 27px;
	}
}

@media only screen and (max-width: 768px) {
	.otp-verification-popup .notification-popup {
		padding: 50px 30px;
	}

	.otp-verification-popup .notification-popup h3 {
		font-size: 18px;
	}

	.otp-verification-popup .input-box {
		margin-top: 15px;
	}

	.otp-verification-popup .notification-popup .choices .button {
		padding: 7px 15px;
	}
}

@media only screen and (max-width: 480px) {
	.otp-verification-popup.otp .input-text {
		font-size: 35px;
	}

	.otp-verification-popup .notification-popup .choices .button {
		max-width: none;
	}

	.otp-verification-popup .resend-link,
	.otp-verification-popup .timer,
	.otp-verification-popup .otp-validate-msg {
		font-size: 13px;
	}
}
#test112211223{
overflow:hidden;
}

#confirmOverlay{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	background:url('https://www.dolce-gusto.co.th/skin/frontend/nestle/default/css/amasty/amcart/ie.png');
	background: -moz-linear-gradient(rgba(11,11,11,0.1), rgba(11,11,11,0.6)) repeat-x rgba(11,11,11,0.2);
	background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11,11,11,0.1)), to(rgba(11,11,11,0.6))) repeat-x rgba(11,11,11,0.2);
	z-index: 99999;
}


#am-block-related{
overflow: hidden;
}

#confirmBox{
	background:url('https://www.dolce-gusto.co.th/skin/frontend/nestle/default/css/amasty/amcart/body_bg.jpg') repeat-x left bottom #e5e5e5;
    width: 100%;
	max-width: 460px;
    min-width: 320px;
	position:fixed;
	text-align: center;
	margin:-130px 0 0 -230px;
	border: 1px solid rgba(33, 33, 33, 0.6);
    z-index: 100;
	-moz-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
	-webkit-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
	box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
}

#hideDiv{
    width:100%;
    height:100%;
    z-index: 10;    
}

#confirmBox h1,
#confirmBox p{
	font:26px/1 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
	background:url('https://www.dolce-gusto.co.th/skin/frontend/nestle/default/css/amasty/amcart/header_bg.jpg') repeat-x left bottom #f5f5f5;
	padding: 18px 5px;
    margin: 0;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
	color:#666;
}

#confirmBox h1{
	letter-spacing:0.3px;
	color:#888;
}

#confirmBox p{
	background:none;
	font-size:16px;
	line-height:1.4;
	padding-top: 5px;
}

#amcart-count{
    font: 26px/1 'Cuprum','Lucida Sans Unicode','Lucida Grande',sans-serif;
    color: #666666;
    background:none;
    font-size:16px;
    line-height:1.4;
    padding-top: 5px;
}

#am-input{
    width:25px;
    height: 30px;
    text-align:center;
    font: 15px 'Cuprum','Lucida Sans Unicode','Lucida Grande',sans-serif;
}

#am-input:focus{
    border-color: #ffff99;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset,0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0 none;
}

.focus{
    border-color: #ffff99;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset,0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0 none;
}


#confirmButtons{
	padding:5px 0 15px;
	text-align:center;
}

#confirmButtons .button{
	display:inline-block;
	background:url('https://www.dolce-gusto.co.th/skin/frontend/nestle/default/css/amasty/amcart/buttons.png') no-repeat;
	color:white;
	position:relative;
	height: 33px;  
	font:17px/33px 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
	 width: 140px;
    overflow: hidden; 
	margin-right: 15px;
	padding: 0 30px 0 30px;
	text-decoration:none;
	border:none;   
}

#confirmBox .button:last-child{	
    margin-right:0;
}

#confirmButtons .button span{
	position:absolute;
	top:0;
	right:-5px;
	background:url('https://www.dolce-gusto.co.th/skin/frontend/nestle/default/css/amasty/amcart/buttons.png') no-repeat;
	width:5px;
	height:33px
}

.amcart-options form{
    text-align: left;
    font:16px/1 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
    color:#666;
}

.amcart-options form dd{
    border-bottom: 1px solid white;
    margin: 0 0 5px 10px;
    padding: 5px 0 10px 0;
}

.amcart-options form dd input {
    padding: 6px 0 4px 0px;
    border: 1px solid #cecece;
    background: #F6F6f6;
}

.amcart-options form dd select {
    border: 1px solid #cecece;
    background: #F6F6f6;
}

.amcart-options form dd textarea {
    /* = Убираем скролл */
    overflow: auto;
 
    /* = Убираем увеличение */
    resize: none;
    width: 300px;
    height: 50px;
 
    /* = Добавим фон, рамку, отступ*/
    background: #f6f6f6;
    border: 1px solid #cecece;
    border-radius: 8px 0 0 0;
    padding: 8px 0 8px 10px;
}

#messageBox{
      padding: 5px 21px 5px 21px;
}

#messageBox dt label {
    color: #2F2F2F;
    font-weight: bold;
}

#messageBox div.price-box {
    margin-bottom: 0px;
    margin-top: 5px;
    margin-left: 10px;
}
#messageBox div.price-box p {
    margin: 0px;
    padding: 0px;
}

#messageBox .required em {
    color: red;
    margin-right: 3px;
}

#amimg_container
{
    position: absolute;
    top: 340px;
    left: 50%;
    z-index: 9999;
}

#amprogress{
    height:100%;
    width:100%;
    position:fixed;
    top:0;
    left:0;
    background:url('https://www.dolce-gusto.co.th/skin/frontend/nestle/default/css/amasty/amcart/ie.png');
    background: -moz-linear-gradient(rgba(11,11,11,0.1), rgba(11,11,11,0.6)) repeat-x rgba(11,11,11,0.2);
    background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11,11,11,0.1)), to(rgba(11,11,11,0.6))) repeat-x rgba(11,11,11,0.2);
    z-index:100000;
 }
 
#messageBox .product {
    margin-left: 0px;
    padding-top: 5px;;
}

#messageBox td .price-box p{
   font-size:13px;
}

#messageBox td {
   text-align: center;
   width:133px;
   padding:0 5px 5px 5px;
}


#am-block-related table{
    table-layout: fixed;
    width: 398px;
    word-wrap: break-word;
}
 
 div.product-details{
    position:relative;
    bottom: 3px;
}

#messageBox .block-related p{
    padding:5px 0 5px 0;
    margin:0;
    
}
#messageBox p.block-related-p{
    border-bottom: 1px solid #C4C1BC; 
}

#am-qty-input{
    margin:5px;
}

#am-qty{
    margin:5px;
}

#am-qty-button-up{
    border: black 1px;
}

#am-qty-button-down{
   border: black 1px;
}

#am-qty-button-update{
    position:relative;
    top:30px;
    left:-15px;
}

#am_minicart_container{
   /* background: url("https://www.dolce-gusto.co.th/skin/frontend/nestle/default/css/amasty/amcart/header_bg.jpg") repeat-x scroll left bottom #F5F5F5;
    border-radius: 2px 2px 2px 2px;
    color: #555555;
    padding: 8px;
    position: absolute;
    text-align: left;
    right: 0;
    width: 234px;
    z-index: 3000;
    overflow: hidden; 
   /*box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset,0 0 8px rgba(82, 168, 236, 0.6);
   -webkit-box-shadow: 1px 1px 1px #D3D3D3; 
   -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#D3D3D3,direction=125,strength=1)";
   box-shadow: 1px 1px 1px #D3D3D3; */
}

#am_minicart_container li{
   /*width: 220px;
   padding: 5px;
   background: none;*/
}

#am_minicart_container button.button span{
   /* background-color: rgb(117, 178, 211); */
   border: none;
   border-radius: 2px 2px 2px 2px;
}

#am_minicart_container button.button{
    /* margin: 5px;   */
}
 

#am_minicart_container button.button:hover span{
   /*background-color: rgb(120, 189, 218);*/
}

#am_minicart_container li:hover{
    /* background-color: white; */
}

#am_minicart_container a.btn-remove, a.btn-edit {
    float: right;
    margin: 1px 0 2px 5px;
}
 
#confirmButtons .blue{				background-position:left top;text-shadow:1px 1px 0 #5889a2;}
#confirmButtons .blue span{			background-position:-195px 0;}
#confirmButtons .blue:hover{		background-position:left bottom;}
#confirmButtons .blue:hover span{	background-position:-195px bottom;}

#confirmButtons .gray{				background-position:-200px top;text-shadow:1px 1px 0 #707070;}
#confirmButtons .gray span{			background-position:-395px 0;}
#confirmButtons .gray:hover{		background-position:-200px bottom;}
#confirmButtons .gray:hover span{	background-position:-395px bottom;}
.our-products {
    margin: 3em 0;
}
.our-products .our-products-items {
    overflow: visible;
}
#cart_crosssell,
#search_productlist {
    overflow: visible;
}
.our-products .sub-headline {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
}
.our-products h3 {
    font-size: 20px;
    margin: 2rem 0;
}
.our-products .headline p {
    padding-bottom: 0;
    margin-bottom: 0;
}
.our-products .see-more {
    display: block;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    border: 2px solid #42240f;
    padding-left: 1em;
    margin-left: 1em;
    font-weight: 900;
    white-space: nowrap;
    -webkit-transition: box-shadow 200ms linear;
    -webkit-transition-delay: 0;
    -moz-transition: box-shadow 200ms linear 0;
    -o-transition: box-shadow 200ms linear 0;
    transition: box-shadow 200ms linear 0;
}
/* .our-products .see-more:hover {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.18);
} */
.our-products .see-more > span {
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
    line-height: 30px;
}

.our-products .see-more > span:hover {
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.28);
    -webkit-text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.28);
    -moz-text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.28);
}

.our-products .see-more > span.icon {
    width: 34px;
    height: 34px;
    text-align: center;
    margin: -1px -1px -1px 1em;
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/long-right-arrow.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    background-color: #42240f;
}
.our-products-container:last-of-type ul.our-products-grid {
    margin-bottom: 0;
}
ul.our-products-grid {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
ul.our-products-grid.no-slide {
    flex-wrap: wrap;
}
ul.our-products-grid > li {
    padding: 8px;
    -webkit-flex-basis: 45%;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    max-width: 45%;
    width: 45%;
    min-width: 150px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: nowrap;
    height: auto;
}
.cms-home ul.our-products-grid > li .item,
ul.our-products-grid > li .item {
    width: 100%;
    padding: 15px 15px 25px 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.18);
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    background-color: #ffffff;
}
ul.our-products-grid > li .item > form {
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
}
ul.our-products-grid > li .item > form > .product-info-content,
ul.our-products-grid > li .item .desc {
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
}
ul.our-products-grid .product-info-content .product-image {
    position: relative;
    margin-bottom: 25px;
}
ul.our-products-grid .product-info-content .product-image img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
ul.our-products-grid .product-info-content .product-image .product-label {
    font-size: 16px;
    font-weight: 900;
    line-height: 48px;
    /*color: #e6e7e8;*/
    width: 48px;
    height: 48px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    /*background-color: #d52b1e;*/
    text-align: center;
}
ul.our-products-grid > li .item .product-name {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: flex-start;
    margin-bottom: 0;
    min-height: 40px;
    max-height: 57px;
    overflow: hidden;
}
ul.our-products-grid > li .item .desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
ul.our-products-grid > li .item .product-name > span,
ul.our-products-grid > li .item .product-name a,
ul.our-products-grid > li .item .product-name a:hover {
    color: #42240f;
    font-size: 14px;
    font-weight: bold;
    min-height: 40px;
    max-height: 57px;
    overflow: hidden;
}
ul.our-products-grid > li .item .product-name .box-color {
    display: block;
    width: 25px;
    min-width: 25px;
    height: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    margin-left: 10px;
    border: 1px solid transparent;
    min-height: 25px;
}
ul.our-products-grid > li .item .product-name .box-color.border {
    border-color: #a2a3a3;
}
ul.our-products-grid > li .item .price-info {
   /* display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: flex-start;*/
    margin: 0 0 25px 0;
}

ul.our-products-grid > li .item .price-info .price-info-wrapper {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: flex-start;
    /*margin: 0 0 25px 0;*/
}
ul.our-products-grid > li .item .price-box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    min-height: 64px;
}
ul.our-products-grid > li .item .price-box .special-price {
    order: 1;
}
ul.our-products-grid > li .item .price-box .old-price {
    order: 2;
}
ul.our-products-grid > li .item .price-box .old-price .price {
    position: relative;
    color: #939598;
    text-decoration: none;
    padding: 0 5px;
}
ul.our-products-grid > li .item .price-box .old-price .price:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ae1f36;
    position: absolute;
    left: 0;
    top: 50%;
}
ul.our-products-grid > li .item .price-box p {
    margin: 0;
    padding: 0;
}
ul.our-products-grid > li .item .price {
    color: #42240f;
    font-weight: bold;
    display: inline-block;
}

ul.our-products-grid > li .item .price::first-letter,
ul.our-products-grid > li .item .price-box .old-price .price::first-letter {
    margin-right: 3px;
    display: inline-block;
}

ul.our-products-grid > li .item .special-price span.price {
    color: #ae1f36;
}
ul.our-products-grid > li .item .special-price span.price,
ul.our-products-grid > li .item .regular-price span.price {
    font-size: 18px;
}
ul.our-products-grid > li .item .link-wishlist {
    display: block;
    font-size: 0;
}
ul.our-products-grid > li .item .link-wishlist:after {
    content: '';
    width: 25px;
    height: 23px;
    display: inline-block;
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/favourite.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 0 0;
    margin-top: 10px;
}
ul.our-products-grid > li .item .link-wishlist:hover:after {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/favourite-active.svg);
}
ul.our-products-grid > li .item .actions {
    flex-wrap: nowrap;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    background-color: #e5e5e5;
    margin-top: 0;
}
ul.our-products-grid > li .item .actions .changeQty {
    padding: 4px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-right: 10px;
}
/*
ul.our-products-grid > li .item .actions a.disabled,
.product-view .changeQty a.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: default;
}
*/
/*.monthlypackage-index-index ul.our-products-grid > li .item .actions .changeQty {
    pointer-events: none;
    opacity: 0.6;
}*/
ul.our-products-grid > li .item .actions .qty {
    font-size: 15px;
    font-weight: bold;
    height: 34px;
    border: 0;
    background-color: transparent;
}
ul.our-products-grid > li .item .actions .qty-dec,
ul.our-products-grid > li .item .actions .qty-inc,
ul.our-products-grid > li .item .actions .qty-dec-disable,
ul.our-products-grid > li .item .actions .qty-inc-disable  {
    width: 34px;
    height: 34px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-weight: 300;
    line-height: 32px;
    background-color: #ffffff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
}

ul.our-products-grid > li .item .actions .qty-dec,
ul.our-products-grid > li .item .actions .qty-dec-disable {
    font-size: 36px;
    line-height: 28px;
}

ul.our-products-grid > li .item .actions.disable .changeQty {
    opacity: 0.5;
}

ul.our-products-grid > li .item .actions .qty-dec-disable,
ul.our-products-grid > li .item .actions .qty-inc-disable {
    pointer-events: none;
    opacity: 0.5; 
}

ul.our-products-grid > li .item .actions .qty-dec-disable + input {
    pointer-events: none;
    opacity: 0.5; 
}

ul.our-products-grid > li .item .actions .qty-dec {
    pointer-events: none;
    opacity: 0.5;
}

ul.our-products-grid > li .item .actions .qty-dec.bt-normal {
    pointer-events: unset;
    opacity: 1;
}
ul.our-products-grid > li .item .actions .qty-inc,
ul.our-products-grid > li .item .actions .qty-inc-disable {
    font-size: 27px;
}

ul.our-products-grid > li .item .btn-cart {
  font-size: 17px;
  font-weight: normal;
  display: inline-block;
  padding: 4px 20px;
  text-align: center;
  text-transform: none;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 34px;
  min-height: 43px;
  min-width: 120px;
  background: #42240f;
  color: #FFFFFF;
  border: 2px solid #42240f;
}

.no-touch ul.our-products-grid > li .item .btn-cart:hover,
.touch ul.our-products-grid > li .item .btn-cart.btn-hover {
    background: #FFFFFF;
    color: #42240f;
    border-color: #e5e5e5;
    outline: none;
    cursor: pointer;
}

ul.our-products-grid > li .item .btn-cart.disabled,
ul.our-products-grid > li .item .btn-cart:disabled,
ul.our-products-grid > li .item .btn-cart.disabled:hover,
ul.our-products-grid > li .item .btn-cart:disabled:hover {
  color: #FFFFFF;
  background: #ccc;
  border-color: #ccc;
  opacity: 1;
  cursor: not-allowed;
}

.our-products .our-products-slide-btn {
    width: 11px;
    height: 30px;
    position: absolute;
    left: 0;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}

.our-products .our-products-slide-btn.prev {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/brown-prev-arrow.svg);
    background-repeat: no-repeat;
    background-size: 11px 16px;
    background-position: center;
}

.our-products .our-products-slide-btn.next {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/brown-next-arrow.svg);
    background-repeat: no-repeat;
    background-size: 11px 16px;
    background-position: center;
    left: auto;
    right: 0;
}

.our-products .our-products-slide-btn.swiper-button-disabled {
    display: none;
    opacity: 0.2;
    cursor: default;
}

#add_item_list .monthly-package-page {
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 581px) {
    ul.our-products-grid > li {
        max-width: 45%;
        width: 45%;
    }

    .our-products .see-more {
        padding-left: 20px;
    }

    .our-products .see-more > span {
        font-size: 17px;
    }

    .our-products .see-more > span.icon {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 769px) {
    .our-products-items {
        position: relative;
        /*padding: 0 35px;*/
        max-width: 960px;
        margin-left: auto;
        margin-right: auto; 
    }

    /*.our-products-items ul {
        margin: 2em 0 2.5em 0;
    }*/

   /* .our-products-items ul > li {
        position: relative;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
        width: 50%;
    }*/

    .our-products .our-products-slide-btn {
        width: 25px;
    }

    .our-products .our-products-slide-btn.next {
        background-size: 19px 30px;
        right: -25px;
    }

    .our-products .our-products-slide-btn.prev {
        background-size: 19px 30px;
        left: -25px;
    }

    ul.our-products-grid > li .item .special-price span.price,
    ul.our-products-grid > li .item .regular-price span.price,
    ul.our-products-grid > li .item .price-box > span.price{
        font-size: 25px;
    }

    ul.our-products-grid > li .item .btn-cart {
        padding-left: 0;
        padding-right: 0;
    }

    ul.our-products-grid > li .item .actions .btn-cart {
        width: calc(100% - 60px);
    }

    ul.our-products-grid > li .item .actions.full .btn-cart {
        width: 100%;
    }
}

@media only screen and (min-width: 931px) {
    .our-products {
        margin: 5em 0;
    }

    .our-products h3 {
        font-size: 30px;
    }

    ul.our-products-grid > li {
        max-width: 33.33%;
        width: 33.33%;
    }
}

@media only screen and (min-width: 931px) and (max-width: 1023px) {
    .our-products-items {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 930px) {
    .cms-home ul.our-products-grid > li .item, ul.our-products-grid > li .item {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .our-products-container {
        overflow: visible;
    }
    .our-products-container .our-products-wrapper {
        padding: 0 10px;
    }

    ul.our-products-grid.no-slide > li {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
        width: 50%;
    }

    .cms-home ul.our-products-grid > li .item, 
    ul.our-products-grid > li .item {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
    }
    
    ul.our-products-grid > li .item .price-info {
        margin-top: 5px;
    }

    ul.our-products-grid > li .item .desc {
        font-size: 12px;
    }

    ul.our-products-grid > li .item .actions .qty {
        width: 2em;
        padding: 0;
    }

    ul.our-products-grid > li .item .btn-cart {
        font-size: 13px;
        padding: 4px 10px;
    }

    ul.our-products-grid > li .item .link-wishlist:after {
        width: 22px;
        height: 22px;
        margin-top: 5px;
    }

    ul.our-products-grid > li .item .product-name {
        min-height: 32px;
        max-height: 48px;
        overflow: hidden;
    }

    ul.our-products-grid > li .item .product-name > span,
    ul.our-products-grid > li .item .product-name a, 
    ul.our-products-grid > li .item .product-name a:hover {
        font-size: 12px;
        min-height: 32px;
        max-height: 48px;
        overflow: hidden;
    }

    ul.our-products-grid > li .item .product-name .box-color {
        width: 20px;
        min-width: 20px;
        height: 20px;
        min-height: 20px;
        border-radius: 50%;
    }

    .our-products .our-products-slide-btn {
        display: none;
    }

    ul.our-products-grid > li .item .product-name  {
        align-items: flex-start;
        float: none;
        line-height: 1.4;
        text-transform: uppercase;
        width: 100%;
    }

    ul.our-products-grid > li .item .price-box .old-price .price {
        padding-left: 0;
        padding-right: 0;
        font-size: 12px;
    }

    ul.our-products-grid .product-info-content .product-image .product-label {
        line-height: 34px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
    }

    ul.our-products-grid .product-info-content .product-image .product-label {
        line-height: 34px;
        font-size: 10px;
    }

    ul.our-products-grid > li .item .btn-cart {
        font-size: 15px;
        width: 100%;
    }

    ul.our-products-grid > li .item .price-box {
        min-height: 52px;
    }
}

@media only screen and (max-width: 580px) {
    /* .monthly-package-page section ul.our-products-grid.no-slide {
        margin: 0 -5px;
    } */

    ul.our-products-grid > li {
        padding: 5px;
    }

    .cms-home ul.our-products-grid > li .item, 
    ul.our-products-grid > li .item {
        padding: 15px 8px 15px 8px;
    }

    ul.our-products-grid > li .item .actions {
        flex-wrap: wrap;
        background-color: transparent;
    }

    ul.our-products-grid > li .item .actions .changeQty {
        width: 100%;
        justify-content: space-between;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-border-radius: 34px;
        -moz-border-radius: 34px;
        -ms-border-radius: 34px;
        -o-border-radius: 34px;
        border-radius: 34px;
        background-color: #e5e5e5;
        margin-bottom: 0.5em;
        margin-right: 0;
    }
}
.monthly-package-options .compare-package-link h3,
.monthly-package-content .compare-package-link h3 {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
}

.monthly-package-options .compare-package-link h3 {
	margin-bottom: 2px;
}

.monthly-package-options .compare-package-link .btn {
	display: block;
	margin: 30px auto 0 auto;
}

.monthly-package-options .compare-package-link .btn > span {
	display: block;
    white-space: nowrap;
    padding: 0 20px;
    background-color: #fff;
    color: #4b218a;
    font-size: 17px;
    font-weight: 700;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    min-width: 235px;
    margin: 0 auto;
    height: 57px;
	line-height: 57px;
}

.monthly-package-options .package-items {
	position: relative;
	padding: 0 0 0
}

.monthly-package-options .package-items .swiper-wrapper {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    margin: 1em 0 6em;
}
/* 
.monthly-package-options .package-items .swiper-wrapper > .swiper-slide {
	position: relative;
	-webkit-flex-basis: 32%;
	-ms-flex-preferred-size: 32%;
	flex-basis: 32%;
	max-width: 32%;
	width: 32%;
} */

.monthly-package-options .package-items .swiper-wrapper > li .item-content {
	position: relative;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.monthly-package-options .package-items .swiper-wrapper > li .item-content img {
	display: block;
	width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/************************/
.monthly-package-options .item-content .package-container {
	position: relative;
    display: flex;
    max-width: 339px;
    /* min-height: 635px; */
    border-radius: 10px;
    flex-direction: column;
}
.monthly-package-options .item-content .package-container.pack1 {
	background-color:rgba(183, 5, 100, 0.1);
}
.monthly-package-options .item-content .package-container.pack2 {
	background-color:rgba(75, 33, 138, 0.1);
}
.monthly-package-options .item-content .package-container.pack3 {
	background-color:rgba(4, 98, 63, 0.1);
}
.monthly-package-options .item-content .badge {
	position: absolute;
	display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
    width:  60px;
    height: 60px;
    border-radius: 50%;
}

.monthly-package-options .item-content .badge .xNum {	
    margin-bottom: 3px;
	display: block;
	font-size: 1.6em;
	font-weight: 900;
	line-height: 1;
	color: #ffffff;
	text-align: center;
}
.monthly-package-options .item-content .badge .per-month {
	display: block;
	font-size: 0.6em;
	font-weight: 400;
	line-height: 1;
	color: #ffffff;
	text-align: center;
}
.monthly-package-options .item-content .badge.p1 {
    bottom: 75px;
	right: 14px;
    background-color: #B70565;
}
.monthly-package-options .item-content .badge.p2 {
    bottom: 107px;
	right: 50px;
    background-color: #4B218A;
}
.monthly-package-options .item-content .badge.p3 {
    bottom: 95px;
    right: 34px;
    background-color: #046240;
}

.monthly-package-options .item-content .package-container .info {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
	width: 100%;
    /* height: 464px; */
    text-align: center;
	cursor: default;
	user-select: none;
}
.monthly-package-options .item-content .package-container .info .topTX {
	position: relative;
	margin: 30px auto 0;
    padding: 0 0 20px;
    width: 100%;
	min-height: 200px;
}
.monthly-package-options .item-content .package-container .info .topTX:after {
	position: absolute;
	content: '';
	display: block;
	width: 80%;
	height: 1px;
	left: 10%;
	bottom: 0;
    border-bottom: 1px solid rgba(0,0,0, 0.1);
}

.monthly-package-options .item-content .package-container .info .topTX h3 {
	margin: 5px 0 12px;
    font-size: 1.4em;
    font-weight: 700;
    color: #16151A;
}
.monthly-package-options .item-content .package-container .info .topTX > ul {
	margin: 0 auto;
	padding: 0;
	width: 75%;
	flex-direction: column;
}
.monthly-package-options .item-content .package-container .info .topTX li {
	list-style: disc;
    margin-left: 2.2em;
    max-width: 100%;
    width: 100%;
	font-size: 1em;
    line-height: 1.6;
    font-weight: 700;
    color: #16151A;
    text-align: left;
}
.monthly-package-options .item-content .package-container .info .topTX li::marker {
	font-size: 0.9em;
}

.monthly-package-options .item-content .package-container .info .buttTX {
    margin: 0 auto;
	padding-top: 24px;
    height: auto;
    width: 100%;
    text-align: center;
}
.monthly-package-options .item-content .package-container .info .buttTX span {
	font-size: 1em;
	font-weight: 600;
	color: #16151A;
}
.monthly-package-options .item-content .package-container .info .buttTX h3 {	
    margin: 5px 0 5px;
	font-size: 1.8em;
	font-weight: 700;
	color: #42240F;
}

.monthly-package-options .item-content .package-container .info .buttTX h3:lang(en) {	
	font-size: 1.6em;
	letter-spacing: -1px;
}
/*************************/
.monthly-package-options .package-items .package-detail {
	position: absolute;
	display: block;
	width: 90%;
	top: 3%;
	left: 5%;
}

.monthly-package-options .package-items .package-detail .pack-name {
	font-size: 1.4em;
	font-weight: 400;
	text-align: center;
}

.monthly-package-options .package-items .package-detail .det-lists {
	margin-left: 40px;
	display: list-item;
}

.monthly-package-options .package-items .package-detail .det-lists .det-list {
	list-style-type: disc;
	margin-left: 20px;
	max-width: 100%;
	width: 100%;
	display: list-item;
}

.monthly-package-options .package-items .package-detail .benefit {
	font-size: 1.0em;
	font-weight: 400;
	text-align: center;
}

.monthly-package-options .package-items .package-detail .just-only {
	font-size: 1.5em;
	font-weight: 600;
	color: #42240F;
	text-align: center;
}
.monthly-package-options .package-items .package-detail .just-only:before {
	content: unset;
}

.cms-index-index .monthly-package-options .package-items ul > li .item-content .monthlyPackageImage {
	display: none;
}

.monthly-package-options .package-items:nth-of-type(2) ul > li .item-content .subscribe-now-wrapper {
	height: 20.5%;
    padding-bottom: 2.5%;
}

.monthly-package-options .package-items ul > li .subscribe-now:hover {
	color: #fff;
	background: #42240f; 
	/* border-color: #42240f; */
}

.monthly-package-options .package-items ul > li .subscribe-now:hover {
	cursor: pointer;
}

.monthly-package-options .package-slide-btn {
	width: 11px;
	height: 30px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	cursor: pointer;
}

.monthly-package-options .package-slide-btn.prev {
	background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/brown-prev-arrow.svg);
    background-repeat: no-repeat;
    background-size: 11px 16px;
    background-position: center;
}

.monthly-package-options .package-slide-btn.next {
	background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/brown-next-arrow.svg);
	background-repeat: no-repeat;
    background-size: 11px 16px;
    background-position: center;
    left: auto;
    right: 0;
}

.monthly-package-options .package-slide-btn.swiper-button-disabled {
	display: none !important;
	opacity: 0.2;
	cursor: default;
}

.monthly-package-options .compare-package-link {
	color: #ffffff;
	background-color: #4b218a;
	min-height: 240px;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    padding: 0 10px;
}

.monthly-package-options .compare-package-link a {
	width: 100%;
	color: #ffffff;
	text-align: center;
}

.monthly-package-content .compare-package-link span.icon {
	display: inline-block;
    vertical-align: middle;
    width: 34px;
    height: 34px;
    text-align: center;
    margin: auto;
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/long-purple-right-arrow.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    background-color: #ffffff;
}

.monthly-package-options .container > h3 {
	position: relative;
	margin-bottom: 0;
	padding: 0 20px;
	font-size: 32px;
	font-weight: 400;
	color: #16151A;
	text-align: center;
}

.monthly-package-options .container > span {
	position: relative;
	margin: 0 auto;
	display: block;
    font-size: 18px;
	color: #42240F;
	text-align: center;
	z-index: 1;
}

/* Packge Learn More */
.monthly-package-options .package-items ul > li .item-content .subscribe-now-wrapper,
.monthly-package-options .package-items ul > li .item-content .learn-more-wrapper {
	position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	justify-content: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	left: unset;
	width: 100%;
	height: 36px;
}

.monthly-package-options .package-items ul > li .item-content .subscribe-now-wrapper {
	margin: 10px 0 0;
	height: 60px;	
}
.monthly-package-options .package-items ul > li .item-content .learn-more-wrapper {
	margin: 0 0 10px;
}

.monthly-package-options .package-items ul > li .subscribe-now {
	padding: 0;
	display: block;
	max-width: 220px;
	width: 100%;
	min-height: 43px;
	font-size: 16px;
	font-weight: 600;
	line-height: 2;
	text-align: center;
	white-space: nowrap;
	color: #42240f;
	outline: none;
}

.monthly-package-options .package-items ul > li .learn-more {
	padding: 4px 0;
	display: block;
	max-width: 220px;
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	text-align: center;
	white-space: nowrap;
	color: #42240f; 
	text-decoration: underline;
}
.monthly-package-options .package-items ul > li .subscribe-now {
	width: 90%;
	border-radius: 34px;
	border: 2px solid #42240f;
}

.monthly-package-options .package-items ul > li .learn-more:hover {
	cursor: pointer;
}

.monthly-package-options .package-items ul > li .item-content .monthlyPackageImage + .learn-more-wrapper {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.main-container .container.narrow br.dt {
	display: none;
}

/************************************
for lifestyle package
**************************************/
#lifestyle-packages {
    margin: 0 auto;
	display: block;
    max-width: 1060px;
	width: 100%;
}

#lifestyle-packages .lifestyle-packages-container.swiper-container {
	display: block;
	width: 100%;	
}

#lifestyle-packages .lifestyle-packages-container.swiper-container .swiper-wrapper {
    margin: 1em 0 6em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#lifestyle-packages .lifestyle-packages-container .swiper-wrapper > li {
	list-style: none;
    position: relative;
    -webkit-flex-basis: 32%;
    -ms-flex-preferred-size: 32%;
    flex-basis: 32%;
    max-width: 32%;
    width: 32%;
}

#lifestyle-packages .lifestyle-packages-container > h3 {	
    font-size: 2em;
    font-weight: 700;
    color: #16151A;
}

#lifestyle-packages .lifestyle-packages-container > h3 br {
	display: none;
}

#lifestyle-packages .lifestyle-package-container {
	position: relative;
    display: flex;
    max-width: 100%;
    border-radius: 10px;
    flex-direction: column;
	background-color: #F2EEE4;
}

#lifestyle-packages .lifestyle-package-container .info {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
	width: 100%;
	cursor: default;
	user-select: none;
}

#lifestyle-packages .lifestyle-package-container .info .topTX {
	position: relative;
	margin: 30px auto 0;
    padding: 0 0 20px;
    width: 100%;
	min-height: 200px;
}

#lifestyle-packages .lifestyle-package-container .info .topTX:after {
	position: absolute;
	content: '';
	display: block;
	width: 80%;
	height: 1px;
	left: 10%;
	bottom: 0;
    border-bottom: 1px solid rgba(0,0,0, 0.1);
}

#lifestyle-packages .lifestyle-package-container .info .topTX h3 {
	margin: 5px 0 12px;
    font-size: 1.4em;
    font-weight: 700;
    color: #16151A;
    text-align: center;
}

#lifestyle-packages .lifestyle-package-container .info .topTX li {
	list-style: disc;
    margin-left: 1.2em;
    width: 100%;
	font-size: 1em;
    line-height: 1.6;
    font-weight: 600;
    color: #16151A;
    text-align: left;
}

#lifestyle-packages .lifestyle-package-container .info .top-description {
	margin: 0 auto 15px;
    display: block;
    width: 80%;
    min-height: 100px;
	color: #16151A;
	text-align: center;
	border-bottom: 1px solid rgba(0,0,0, 0.1);
}
#lifestyle-packages .lifestyle-package-container .info .top-description:lang(en) {
    min-height: 120px;
}

#lifestyle-packages .lifestyle-package-container .info .top-description span {
	font-size: 1em;
    line-height: 1.6;
    font-weight: 600;
    color: #16151A;
	text-align: left;
}
#lifestyle-packages .lifestyle-package-container .info .top-description span:lang(en) {
	font-size: 0.9em;
}

#lifestyle-packages .lifestyle-package-container .info .topTX > ul {
	margin: 0 auto;
	padding: 0;
	width: 80%;
	min-height: 160px;
}

#lifestyle-packages .lifestyle-package-container .info .topTX > ul:lang(en) {
	min-height: 160px;
}
#lifestyle-packages .lifestyle-package-container .info .topTX li > ul,
#lifestyle-packages .lifestyle-package-container .info .topTX li > ul li {
	list-style: none;
	text-indent: -15px;
}

#lifestyle-packages .lifestyle-package-container .info .topTX li > ul:lang(en) {
	margin-bottom: 0;
}

#lifestyle-packages .lifestyle-package-container .info .topTX li > ul:lang(en),
#lifestyle-packages .lifestyle-package-container .info .topTX li > ul li:lang(en) {
	text-indent: -15px;
}


#lifestyle-packages .lifestyle-package-container .info .topTX li li:before {
	content: "-";
	padding-right: 5px;
	color: #16151A;
}
#lifestyle-packages .lifestyle-package-container .info .buttTX h3 {
    margin-top: 20px;
	font-size: 1.4em;
    font-weight: 700;
	color: #42240F;
	text-align: center;
}

#lifestyle-packages .lifestyle-package-container .info .buttTX span {
	display: block;
	font-size: 1em;
    font-weight: 600;
	color: #16151A;
    text-align: center;
}

#lifestyle-packages .lifestyle-package-container .info .buttTX h3 + span {
	display: block;
	font-size: 0.8em;
    font-weight: 600;
	color: grey;
	text-decoration: line-through;
    text-align: center;
}

#lifestyle-packages .lifestyle-package-container .subscribe-now {
	margin: 20px auto 40px;
	width: 75%;
	height: 46px;
    border-radius: 34px;
    border: 2px solid #42240f;
	text-align: center;
	user-select: none;
	cursor: pointer;
}

#lifestyle-packages .lifestyle-package-container .subscribe-now > span {
	line-height: 2.5;
    font-size: 1.2em;
    font-weight: 900;
	user-select: none;
}

/************************************/

@media only screen and (min-width: 769px) and (max-width: 960px) {

	.monthly-package-options .item-content .package-container .info {
		min-height: 380px;
	}

	.monthly-package-options .item-content .package-container .info .topTX {
		min-height: 220px;
	}

	.monthly-package-options .item-content .package-container .info .topTX > ul {
		margin: 0;
		padding: 0;
		width: 85%;
	}

	.monthly-package-options .item-content .package-container .info .topTX h3 {
		font-size: 1.2em;
	}
	.monthly-package-options .item-content .package-container .info .buttTX h3:lang(en) {
		font-size: 1.4em;
		letter-spacing: -1px;
	}
	
	.monthly-package-options .item-content .package-container .info .topTX h3 + span {
		padding: 0 10px;
	}
}

@media only screen and (max-width: 768px) {
	
	.cms-home .monthly-package-options .package-items ul {
	    margin: 2em 0 5em;
	}
	
	.monthly-package-options .package-items ul {
	    /* margin: 2em 1em 8.5em; */
		margin: 2em 1em;
	}

	.monthly-package-options .package-items ul > li.package-item {
	    max-width: 100%;
	    width: 100%;
	}
	
	/************************/
	.monthly-package-options .item-content .package-container {
		position: relative;
		max-width: 100%;
	}

	.monthly-package-options .item-content .package-container .info {
		width: 100%;
		min-height: 430px;
		height: auto;
	}
	.monthly-package-options .item-content .package-container .info .topTX {
		position: relative;
		margin: 30px 0 0;
		padding: 0 0 20px;
		width: 90%;
		min-height: 270px;
	}

	.monthly-package-options .item-content .package-container .info .topTX h3 {
		margin: 5px 0 12px;
		font-size: calc(100vw/20);
		font-weight: 700;
		color: #16151A;
	}
	.monthly-package-options .item-content .package-container .info .topTX > ul {
		margin: 0 auto;
		padding: 0;
		width: 90%;
		flex-direction: column;
	}
	.monthly-package-options .item-content .package-container .info .topTX li {
		list-style: disc;
		margin-left: 1.2em;
		max-width: 100%;
		width: 100%;
		line-height: 1.6;
		font-weight: 700;
		color: #16151A;
		text-align: left;
		/* inline-size: 110px; */
		overflow-wrap: break-word;
	}
	.monthly-package-options .item-content .package-container .info .topTX li::marker {
		font-size: 0.8em;
	}
	.monthly-package-options .item-content .package-container .info .buttTX {
		margin: 0 auto;
		padding-top: 24px;
		height: auto;
		width: 100%;
		text-align: center;
	}
	.monthly-package-options .item-content .package-container .info .buttTX span {
		font-size: 1em;
		font-weight: 600;
		color: #16151A;
	}
	/*************************/
	
	#lifestyle-packages .lifestyle-packages-container > h3 {
		margin: 30px 0;
		text-align: center;
	}

	#lifestyle-packages .lifestyle-packages-container > h3 br {
		display: block;
	}

	#lifestyle-packages .lifestyle-packages-container .swiper-wrapper > li {
		list-style: none;
		position: relative;
		display: block;
		max-width: 100%;
		width: 100%;
		flex-basis: unset;
	}
	#lifestyle-packages .lifestyle-packages-container .swiper-pagination {
		bottom: 30px;
	}

}
/*
@media only screen and (max-width: 768px) and (min-width: 320px) {
	
	.monthly-package-options .package-items ul > li .subscribe-now {
		max-width: 70vw;
		font-size: 1.4em;
		line-height: 2.4;
	}

	.monthly-package-options .package-items ul > li .learn-more {
		font-size: 1.4em;
	}

	.monthly-package-options .package-items ul > li .item-content .learn-more-wrapper {
		margin: 10px 0 10px;
	}

	.cms-home .cms-home .monthly-package-options .container.narrow {
		position: relative;
	}
	
	.cms-home .monthly-package-options .package-items ul > li .item-content .learn-more-wrapper {
		transform: translateY(-2vh);
	}

	.cms-home .monthly-package-options .package-items ul > li .item-content .subscribe-now-wrapper {
		transform: translateY(-8vh);	
	}
	
	.cms-home .monthly-package-options .package-items .swiper-pagination {
		position: absolute;
		left: 50%;
		bottom: 30px;
		transform: translateX(-50%);
	}

	.cms-home .monthly-package-options .package-items .swiper-pagination-bullet {
		margin: 0 5px;
		background-color: #E5E5E5;
	}

	.cms-home .monthly-package-options .package-items .swiper-pagination-bullet-active {
		background-color: #B9947A;
	}
}
*/

@media only screen and (max-width: 768px) and (min-width: 481px) {

	.monthly-package-options .item-content .package-container .info .topTX li {
		font-size: calc(100vw/30);
	}

	.monthly-package-options .package-items ul > li .subscribe-now {
		max-width: 65vw;
		font-size: 24px;
		line-height: 2.4;
	}

	.monthly-package-options .package-items ul > li .learn-more {
		line-height: 2;
	}
}

@media only screen and (max-width: 480px) {

	.monthly-package-options .item-content .package-container .info {
		min-height: 400px;
	}
	.monthly-package-options .item-content .package-container .info .topTX {
		min-height: 270px;
	}
	.monthly-package-options .item-content .package-container .info .topTX li {
		margin-left: 1.5em;
		font-size: calc(100vw/25);
	}

	.monthly-package-options .package-items ul > li .subscribe-now {
		max-width: 70vw;
		font-size: 1.4em;
	}
	
	.monthly-package-options .package-items ul > li .learn-more {
		font-size: 1.1em;
	}

	.main-container .container.narrow br.dt {
		display: block;
	}
	
	.monthly-package-options .container > h3 {
		position: relative;
		margin-bottom: 0;
		padding: 0 20px;
		font-size: 2.2em;
		font-weight: 400;
		color: #16151A;
		text-align: center;
	}
	.monthly-package-options .container > h3 {
		font-size: 2.0em;
		font-weight: 500;
	}
}

@media only screen and (max-width: 420px) {
	.monthly-package-options .item-content .package-container .info {
		min-height: 370px;
	}
	
	.monthly-package-options .item-content .package-container .info .topTX {
		min-height: 220px;
	}

	.monthly-package-options .item-content .package-container .info .topTX li {
		margin-left: 1em;
	}

	.monthly-package-options .package-items ul > li .subscribe-now {
		max-width: 70vw;
		font-size: 1.2em;
	}
	.monthly-package-options .package-items ul > li .learn-more {
		max-width: 70vw;
		font-size: 1em;
}
}

@media only screen and (min-width: 1281px) {
	
	.monthlypackage-index-index .monthly-package-options .package-items ul > li .item-content .subscribe-now-wrapper {
		bottom: unset;
	}

	.monthlypackage-index-index .monthly-package-options .package-items ul > li .item-content .learn-more-wrapper {
		bottom: unset;
	}

	.monthlypackage-index-index .monthly-package-options .package-items ul > li .subscribe-now {
		padding: 4px 0;
		max-width: 267px;
	}
}

@media only screen and (min-width: 1025px) {
	
	.cms-home .monthly-package-options .package-items ul > li .item-content .learn-more-wrapper {
		
	}

	.cms-home .monthly-package-options .package-items ul > li .item-content .subscribe-now-wrapper {
		
}
 
	.monthlypackage-index-index .monthly-package-options .package-items ul > li .subscribe-now {
		padding: 4px 0;
		max-width: 267px;
	}
	}
		
@media only screen and (max-width: 1024px) and (min-width: 961px) {
	
	.monthlypackage-index-index .monthly-package-options .package-items ul > li .subscribe-now {
		padding: 4px 0;
		max-width: 220px;
	}
}

@media only screen and (min-width: 769px) {
	.monthly-package-options .package-items {
		position: relative;
		padding: 0;
	}

	.monthly-package-options .package-items ul {
	    margin: 2em 0 6em 0;
	}

	.monthly-package-options .package-items ul > li {
		position: relative;
	    -webkit-flex-basis: 32%;
	    -ms-flex-preferred-size: 32%;
	    flex-basis: 32%;
	    max-width: 32%;
	    width: 32%;
	}

	.monthly-package-options .container h3 {
		font-size: 36px;
		padding: 0 10px; 
		margin-bottom: 10px;
	}

	.monthly-package-options .container h3 span {
		padding-right: 10px;
	}

	.monthly-package-options .compare-package-link {
		min-height: 255px;
		margin: 3em 0 0 0;
	}

	.monthly-package-options .compare-pakage-link span {
		font-size: 21px;
	}

    .monthly-package-options .compare-package-link h3 {
    	font-size: 32px;
    }

    .monthly-package-content .compare-package-link h3 {
		font-size: 24px;
	}

	.monthly-package-options .compare-package-link .btn {
		margin: 30px auto 0 auto;
	}

	.monthly-package-options .compare-package-link span {
		font-size: 21px;
	}

	.monthly-package-options .compare-package-link .btn > span {
		width: auto;
		display: inline-block;
		vertical-align: middle;
	}

	.monthly-package-options .package-slide-btn {
		width: 25px;
	}

	.monthly-package-options .package-slide-btn.next {
		background-size: 19px 30px;
		right: 0;
	}

	.monthly-package-options .package-slide-btn.prev {
		background-size: 19px 30px;
		left: 0;
	}
	.lifestyle-packages .lifestyle-packages-container > h3 {
		margin: 60px auto 30px;
		font-size: 2em;
		font-weight: 500;
		color: #16151A;
		text-align: center;
	}
}

/* Notification Popup */
.notification-popup {
  display: none;
  text-align: center;
  width: calc(100% - 30px);
  max-width: 760px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: #ffffff;
  padding: 4%;
  -webkit-box-shadow:  0 0 5px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow:  0 0 5px 0 rgba(0, 0, 0, 0.08);
  box-shadow:  0 0 5px 0 rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  -ms-border-radius: 34px;
  -o-border-radius: 34px;
  border-radius: 34px;
  z-index:999;
  overflow: hidden;
}
.notification-popup img {
  margin-bottom: 10px;
}
.notification-popup h3 {
  margin-bottom: 0;
  padding: 0 15px;
}
.notification-popup h3 + p {
  margin-top: 10px;
}
.notification-popup .choices {
  padding-top: 30px;
}
.notification-popup .choices .button {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 355px;
  display: block;
  margin-bottom: 10px;
  border-radius: 30px;
  padding: 13px 20px;
  margin: 15px auto;
  border: solid 1px #42240f;
  font-size: 17px;
}
.notification-popup .choices .button.empty-cart,
.notification-popup .choices .button.leave,
.cancel-package .notification-popup .button.no {
  color: #42240f;
  background-color: #fff;
}
.notification-popup .close-btn {
  display: block;
  width: 32px;
  height: 32px;
  background: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/close.jpg) no-repeat 0 0;
  background-size: 32px auto;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.noti-overlay {
  display: none;
  content: '';
  position: fixed;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.cancel-package .notification-popup {
  max-width: 550px;
  padding: 40px 5%;
}

.cancel-package .notification-popup.recurring-error {
  font-size: 16px;
}

.cancel-package .notification-popup.recurring-error img {
  display: block;
  margin: 0 auto 20px auto;
  width: 90px;
}

.cancel-package .notification-popup.recurring-error span:not(.close-btn) {
  white-space: nowrap;
}

@media only screen and (max-width: 930px) {
  .notification-popup img {
    width: 200px;
  }
}

@media only screen and (max-width: 768px) {
  .notification-popup {
    padding: 35px 20px 20px 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
  }
  .notification-popup h3,
  .notification-popup .choices .button {
    font-size: 16px;
  }
  .notification-popup h3 br,
  .notification-popup h3 + p br {
    display: none;
  }
  .notification-popup .close-btn {
    right: 5px;
    top: 8px;
  }
  .notification-popup .choices {
    padding-top: 5px;
  }
  .cancel-package .notification-popup {
    max-width: 365px;
  }
  .cancel-package .notification-popup.recurring-error {
    font-size: 13px;
    padding: 50px 5%;
  }
  .cancel-package .notification-popup.recurring-error img {
    width: 50px;
  }
  .cancel-package .notification-popup.recurring-error p br {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .notification-popup img {
    width: 150px;
  }
}

/**
 * Magmodules.eu
 * http://www.magmodules.eu
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to info@magmodules.eu so we can send you a copy immediately.
 *
 * @category    Magmodules
 * @package     Magmodules_Snippets
 * @author      Magmodules <info@magmodules.eu)
 * @copyright   Copyright (c) 2014 (http://www.magmodules.eu)
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */
.snippets {
	border: 1px solid #e4e4e4;
	margin: 0px 0;
	overflow:auto;
}

.snippets p {
	margin-bottom:0
}

.snippets .product-name {
	font-weight:700
}

.snippets .prod-thumb {
	float:left;
	padding:8px
}

.snippets img {
	display:block;
	margin: 0px;
}

.snippets .content {
	padding:5px
}

.snippets .content i {
	font-style: initial;
}

.snippets .rating-box {
	float: right;
	margin-bottom:5px;
}

.snippets-footer {
	margin-top:-5px;
	color:#666;
	font-style:normal
}

.snippets-fields {
	font-size:x-small;
}

.snippets-fields ul {
	display:inline
}

.snippets-fields li {
	display:inline;
	color: #5d5d5d;
	background:none!important;
	padding-left:0!important;
	font-size: 13px;
	float: left;
	margin: 0px!important;
}

.snippets-fields li + li::before {
	content:"- "
}

.snippets-sidebar .rating-box {
	margin-right:5px;
	margin-top:5px;
	float: left;
	width: 73px;
	position: absolute;
	height:15px;
	font-size:0;
	background:url(https://www.dolce-gusto.co.th/skin/frontend/base/default/magmodules/snippets/images/bkg_rating.gif) repeat-x;
	background-size:15px;
	text-indent:-999em;
	overflow:hidden;
}

.snippets-sidebar .rating {
	float:left;
	height:13px;
	background:url(https://www.dolce-gusto.co.th/skin/frontend/base/default/magmodules/snippets/images/bkg_rating.gif)repeat-x;
	background-position-y:100%;
	background-size:15px
}
/*!
 *
 *  Project:  GLYPHICONS
 *  Author:   Jan Kovarik - www.glyphicons.com
 *  Twitter:  @jankovarik
 *
 */
html,
html .halflings {
  -webkit-font-smoothing: antialiased !important;
}
@font-face {
  font-family: 'Glyphicons';
  src: url('https://www.dolce-gusto.co.th/skin/frontend/base/default/magpleasure/vendor/glyphicons/fonts/glyphicons-regular.eot');
  src: url('https://www.dolce-gusto.co.th/skin/frontend/base/default/magpleasure/vendor/glyphicons/fonts/glyphicons-regular.eot?#iefix') format('embedded-opentype'), url('https://www.dolce-gusto.co.th/skin/frontend/base/default/magpleasure/vendor/glyphicons/fonts/glyphicons-regular.woff') format('woff'), url('https://www.dolce-gusto.co.th/skin/frontend/base/default/magpleasure/vendor/glyphicons/fonts/glyphicons-regular.ttf') format('truetype'), url('https://www.dolce-gusto.co.th/skin/frontend/base/default/magpleasure/vendor/glyphicons/fonts/glyphicons-regular.svg#glyphicons_halflingsregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
i.glyphicons {
  display: inline-block;
  position: relative;
  padding: 0;
  color: #1d1d1b;
  width: 16px;
  height: 16px;
  text-decoration: none;
  *display: inline;
  *zoom: 1;
}
i.glyphicons:before {
  color: #1D1D1B;
  font: 16px 'Glyphicons';
  left: 0;
  position: absolute;
  top: 0;
}
i.glyphicons.glass:before {
  content: "\e001";
}
i.glyphicons.leaf:before {
  content: "\e002";
}
i.glyphicons.dog:before {
  content: "\e003";
}
i.glyphicons.user:before {
  content: "\e004";
}
i.glyphicons.girl:before {
  content: "\e005";
}
i.glyphicons.car:before {
  content: "\e006";
}
i.glyphicons.user_add:before {
  content: "\e007";
}
i.glyphicons.user_remove:before {
  content: "\e008";
}
i.glyphicons.film:before {
  content: "\e009";
}
i.glyphicons.magic:before {
  content: "\e010";
}
i.glyphicons.envelope:before {
  content: "\2709";
}
i.glyphicons.camera:before {
  content: "\e012";
}
i.glyphicons.heart:before {
  content: "\e013";
}
i.glyphicons.beach_umbrella:before {
  content: "\e014";
}
i.glyphicons.train:before {
  content: "\e015";
}
i.glyphicons.print:before {
  content: "\e016";
}
i.glyphicons.bin:before {
  content: "\e017";
}
i.glyphicons.music:before {
  content: "\e018";
}
i.glyphicons.note:before {
  content: "\e019";
}
i.glyphicons.heart_empty:before {
  content: "\e020";
}
i.glyphicons.home:before {
  content: "\e021";
}
i.glyphicons.snowflake:before {
  content: "\2744";
}
i.glyphicons.fire:before {
  content: "\e023";
}
i.glyphicons.magnet:before {
  content: "\e024";
}
i.glyphicons.parents:before {
  content: "\e025";
}
i.glyphicons.binoculars:before {
  content: "\e026";
}
i.glyphicons.road:before {
  content: "\e027";
}
i.glyphicons.search:before {
  content: "\e028";
}
i.glyphicons.cars:before {
  content: "\e029";
}
i.glyphicons.notes_2:before {
  content: "\e030";
}
i.glyphicons.pencil:before {
  content: "\270F";
}
i.glyphicons.bus:before {
  content: "\e032";
}
i.glyphicons.wifi_alt:before {
  content: "\e033";
}
i.glyphicons.luggage:before {
  content: "\e034";
}
i.glyphicons.old_man:before {
  content: "\e035";
}
i.glyphicons.woman:before {
  content: "\e036";
}
i.glyphicons.file:before {
  content: "\e037";
}
i.glyphicons.coins:before {
  content: "\e038";
}
i.glyphicons.airplane:before {
  content: "\2708";
}
i.glyphicons.notes:before {
  content: "\e040";
}
i.glyphicons.stats:before {
  content: "\e041";
}
i.glyphicons.charts:before {
  content: "\e042";
}
i.glyphicons.pie_chart:before {
  content: "\e043";
}
i.glyphicons.group:before {
  content: "\e044";
}
i.glyphicons.keys:before {
  content: "\e045";
}
i.glyphicons.calendar:before {
  content: "\e046";
}
i.glyphicons.router:before {
  content: "\e047";
}
i.glyphicons.camera_small:before {
  content: "\e048";
}
i.glyphicons.dislikes:before {
  content: "\e049";
}
i.glyphicons.star:before {
  content: "\e050";
}
i.glyphicons.link:before {
  content: "\e051";
}
i.glyphicons.eye_open:before {
  content: "\e052";
}
i.glyphicons.eye_close:before {
  content: "\e053";
}
i.glyphicons.alarm:before {
  content: "\e054";
}
i.glyphicons.clock:before {
  content: "\e055";
}
i.glyphicons.stopwatch:before {
  content: "\e056";
}
i.glyphicons.projector:before {
  content: "\e057";
}
i.glyphicons.history:before {
  content: "\e058";
}
i.glyphicons.truck:before {
  content: "\e059";
}
i.glyphicons.cargo:before {
  content: "\e060";
}
i.glyphicons.compass:before {
  content: "\e061";
}
i.glyphicons.keynote:before {
  content: "\e062";
}
i.glyphicons.paperclip:before {
  content: "\e063";
}
i.glyphicons.power:before {
  content: "\e064";
}
i.glyphicons.lightbulb:before {
  content: "\e065";
}
i.glyphicons.tag:before {
  content: "\e066";
}
i.glyphicons.tags:before {
  content: "\e067";
}
i.glyphicons.cleaning:before {
  content: "\e068";
}
i.glyphicons.ruller:before {
  content: "\e069";
}
i.glyphicons.gift:before {
  content: "\e070";
}
i.glyphicons.umbrella:before {
  content: "\2602";
}
i.glyphicons.book:before {
  content: "\e072";
}
i.glyphicons.bookmark:before {
  content: "\e073";
}
i.glyphicons.wifi:before {
  content: "\e074";
}
i.glyphicons.cup:before {
  content: "\e075";
}
i.glyphicons.stroller:before {
  content: "\e076";
}
i.glyphicons.headphones:before {
  content: "\e077";
}
i.glyphicons.headset:before {
  content: "\e078";
}
i.glyphicons.warning_sign:before {
  content: "\e079";
}
i.glyphicons.signal:before {
  content: "\e080";
}
i.glyphicons.retweet:before {
  content: "\e081";
}
i.glyphicons.refresh:before {
  content: "\e082";
}
i.glyphicons.roundabout:before {
  content: "\e083";
}
i.glyphicons.random:before {
  content: "\e084";
}
i.glyphicons.heat:before {
  content: "\e085";
}
i.glyphicons.repeat:before {
  content: "\e086";
}
i.glyphicons.display:before {
  content: "\e087";
}
i.glyphicons.log_book:before {
  content: "\e088";
}
i.glyphicons.adress_book:before {
  content: "\e089";
}
i.glyphicons.building:before {
  content: "\e090";
}
i.glyphicons.eyedropper:before {
  content: "\e091";
}
i.glyphicons.adjust:before {
  content: "\e092";
}
i.glyphicons.tint:before {
  content: "\e093";
}
i.glyphicons.crop:before {
  content: "\e094";
}
i.glyphicons.vector_path_square:before {
  content: "\e095";
}
i.glyphicons.vector_path_circle:before {
  content: "\e096";
}
i.glyphicons.vector_path_polygon:before {
  content: "\e097";
}
i.glyphicons.vector_path_line:before {
  content: "\e098";
}
i.glyphicons.vector_path_curve:before {
  content: "\e099";
}
i.glyphicons.vector_path_all:before {
  content: "\e100";
}
i.glyphicons.font:before {
  content: "\e101";
}
i.glyphicons.italic:before {
  content: "\e102";
}
i.glyphicons.bold:before {
  content: "\e103";
}
i.glyphicons.text_underline:before {
  content: "\e104";
}
i.glyphicons.text_strike:before {
  content: "\e105";
}
i.glyphicons.text_height:before {
  content: "\e106";
}
i.glyphicons.text_width:before {
  content: "\e107";
}
i.glyphicons.text_resize:before {
  content: "\e108";
}
i.glyphicons.left_indent:before {
  content: "\e109";
}
i.glyphicons.right_indent:before {
  content: "\e110";
}
i.glyphicons.align_left:before {
  content: "\e111";
}
i.glyphicons.align_center:before {
  content: "\e112";
}
i.glyphicons.align_right:before {
  content: "\e113";
}
i.glyphicons.justify:before {
  content: "\e114";
}
i.glyphicons.list:before {
  content: "\e115";
}
i.glyphicons.text_smaller:before {
  content: "\e116";
}
i.glyphicons.text_bigger:before {
  content: "\e117";
}
i.glyphicons.embed:before {
  content: "\e118";
}
i.glyphicons.embed_close:before {
  content: "\e119";
}
i.glyphicons.table:before {
  content: "\e120";
}
i.glyphicons.message_full:before {
  content: "\e121";
}
i.glyphicons.message_empty:before {
  content: "\e122";
}
i.glyphicons.message_in:before {
  content: "\e123";
}
i.glyphicons.message_out:before {
  content: "\e124";
}
i.glyphicons.message_plus:before {
  content: "\e125";
}
i.glyphicons.message_minus:before {
  content: "\e126";
}
i.glyphicons.message_ban:before {
  content: "\e127";
}
i.glyphicons.message_flag:before {
  content: "\e128";
}
i.glyphicons.message_lock:before {
  content: "\e129";
}
i.glyphicons.message_new:before {
  content: "\e130";
}
i.glyphicons.inbox:before {
  content: "\e131";
}
i.glyphicons.inbox_plus:before {
  content: "\e132";
}
i.glyphicons.inbox_minus:before {
  content: "\e133";
}
i.glyphicons.inbox_lock:before {
  content: "\e134";
}
i.glyphicons.inbox_in:before {
  content: "\e135";
}
i.glyphicons.inbox_out:before {
  content: "\e136";
}
i.glyphicons.cogwheel:before {
  content: "\e137";
}
i.glyphicons.cogwheels:before {
  content: "\e138";
}
i.glyphicons.picture:before {
  content: "\e139";
}
i.glyphicons.adjust_alt:before {
  content: "\e140";
}
i.glyphicons.database_lock:before {
  content: "\e141";
}
i.glyphicons.database_plus:before {
  content: "\e142";
}
i.glyphicons.database_minus:before {
  content: "\e143";
}
i.glyphicons.database_ban:before {
  content: "\e144";
}
i.glyphicons.folder_open:before {
  content: "\e145";
}
i.glyphicons.folder_plus:before {
  content: "\e146";
}
i.glyphicons.folder_minus:before {
  content: "\e147";
}
i.glyphicons.folder_lock:before {
  content: "\e148";
}
i.glyphicons.folder_flag:before {
  content: "\e149";
}
i.glyphicons.folder_new:before {
  content: "\e150";
}
i.glyphicons.edit:before {
  content: "\e151";
}
i.glyphicons.new_window:before {
  content: "\e152";
}
i.glyphicons.check:before {
  content: "\e153";
}
i.glyphicons.unchecked:before {
  content: "\e154";
}
i.glyphicons.more_windows:before {
  content: "\e155";
}
i.glyphicons.show_big_thumbnails:before {
  content: "\e156";
}
i.glyphicons.show_thumbnails:before {
  content: "\e157";
}
i.glyphicons.show_thumbnails_with_lines:before {
  content: "\e158";
}
i.glyphicons.show_lines:before {
  content: "\e159";
}
i.glyphicons.playlist:before {
  content: "\e160";
}
i.glyphicons.imac:before {
  content: "\e161";
}
i.glyphicons.macbook:before {
  content: "\e162";
}
i.glyphicons.ipad:before {
  content: "\e163";
}
i.glyphicons.iphone:before {
  content: "\e164";
}
i.glyphicons.iphone_transfer:before {
  content: "\e165";
}
i.glyphicons.iphone_exchange:before {
  content: "\e166";
}
i.glyphicons.ipod:before {
  content: "\e167";
}
i.glyphicons.ipod_shuffle:before {
  content: "\e168";
}
i.glyphicons.ear_plugs:before {
  content: "\e169";
}
i.glyphicons.phone:before {
  content: "\e170";
}
i.glyphicons.step_backward:before {
  content: "\e171";
}
i.glyphicons.fast_backward:before {
  content: "\e172";
}
i.glyphicons.rewind:before {
  content: "\e173";
}
i.glyphicons.play:before {
  content: "\e174";
}
i.glyphicons.pause:before {
  content: "\e175";
}
i.glyphicons.stop:before {
  content: "\e176";
}
i.glyphicons.forward:before {
  content: "\e177";
}
i.glyphicons.fast_forward:before {
  content: "\e178";
}
i.glyphicons.step_forward:before {
  content: "\e179";
}
i.glyphicons.eject:before {
  content: "\e180";
}
i.glyphicons.facetime_video:before {
  content: "\e181";
}
i.glyphicons.download_alt:before {
  content: "\e182";
}
i.glyphicons.mute:before {
  content: "\e183";
}
i.glyphicons.volume_down:before {
  content: "\e184";
}
i.glyphicons.volume_up:before {
  content: "\e185";
}
i.glyphicons.screenshot:before {
  content: "\e186";
}
i.glyphicons.move:before {
  content: "\e187";
}
i.glyphicons.more:before {
  content: "\e188";
}
i.glyphicons.brightness_reduce:before {
  content: "\e189";
}
i.glyphicons.brightness_increase:before {
  content: "\e190";
}
i.glyphicons.circle_plus:before {
  content: "\e191";
}
i.glyphicons.circle_minus:before {
  content: "\e192";
}
i.glyphicons.circle_remove:before {
  content: "\e193";
}
i.glyphicons.circle_ok:before {
  content: "\e194";
}
i.glyphicons.circle_question_mark:before {
  content: "\e195";
}
i.glyphicons.circle_info:before {
  content: "\e196";
}
i.glyphicons.circle_exclamation_mark:before {
  content: "\e197";
}
i.glyphicons.remove:before {
  content: "\e198";
}
i.glyphicons.ok:before {
  content: "\e199";
}
i.glyphicons.ban:before {
  content: "\e200";
}
i.glyphicons.download:before {
  content: "\e201";
}
i.glyphicons.upload:before {
  content: "\e202";
}
i.glyphicons.shopping_cart:before {
  content: "\e203";
}
i.glyphicons.lock:before {
  content: "\e204";
}
i.glyphicons.unlock:before {
  content: "\e205";
}
i.glyphicons.electricity:before {
  content: "\e206";
}
i.glyphicons.ok_2:before {
  content: "\e207";
}
i.glyphicons.remove_2:before {
  content: "\e208";
}
i.glyphicons.cart_out:before {
  content: "\e209";
}
i.glyphicons.cart_in:before {
  content: "\e210";
}
i.glyphicons.left_arrow:before {
  content: "\e211";
}
i.glyphicons.right_arrow:before {
  content: "\e212";
}
i.glyphicons.down_arrow:before {
  content: "\e213";
}
i.glyphicons.up_arrow:before {
  content: "\e214";
}
i.glyphicons.resize_small:before {
  content: "\e215";
}
i.glyphicons.resize_full:before {
  content: "\e216";
}
i.glyphicons.circle_arrow_left:before {
  content: "\e217";
}
i.glyphicons.circle_arrow_right:before {
  content: "\e218";
}
i.glyphicons.circle_arrow_top:before {
  content: "\e219";
}
i.glyphicons.circle_arrow_down:before {
  content: "\e220";
}
i.glyphicons.play_button:before {
  content: "\e221";
}
i.glyphicons.unshare:before {
  content: "\e222";
}
i.glyphicons.share:before {
  content: "\e223";
}
i.glyphicons.chevron-right:before {
  content: "\e224";
}
i.glyphicons.chevron-left:before {
  content: "\e225";
}
i.glyphicons.bluetooth:before {
  content: "\e226";
}
i.glyphicons.euro:before {
  content: "\20AC";
}
i.glyphicons.usd:before {
  content: "\e228";
}
i.glyphicons.gbp:before {
  content: "\e229";
}
i.glyphicons.retweet_2:before {
  content: "\e230";
}
i.glyphicons.moon:before {
  content: "\e231";
}
i.glyphicons.sun:before {
  content: "\2609";
}
i.glyphicons.cloud:before {
  content: "\2601";
}
i.glyphicons.direction:before {
  content: "\e234";
}
i.glyphicons.brush:before {
  content: "\e235";
}
i.glyphicons.pen:before {
  content: "\e236";
}
i.glyphicons.zoom_in:before {
  content: "\e237";
}
i.glyphicons.zoom_out:before {
  content: "\e238";
}
i.glyphicons.pin:before {
  content: "\e239";
}
i.glyphicons.albums:before {
  content: "\e240";
}
i.glyphicons.rotation_lock:before {
  content: "\e241";
}
i.glyphicons.flash:before {
  content: "\e242";
}
i.glyphicons.google_maps:before {
  content: "\e243";
}
i.glyphicons.anchor:before {
  content: "\2693";
}
i.glyphicons.conversation:before {
  content: "\e245";
}
i.glyphicons.chat:before {
  content: "\e246";
}
i.glyphicons.male:before {
  content: "\e247";
}
i.glyphicons.female:before {
  content: "\e248";
}
i.glyphicons.asterisk:before {
  content: "\002A";
}
i.glyphicons.divide:before {
  content: "\00F7";
}
i.glyphicons.snorkel_diving:before {
  content: "\e251";
}
i.glyphicons.scuba_diving:before {
  content: "\e252";
}
i.glyphicons.oxygen_bottle:before {
  content: "\e253";
}
i.glyphicons.fins:before {
  content: "\e254";
}
i.glyphicons.fishes:before {
  content: "\e255";
}
i.glyphicons.boat:before {
  content: "\e256";
}
i.glyphicons.delete:before {
  content: "\e257";
}
i.glyphicons.sheriffs_star:before {
  content: "\e258";
}
i.glyphicons.qrcode:before {
  content: "\e259";
}
i.glyphicons.barcode:before {
  content: "\e260";
}
i.glyphicons.pool:before {
  content: "\e261";
}
i.glyphicons.buoy:before {
  content: "\e262";
}
i.glyphicons.spade:before {
  content: "\e263";
}
i.glyphicons.bank:before {
  content: "\e264";
}
i.glyphicons.vcard:before {
  content: "\e265";
}
i.glyphicons.electrical_plug:before {
  content: "\e266";
}
i.glyphicons.flag:before {
  content: "\e267";
}
i.glyphicons.credit_card:before {
  content: "\e268";
}
i.glyphicons.keyboard-wireless:before {
  content: "\e269";
}
i.glyphicons.keyboard-wired:before {
  content: "\e270";
}
i.glyphicons.shield:before {
  content: "\e271";
}
i.glyphicons.ring:before {
  content: "\02DA";
}
i.glyphicons.cake:before {
  content: "\e273";
}
i.glyphicons.drink:before {
  content: "\e274";
}
i.glyphicons.beer:before {
  content: "\e275";
}
i.glyphicons.fast_food:before {
  content: "\e276";
}
i.glyphicons.cutlery:before {
  content: "\e277";
}
i.glyphicons.pizza:before {
  content: "\e278";
}
i.glyphicons.birthday_cake:before {
  content: "\e279";
}
i.glyphicons.tablet:before {
  content: "\e280";
}
i.glyphicons.settings:before {
  content: "\e281";
}
i.glyphicons.bullets:before {
  content: "\e282";
}
i.glyphicons.cardio:before {
  content: "\e283";
}
i.glyphicons.t-shirt:before {
  content: "\e284";
}
i.glyphicons.pants:before {
  content: "\e285";
}
i.glyphicons.sweater:before {
  content: "\e286";
}
i.glyphicons.fabric:before {
  content: "\e287";
}
i.glyphicons.leather:before {
  content: "\e288";
}
i.glyphicons.scissors:before {
  content: "\e289";
}
i.glyphicons.bomb:before {
  content: "\e290";
}
i.glyphicons.skull:before {
  content: "\e291";
}
i.glyphicons.celebration:before {
  content: "\e292";
}
i.glyphicons.tea_kettle:before {
  content: "\e293";
}
i.glyphicons.french_press:before {
  content: "\e294";
}
i.glyphicons.coffe_cup:before {
  content: "\e295";
}
i.glyphicons.pot:before {
  content: "\e296";
}
i.glyphicons.grater:before {
  content: "\e297";
}
i.glyphicons.kettle:before {
  content: "\e298";
}
i.glyphicons.hospital:before {
  content: "\e299";
}
i.glyphicons.hospital_h:before {
  content: "\e300";
}
i.glyphicons.microphone:before {
  content: "\e301";
}
i.glyphicons.webcam:before {
  content: "\e302";
}
i.glyphicons.temple_christianity_church:before {
  content: "\e303";
}
i.glyphicons.temple_islam:before {
  content: "\e304";
}
i.glyphicons.temple_hindu:before {
  content: "\e305";
}
i.glyphicons.temple_buddhist:before {
  content: "\e306";
}
i.glyphicons.bicycle:before {
  content: "\e307";
}
i.glyphicons.life_preserver:before {
  content: "\e308";
}
i.glyphicons.share_alt:before {
  content: "\e309";
}
i.glyphicons.comments:before {
  content: "\e310";
}
i.glyphicons.flower:before {
  content: "\2698";
}
i.glyphicons.baseball:before {
  content: "\e312";
}
i.glyphicons.rugby:before {
  content: "\e313";
}
i.glyphicons.ax:before {
  content: "\e314";
}
i.glyphicons.table_tennis:before {
  content: "\e315";
}
i.glyphicons.bowling:before {
  content: "\e316";
}
i.glyphicons.tree_conifer:before {
  content: "\e317";
}
i.glyphicons.tree_deciduous:before {
  content: "\e318";
}
i.glyphicons.more_items:before {
  content: "\e319";
}
i.glyphicons.sort:before {
  content: "\e320";
}
i.glyphicons.filter:before {
  content: "\e321";
}
i.glyphicons.gamepad:before {
  content: "\e322";
}
i.glyphicons.playing_dices:before {
  content: "\e323";
}
i.glyphicons.calculator:before {
  content: "\e324";
}
i.glyphicons.tie:before {
  content: "\e325";
}
i.glyphicons.wallet:before {
  content: "\e326";
}
i.glyphicons.piano:before {
  content: "\e327";
}
i.glyphicons.sampler:before {
  content: "\e328";
}
i.glyphicons.podium:before {
  content: "\e329";
}
i.glyphicons.soccer_ball:before {
  content: "\e330";
}
i.glyphicons.blog:before {
  content: "\e331";
}
i.glyphicons.dashboard:before {
  content: "\e332";
}
i.glyphicons.certificate:before {
  content: "\e333";
}
i.glyphicons.bell:before {
  content: "\e334";
}
i.glyphicons.candle:before {
  content: "\e335";
}
i.glyphicons.pushpin:before {
  content: "\e336";
}
i.glyphicons.iphone_shake:before {
  content: "\e337";
}
i.glyphicons.pin_flag:before {
  content: "\e338";
}
i.glyphicons.turtle:before {
  content: "\e339";
}
i.glyphicons.rabbit:before {
  content: "\e340";
}
i.glyphicons.globe:before {
  content: "\e341";
}
i.glyphicons.briefcase:before {
  content: "\e342";
}
i.glyphicons.hdd:before {
  content: "\e343";
}
i.glyphicons.thumbs_up:before {
  content: "\e344";
}
i.glyphicons.thumbs_down:before {
  content: "\e345";
}
i.glyphicons.hand_right:before {
  content: "\e346";
}
i.glyphicons.hand_left:before {
  content: "\e347";
}
i.glyphicons.hand_up:before {
  content: "\e348";
}
i.glyphicons.hand_down:before {
  content: "\e349";
}
i.glyphicons.fullscreen:before {
  content: "\e350";
}
i.glyphicons.shopping_bag:before {
  content: "\e351";
}
i.glyphicons.book_open:before {
  content: "\e352";
}
i.glyphicons.nameplate:before {
  content: "\e353";
}
i.glyphicons.nameplate_alt:before {
  content: "\e354";
}
i.glyphicons.vases:before {
  content: "\e355";
}
i.glyphicons.bullhorn:before {
  content: "\e356";
}
i.glyphicons.dumbbell:before {
  content: "\e357";
}
i.glyphicons.suitcase:before {
  content: "\e358";
}
i.glyphicons.file_import:before {
  content: "\e359";
}
i.glyphicons.file_export:before {
  content: "\e360";
}
i.glyphicons.bug:before {
  content: "\e361";
}
i.glyphicons.crown:before {
  content: "\e362";
}
i.glyphicons.smoking:before {
  content: "\e363";
}
i.glyphicons.cloud-upload:before {
  content: "\e364";
}
i.glyphicons.cloud-download:before {
  content: "\e365";
}
i.glyphicons.restart:before {
  content: "\e366";
}
i.glyphicons.security_camera:before {
  content: "\e367";
}
i.glyphicons.expand:before {
  content: "\e368";
}
i.glyphicons.collapse:before {
  content: "\e369";
}
i.glyphicons.collapse_top:before {
  content: "\e370";
}
i.glyphicons.globe_af:before {
  content: "\e371";
}
i.glyphicons.global:before {
  content: "\e372";
}
i.glyphicons.spray:before {
  content: "\e373";
}
i.glyphicons.nails:before {
  content: "\e374";
}
i.glyphicons.claw_hammer:before {
  content: "\e375";
}
i.glyphicons.classic_hammer:before {
  content: "\e376";
}
i.glyphicons.hand_saw:before {
  content: "\e377";
}
i.glyphicons.riflescope:before {
  content: "\e378";
}
i.glyphicons.electrical_socket_eu:before {
  content: "\e379";
}
i.glyphicons.electrical_socket_us:before {
  content: "\e380";
}
i.glyphicons.pinterest:before {
  content: "\e381";
}
i.glyphicons.dropbox:before {
  content: "\e382";
}
i.glyphicons.google_plus:before {
  content: "\e383";
}
i.glyphicons.jolicloud:before {
  content: "\e384";
}
i.glyphicons.yahoo:before {
  content: "\e385";
}
i.glyphicons.blogger:before {
  content: "\e386";
}
i.glyphicons.picasa:before {
  content: "\e387";
}
i.glyphicons.amazon:before {
  content: "\e388";
}
i.glyphicons.tumblr:before {
  content: "\e389";
}
i.glyphicons.wordpress:before {
  content: "\e390";
}
i.glyphicons.instapaper:before {
  content: "\e391";
}
i.glyphicons.evernote:before {
  content: "\e392";
}
i.glyphicons.xing:before {
  content: "\e393";
}
i.glyphicons.zootool:before {
  content: "\e394";
}
i.glyphicons.dribbble:before {
  content: "\e395";
}
i.glyphicons.deviantart:before {
  content: "\e396";
}
i.glyphicons.read_it_later:before {
  content: "\e397";
}
i.glyphicons.linked_in:before {
  content: "\e398";
}
i.glyphicons.forrst:before {
  content: "\e399";
}
i.glyphicons.pinboard:before {
  content: "\e400";
}
i.glyphicons.behance:before {
  content: "\e401";
}
i.glyphicons.github:before {
  content: "\e402";
}
i.glyphicons.youtube:before {
  content: "\e403";
}
i.glyphicons.skitch:before {
  content: "\e404";
}
i.glyphicons.foursquare:before {
  content: "\e405";
}
i.glyphicons.quora:before {
  content: "\e406";
}
i.glyphicons.badoo:before {
  content: "\e407";
}
i.glyphicons.spotify:before {
  content: "\e408";
}
i.glyphicons.stumbleupon:before {
  content: "\e409";
}
i.glyphicons.readability:before {
  content: "\e410";
}
i.glyphicons.facebook:before {
  content: "\e411";
}
i.glyphicons.twitter:before {
  content: "\e412";
}
i.glyphicons.instagram:before {
  content: "\e413";
}
i.glyphicons.posterous_spaces:before {
  content: "\e414";
}
i.glyphicons.vimeo:before {
  content: "\e415";
}
i.glyphicons.flickr:before {
  content: "\e416";
}
i.glyphicons.last_fm:before {
  content: "\e417";
}
i.glyphicons.rss:before {
  content: "\e418";
}
i.glyphicons.skype:before {
  content: "\e419";
}
i.glyphicons.e-mail:before {
  content: "\e420";
}

/* Layout Configuration */
.mobile {
  display: none;
}
@media (max-width: 770px) {
  .mobile {
    display: block;
  }
}
.mobile .mobile-block {
  display: none;
}
@media (max-width: 770px) {
  .mobile .mobile-block {
    display: block;
  }
}
.mobile.two-columns-left section.content,
.mobile.two-columns-right section.content {
  width: 100%;
  float: left;
}
.mobile.two-columns-left section.content .swipe-me,
.mobile.two-columns-right section.content .swipe-me {
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.5s 0.3s ease-in-out;
  -moz-transition: all 0.5s 0.3s ease-in-out;
  -o-transition: all 0.5s 0.3s ease-in-out;
  transition: all 0.5s 0.3s ease-in-out;
  opacity: 0.5;
  text-indent: -10000px;
  cursor: pointer;
  margin-bottom: 5px;
  margin-top: -15px;
  float: right;
}
.mobile.two-columns-left section.content .swipe-me:hover,
.mobile.two-columns-right section.content .swipe-me:hover {
  opacity: 0.7;
}
.mobile.two-columns-left section.content .swipe-me.right,
.mobile.two-columns-right section.content .swipe-me.right {
  background: url(https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/swipe_left.png) no-repeat 100% 50% transparent;
  background: url(https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/swipe_left.svg) no-repeat 100% 50% transparent;
}
.mobile.two-columns-left section.content .swipe-me.left,
.mobile.two-columns-right section.content .swipe-me.left {
  background: url(https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/swipe_right.png) no-repeat 100% 50% transparent;
  background: url(https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/swipe_right.svg) no-repeat 100% 50% transparent;
}
.mobile.two-columns-left aside,
.mobile.two-columns-right aside {
  position: fixed;
  width: 80%;
  max-width: 320px;
  top: 0;
  height: 100vh;
  background: #fff;
  z-index: 199999;
  padding: 20px;
}
.mobile.two-columns-left aside.right,
.mobile.two-columns-right aside.right,
.mobile.two-columns-left aside.left,
.mobile.two-columns-right aside.left {
  overflow-y: scroll;
  display: none;
}
.mobile.two-columns-left aside.right.active,
.mobile.two-columns-right aside.right.active,
.mobile.two-columns-left aside.left.active,
.mobile.two-columns-right aside.left.active {
  display: block;
  -webkit-box-shadow: 0px 0 15px 0 #333333;
  -moz-box-shadow: 0px 0 15px 0 #333333;
  box-shadow: 0px 0 15px 0 #333333;
}
.mobile.two-columns-left aside.right,
.mobile.two-columns-right aside.right {
  right: -80%;
}
.mobile.two-columns-left aside.right.active,
.mobile.two-columns-right aside.right.active {
  right: 0;
}
.mobile.two-columns-left aside.left,
.mobile.two-columns-right aside.left {
  /* None Active */
  left: -80%;
}
.mobile.two-columns-left aside.left.active,
.mobile.two-columns-right aside.left.active {
  left: 0;
}
.mobile.two-columns-left .mpblog-search input#search-blog,
.mobile.two-columns-right .mpblog-search input#search-blog {
  width: 100%;
}
.desktop {
  display: block;
}
@media (max-width: 770px) {
  .desktop {
    display: none;
  }
}
.desktop .desktop-block {
  display: block;
}
@media (max-width: 770px) {
  .desktop .desktop-block {
    display: none;
  }
}
.desktop.two-columns-left section.content,
.desktop.two-columns-right section.content {
  width: 74%;
  float: left;
}
.desktop.two-columns-left aside.left,
.desktop.two-columns-right aside.left,
.desktop.two-columns-left aside.right,
.desktop.two-columns-right aside.right {
  width: 23%;
  float: left;
}
.desktop.two-columns-right section.content {
  padding-right: 20px;
}
.desktop.two-columns-left section.content {
  padding-left: 20px;
}
.desktop.three-columns section.content {
  width: 58%;
  float: left;
  padding: 0 18px;
}
.desktop.three-columns aside.left,
.desktop.three-columns aside.right {
  width: 18%;
  float: left;
}
/* List of Posts */
@media (max-width: 1024px) {
  .mpblog-list.list .mpblog-post {
    border-bottom: 1px solid #cccccc;
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
  .mpblog-list.list .mpblog-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.mpblog-list.list .mpblog-post .thumbnail-container {
  overflow: hidden;
}
.mpblog-list.list .mpblog-post .post-thumbnail {
  -webkit-transition: -webkit-transform 0.3s 0.15s ease-out;
  -moz-transition: -moz-transform 0.3s 0.15s ease-out;
  -o-transition: -o-transform 0.3s 0.15s ease-out;
  transition: -webkit-transform 0.3s 0.15s ease-out,-moz-transform 0.3s 0.15s ease-out,-o-transform 0.3s 0.15s ease-out,transform 0.3s 0.15s ease-out;
}
.mpblog-list.list .mpblog-post .post-thumbnail:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.mpblog-list.list .mp-read-more {
  margin-right: 1.5em;
  margin-bottom: 1.5em;
  float: left;
}
.mpblog-list.grid {
  width: 100%;
}
.mpblog-list.grid .item {
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  float: left;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mpblog-list.grid .item .post-container {
  overflow: hidden;
  background-color: #f4f4f4;
  padding: 10px;
}
.mpblog-list.grid .item .post-container .thumbnail-container {
  overflow: hidden;
}
.mpblog-list.grid .item .post-container .post-thumbnail {
  margin: -10px -10px 10px;
  -webkit-transition: -webkit-transform 0.3s 0.15s ease-out;
  -moz-transition: -moz-transform 0.3s 0.15s ease-out;
  -o-transition: -o-transform 0.3s 0.15s ease-out;
  transition: -webkit-transform 0.3s 0.15s ease-out,-moz-transform 0.3s 0.15s ease-out,-o-transform 0.3s 0.15s ease-out,transform 0.3s 0.15s ease-out;
}
.mpblog-list.grid .item .post-container .post-thumbnail:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.mpblog-list.grid .item .post-container .mp-footer {
  margin-bottom: 20px;
}
.mpblog-list.grid .item .post-container span.comments {
  float: left;
  margin-left: 0;
}
/* Grid Sizer */
.three-columns .mpblog-list.grid .grid-sizer {
  width: 33%;
}
.three-columns .mpblog-list.grid .item {
  width: 33%;
}
.three-columns .mpblog-list.grid .item.w2 {
  width: 66%;
}
.three-columns .mpblog-list.grid .item.w3 {
  width: 100%;
  padding: 0 !important;
}
@media only screen and (max-width: 1024px) {
  .three-columns .mpblog-list.grid .grid-sizer {
    width: 50%;
  }
  .three-columns .mpblog-list.grid .item {
    width: 50%;
  }
  .three-columns .mpblog-list.grid .item.w2,
  .three-columns .mpblog-list.grid .item.w3 {
    width: 100%;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 600px) {
  .three-columns .mpblog-list.grid .grid-sizer {
    width: 100%;
  }
  .three-columns .mpblog-list.grid .item {
    padding: 0 !important;
    width: 100%;
  }
  .three-columns .mpblog-list.grid .item.w3,
  .three-columns .mpblog-list.grid .item.w2 {
    width: 100%;
  }
}
.two-columns-right .mpblog-list.grid .grid-sizer,
.two-columns-left .mpblog-list.grid .grid-sizer {
  width: 25%;
}
.two-columns-right .mpblog-list.grid .item,
.two-columns-left .mpblog-list.grid .item {
  width: 25%;
}
.two-columns-right .mpblog-list.grid .item.w2,
.two-columns-left .mpblog-list.grid .item.w2 {
  width: 50%;
}
.two-columns-right .mpblog-list.grid .item.w3,
.two-columns-left .mpblog-list.grid .item.w3 {
  width: 75%;
}
@media only screen and (max-width: 1024px) {
  .two-columns-right .mpblog-list.grid .grid-sizer,
  .two-columns-left .mpblog-list.grid .grid-sizer {
    width: 50%;
  }
  .two-columns-right .mpblog-list.grid .item,
  .two-columns-left .mpblog-list.grid .item {
    width: 50%;
  }
  .two-columns-right .mpblog-list.grid .item.w3,
  .two-columns-left .mpblog-list.grid .item.w3,
  .two-columns-right .mpblog-list.grid .item.w2,
  .two-columns-left .mpblog-list.grid .item.w2 {
    width: 100%;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 600px) {
  .two-columns-right .mpblog-list.grid .grid-sizer,
  .two-columns-left .mpblog-list.grid .grid-sizer {
    width: 100%;
  }
  .two-columns-right .mpblog-list.grid .item,
  .two-columns-left .mpblog-list.grid .item {
    padding: 0 !important;
    width: 100%;
  }
  .two-columns-right .mpblog-list.grid .item.w3,
  .two-columns-left .mpblog-list.grid .item.w3,
  .two-columns-right .mpblog-list.grid .item.w2,
  .two-columns-left .mpblog-list.grid .item.w2 {
    width: 100%;
  }
}
.one-column .mpblog-list.grid .grid-sizer {
  width: 20%;
}
.one-column .mpblog-list.grid .item {
  width: 20%;
}
.one-column .mpblog-list.grid .item.w2 {
  width: 40%;
}
.one-column .mpblog-list.grid .item.w3 {
  width: 60%;
}
@media only screen and (max-width: 1024px) {
  .one-column .mpblog-list.grid .grid-sizer {
    width: 33%;
  }
  .one-column .mpblog-list.grid .item {
    width: 33%;
  }
  .one-column .mpblog-list.grid .item.w2 {
    width: 66%;
  }
  .one-column .mpblog-list.grid .item.w3 {
    width: 100%;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 600px) {
  .one-column .mpblog-list.grid .grid-sizer {
    width: 100%;
  }
  .one-column .mpblog-list.grid .item {
    padding: 0 !important;
    width: 100%;
  }
  .one-column .mpblog-list.grid .item.w3,
  .one-column .mpblog-list.grid .item.w2 {
    width: 100%;
  }
}
.mpblog-container.list .mp-pager {
  border-top: 1px solid #cccccc;
}
.mpblog-container .mp-pager {
  margin-top: 40px;
  padding: 10px 5px 0;
}
.mpblog-container .mp-pager .navi a {
  line-height: 16px;
  min-height: 16px;
  width: 45%;
}
.mpblog-container .mp-pager .newer a {
  float: right;
  text-align: right;
}
.mpblog-container .mp-pager .newer a i.glyphicons {
  margin-left: 5px;
}
.mpblog-container .mp-pager .older a {
  float: left;
  text-align: left;
}
.mpblog-container .mp-pager .older a i.glyphicons {
  margin-right: 5px;
}
/** Comments */
@media (max-width: 770px) {
  .comments-action {
    display: inline-block;
    margin-top: 20px;
  }
}
@media (min-width: 770px) {
  .comments-action {
    float: right;
  }
}
.comments-action .leave-a-comment {
  margin-left: 15px;
  line-height: 24px;
}
.comments-action .leave-a-comment a {
  text-transform: uppercase;
  font-size: larger;
}
.comments-action .blog-icon.rss {
  background: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/rss.png") no-repeat 0 0 transparent;
  /** One for elder */
  background: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/rss.svg") no-repeat 0 0 transparent;
  /** One for new */
}
@media (min-width: 770px) {
  .comments-action .blog-icon.rss {
    display: inline-block;
  }
}
.comments-action .blog-icon.rss,
.comments-action .leave-a-comment {
  float: left;
}
.mpblog-comments-container .comments-header {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
  position: relative;
}
.mpblog-comments-container .comments-header span.leave-a-comment {
  float: left;
  margin-left: 0;
}
.mpblog-comments-container .comments-header span.rss-comments {
  float: left;
  margin-left: 20px;
}
.mpblog-comments-container .mp-comment-header {
  margin-bottom: 10px;
}
.mpblog-comments-container .mp-comment-author,
.mpblog-comments-container .mp-comment-date,
.mpblog-comments-container .mp-comment-willapprove {
  float: left;
  margin-right: 10px;
}
.mpblog-comments-container .mp-comment-willapprove {
  color: red;
  font-style: italic;
  font-size: smaller;
}
.mpblog-comments-container .mp-replies {
  padding-left: 24px;
}
@media (max-width: 1024px) {
  .mpblog-comments-container .mp-replies {
    padding-left: 12px;
  }
}
@media (max-width: 600px) {
  .mpblog-comments-container .mp-replies {
    padding-left: 6px;
  }
}
.mp-comment-content,
.mp-comment-form {
  padding: 10px;
  margin: 20px 0;
  border: 1px solid #cccccc;
}
.mp-comment-content.my-comment {
  border-color: #3399cc;
}
.mp-comment-form {
  background-color: #f4f4f4;
}
.mp-comment-form h5 {
  text-transform: none;
}
.mp-blog-loader {
  background: url('https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/ajax-loader.gif') no-repeat scroll 50% 0 transparent;
  height: 11px;
  width: 16px;
  margin: 0 auto;
}
.comment-form-field {
  margin-bottom: 10px;
  position: relative;
}
.comment-form-field .checkbox + label {
  padding: 0;
}
.comment-form-field textarea,
.comment-form-field input[type="text"] {
  line-height: 1.5;
  padding: 5px !important;
}
.comment-form-field textarea {
  height: 72px;
  width: 100%;
  max-width: 460px;
}
.comment-form-field textarea,
.comment-form-field textarea:focus {
  background-color: #ffffff;
}
.comment-form-field input[type="checkbox"] {
  display: none;
}
.comment-form-field input[type="checkbox"] + label {
  width: auto;
  max-width: 100%;
  font-weight: normal;
  vertical-align: middle;
  line-height: 1;
}
.comment-form-field input[type="checkbox"] + label:before {
  content: "";
  background: white;
  float: left;
  margin-right: 5px;
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #cccccc;
  -webkit-border-radius: 1px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 1px;
  -moz-background-clip: padding;
  border-radius: 1px;
  background-clip: padding-box;
}
.comment-form-field input[type="checkbox"]:checked + label:before {
  background: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/checked-input.png") no-repeat 50% 50% #ffffff;
  background: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/checked-input.svg") no-repeat 50% 50% #ffffff;
}
.comment-form-field input.text {
  width: 70% !important;
}
@media (max-width: 770px) {
  .comment-form-field input.text {
    width: 100% !important;
  }
}
.comment-form-field textarea,
.comment-form-field input.text {
  border: 1px solid #cccccc;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
  -moz-transition: -moz-box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.comment-form-field textarea.validation-failed,
.comment-form-field input.text.validation-failed {
  border: 1px dashed red;
}
.form-actions {
  text-align: right;
  position: relative;
}
.form-actions .mp-comment-reply-btn {
  text-transform: uppercase;
}
.form-actions .subscribe {
  position: absolute;
  left: 0;
  border-color: transparent;
}
.mpblog-container h1.mp-title {
  margin-bottom: 20px;
}
@media (max-width: 770px) {
  .mp-blog-head {
    text-align: center;
  }
}
.mp-blog-head h1 {
  float: left;
  margin-bottom: 0.25em;
  max-width: 90%;
}
@media (max-width: 1024px) {
  .mp-blog-head h1 {
    max-width: 85%;
    font-size: larger;
  }
}
@media (max-width: 770px) {
  .mp-blog-head h1 {
    max-width: 100%;
  }
}
.mp-blog-head a.mp-blog-rss-link,
.mp-blog-head a.mp-blog-print-link {
  font-size: smaller;
}
@media (max-width: 770px) {
  .mp-blog-head a.mp-blog-rss-link,
  .mp-blog-head a.mp-blog-print-link {
    display: none;
  }
}
.mp-blog-head span.mp-blog-rss,
.mp-blog-head span.mp-blog-print {
  float: right;
  margin-top: 4px;
}
@media (max-width: 770px) {
  .mp-blog-head span.mp-blog-rss,
  .mp-blog-head span.mp-blog-print {
    display: none;
  }
}
.mpblog-post {
  clear: both;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .mpblog-post .mp-post-header h2 {
    font-size: larger;
    margin-bottom: 0;
  }
}
.mpblog-post .post-thumbnail {
  margin-bottom: 1em;
}
.mpblog-post .post-thumbnail img.thumbnail {
  width: 100%;
}
@media (max-width: 1024px) {
  .mpblog-post .post-thumbnail {
    margin-bottom: 0.5em;
  }
}
.mpblog-post .mp-header {
  padding: 0.5em 0;
  margin-bottom: 1em;
}
@media (max-width: 1024px) {
  .mpblog-post .mp-header {
    border-top: none;
    margin-bottom: 0.5em;
  }
}
.mpblog-post .mp-header .posted-by,
.mpblog-post .mp-header .date,
.mpblog-post .mp-header .views {
  float: left;
}
@media (max-width: 1024px) {
  .mpblog-post .mp-header {
    border-top: none;
  }
}
.mpblog-post .mp-content div.mp-details {
  margin-top: 20px;
}
.mpblog-post .mp-content iframe.blog-video {
  margin-bottom: 1.5em !important;
}
.mpblog-post .mp-content hr.cutter {
  display: none;
}
.mpblog-post .mp-content ol,
.mpblog-post .mp-content ul {
  margin-left: 20px;
}
.mpblog-post .mp-content img {
  width: 100%;
}
.mpblog-post .mp-content img.alignleft {
  display: inline;
  float: left;
  margin: 0 20px 3px 0;
}
.mpblog-post .mp-content img.alignright {
  display: inline;
  float: right;
  margin: 0 0 3px 20px;
}
.mpblog-post .mp-content a > img {
  border: 1px solid #D0CBC1;
  padding: 3px;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
  vertical-align: bottom;
  -webkit-transition: -webkit-box-shadow 0.15s 0.3s ease-in-out;
  -moz-transition: -moz-box-shadow 0.15s 0.3s ease-in-out;
  -o-transition: box-shadow 0.15s 0.3s ease-in-out;
  transition: box-shadow 0.15s 0.3s ease-in-out;
}
.mpblog-post .mp-content a > img:hover {
  -webkit-box-shadow: 0px 0px 6px 0 #cccccc;
  -moz-box-shadow: 0px 0px 6px 0 #cccccc;
  box-shadow: 0px 0px 6px 0 #cccccc;
}
.mpblog-post .mp-content blockquote {
  margin: 0 1.6em 1.5em;
  padding-left: 0;
  color: #777;
  font-style: italic;
}
.mpblog-post .mp-content table {
  margin-bottom: 1.5em;
}
.mpblog-post .mp-content table tr th {
  font-weight: bold;
  border-bottom: 2px solid #cccccc;
  background-color: #ffffff;
}
.mpblog-post .mp-content table tr td,
.mpblog-post .mp-content table tr th {
  padding: 5px 10px;
}
.mpblog-post .mp-content table tr:nth-child(odd) td {
  background-color: #ffffff;
}
.mpblog-post .mp-content table tr:nth-child(even) td {
  background-color: #f4f4f4;
}
.mpblog-post span.mp-tags,
.mpblog-post span.categories,
.mpblog-post span.posted-by,
.mpblog-post span.date,
.mpblog-post span.go-to-comments,
.mpblog-post span.leave-a-comment,
.mpblog-post span.comments,
.mpblog-post span.rss-comments,
.mpblog-post span.views {
  font-size: smaller;
}
.mpblog-post span.mp-tags {
  margin-right: 20px;
  float: left;
}
.mpblog-post span.mp-tags-pic {
  float: left;
  width: 20px;
}
.mpblog-post span.mp-tags-pic span.text {
  line-height: 16px;
  text-indent: -999em;
  display: block;
}
.mpblog-post span.categories {
  margin-right: 20px;
  float: left;
}
.mpblog-post span.categories-pic {
  float: left;
  display: block;
  width: 19px;
  height: 16px;
}
.mpblog-post span.categories-pic span.text {
  line-height: 16px;
  text-indent: -999em;
  display: block;
}
.mpblog-post span.posted-by {
  margin-right: 20px;
}
.mpblog-post span.date {
  margin-right: 20px;
}
.mpblog-post span.views {
  margin-right: 20px;
}
.mpblog-post span.comments {
  float: right;
  margin-left: 20px;
}
@media (max-width: 600px) {
  .mpblog-post span.comments {
    display: none;
  }
}
.mpblog-post i.glyphicons {
  margin-right: 5px;
}
.mpblog-post .customer-action-bar {
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 770px) {
  .mpblog-post .customer-action-bar {
    text-align: center;
  }
}
.blog-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  opacity: 0.8;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.blog-icon:hover {
  opacity: 1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.blog-icon:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
/* Recent Comments and Posts */
.mp-recentcomment-date,
.mp-recentpost-date {
  font-style: italic;
  font-size: smaller;
  margin-bottom: 2px;
  margin-top: 2px;
}
/* Fix Magento Calendar Styles */
i.glyphicons.calendar {
  border: none !important;
  background: none !important;
}
/* Sidebars */
.mpblog-categories .block-content,
.mpblog-search .block-content,
.mpblog-recentposts .block-content,
.mpblog-tags .block-content,
.mpblog-recentcomments .block-content,
.mpblog-archives .block-content {
  padding: 5px 10px;
}
.mpblog-categories ul li,
.mpblog-recentcomments ul li,
.mpblog-archives ul li {
  padding-left: 20px;
  margin-bottom: 3px;
  position: relative;
}
/* Sidebar Blocks */
.sidebar-common ul li.active a {
  font-weight: bold;
}
.sidebar-common ul li i.glyphicons,
.sidebar-common ul li i.glyphicons:before {
  font-size: smaller;
}
.sidebar-common ul li i.glyphicons {
  display: block;
  left: 4px;
  top: 2px;
  position: absolute;
}
.mpblog-categories ul li.active a,
.mpblog-recentcomments ul li.active a,
.mpblog-archives ul li.active a,
.mpblog-recentposts ul li.active a,
.mpblog-recentcomments ul li.active a,
.mpblog-archives ul li.active a {
  font-weight: bold;
}
.mpblog-categories ul li i.glyphicons,
.mpblog-recentcomments ul li i.glyphicons,
.mpblog-archives ul li i.glyphicons,
.mpblog-recentposts ul li i.glyphicons,
.mpblog-recentcomments ul li i.glyphicons,
.mpblog-archives ul li i.glyphicons,
.mpblog-categories ul li i.glyphicons:before,
.mpblog-recentcomments ul li i.glyphicons:before,
.mpblog-archives ul li i.glyphicons:before,
.mpblog-recentposts ul li i.glyphicons:before,
.mpblog-recentcomments ul li i.glyphicons:before,
.mpblog-archives ul li i.glyphicons:before {
  font-size: smaller;
}
.mpblog-categories ul li i.glyphicons,
.mpblog-recentcomments ul li i.glyphicons,
.mpblog-archives ul li i.glyphicons,
.mpblog-recentposts ul li i.glyphicons,
.mpblog-recentcomments ul li i.glyphicons,
.mpblog-archives ul li i.glyphicons {
  display: block;
  left: 4px;
  top: 2px;
  position: absolute;
}
.mpblog-recentposts .mp-post-thesis {
  margin-top: 3px;
}
.mpblog-recentposts .thumbnail {
  float: left;
  border: 1px solid #D0CBC1;
  padding: 3px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 68px;
  height: 68px;
}
.mpblog-recentposts .thumbnail:hover {
  -webkit-box-shadow: 0px 0px 6px 0 #cccccc;
  -moz-box-shadow: 0px 0px 6px 0 #cccccc;
  box-shadow: 0px 0px 6px 0 #cccccc;
  -webkit-transition: all 0.15s 0.3s ease-in-out;
  -moz-transition: all 0.15s 0.3s ease-in-out;
  -o-transition: all 0.15s 0.3s ease-in-out;
  transition: all 0.15s 0.3s ease-in-out;
}
.mpblog-recentposts .thumbnail .img {
  width: 60px;
  height: 60px;
}
.mpblog-recentposts ul li {
  margin-bottom: 20px;
}
.mpblog-recentposts ul li:last-child {
  margin-bottom: 0;
}
.mpblog-archives .block-content {
  padding-top: 10px;
}
.mpblog-archives .block-content .actions {
  margin: 10px -10px -5px;
}
/* Tags */
.mpblog-tags .tag-list.cloud-enabled {
  display: none;
}
.mpblog-tags .block-content canvas {
  width: 100%;
  margin-left: -5px;
}
.mpblog-tags ul {
  list-style-type: none;
}
.mpblog-tags ul li {
  display: inline;
}
.mpblog-tags a.tag1 {
  font-size: 0.7em;
  font-weight: 100;
}
.mpblog-tags a.tag2 {
  font-size: 0.8em;
  font-weight: 200;
}
.mpblog-tags a.tag3 {
  font-size: 0.9em;
  font-weight: 300;
}
.mpblog-tags a.tag4 {
  font-size: 1.0em;
  font-weight: 400;
}
.mpblog-tags a.tag5 {
  font-size: 1.2em;
  font-weight: 500;
}
.mpblog-tags a.tag6 {
  font-size: 1.4em;
  font-weight: 600;
}
.mpblog-tags a.tag7 {
  font-size: 1.6em;
  font-weight: 700;
}
.mpblog-tags a.tag8 {
  font-size: 1.8em;
  font-weight: 800;
}
.mpblog-tags a.tag9 {
  font-size: 2.2em;
  font-weight: 900;
}
.mpblog-tags a.tag10 {
  font-size: 2.5em;
  font-weight: 900;
}
/* Social Share */
@media (min-width: 770px) {
  .mpblog-social-container {
    float: left;
  }
}
@media (max-width: 770px) {
  .mpblog-social-container .mp-buttons ul {
    text-align: center;
    width: 100%;
  }
}
.mpblog-social-container .mp-buttons ul li {
  margin-right: 5px;
  float: left;
}
@media (max-width: 770px) {
  .mpblog-social-container .mp-buttons ul li {
    margin-bottom: 5px;
    display: inline-block;
  }
}
.mpblog-social-container .mp-buttons ul li .blog-icon {
  float: left;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
}
.mpblog-social-container .mp-buttons ul li .blog-icon.twitter {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/twitter.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/twitter.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.facebook {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/facebook.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/facebook.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.vkontakte {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/vk.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/vk.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.odnoklassniki {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/ok.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/ok.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.blogger {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/blogger.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/blogger.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.tumblr {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/tumblr.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/tumblr.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.pinterest {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/pinterest.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/pinterest.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.digg {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/digg.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/digg.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.mixx {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/mixx.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/mixx.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.delicious {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/delicious.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/delicious.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.stumbleupon {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/stumbleupon.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/stumbleupon.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.slashdot {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/slashdot.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/slashdot.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.slashdot {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/slashdot.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/slashdot.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.reddit {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/reddit.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/reddit.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.linkedin {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/linkedin.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/linkedin.svg");
}
.mpblog-social-container .mp-buttons ul li .blog-icon.google {
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/google_bookmarks.png");
  background-image: url("https://www.dolce-gusto.co.th/skin/frontend/base/default/mpblog/images/assets/google_bookmarks.svg");
}
.search-query {
  margin-bottom: 20px;
}
.search-query .input-box {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  float: left;
}
.search-query .input-box button.button {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  padding: 6px 7px;
}
.search-query .input-box button.button i.glyphicons.search {
  opacity: 0.5;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.search-query .input-box button.button i.glyphicons.search:hover {
  opacity: 1;
}
.search-query .input-box button.button i.glyphicons.search:active {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.search-query .input-box input[type="text"] {
  width: 100%;
}
.search-query .advice {
  padding: 3px 10px;
  border: 1px solid #cccccc;
  background: #f4f4f4;
  float: left;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.search-query .advice a {
  font-weight: bold;
}
.mpblog-search .block-content button.button {
  margin-top: 10px;
  margin-bottom: 5px;
}
.mpblog-search .block-content input.input-text {
  width: 168px;
  margin-top: 5px;
}
/* Preview */
.mpblog-preview {
  padding: 20px;
}
.mpblog-preview .mpblog-preview-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.mpblog-preview-button-set {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
textarea.placeholder .placeholder,
input.placeholder[type="text"] .placeholder {
  color: #8c8c8c;
  text-indent: 0;
  opacity: 0.8;
  -webkit-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -moz-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -o-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
textarea.placeholder .hovered-placeholder,
input.placeholder[type="text"] .hovered-placeholder {
  opacity: 1;
}
textarea.placeholder .focused-placeholder,
input.placeholder[type="text"] .focused-placeholder {
  text-indent: -100%;
  opacity: 0;
}
textarea.placeholder::-webkit-input-placeholder,
input.placeholder[type="text"]::-webkit-input-placeholder {
  color: #8c8c8c;
  text-indent: 0;
  opacity: 0.8;
  -webkit-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -moz-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -o-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
textarea.placeholder:-moz-placeholder,
input.placeholder[type="text"]:-moz-placeholder {
  color: #8c8c8c;
  text-indent: 0;
  opacity: 0.8;
  -webkit-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -moz-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -o-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
textarea.placeholder::-moz-placeholder,
input.placeholder[type="text"]::-moz-placeholder {
  color: #8c8c8c;
  text-indent: 0;
  opacity: 0.8;
  -webkit-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -moz-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -o-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
textarea.placeholder:-ms-input-placeholder,
input.placeholder[type="text"]:-ms-input-placeholder {
  color: #8c8c8c;
  text-indent: 0;
  opacity: 0.8;
  -webkit-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -moz-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -o-transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: text-indent 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
textarea.placeholder:hover::-webkit-input-placeholder,
input.placeholder[type="text"]:hover::-webkit-input-placeholder {
  opacity: 1;
}
textarea.placeholder:hover:-moz-placeholder,
input.placeholder[type="text"]:hover:-moz-placeholder {
  opacity: 1;
}
textarea.placeholder:hover::-moz-placeholder,
input.placeholder[type="text"]:hover::-moz-placeholder {
  opacity: 1;
}
textarea.placeholder:hover:-ms-input-placeholder,
input.placeholder[type="text"]:hover:-ms-input-placeholder {
  opacity: 1;
}
textarea.placeholder:focus,
input.placeholder[type="text"]:focus {
  -webkit-box-shadow: inset 0px 0px 5px 0px #cccccc;
  -moz-box-shadow: inset 0px 0px 5px 0px #cccccc;
  box-shadow: inset 0px 0px 5px 0px #cccccc;
  border: 1px solid #4d4d4d;
}
textarea.placeholder:focus::-webkit-input-placeholder,
input.placeholder[type="text"]:focus::-webkit-input-placeholder {
  text-indent: -100%;
  opacity: 0;
}
textarea.placeholder:focus:-moz-placeholder,
input.placeholder[type="text"]:focus:-moz-placeholder {
  text-indent: -100%;
  opacity: 0;
}
textarea.placeholder:focus::-moz-placeholder,
input.placeholder[type="text"]:focus::-moz-placeholder {
  text-indent: -100%;
  opacity: 0;
}
textarea.placeholder:focus:-ms-input-placeholder,
input.placeholder[type="text"]:focus:-ms-input-placeholder {
  text-indent: -100%;
  opacity: 0;
}
.fix-me {
  zoom: 1;
  /* IE6&7 */
}
.fix-me:before,
.fix-me:after {
  content: "";
  display: table;
}
.fix-me:after {
  clear: both;
}
.to-left {
  float: left;
}
.to-right {
  float: right;
}
/* Misc styles */
div.fixed {
  clear: both;
}
/* Icons Color Scheme */
i.mpblog-classic.glyphicons,
i.mpblog-classic.glyphicons:before {
  color: #3399cc;
}
i.mpblog-red.glyphicons,
i.mpblog-red.glyphicons:before {
  color: #7C0104;
}
i.mpblog-green.glyphicons,
i.mpblog-green.glyphicons:before {
  color: #003300;
}
i.mpblog-blue.glyphicons,
i.mpblog-blue.glyphicons:before {
  color: #003366;
}
i.mpblog-grey.glyphicons,
i.mpblog-grey.glyphicons:before {
  color: #333333;
}
i.mpblog-old-magento.glyphicons,
i.mpblog-old-magento.glyphicons:before {
  color: #0A263C;
}

.amasty-hide-class {
    display: none;
}
.mpblog-index-index .main-container,
.mpblog-index-post .main-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.mpblog-index-index .main-container > .main,
.mpblog-index-index .main .col-main .content,
.mpblog-index-post .main-container > .main,
.mpblog-index-post .main .col-main .content {
    padding-top: 0;
}

.mpblog-container {
    padding: 0 15px 15px 15px;
}

.mpblog-index-post .mpblog-container {
    padding: 0 0 15px 0;
}

.mp-blog-head {
    flex-wrap: nowrap;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    margin-bottom: 15px;
}

.mpblog-list-container {
    clear: both;
}

.mpblog-container h2.mp-title {
    font-size: 17px;
    margin-bottom: 0;
    text-align: left;
    -ms-flex: 1;
    flex: 1;
}

.mpblog-container .mpblog-list.grid {
    width: auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: -5px;
}

.mpblog-container .mpblog-list.grid .item {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    width: 50%;
    height: auto;
    float: none;
    padding: 5px !important;
    margin-bottom: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.mpblog-container .mpblog-list.grid .item .post-container,
.blog-related-posts .item .post-container {
    background-color: #ffffff;
    padding: 0 10px 8px;
    box-shadow: none;
    border: 1px solid #ddd6de;
    overflow: hidden;
    font-size: 16px;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
}

.mpblog-container .mpblog-list.grid .item .post-container .thumbnail-container,
.blog-related-posts .item .post-container .thumbnail-container {
    margin: 0 -10px 15px -10px;
    border-radius: 15px;
    overflow: hidden;
}

.mpblog-container .mpblog-list.grid .item .post-container .post-thumbnail,
.blog-related-posts .item .post-container .post-thumbnail {
    margin: 0;
}

.mpblog-container .mpblog-list.grid .item .post-container .post-thumbnail img,
.blog-related-posts .item .post-container .post-thumbnail img {
    display: block;
}

.mpblog-post .post-thumbnail img.thumbnail {
    display: block;
}

.mpblog-container .mpblog-list.grid .item .post-container .post-thumbnail:hover,
.blog-related-posts .item .post-container .post-thumbnail:hover {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}

.mpblog-container .mpblog-list.grid .item .post-container .mp-post-header,
.blog-related-posts .item .post-container .mp-post-header {
    padding-bottom: 15px;
}

.mpblog-container .mpblog-list.grid .item .post-container .mp-post-header h3,
.blog-related-posts .item .post-container .mp-post-header h3 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    height: 50px;
    overflow: hidden;
    margin: 0;
    text-transform: uppercase;
}

.mpblog-container .mpblog-list.grid .item .post-container .mp-post-header h3 a,
.blog-related-posts .item .post-container .mp-post-header h3 a {
    height: 50px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mpblog-list-container .mpblog-post .mp-details,
.blog-related-posts .mpblog-post .mp-details {
    text-align: right;
    border-top: 1px solid #42240f;
    padding-top: 8px;
}

.mpblog-list-container .mpblog-post .mp-details .mp-read-more,
.blog-related-posts .mp-read-more {
    position: relative;
    padding-right: 67px;
    line-height: 40px;
    display: block;
}

.mpblog-list-container .mpblog-post .mp-details .mp-read-more:after,
.blog-related-posts .mp-read-more:after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-color: #42240f;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/long-white-arrow-right.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center;
}

/* Toolbar */
.mpblog-list-sortby {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    align-items: center;
    margin-left: 5em;
}

.mpblog-list-sortby > .title {
    display: inline-block;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    border: 2px solid #42240f;
    padding-left: 1.5em;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
}

.mpblog-list-sortby > .title > span {
    color: #42240f;
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
    vertical-align: middle;
}

.mpblog-list-sortby > .title > span.icon {
    width: 34px;
    height: 34px;
    text-align: center;
    margin: -1px -1px -1px 1.5em;
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/white-arrow-down.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    background-color: #42240f;
}

.mpblog-list-sortby > .title.open > span.icon {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/white-arrow-up.png);
}

.mpblog-list-sortby > ul {
    min-width: 210px;
    display: none;
    position: absolute;
    right: -5px;
    top: 100%;
    background: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/sort-by-open.png) no-repeat right top;
    background-size: 100% 100%;
    padding: 30px 35px 30px 35px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}

.mpblog-list-sortby li {
    color: #42240f;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    padding-top: 10px;
    list-style: none;
    text-align: right;
    overflow: hidden;
}

.mpblog-list-sortby li.active {
    font-weight: bold;
}

.mpblog-list-sortby li + li {
    border-top: 1px solid #42240f;
}

.mpblog-list-sortby li:not(:last-child) {
    margin-bottom: 10px;
}

.mpblog-list-sortby li > span {
    font-weight: 900;
    margin-right: 10px;
    float: left;
}

/* Pager */
.mpblog-container .mp-pager {
    margin: 30px 0 0 0;
    padding: 0 5px;
}

.mpblog-container .mp-pager, .mpblog-container .mp-pager ol {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
}

.mpblog-container .mp-pager, .mpblog-container .mp-pager .title {
    font-size: 16px;
    color: #42240f;
    text-transform: uppercase;
}

.mpblog-container .mp-pager ol {
    white-space: nowrap;
}

.mpblog-container .mp-pager li {
    list-style: none;
}

.mpblog-container .mp-pager li:not(.navi) {
    position: relative;
    font-size: 16px;
    color: #42240f;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 0 10px;
    cursor: pointer;
}

.mpblog-container .mp-pager li:not(.navi):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #42240f;
    width: 1px;
    height: 15px;
}

.mpblog-container .mp-pager li:not(.navi) > span,
.mpblog-container .mp-pager li:not(.navi) > a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}

.mpblog-container .mp-pager li.current:not(.navi) > span {
    font-weight: bold;
    color: #ffffff;
    background-color: #42240f;
}

.mpblog-container .mp-pager li.navi {
    font-size: 0;
    position: relative;
    background-color: #42240f;
    display: block;
    width: 34px;
    height: 34px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    margin: 0 5px;
    cursor: pointer;
}

.mpblog-container .mp-pager li.navi > a {
    position: relative;
    display: block;
    float: none;
    width: 100%;
    height: 100%;
}

.mpblog-container .mp-pager li + li.older {
    margin-left: 25px;
}

.mpblog-container .mp-pager li.navi > a:after,
.mpblog-container .mp-pager li.navi > span:after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 17px;
    height: 17px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.mpblog-container .mp-pager li.navi.older > a:after,
.mpblog-container .mp-pager li.navi.older > span:after {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/long-white-arrow-left.png);
}

.mpblog-container .mp-pager li.navi.newer > a:after,
.mpblog-container .mp-pager li.navi.newer > span:after {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/long-white-arrow-right.png);
}

.mpblog-container .mp-pager li.navi.disabled {
    background-color: #e5e5e5;
    cursor: default;
    pointer-events: none;
}

/* Blog Details */
.mpblog-index-post .main-container .main {
    padding-top: 0;
}

.mpblog-index-post .main .col-main .content {
    padding-bottom: 0;
}

.mpblog-detail-container .mpblog-post .mp-blog-head h1 {
    font-size: 17px;
    max-width: none;
    margin: 0;
    text-align: left;
}

.mpblog-detail-container .mpblog-post .post-thumbnail {
    margin: 0 auto 1.4em auto;
}

.mpblog-detail-container .mpblog-post .mp-content a > img,
.mpblog-detail-container .mpblog-post .mp-content a > img:hover {
    border: 0;
    padding: 0;
    margin: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.mpblog-detail-container .mpblog-post .mp-content div.mp-details {
    margin-top: 15px;
}

.mpblog-detail-container .mp-full-content {
    text-align: justify;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    -webkit-transition-delay: 0;
    -moz-transition: all 0.3s linear 0;
    -o-transition: all 0.3s linear 0;
    transition: all 0.3s linear 0;
}

.mpblog-detail-container .mp-full-content h2 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.mpblog-detail-container .mp-full-content h3 {
    font-size: 15px;
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 10px;
}

.mpblog-detail-container .mp-full-content table {
    margin-bottom: 0;
}

.mpblog-detail-container .mp-full-content .indent {
    text-indent: 2rem;
}

.mpblog-detail-container .mp-full-content .padding {
    padding-left: 2rem;
}

.mpblog-detail-container .mp-full-content .margin {
    margin-left: 2rem;
}

.mpblog-detail-container .mp-full-content p {
    margin: 0;
}

.mpblog-detail-container .mp-full-content strong {
    font-weight: 900;
    font-size: 15px;
}

.mpblog-detail-container .mp-full-content ul {
    list-style: disc;
    margin-left: 3rem;
}

.mpblog-detail-container .mp-full-content table tr:nth-child(even) td {
    background-color: #ffffff;
}

.mpblog-detail-container .mp-full-content.show {
    visibility: visible;
    height: auto;
}

.mpblog-detail-container .mp-full-content.show-less {
    position: relative;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mpblog-detail-container .mp-full-content.show-less:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: -10px;
    background: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/fade.png);
    background-size: contain;
    z-index: 1;
    clear: both;
}

.mpblog-detail-container .actions {
    width: 100%;
    text-align: center;
}

.mpblog-detail-container .read-more-btn,
.mpblog-detail-container .read-less-btn {
    display: none;
    font-size: 17px;
    font-weight: normal;
    padding: 4px 20px;
    text-align: center;
    text-transform: none;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 34px;
    min-height: 43px;
    min-width: 240px;
    background: #42240f;
    color: #FFFFFF;
    border: 2px solid #42240f;
    margin: 15px 0 auto;
    cursor: pointer;
}

.mpblog-detail-container .mpblog-post span.mp-tags {
    display: block;
    margin: 0;
    float: none;
    font-size: 12px;
    line-height: 1.2;
}

.mpblog-detail-container .mpblog-post {
    margin-bottom: 0;
}

/* Related Products */
.blog-related-products .our-products .a-center {
    text-align: center;
}

/* Related Posts */
.blog-related-posts {
    padding: 50px 0;
}

.blog-related-posts .a-center {
    text-align: center;
}

.related-posts-items h2 {
    font-size: 24px;
    text-transform: uppercase;
    padding: 0 0 40px 0;
    margin: 0;
    text-align: left;
}

ul.related-posts-grid {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.std ul.related-posts-grid {
    margin-bottom: 0;
}

ul.related-posts-grid > li {
    padding: 8px;
    -webkit-flex-basis: 45%;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    max-width: 45%;
    width: 45%;
    min-width: 150px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: nowrap;
    height: auto;
}

ul.related-posts-grid .mpblog-post {
    margin-bottom: 0;
}

.related-posts-slide-btn {
    width: 11px;
    height: 30px;
    position: absolute;
    left: 0;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}

.related-posts-slide-btn.next {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/brown-next-arrow.svg);
    background-repeat: no-repeat;
    background-size: 11px 16px;
    background-position: center;
    left: auto;
    right: 0;
}

.related-posts-slide-btn.prev {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/brown-prev-arrow.svg);
    background-repeat: no-repeat;
    background-size: 11px 16px;
    background-position: center;
}

.related-posts-slide-btn.swiper-button-disabled {
    display: none;
    opacity: 0.2;
    cursor: default;
}

/* Banner */
.blog-top-banner-wrapper {
    position: relative;
    margin: 0 0 15px 0;
    overflow: hidden;
}

.blog-latest-highlights {
    position: relative;
}

.blog-top-banner-wrapper img,
.blog-latest-highlights img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-top-banner-wrapper .bg {
    width: 100%;
    height: 85px;
}

.blog-top-banner-wrapper .text-block,
.blog-latest-highlights .text-block {
    position: absolute;
    text-align: center;
    padding: 0 15px;
    width: 100%;
    left: 50%;
    top: 50%;
    flex-wrap: nowrap;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    max-width: 960px;
    transform: translate(-50%,-50%);
}

.blog-top-banner-wrapper .text-block h1,
.blog-top-banner-wrapper .text-block h2 {
    margin: 0;
    font-size: 17px;
    text-transform: uppercase;
}

.mpblog-index-post .breadcrumbs {
    padding: 0 15px;
    margin-bottom: 15px;
}

.mpblog-index-post .breadcrumbs ul {
    flex-wrap: nowrap;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    align-items: flex-start;
}

.mpblog-index-post .breadcrumbs li.home {
    display: none;
}

.mpblog-index-post .breadcrumbs li.post {
    -ms-flex: 1;
    flex: 1;
}

.mpblog-index-post .breadcrumbs strong {
    white-space: normal;
}

/* Read more articles */
.more-articles-btn {
    padding: 0 0 50px 0;
    width: calc(100% - 30px);
    max-width: 355px;
    margin: 0 auto;
}
.button.more-articles {
    width: 100%;
    display: block;
    color: #ffffff;
    background: #42240f;
    border-radius: 30px;
    padding: 13px 20px;
    border: solid 2px #42240f;
    font-size: 17px;
    text-transform: uppercase;
}

.button.more-articles:hover {
    background: #fff;
    color: #42240f;
    border-color: #42240f;
}

/* Footer */
.mpblog-index-index .footer-top,
.mpblog-index-post .footer-top {
    display: block;
}

@media only screen and (min-width: 581px) {
    .mpblog-container .mpblog-list.grid .item .post-container .mp-post-header h3,
    .blog-related-posts .item .post-container .mp-post-header h3 {
        font-size: 16px;
        height: 56px;
    }

    .mpblog-container .mpblog-list.grid .item .post-container .mp-post-header h3 a,
    .blog-related-posts .item .post-container .mp-post-header h3 a {
        height: 56px;
    }

    .mpblog-container .mpblog-list.grid .item {
        padding: 8px !important;
    }

    .mpblog-container .mpblog-list.grid {
        margin: -8px;
    }

    ul.related-posts-grid > li {
        -webkit-flex-basis: 45%;
        -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
        max-width: 45%;
        width: 45%;
    }
}

@media only screen and (min-width: 769px) {
    .mpblog-container {
        padding: 0 15px 40px 15px;
    }

    .mpblog-index-post .mpblog-container {
        padding: 0 0 40px 0;
    }

    .mpblog-container .mpblog-list.grid .item .post-container,
    .blog-related-posts .item .post-container {
        padding: 0 20px 15px;
    }

    .mpblog-container .mpblog-list.grid .item .post-container .thumbnail-container,
    .blog-related-posts .item .post-container .thumbnail-container {
        margin: 0 -20px 18px -20px;
        -webkit-border-radius: 34px;
        -moz-border-radius: 34px;
        -ms-border-radius: 34px;
        -o-border-radius: 34px;
        border-radius: 34px;
    }

    .mpblog-container .mpblog-list.grid .item .post-container .mp-post-header,
    .blog-related-posts .item .post-container .mp-post-header {
        padding-bottom: 18px;
    }

    .mpblog-list-container .mpblog-post .mp-details,
    .blog-related-posts .mpblog-post .mp-details {
        padding-top: 15px;
    }

    /* Pager */
    .mpblog-container .mp-pager {
        padding: 0 3px;
    }

    /* Blog Details */
    .mpblog-detail-container .mpblog-post .mp-blog-head h1 {
        font-size: 30px;
        margin: 0 auto 30px auto;
    }

    .mpblog-detail-container .mpblog-post .post-thumbnail {
        margin: 0 auto 3rem auto;
    }

    .mpblog-detail-container .mp-full-content {
        font-size: 17px;
    }

    .mpblog-detail-container .mp-full-content h2 {
        font-size: 24px;
    }

    .mpblog-detail-container .mp-full-content h3 {
        font-size: 18px;
    }

    .mpblog-detail-container .mp-full-content .indent {
        text-indent: 4rem;
    }

    .mpblog-detail-container .mp-full-content .padding {
        padding-left: 4rem;
    }

    .mpblog-detail-container .mp-full-content .margin {
        margin-left: 4rem;
    }

    .mpblog-detail-container .mp-full-content strong {
        font-size: 18px;
    }

    .mpblog-detail-container .mp-full-content ul {
        margin-left: 5.5rem;
    }

    .mpblog-detail-container .mp-full-content ul > li {
        padding-left: 10px;
    }

    .mpblog-detail-container .mpblog-post .mp-content div.mp-details {
        margin-top: 40px;
    }

    .mpblog-detail-container .mpblog-post span.mp-tags {
        font-size: 14px;
    }

    /* Related Posts */
    .related-posts-items {
        position: relative;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
    }

    .related-posts-slide-btn {
        width: 25px;
    }

    .related-posts-slide-btn.prev {
        background-size: 19px 30px;
        left: -25px;
    }

    .related-posts-slide-btn.next {
        background-size: 19px 30px;
        right: -25px;
    }

    /* Banner */
    .blog-top-banner-wrapper {
        margin: 0 0 45px 0;
    }

    .blog-top-banner-wrapper .bg {
        height: 98px;
    }

    .blog-top-banner-wrapper .text-block h1,
    .blog-top-banner-wrapper .text-block h2 {
        font-size: 34px;
    }

    .mpblog-index-post .breadcrumbs {
        display: none;
    }

    /* About us page */
    .blog-latest-highlights .text-block {
        -webkit-justify-content: end;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        top: 45%;
    }
}

@media only screen and (min-width: 931px) {
    .mpblog-container .mpblog-list.grid .item {
        max-width: 33.33%;
        width: 33.33%;
    }
    ul.related-posts-grid > li {
        -webkit-flex-basis: 33.33%;
        -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
        max-width: 33.33%;
        width: 33.33%;
    }
}

@media only screen and (min-width: 1024px) {
    .blog-latest-highlights .text-block h2:lang(th) {
        min-width: 480px;
        text-align: left;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .blog-latest-highlights .text-block h2:lang(th) {
        min-width: 230px;
        text-align: left;
    }
}

@media only screen and (max-width: 960px) {
    .mpblog-detail-container .mpblog-post .mp-content,
    .mpblog-detail-container .mpblog-post .mp-blog-head h1 {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 930px) {
    .mpblog-container .mpblog-list.grid .item {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
        width: 50%;
        min-width: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .blog-latest-highlights .text-block {
        padding-right: 22%;
    }
}

@media only screen and (max-width: 768px) {
    .mpblog-list-sortby {
        margin: 0;
    }

    .mpblog-container .mpblog-list.grid .item .post-container,
    .blog-related-posts .item .post-container {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
    }

    .mpblog-detail-container .read-more-btn,
    .mpblog-detail-container .read-less-btn {
        font-size: 15px;
        line-height: 30px;
    }

    /* Related Posts */
    .related-posts-items h2 {
        font-size: 20px;
        padding: 0 0 20px 10px;
    }

    .related-posts-slide-btn {
        display: none;
    }

    ul.related-posts-grid > li {
        padding: 5px;
    }

    .blog-related-products .our-products.crosssell {
        margin: 0;
    }

    .blog-related-products .relate-product-detail ul.swiper-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .blog-related-posts {
        padding: 30px 0;
    }

    /* About us page */
    .blog-latest-highlights {
        padding-top: 25%;
    }

    .blog-latest-highlights .text-block {
        top: 25%;
    }

    .button.more-articles {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 549px) {
    .mpblog-container .mpblog-list.grid .item .post-container,
    .blog-related-posts .item .post-container {
        font-size: 14px;
    }

    .mpblog-detail-container .read-more-btn,
    .mpblog-detail-container .read-less-btn {
        width: 100%;
    }

    .mpblog-list-container .mpblog-post .mp-details .mp-read-more,
    .blog-related-posts .mp-read-more {
        line-height: 30px;
        padding-right: 45px;
    }

    .mpblog-list-container .mpblog-post .mp-details .mp-read-more:after,
    .blog-related-posts .mp-read-more:after {
        width: 30px;
        height: 30px;
        background-size: 14px;
    }

    /* Pager */
    .mpblog-container .mp-pager, 
    .mpblog-container .mp-pager .title,
    .mpblog-container .mp-pager li:not(.navi) > span, 
    .mpblog-container .mp-pager li:not(.navi) > a {
        font-size: 14px;
    }

    .mpblog-container .mp-pager li.navi > a:after, .mpblog-container .mp-pager li.navi > span:after {
        width: 14px;
        height: 14px;
    }

    .mpblog-container .mp-pager li.navi {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .mpblog-list-container .mpblog-post .mp-details .mp-read-more,
    .blog-related-posts .mp-read-more {
        background-size: 25px auto;
        line-height: 25px;
        padding-right: 40px;
    }

    .mpblog-list-container .mpblog-post .mp-details .mp-read-more:after,
    .blog-related-posts .mp-read-more:after {
        width: 25px;
        height: 25px;
        background-size: 11px;
    }

    .mpblog-container .mp-pager li:not(.navi) > span, 
    .mpblog-container .mp-pager li:not(.navi) > a,
    .mpblog-container .mp-pager li.navi {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }

    .mpblog-container .mp-pager li.navi > a:after, 
    .mpblog-container .mp-pager li.navi > span:after {
        width: 11px;
        height: 11px;
    }
}

@media only screen and (max-width: 375px) {
    .blog-latest-highlights .text-block {
        align-items: flex-start;
        top: 22%;
    }
    .blog-latest-highlights .text-block h2 {
        max-width: 300px;
        font-size: 28px;
    }
}
img.pc_lazyload.lazyblur,
img.pc_lazyload.lowres
{
    overflow:hidden;
    /*max-width:100%;*/
    position:relative;
}

img.lazyloaded.lazyblur
{
    -webkit-filter: blur(0px)!important;
    filter: blur(0px)!important;
}

img.lazyloaded.lazyblur,
img.lazyloaded.lowres
{
    image-rendering: initial!important;
}


#custommenu {
    width: 100%;
    height:auto;
    margin: 0;
}
#custommenu .custommenu-holder{
    position: relative;
    width: auto;    
    display: inline-block;
    float:none;
    line-height: 40px;
    margin-top: 0;
    padding-left: 10px;
}
/*IE7 fix*/
*:first-child+html #custommenu {
    z-index: 998;
}
div.menu {
    position: relative;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

div.menu + div.menu .parentMenu > a {
    position: relative;
}

div.menu span {
    position: relative;
    display: block;
    font-size: 14px;
    white-space: nowrap;
}
div.menu a span:hover {
    cursor: pointer;
    color: #42240f;
}
div.menu a span {
    position: relative;
}

#custommenu div.menu + div.menu .parentMenu > a:before {
    content: '';
    width: 1px;
    height: 13px;
    background-color: #42240f;
    display: block;
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
}

#custommenu .parentMenu.has-child > a {
    position: relative;
    padding-right: 20px;
}

#custommenu .parentMenu.has-child > a:after {
    content: '';
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/order-toggle-icon-close.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 100%;
    background-color: #42240f;
    position: absolute;
    right: 0;
    display: block;
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
}

#custommenu .parentMenu.has-child:hover > a:after {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/order-toggle-icon-open.png);
}

#custommenu .parentMenu > div.content {
    display: none;
}

#custommenu .parentMenu:hover > div.content {
    display: block;
}

#custommenu .parentMenu > div.content {
    display: none;
    position: absolute;
    width: 320px;
    top: 100%;
    right: 0;
    z-index: 211;
}

#custommenu .custommenu-holder .menu:first-child .parentMenu > div.content {
    left: 0;
}

#custommenu .parentMenu > div.content .content-wrap {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    margin-top: 21px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.18);
}

#custommenu .parentMenu > div.content .content-wrap:after {
    top: -12px;
    right: 15px;
    bottom: auto;
    left: auto;
    width: 0px;
    height: 0px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(0,0,0,0.05);
    position: absolute;
    display: inline-block;
    content: '';
}
  
#custommenu .parentMenu > div.content .content-wrap:before {
    top: -10px;
    right: 16px;
    bottom: auto;
    left: auto;
    width: 0px;
    height: 0px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 11px solid #fff;
    position: absolute;
    display: inline-block;
    content: '';
    z-index: 2;
}

#custommenu .custommenu-holder .menu:first-child .parentMenu > div.content .content-wrap:before {
    left: 16px;
}

#custommenu .custommenu-holder .menu:first-child .parentMenu > div.content .content-wrap:after {
    left: 15px;
}

#custommenu .parentMenu > div.content .links {
    overflow: hidden;
    text-align: center;
}

#custommenu .parentMenu > div.content .links li {
    position: relative;
    display: block;
    width: 100%;
    padding: 4px 0;
    line-height: 18px;
    margin-top: 4px;
}

#custommenu .parentMenu > div.content .links li a {
    float: none;
    font-weight: bold;
}

#custommenu .content.trackorder .input-box {
    text-align: center;
    padding-top: 0;
    position: relative;
}

#custommenu-mobile form[id^="trackorder_form"] label,
#custommenu form[id^="trackorder_form"] label {
    display: block;
    margin-bottom: 5px;
    color:#42240f;
    text-align: left;
    text-transform: uppercase;
    line-height: 1.2;
    font-size: 10px;
    font-weight: normal;
    padding-left: 10px;
}

#custommenu-mobile form[id^="trackorder_form"] input.input-text,
#custommenu form[id^="trackorder_form"] input.input-text {
    width: 100%;
    height: 40px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: normal;
    text-align: left; 
    border-radius: 20px;
    padding-right: 110px;
    border: solid 1px #a0a0a0;
}

#custommenu-mobile form[id^="trackorder_form"] button.button,
#custommenu form[id^="trackorder_form"] button.button {
    margin: 0 auto;
    width: 100px;
    height: 40px;
    background: #42240f;
    border-radius: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
    right: 0;
    top: 2px;
    position: absolute;
}

div.wp-custom-menu-popup {
    position: absolute;
    z-index: 1000 !important;
    display: none;
    text-align: left;
    padding: 15px;
    width: 750px;
    top: 30px;
    border: 1px solid #D6D6D6;
    background: #fff;
    margin-top: -2px;
    min-width: 330px;
    box-shadow: 1px -3px 3px #eee;
    -webkit-box-shadow: 1px -3px 3px #eee;
    -moz-box-shadow: 1px -3px 3px #eee;
    left: -160px !important;
}

div.wp-custom-menu-popup.cms-page-link{
    width:250px;
}

div.wp-custom-menu-popup.cms-page-link .column {
    width: 100%;
}

div.wp-custom-menu-popup.cms-page-link .block1, div.wp-custom-menu-popup.cms-page-link .block2 {
    width: 100%;
}

div.wp-custom-menu-popup.cms-page-link .cate-name a{
    width:100%;
    padding: 10px 10px;
    color: #000;
    font-size: 12px;
    line-height: 15px;
    text-decoration: none;
}

div.wp-custom-menu-popup.cms-page-link .cate-name a:hover,
div.wp-custom-menu-popup-cont .category-all .main-category-nav-link div:hover,
div.wp-custom-menu-popup-cont .category-all .main-category-nav-link:hover div{
    color: #fff;
}


@-moz-document url-prefix() {
    div.wp-custom-menu-popup {
        margin-top: -2px;
    }
}

div.wp-custom-menu-popup#popup25,
div.wp-custom-menu-popup:last-child{
    width: 175px;
}
div.wp-custom-menu-popup a {
    text-decoration: none;
    display:block;
    cursor: pointer;
    padding: 0 25px;
    border: 1px solid #fff;
    border-width: 0 1px;
}
div.wp-custom-menu-popup a{
    padding: 0 0 0 10px;
}
div.level1 {
    margin-bottom: 5px;
}
div.level2 {
    margin-bottom: 20px;
}
div.level3 {
    margin-bottom: 5px;
    padding: 5px;
}
div.block2 {
    display: block;
}
a.level2{
    font-size: 12px;
    color: #390073;
    padding: 3px 10px 3px 15px;
    text-indent: 1.5em;
    border-radius: 2px;
    position: relative;
    margin: 0 0 5px;
}
a.level2:after{
    position: absolute;
    content: '';
    background: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/ascent.png) -2px -1px no-repeat;
    background-size: 15px 13px;
    width: 20px;
    height: 20px;
    top: 40%;
    left: 0;
    margin: -4px 5px 0;
}
/* Clearfix */
div.block2:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
html[xmlns] div.block2 {
    display: block;
}
* html div.block2 {
    height: 1%;
}
div.block2 p {
    margin-bottom: 3px;
    line-height: 120%;
    color: #000;
    font-size: 11px;
}
div.block2 p a {
    display: inline;
}
div.block2 a img {
    opacity: .9;
    filter: alpha(opacity=90);
}
div.block2 a:hover img {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
div.block2 .brand a:hover img {
    -webkit-transition: all 0;
    -moz-transition: all 0;
    -ms-transition: all 0;
    transition: all 0;
}
div.wp-custom-menu-popup hr {
    margin: 0px 0px 10px 0px;
}
/******************************************* COLUMN WIDTH ***************************** */
div.column {
    width: 50%; /* for 5 columns*/
    margin:0;
    padding: 0;
    float: left;
}
/*end COLUMN WIDTH  */

div.itemSubMenu {
    margin-left: 0px;
}
.clearBoth {
    clear:both;
    height: 0;
    overflow: hidden;
}
div.level1 {
    margin-bottom: 0px;
    width: 100%;
    height: 100%;
    /*padding:10px 0;*/
}
div.level1 a{
    overflow:hidden;
    text-transform:uppercase;
}
div.level1 a div{
    display: block;
    width: 55%;
    padding-top: 20px;
    float: right;
    color: #371000;
    text-decoration: none;
}
div.level1 a:hover > div{
    display: block;
    color: #fff;
    text-decoration: none;
}
/*BG*/
#custommenu {
    text-align: left;
}
div.wp-custom-menu-popup-cont{
    /*padding: 14px 10px;*/
    position: relative;
    overflow: hidden;
}
div.wp-custom-menu-popup-cont .block1{
    width:65%;
    float: left;

}
div.wp-custom-menu-popup-cont .block2{
    width:35%;
    float: right;
    height: 100%;
}
div.wp-custom-menu-popup-cont div[id^="wp_custom_menu_"]{
    float: right;
    background: #f3f3f3;
    padding: 10px;
    font-size: 11px;
    /* width: 42.37%; */
    width:47%;
    margin:0;
    position: relative;
}
div.wp-custom-menu-popup-cont div[id^="wp_custom_menu_"].offers{
    width: 100%;
}
div.wp-custom-menu-popup-cont div[id^="wp_custom_menu_"] img,
div.wp-custom-menu-popup-cont div[id^="wp_custom_menu_"] strong{
    display: block;
    margin: 0 0 5px;
}
.menu-prom-holder{
    font-size: 11px;
}
div.wp-custom-menu-popup-cont div[id^="wp_custom_menu_"] a{
    text-transform: uppercase;
    text-decoration: underline !important;
}
div.wp-custom-menu-popup-cont div[id^="wp_custom_menu_"] a:hover{
    text-decoration: underline;
}

div.wp-custom-menu-popup-cont .category-all{
    clear:left;
    padding: 10px 0;
    border-top: 1px solid #d6d6d6;
    overflow: hidden;
}

div.wp-custom-menu-popup-cont .category-all .main-category-nav-link img{
    float:left;
    margin-right:10px;
}

div.wp-custom-menu-popup-cont .category-all .main-category-nav-link div{
    float:left;
    padding-top: 32px;
    color: #797979;
    text-transform: uppercase;
}

.shop-by{
    position: absolute;
    left: -237px;
    padding: 5px;
    text-align: center;
    width: 238px;
    bottom: 0;
}
.shop-by a{
    border-top: 1px solid #ccc;
    display: block;
}
.shop-by a:hover{
    font-weight: bold;
}
div.wp-custom-menu-popup h3{
    /*color: #fff;*/
    /*font-size: 20px;*/
    /*height: 37px;*/
    /*padding: 8px 15px 5px 15px;*/
    /*margin: 0;*/
    /*background: -ms-linear-gradient(45deg, #ff822f, #ff6600);*/
    /*background: -moz-linear-gradient(45deg, #ff822f, #ff6600);*/
    /*background: -webkit-linear-gradient(45deg, #ff822f, #ff6600);*/
    /*background: linear-gradient(45deg, #ff822f, #ff6600);*/
    display: none;
}
div.menu a:link, div.menu a:visited {
}
div.menu a:hover {
    color: #333;
}
div.wp-custom-menu-popup-cont .itemMenu{
    overflow:hidden;
    float: left;
}

div.menu a, div.wp-custom-menu-popup a {
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -ms-transition: all .1s linear;
    transition: all .1s linear;
    width: 100%;
}
div.wp-custom-menu-popup a.toPromo {
    width: 50%;
}
div.wp-custom-menu-popup a img.thumbnail {
    float: left;
    margin-right: 5px;
}

div.wp-custom-menu-popup a .cate-name {
    float: left;
}
div.wp-custom-menu-popup a div{
    height: 52px;
    width: 100%;
}
div.wp-custom-menu-popup a.toPromo div.promoIcon {
    height:80px;
    padding:28px 0 0 95px;
    float:left;
    background:url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/promotion.jpg) 0 0 no-repeat;
    width: 100%;
}
div.wp-custom-menu-popup a.toPromo div > span {
    line-height: 14px;
    float: right;
    width: 100%;
    text-align:left;
}
div.menu .brand a, div.wp-custom-menu-popup .brand a {
    -webkit-transition: all 0s linear;
    -moz-transition: all 0s linear;
    -ms-transition: all 0s linear;
    transition: all 0s linear;
}
div.menu.active a {
    color: #000 !important;
}
div.level3 {
    background: #fff;
}
div.menu {
    line-height: 40px;
    border-bottom: 0;
    padding: 0 6px;
}

div.menu#ourCoffee a:before {
    background-position: -203px -327px;
}
div.menu#monthly a:before {
    background-position: -299px -327px;
}
div.menu#webshop a:before {
    background-position: -267px -327px;
}
div.menu#services a:before {
    background-position: -235px -327px;
}

div.menu a span {
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
}

div.menu a span:after {
    content: '';
    display: block;
    background-color: transparent;
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    opacity: 0;
    -webkit-transition: opacity .4s ease-in-out,width .3s ease-in-out,left .3s ease-in-out,right .3s ease-in-out;
    transition: opacity .4s ease-in-out,width .3s ease-in-out,left .3s ease-in-out,right .3s ease-in-out;
}

div.menu:hover a span {
    -webkit-transition: color 0.3s linear;
    -webkit-transition-delay: 0;
    -moz-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

div.menu:hover a span:after {
    width: 100%;
    left: 0%;
    opacity: 1;
}

.monthlypackage-index-index div.menu#monthly_package a span,
.subscription-subscription-history div.menu#monthly_package a span,
.about-page div.menu#our_story a span,
.cms-machine-registration div.menu#machine_registration a span,
body[class*='categorypath-coffee-and-drinks']:not(.category-starbucks) div.menu#coffee_and_drinks a span,
body[class*='categorypath-coffee-and-drinks-starbucks'] div.menu#starbucks a span,
body[class*='categorypath-machines-and-accessories'] div.menu#machines_and_accessories a span,
body[class*='categorypath-promotions'] div.menu#promotions a span,
body[class*='coffee-recipes'] div.menu#recipes_inspiration a span,
body[class*='coffee-recipe-detail'] div.menu#recipes_inspiration a span {
    font-weight: bold;
}

.category-machines-and-accessories div.menu#machines_and_accessories a span:after,
.monthlypackage-index-index div.menu#monthly_package a span:after,
.about-page div.menu#our_story a span:after,
.subscription-subscription-history div.menu#monthly_package a span:after,
.cms-machine-registration div.menu#machine_registration a span:after,
body[class*='categorypath-coffee-and-drinks']:not(.category-starbucks) div.menu#coffee_and_drinks a span:after,
body[class*='categorypath-coffee-and-drinks-starbucks'] div.menu#starbucks a span:after,
body[class*='categorypath-machines-and-accessories'] div.menu#machines_and_accessories a span:after,
body[class*='categorypath-promotions'] div.menu#promotions a span:after,
body[class*='coffee-recipes'] div.menu#recipes_inspiration a span:after,
body[class*='coffee-recipe-detail'] div.menu#recipes_inspiration a span:after {
    display: block;
    opacity: 1;
    width: 100%;
    left: 0;
    bottom: 5px;
    background: #42240f;
}

div.menu.nosub a span {
    font-weight: normal;
}

div.menu.nosub:hover a span {
    color: #42240f;
}

.menu.nosub:hover span:after {
    background-color: #42240f;
    width: 100%;
    left: 0%;
    opacity: 1;
}

div.menu a{
    display: block;
}
a.level1{
    text-transform: none;
    font-weight: normal;
}
a.level2{
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
}
a.level3{
    font-size: 11px;
    font-weight: normal;
    line-height: 100%;
    margin-bottom: 0px;
}

a.level3:hover {
    color: #000;
    background: #000;
}
a.level1:hover {
    background: #cfc8c0;
    text-decoration: none;
}
a.level2:hover {
    color: #000;
    background: #000;
}
.block2 table.brand {
    float: left;
}
.block2 .single_menu_product {
    float: left;
    position: relative;
    max-width: 150px;
    overflow: hidden;
    margin-right: 20px;
    margin-left: 0px;
}
/*MOBILE MENU STYLES*/
#menu-button, .parentMenu {
    display: block;
}
html[xmlns] #menu-button, html[xmlns] .parentMenu {
    display: block;
}
* html #menu-button, * html .parentMenu {
    height: 1%;
}

#custommenu-mobile {
    position:relative;
    padding: 0;
    z-index: 200;
    text-align: left;
    display: none;
}
#menu-content {
    position: absolute;
    top: 80px;
    left: 0;
    min-width: 100%;
    background: #fff;
    /*border: 1px solid #D6D6D6;*/
    border: 0;
    -webkit-box-shadow: 5px 10px 10px -5px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 5px 10px 10px -5px rgba(0, 0, 0, 0.31);
    box-shadow: 5px 10px 10px -5px rgba(0, 0, 0, 0.31);
    border-radius: 0 0 15px 0;
    padding-top: 0;
    padding-bottom: 80px;
    overflow-y: scroll; 
    height: calc(100vh - 80px);
}



/* Hide scrollbar for Chrome, Safari and Opera */
#menu-content::-webkit-scrollbar {
      display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
#menu-content {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.content-menu-mb-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 50px 10px 20px;
    flex: 1 0 auto; 
}

.content-menu-mb-footer .content-text {
    width: 100%; 
    font-size: 11px; 
    color: #42240f;
}

#menu-content .content-menu-mb-footer h3 {
    display: none;
}

.content-menu-mb-footer .content-text:after {
    content: '';
    display: table;
    clear: both;
}

.content-menu-mb-footer .content-text {
    padding-bottom: 15px; 
}

.content-menu-mb-footer .content-text img {
    width: 24px; 
    float: left;;
    display: inline-block;
    margin-right: 7px;
    margin-top: 5px;
}

.content-menu-mb-footer .content-text span {
    float: left;
    width: calc(100% - 33px);
}

#menu-button {
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

#menu-button span.icon-menu{
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    background: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/hamburger-menu.png) no-repeat center center;
    background-size: 26px auto;
    margin: 0 auto;
}

.show-menu-mobile::after{
    width: 100%;
    height: 80px;
    top: 0;
    background: #fff;
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
}

#menu-button.active span.icon-menu {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/menu-close-button.png);
    background-size: 25px auto;
}

.menu-mobile div.column {
    float:none;
    padding:5px;
    background: #fff;
}
.menu-mobile a.itemMenuName {
    display: block;
    text-align: left;
}
.menu-mobile div.menu-button, .menu-mobile div.menu-mobile {
    float: none;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border-bottom: 1px solid #fff;
}
.menu-mobile div.column {
    float: none;
    width: 100%;
    padding: 0px 0;
    margin: 0px 0px 0px 0px;
}
.menu-mobile a.level1:link, .menu-mobile a.level1:visited {
    margin-top: 0px;
    margin-bottom: 0;
    padding: 10px 10px;
    border-radius: 2px;
    color: #000;
}
.menu-mobile a.level2:link, .menu-mobile a.level2:visited {
    padding: 10px 10px;
    border-radius: 2px;
}
.menu-mobile a.level1:link, .menu-mobile a.level1:visited {
    color: #555;
}
.menu-mobile a.level1:hover {
    background-color: #f1f1f1;
}
.menu-mobile .parent {
    background-color: #fff;
}
/*buttons level 01*/
.menu-mobile .parentMenu {
    padding: 0px 0px;
    display: block;
    text-align: left;
    border-bottom: solid 1px #42240f;
}

.menu-mobile.level0 .parentMenu span.button{    
     background: #fff;
    display: inline-block;
    padding: 14px 10px 0;
    float: right;
}
.menu-mobile.level0 .parentMenu span.button:before{
    content:' ';
    font-size: 18px;
    font-weight: bold;
    line-height: 18px;
    color: #000;
}
.menu-mobile .parentMenu {
    position: relative;
    height:100%;
    margin: 0 15px;
}
.menu-mobile .parentMenu > a {
    position: relative;
    font-size: 1.2em;
    display: block;
    padding: 10px 0;
    word-break: break-word;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: normal;
    font-weight: bold;
    color: #42240f;
    cursor: pointer;
}

.menu-mobile .parentMenu.active > a:before {
    content: '';
    width: 5px;
    height: 42px;
    background-color: #42240f;
    position: absolute;
    left: -15px;
    top: 0;
}

.menu-mobile .parentMenu.has-child > .content {
    display: none;
    padding: 0 10px 15px;
}

.menu-mobile .parentMenu > div.content .links li + li {
    padding-top: 10px;
}

.menu-mobile .parentMenu > div.content .links li a {
    float: none;
}

.menu-mobile .parentMenu.has-child > a:after {
    content: '';
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/order-toggle-icon-close.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 100%;
    background-color: #42240f;
    position: absolute;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-mobile .parentMenu.has-child.active > a:after {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/order-toggle-icon-open.png);
}

.menu-mobile.my-account .parentMenu {
    border-top: solid 1px #42240f;
    padding-bottom: 10px;
}

.menu-mobile.my-account .parentMenu > a {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: center;
    padding:  0;
    margin: 10px 0 0 0;
}

.menu-mobile.my-account .parentMenu > a > span.icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 100%;
    margin-right: 20px;
}

.menu-mobile.my-account.logged-out .parentMenu > a > span.icon {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/ico-account.png);
}

.menu-mobile.my-account.logged-in .parentMenu > a > span.icon {
    background-image: url(https://www.dolce-gusto.co.th/skin/frontend/nestle/subscription/images/icon-account-logined.svg);
}

.menu-mobile.my-account .parentMenu.has-child > .content {
    padding-left: 60px;
    text-transform: uppercase;
    font-size: 13px;
}

.menu-mobile.my-account .parentMenu.has-child > .content .links {
    padding-left: 16px;
}

.menu-mobile.my-account .parentMenu.has-child > .content .links li {
    list-style: disc;
}

.menu-mobile.my-account button {
    height: 36px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    min-width: 160px;
    background: #FFFFFF;
    color: #42240f;
    border: none;
    padding: 0 20px;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    border-radius: 34px;
    border: 2px solid #42240f;
    margin: 15px 0 0 0;
}

.menu-mobile.my-account.logged-out button {
    background: #42240f;
    color: #FFFFFF;
    margin: 0 0 10px 60px;
}

.cms-index-index .menu-mobile#home .parentMenu a,
.menu-mobile#home .parentMenu a:hover,
.menu-mobile#home .parentMenu a:focus,
.menu-mobile#home .parentMenu a:active {
    color: #42240f;
}

.cms-page-view.cms-our-coffee .menu-mobile#ourCoffee .parentMenu a,
.menu-mobile#ourCoffee .parentMenu a:hover,
.menu-mobile#ourCoffee .parentMenu a:focus,
.menu-mobile#ourCoffee .parentMenu a:active {
    color: #42240f;
}

.cms-page-view.cms-monthly-package .menu-mobile#monthly .parentMenu a,
.menu-mobile#monthly .parentMenu a:hover,
.menu-mobile#monthly .parentMenu a:focus,
.menu-mobile#monthly .parentMenu a:active {
    color: #42240f;
}

.menu-mobile#webshop .parentMenu a:hover,
.menu-mobile#webshop .parentMenu a:focus,
.menu-mobile#webshop .parentMenu a:active {
    color: #42240f;
}

.cms-page-view.cms-our-services .menu-mobile#services .parentMenu a,
.menu-mobile#services .parentMenu a:hover,
.menu-mobile#services .parentMenu a:focus,
.menu-mobile#services .parentMenu a:active {
    color: #42240f;
}

.menu-mobile .parentMenu span {
    -webkit-text-stroke: 1px transparent;
}
#menu-button.active {
    cursor: pointer;
    z-index: 100;
    float: right;
    position: absolute;
    top: 20px;
    right: 10px;
}

.menu-mobile.menu-switch-lang {
    position: absolute;
    right: 10px;
    top: 30px; 
    display: none; 
}

.menu-mobile.menu-switch-lang .parentMenu {
    margin: 0;
}

#custommenu-mobile .button {
    cursor: pointer;
    position: absolute;
    right: 1%;
    top: 10px;
    display: block;
    width: 33px;
    height: 22px;
    padding: 0;
    /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJxJREFUeNpi/P//PwM66O3tBVF1UNwEwsXFxRjqmBhwg3wgZobSWAE+zcxoNEmaCQKKNDP29PTgkvsAxPxA/BGIBXDZ3A7Ef4D4Pxrmh6rhxyL3E4gbQZqL8AUKDsAG0gfS3AfEf0nU/AuIJ4I0VwIxC8j/aPgjVOFHLHLsQFzDiCeFoQQYqSmMtvGMT/NfNJokzQug9HRcCgACDAC34CnSSWx3zwAAAABJRU5ErkJggg==) 90% 50% no-repeat;*/
}
#custommenu-mobile .button.open {
    /*background-color: transparent;*/
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5JREFUeNpi/P//PwO5gImBAjBENbP09vZSZHM7EP8B4v8k4J9A3AjSXATEzCRaygbSB9LcB8R/SdT8C4gnsgCJSigmGTCOpjDSAECAAQBI6RqpQRaDFgAAAABJRU5ErkJggg==);
}
#custommenu-mobile .level1 .button {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIxJREFUeNpi/P//PwO5gAWbYG9vL4ZYcXExhhgTAwUAn+YJQAzyUxcuBYwwP2Nx6k8gZgPid0AsjM0L+Gxmg9LMxDob5lTkKOBHEuvCpzmZQBgl4NNcD8SvcWgEiTfhi+c+KGZAcvpHIBbAG9pYEglKaJOaSCqB+BrUK8QnTyxeYCDa2dRIngQBQIABAGG6KfxEmzSnAAAAAElFTkSuQmCC);
}
#custommenu-mobile .level1 .button.open {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE1JREFUeNpi/P//PwO5gImBAjBwmllgjN7eXqI1FRcXU9/ZE4D4Px7chU9zMgHLEvBprgfi1zg0gsSbsAYYFPRBMVGAcQSmMIo0AwQYAIYUFeQ3G04OAAAAAElFTkSuQmCC);
}
#custommenu-mobile .form-language {

}
#custommenu-mobile .form-language .selected {
    display: none;
}
#custommenu-mobile .form-language .language-dropdown {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
#custommenu-mobile .form-language .title {
    line-height: normal;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 5px;
    margin: 0 0 0 5px;
    border: none; 
    width: auto;
}
#custommenu-mobile .form-language .title + .title:before {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: #42240f;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
}

/* add for shop by menu */
.itemMenuName.level1.foundit-shopbyconcern{
    border-top:1px solid #cccccc;
    position: absolute;
    width: 100%;
    bottom:21px;
}
.itemMenuName.level1.foundit-shopbycollection{
    border-top:1px solid #cccccc;
    position: absolute;
    width: 100%;
    bottom:0;
}
.menu-prom-holder a{
    padding:0 !important;
}
.menu-prom-holder img{
    width: 175px;
    height: 170px;
}
/* end add for shop by menu */
