/*
 *	@Release    1.0.1
 *	@subject		Refactor, compatibility and maintains externals modules for SWMasterTheme
 *	@copyright  	Copyright (c) 2023-2024 Sora Websoft SARL (https://www.sora-websoft.com/)
 *	@author     	Jimmy Buathier (@jimmybuathier)
 *	@license    	Commercial license or Free license according to the original developer
 *	Support by mail: support@sora-websoft.com
 */
#module-swstorespages-stores #gallery-content {
  background: var(--bodybg-d1);
}
#module-swstorespages-stores #map-canvas {
  max-height: calc(50px + 40vh);
}
#module-swstorespages-stores .content_scene_cat {
  width: 100%;
}
#module-swstorespages-stores .cat_desc.cat-overlay {
  font-size: 0.8125rem;
}
#module-swstorespages-stores #gallery-content-center .element-item {
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#module-swstorespages-stores #gallery-content-center .element-item .masonrylink {
  position: relative;
  min-height: 260px;
  background: var(--primary-color);
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
  color: var(--color-txt);
  border: 2px solid var(--bodybg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: var(--global-radius-small);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#module-swstorespages-stores #gallery-content-center .element-item .masonrylink:hover {
  border: 2px solid var(--primary-color);
  background-size: 200%;
  -webkit-box-shadow: 0 0 16px 0 rgba(var(--primary-rgb), 1);
          box-shadow: 0 0 16px 0 rgba(var(--primary-rgb), 1);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#module-swstorespages-stores #gallery-content-center .element-item .masonrylink .coverimg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--pagemagasin-coverimg-color), var(--pagemagasin-coverimg-opacity));
}
#module-swstorespages-stores #gallery-content-center .element-item .masonrylink .title_block {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  color: white;
  font-family: var(--font2);
  font-weight: var(--font2-weight3);
  font-size: calc(1rem + 1vw);
  line-height: 1.2;
  text-shadow: 0 0 8px #000;
  text-align: center;
}