/* Prodejny přehled (+ detail prodejny) -> /prodejny (-a-..) */
.shops .base-shop {
  margin-bottom: 70px;
}

.google-map .google-map__imgShop {
  position: relative;
}

.google-map .google-map__imgShop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1600px;
  height: 400px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: 0.25s all ease-in-out;
}

@media (max-width: 850px) {
  .google-map .google-map__imgShop:before {
    height: 300px;
  }
}

.google-map .google-map__imgShop:hover:before {
  background: rgba(0, 0, 0, 0.6);
}

.google-map .google-map__imgShop:hover:after {
  content: "Kliknut\EDm aktivujte mapu";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 46px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transform: translate(-50%, -50%);
}

.google-map .google-map__imgShop img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 850px) {
  .google-map .google-map__imgShop img {
    height: 300px;
  }
}

.google-map .article__title {
  margin-top: 55px;
}

.google-map .gmnoprint.gm-style-mtc [role="checkbox"] img {
  display: inline-block;
  margin-right: 5px;
}

.google-map .gmnoprint.gm-style-mtc > div:last-of-type {
  padding: 2px 12px !important;
}

.google-map .shop-map-canvas {
  width: 100%;
  height: 400px;
  padding: 8px 10px;
  background: transparent no-repeat left top;
}

@media (max-width: 850px) {
  .google-map .shop-map-canvas {
    height: 300px;
  }
}

.shopList {
  background: #f5f6f7;
  padding: 55px 20px 70px !important;
}

.shops .shopList {
  margin-top: -62px !important;
}

.shop_detail .shopList {
  margin-bottom: -50px !important;
}

.shopList__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}

@media (min-width: 851px) and (max-width: 1200px) {
  .shopList__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 501px) and (max-width: 850px) {
  .shopList__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .shopList__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shopList__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  min-height: 100%;
  box-shadow: inset 0 0 0 1px #e8e9eb, 0 0 0 rgba(0, 0, 0, 0.1);
}

.shopList__item:hover, .shopList__item.is-active {
  box-shadow: inset 0 0 0 1px #d2d4d8, 0 0 10px rgba(0, 0, 0, 0.1);
}

.shopList__item:hover .shopList__name, .shopList__item.is-active .shopList__name {
  color: #8bcc00;
}

.shopList__name {
  font-weight: 600;
  padding: 10px 10px 2px;
}

.shopList__street {
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding: 0 15px;
}

@media (max-width: 1200px) {
  .shopList__street {
    font-size: 14px;
  }
}

.shopList__hours {
  display: flex;
  padding: 10px 10px 15px;
  font-size: 12px;
}

.shopList__hours .desc {
  display: none;
}

.shopList__hours td:first-of-type {
  padding-right: 10px;
}

.shop__info {
  display: flex;
  justify-content: center;
  margin: 0 0 100px;
  padding: 20px;
  font-weight: 600;
}

@media (max-width: 1000px) {
  .shop__info {
    flex-direction: column;
    align-items: center;
  }
}

.shop__info .cms-social-profiles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  .shop__info .cms-social-profiles {
    margin-top: 30px;
  }
}

.shop__info .cms-social-profiles .mbtn {
  margin: 10px;
  min-height: 50px;
}

.shop__infoWrapper {
  display: flex;
  align-items: center;
}

.shop__infoWrapper .hotline {
  margin: 0 100px 0 10px;
}

@media (max-width: 1000px) {
  .shop__infoWrapper .hotline {
    margin: 0 0 0 10px;
  }
}

.shop__facilities {
  padding: 55px 0;
}

.shop__facilitiesItems {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 10px;
}

@media (min-width: 501px) and (max-width: 1000px) {
  .shop__facilitiesItems {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
  }
}

