.Popupable{
  cursor:pointer;
}
.PopupableClone{
  position:fixed;
  z-index:9999999999;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:var(--space);
}
.PopupableClone_fond{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgb(0 0 0 / 90%);
}
.PopupableClone_inner{
  position:relative;
  z-index:9;
  width:100%;
  height:100%;
  overflow:hidden;
}
@media (min-width:1121px){
  .PopupableClone_close:hover{
    transform:scale(0.95);
  }
}
@media (max-width:1120px){
  .PopupableClone_close{
    width: var(--space);
    height: var(--space);
    font-size: var(--space);
  }
}
@media (max-width:768px){
  .PopupableClone_close{
    width: calc(var(--space)*1.5);
    height: calc(var(--space)*1.5);
    font-size: calc(var(--space)*1.5);
  }
}
@media (max-width:480px){
  .PopupableClone_close{
    width: calc(var(--space)*2);
    height: calc(var(--space)*2);
    font-size: calc(var(--space)*2);
  }
}

/* POPUPABLE SLICK SLIDER */
.PopupableClone_slider {
  position: relative;
  width:100%;
  height:100%;
}
.PopupableClone_slider .slick-list,
.PopupableClone_slider .slick-track,
.PopupableClone_slider .slick-slide{
  height:100%;
}
.PopupableClone_slider .slick-track{
  display:flex;
  align-items:center;
}
.PopupableClone_slider .slick-slide{
  position:relative;
  object-fit:contain;
  object-position:center;
}

/* CLOSE + ARROWS */
.PopupableClone_close {
  background-color: #fff;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor:pointer;
  transform:scale(1);
  transition:0.3s ease;
}
.PopupableClone_arrow {
  background-color: #fff;
  position: absolute;
  top: calc(50% - (48px / 2));
  z-index: 999;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor:pointer;
  transform:scale(1);
  transition:0.3s ease;
  border:none;
  padding:0;
}
.PopupableClone_arrow.slick-prev{
  left: 0px;
}
.PopupableClone_arrow.slick-next{
  right: 0px;
}
.PopupableClone_arrow svg,
.PopupableClone_arrow close{
    width: 100%;
    height: 100%;
}
.PopupableClone_arrow svg line,
.PopupableClone_close svg line{
	fill: none;
	stroke: #000;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 50px;
}
@media (min-width:1121px){
  .PopupableClone_close,
  .PopupableClone_arrow:hover{
    transform:scale(0.95);
  }
}