/*-------------------------------  SELECT  --------------------------------------*/
.custom-form-element.select {
  display: inline-block;
  width: auto;
  height: 30px;
  position: relative;
  z-index: 4;
  padding-right: 10px;
  line-height: 28px;
  background: white; }
  .custom-form-element.select * {
    margin: 0; }
  .custom-form-element.select .placeholder, .custom-form-element.select .final-value {
    display: none;
    vertical-align: top;
    font-size: 20px;
    font-weight: 600;
    font-style: italic; }
    .custom-form-element.select .placeholder.active, .custom-form-element.select .final-value.active {
      display: inline-block; }
  .custom-form-element.select .final-value {
    color: black; }
  .custom-form-element.select .options {
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 15px;
    padding: 0;
    border: 1px solid gainsboro;
    background: white;
    opacity: 0;
    pointer-events: none; }
@keyframes showOptionsMenu {
  100% {
    opacity: 1; } }
    .custom-form-element.select .options.active {
      animation: showOptionsMenu .3s ease-in-out;
      animation-fill-mode: forwards;
      pointer-events: all; }
    .custom-form-element.select .options .option {
      height: 40px;
      white-space: nowrap;
      position: relative;
      line-height: 40px;
      padding-left: 30px;
      padding-right: 10px;
      border-bottom: 1px solid #f7f7f7;
      cursor: pointer;
      /*&.active:after{
          content:"";
          box-sizing: border-box;
          display: block;
          height: 8px;
          width: 8px;
          position: absolute;
          left: 11px;
          top: calc(50% - 4px);
          border: 1px solid rgb(232,232,232);
      }*/ }
      .custom-form-element.select .options .option:hover {
        background: #f0f0ff; }
      .custom-form-element.select .options .option:before {
        content: "";
        box-sizing: border-box;
        display: block;
        height: 8px;
        width: 8px;
        position: absolute;
        left: 10px;
        top: calc(50% - 4px);
        border: 1px solid #e8e8e8; }
      .custom-form-element.select .options .option.active:after {
        content: "";
        box-sizing: border-box;
        display: block;
        height: 9px;
        width: 9px;
        position: absolute;
        left: 10px;
        top: calc(50% - 5px);
        background-image: url(../img/check.svg);
        background-position: bottom 1px left 1px;
        background-repeat: no-repeat; }
      .custom-form-element.select .options .option .option-value {
        display: none; }
  .custom-form-element.select .expand-button {
    height: 100%;
    width: auto;
    padding-right: 10px;
    padding-left: 10px;
    border: none;
    background: none;
    cursor: pointer; }
    .custom-form-element.select .expand-button .arrow {
      display: block;
      height: 10px;
      width: 10px;
      border-bottom: 2px solid #6e020a;
      border-right: 2px solid #6e020a;
      border-bottom-right-radius: 2px;
      transform: rotate(45deg) translate(-12.5%, -12.5%); }

/*-------------------------------  END OF SELECT  --------------------------------------*/
.product {
  display: inline-block;
  height: 470px;
  position: relative;
  padding: 28px 28px 58px;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
  transition: box-shadow .3s ease; }
.product:after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 1;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
  background-color: #6d0008;
  background-image: url(../img/zoom.svg);
  background-size: 40px 40px;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .3s ease; }
.product:hover {
  z-index: 2;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.08); }
  .product:hover:after {
    opacity: 1; }