@media (max-width: 500px) {
  .shop__facilitiesItems {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}

.shop__facilitiesItems svg {
  width: 50px;
  height: 50px;
}

@media (min-width: 851px) and (max-width: 1200px) {
  .shop__facilitiesItems svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 850px) {
  .shop__facilitiesItems svg {
    width: 30px;
    height: 30px;
  }
}

.shop__facilitiesItem {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.shop__facilitiesItem span {
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

@media (min-width: 501px) and (max-width: 1200px) {
  .shop__facilitiesItem span {
    margin-top: 10px;
    padding: 0;
  }
}

@media (max-width: 500px) {
  .shop__facilitiesItem span {
    margin-top: 10px;
    padding: 0 20px;
  }
}

.shop_detail .shop__facilitiesItem.is-disabled {
  color: #e8e9eb;
}

.shop_detail .shop__facilitiesItem.is-disabled svg {
  fill: #e8e9eb;
}

.shopDetail > .gls-component {
  min-height: 25rem;
}

@media (max-width: 850px) {
  .shopDetail > .gls-component {
    min-height: 18.75rem;
  }
}

.shopDetail .article__title {
  text-transform: unset;
}

.shopDetail .shop-base-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 5px;
  background: #f5f6f7;
}

@media (max-width: 600px) {
  .shopDetail .shop-base-info {
    padding: 10px 0;
  }
}

.shopDetail .shop-base-info svg {
  width: 50px;
  height: 50px;
}

@media (min-width: 851px) and (max-width: 1200px) {
  .shopDetail .shop-base-info svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 850px) {
  .shopDetail .shop-base-info svg {
    width: 30px;
    height: 30px;
  }
}

.shopDetail .shop-base-info .opening-hours {
  line-height: 1.2;
}

@media (max-width: 600px) {
  .shopDetail .shop-base-info .opening-hours {
    flex-direction: column;
    min-width: 250px;
  }
}

.shopDetail .base-info {
  display: flex;
}

@media (max-width: 600px) {
  .shopDetail .base-info {
    flex-direction: column;
    min-width: 250px;
  }
}

.shopDetail .base-info tbody {
  display: flex;
  align-items: center;
  width: 100%;
}

@media (max-width: 1600px) {
  .shopDetail .base-info tbody {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .shopDetail .base-info tbody {
    flex-direction: column;
  }
}

.shopDetail .base-info td {
  width: 312px;
}

.shopDetail .base-info td:first-child {
  min-width: 75px;
  max-width: 75px;
}

@media (min-width: 851px) and (max-width: 1200px) {
  .shopDetail .base-info td:first-child {
    min-width: 55px;
    max-width: 55px;
  }
}

@media (max-width: 850px) {
  .shopDetail .base-info td:first-child {
    min-width: 45px;
    max-width: 45px;
  }
}

.shopDetail .base-info td:last-child {
  flex: 1;
}

@media (max-width: 1600px) {
  .shopDetail .base-info td:last-child {
    flex: unset;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .shopDetail .base-info td:last-child {
    min-width: 118px;
  }
}

.shopDetail .opening-hours {
  display: flex;
}

.shopDetail .text-warning {
  margin: 70px auto 135px;
  text-align: center;
  font-size: 46px;
  font-weight: 600;
  color: #d00;
}

.shopDetail__info {
  display: flex;
  align-items: center;
  flex: 1;
}

.shopDetail__info .desc {
  font-weight: 600;
  margin-bottom: 5px;
}

.shopDetail__info tr {
  display: flex;
  align-items: center;
  padding: 20px;
  width: 312px;
}

@media (min-width: 751px) and (max-width: 1600px) {
  .shopDetail__info tr {
    width: unset;
    padding: 20px 40px;
  }
}

@media (max-width: 750px) {
  .shopDetail__info tr {
    width: unset;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .shopDetail__info tr {
    width: 240px;
  }
}

.shopDetail__info td:first-of-type {
  display: flex;
}

.shopDetail__address {
  display: flex;
  align-items: center;
  width: 312px;
  padding: 20px;
}

@media (min-width: 751px) and (max-width: 1600px) {
  .shopDetail__address {
    width: unset;
    padding: 20px 40px;
  }
}

@media (max-width: 750px) {
  .shopDetail__address {
    width: unset;
    padding: 20px;
  }
}

.shopDetail__address .icon {
  display: flex;
  width: 65px;
}

@media (min-width: 851px) and (max-width: 1200px) {
  .shopDetail__address .icon {
    width: 50px;
  }
}

@media (min-width: 601px) and (max-width: 850px) {
  .shopDetail__address .icon {
    width: 40px;
  }
}

@media (max-width: 600px) {
  .shopDetail__address .icon {
    width: 45px;
  }
}

.shopDetail__address .desc {
  line-height: 1.2;
}

@media (max-width: 600px) {
  .shopDetail__address .desc {
    min-width: 118px;
  }
}

.shopDetail__hours, .shopDetail__service {
  display: flex;
  align-items: center;
  width: 312px;
  padding: 20px;
}

@media (min-width: 751px) and (max-width: 1600px) {
  .shopDetail__hours, .shopDetail__service {
    width: unset;
    padding: 20px 40px;
  }
}

@media (max-width: 750px) {
  .shopDetail__hours, .shopDetail__service {
    width: unset;
    padding: 20px;
  }
}

.shopDetail__hours .desc, .shopDetail__service .desc {
  font-weight: 600;
  margin-bottom: 5px;
}

@media (min-width: 601px) {
  .shopDetail__hours .desc, .shopDetail__service .desc {
    min-width: 180px;
  }
}

.shopDetail__hours .icon, .shopDetail__service .icon {
  width: 75px;
}

@media (min-width: 851px) and (max-width: 1200px) {
  .shopDetail__hours .icon, .shopDetail__service .icon {
    width: 55px;
  }
}

@media (max-width: 850px) {
  .shopDetail__hours .icon, .shopDetail__service .icon {
    width: 45px;
  }
}

.shopDetail__hours {
  flex: 1;
}

.shopDetail__service {
  flex: 1;
}

.shopDetail__articles {
  margin-top: 35px;
  margin-bottom: 35px;
  text-align: center;
}

.shopDetail__services h2 {
  text-align: center;
  margin-top: 20px;
}

.shopDetail__services .payment-methods {
  display: grid;
  padding-top: 5px;
  grid-template-columns: repeat(auto-fit, 80px);
  gap: 20px;
}

@media (max-width: 850px) {
  .shopDetail__services .payment-methods {
    justify-content: center;
  }
}

.shopDetail__services .payment-methods img {
  height: 48px;
  margin: 0 auto;
}

.shopDetail__servicesWrap {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 0 0 30px;
}

@media (max-width: 1200px) {
  .shopDetail__servicesWrap {
    gap: 60px;
  }
}

@media (max-width: 850px) {
  .shopDetail__servicesWrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.shopDetail__servicesBox .imgList .wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 400px) {
  .shopDetail__servicesBox .imgList .wrapper {
    align-items: unset;
    flex-direction: column;
  }
}

.shopDetail__servicesBox .imgList .desc {
  max-width: 250px;
  margin: 0 20px 0 0;
}

@media (max-width: 400px) {
  .shopDetail__servicesBox .imgList .desc {
    max-width: unset;
    margin: 0;
  }
}

.shopDetail__servicesBox .imgList .img {
  max-width: 180px;
}

@media (max-width: 400px) {
  .shopDetail__servicesBox .imgList .img {
    max-width: 200px;
    margin: 15px auto;
  }
}

.shopDetail__servicesBox .imgList .img img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 850px) {
  .shopDetail__servicesBox.shopDetail__payment {
    padding: 0 30px;
  }

  .shopDetail__servicesBox.shopDetail__payment .shopDetail__servicesTitle {
    text-align: center;
  }
}

.shopDetail__servicesTitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 450px) {
  .shopDetail__servicesTitle {
    text-align: center;
  }
}

.shopDetail__gallery {
  position: relative;
}

.shopDetail__gallery > * {
  margin: var(--aRem-75) auto;
}

.shopDetail__gallery a {
  display: grid;
  justify-items: center;
  gap: var(--aRem-40);
}

.shopDetail__gallery a:hover .mbtn {
  color: #97bc43 !important;
  background-color: #fff !important;
}

.shopDetail__gallery a:hover .mbtn svg {
  fill: #97bc43;
}

.shopDetail__gallery .mbtn {
  padding: var(--aRem-15) var(--aRem-30);
  font-size: var(--aRem-30) !important;
}

.shopDetail__gallery .mbtn svg {
  width: var(--aRem-30);
  height: var(--aRem-30);
  margin: 0 var(--aRem-15) 0 0;
}

.shopDetail__gallery img {
  max-width: 100%;
}