.product img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain; }
.product h3 {
  margin: 8px 0;
  font-weight: 600;
  font-size: 18px;
  color: #7d0c14; }
.product p {
  line-height: 22px;
  font-size: 14px;
  font-style: italic; }
.product .price {
  position: absolute;
  bottom: 28px;
  right: 28px;
  line-height: 22px;
  font-size: 22px;
  font-weight: 600;
  color: #6d0008; }

#filter {
  margin-top: 60px;
  margin-bottom: 70px; }
  #filter .top-part {
    padding-bottom: 10px;
    border-bottom: 2px solid #6d0008; }
    #filter .top-part #selection {
      float: left;
      width: calc(100% - 120px); }
      #filter .top-part #selection .select {
        float: left;
        width: 200px; }
    #filter .top-part .action {
      float: right; }
      #filter .top-part .action .btn.def {
        height: 40px;
        background-image: linear-gradient(to top, #7d0c14, #640007 50%, #7d0c14);
        background-position: bottom center;
        background-size: 100% 200%;
        opacity: 0;
        line-height: 40px;
        color: white;
        transition: opacity .3s ease, background-position .6s ease;
        pointer-events: none; }
        #filter .top-part .action .btn.def:hover {
          background-position: top center; }
        #filter .top-part .action .btn.def.active {
          opacity: 1;
          pointer-events: all; }
  #filter #current-filter, #filter #current-order {
    padding-top: 20px; }
    #filter #current-filter h3, #filter #current-order h3 {
      float: left;
      font-size: 16px; }
    #filter #current-filter .filter-values:after, #filter #current-order .filter-values:after {
      content: ", "; }
    #filter #current-filter .filter-values:last-of-type:after, #filter #current-order .filter-values:last-of-type:after {
      display: none; }
    #filter #current-filter .value, #filter #current-order .value {
      position: relative;
      padding-left: 25px; }
      #filter #current-filter .value .remove, #filter #current-order .value .remove {
        width: 15px;
        height: 15px;
        position: absolute;
        top: calc(50% - 7px);
        left: 5px;
        background-image: url(../img/krizek.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 12px 12px;
        cursor: pointer; }
      #filter #current-filter .value:after, #filter #current-order .value:after {
        content: ", "; }
      #filter #current-filter .value:last-of-type:after, #filter #current-order .value:last-of-type:after {
        display: none; }
      #filter #current-filter .value.order, #filter #current-order .value.order {
        padding-right: 20px; }
        #filter #current-filter .value.order .direction, #filter #current-order .value.order .direction {
          content: "";
          width: 10px;
          height: 20px;
          padding: 0 10px;
          line-height: 20px; }
          #filter #current-filter .value.order .direction span, #filter #current-order .value.order .direction span {
            position: relative;
            top: -2px; }
          #filter #current-filter .value.order .direction[data-direction="asc"] span:first-of-type, #filter #current-order .value.order .direction[data-direction="asc"] span:first-of-type {
            display: none; }
          #filter #current-filter .value.order .direction[data-direction="desc"] span:last-of-type, #filter #current-order .value.order .direction[data-direction="desc"] span:last-of-type {
            display: none; }

#product-list .product-box {
  float: left;
  width: 315px;
  position: relative;
  transition: all .8s ease;
  opacity: 1; }
  #product-list .product-box.disappearing {
    opacity: 0; }
  #product-list .product-box .admin-btns {
    position: absolute;
    z-index: 3;
    top: 20px;
    right: 0;
    word-spacing: -0.3em; }
    #product-list .product-box .admin-btns .admin-btn {
      display: inline-block;
      width: 36px;
      height: 36px;
      position: relative;
      margin-right: 20px;
      border-radius: 18px;
      background: #7d0c14; }
      #product-list .product-box .admin-btns .admin-btn img {
        width: 20px;
        height: 20px;
        position: absolute;
        top: calc(50% - 10px);
        left: calc(50% - 10px);
        filter: invert(100%); }

.pagination {
  padding-top: 30px;
  word-spacing: -0.3em;
  text-align: center; }
  .pagination.first-page .prev {
    opacity: 0;
    pointer-events: none; }
  .pagination.last-page .next {
    opacity: 0;
    pointer-events: none; }
  .pagination button:not(.number) {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    position: relative;
    border-radius: 10px;
    background: #70060e; }
    .pagination button:not(.number) .arrow {
      display: block;
      width: 6px;
      height: 6px;
      position: absolute;
      top: calc(50% - 3px);
      border-bottom: 1px solid white;
      transform: rotate(-45deg); }
    .pagination button:not(.number).prev .arrow {
      left: calc(50% - 2px);
      border-left: 1px solid white;
      transform: rotate(45deg); }
    .pagination button:not(.number).next .arrow {
      left: calc(50% - 4px);
      border-right: 1px solid white; }
  .pagination .number {
    vertical-align: middle;
    margin: 5px;
    line-height: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #888888; }
    .pagination .number.active {
      color: black; }

#featured-products {
  padding: 50px 0; }
  @media all and (min-width: 1280px) {
    #featured-products {
      padding: 120px 0 70px; } }
  #featured-products .carousel {
    width: 1300px;
    overflow: hidden;
    position: relative;
    margin: auto auto;
    padding: 0 20px; }
    #featured-products .carousel:before, #featured-products .carousel:after {
      content: "";
      height: 100%;
      width: 20px;
      position: absolute;
      z-index: 1;
      top: 0;
      background: white; }
    #featured-products .carousel:before {
      left: 0; }
    #featured-products .carousel:after {
      right: 0; }
    @media all and (min-width: 1321px) {
      #featured-products .carousel {
        transform: translateX(-20px); } }
    @media all and (max-width: 1320px) {
      #featured-products .carousel {
        width: 985px; } }
    @media all and (max-width: 1000px) {
      #featured-products .carousel {
        width: 670px; } }
    @media all and (max-width: 680px) {
      #featured-products .carousel {
        width: 355px;
        max-width: 100vw; } }
    @media all and (max-width: 360px) {
      #featured-products .carousel {
        transform: translateX(calc((100vw - 360px) / 2)); } }
    @media all and (max-width: 340px) {
      #featured-products .carousel {
        transform: translateX(-10px); } }
    #featured-products .carousel .item-container {
      width: auto;
      white-space: nowrap;
      position: relative;
      left: 0;
      padding: 20px 0;
      word-spacing: -0.3em;
      pointer-events: none;
      transition: left .8s ease; }
      #featured-products .carousel .item-container .carousel-item {
        display: inline-block;
        vertical-align: top;
        width: 315px;
        position: relative;
        white-space: normal;
        word-spacing: 0;
        pointer-events: all; }
        @media all and (max-width: 355px) {
          #featured-products .carousel .item-container .carousel-item {
            width: calc(100vw - 40px); } }
    #featured-products .carousel .controls {
      width: 100%;
      height: 36px;
      position: absolute;
      z-index: 2;
      top: calc(50% - 18px);
      transform: translateX(-20px); }
      #featured-products .carousel .controls button {
        width: 36px;
        height: 36px;
        position: absolute;
        top: 0;
        border-radius: 18px;
        background: #7d0c14; }
        #featured-products .carousel .controls button.prev {
          left: 0px; }
          #featured-products .carousel .controls button.prev span {
            right: 12px;
            transform: rotate(45deg);
            border-left: 2px solid white; }
        #featured-products .carousel .controls button.next {
          right: 0px; }
          #featured-products .carousel .controls button.next span {
            left: 12px;
            transform: rotate(-45deg);
            border-right: 2px solid white; }
        #featured-products .carousel .controls button span {
          width: 10px;
          height: 10px;
          position: absolute;
          top: calc(50% - 5px);
          border-bottom: 2px solid white; }
  #featured-products h2 {
    text-align: center; }

#last-ajaxed-products {
  display: none; }

#tisk_seznam_vina {
  background-color: #7d0c14;
  width: 36px;
  height: 36px;
  padding: 8px;
  text-align: center;
  border-radius: 25px;
  float: right;
  cursor: pointer;
}
#tisk_seznam_vina img {
  width: 14px;
  filter: invert(1);
}
/*# sourceMappingURL=products.css.map */
