.tigid-gallery {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: var(--color-bg);
  z-index: 1000;
  display: none;
  
  font-size: var(--text-normal);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
} 
.tigid-gallery__arrow {
  display: block;
  width: calc(40px + 40px + 20%);
  height: 100vh;
  position: absolute;
  top: 0px;
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 1;
  transition: opacity 0.2s;
}

.tigid-gallery__arrow:hover {
  opacity: 0.3;
}

.tigid-gallery__arrow::after {
  display: none;
}

.tigid-gallery__arrow-left {
  left: 0px;
  background-position: left 40px center;
  background-image: url("../../../img/PI_ARR_L.svg");
}

.tigid-gallery__arrow-right {
  right: 0px;
  background-position: right 40px center;
  background-image: url("../../../img/PI_ARR_R.svg");
  /* transform: rotate(180deg); */
}

.tigid-gallery__close {
  position: absolute;
  height: 24px;
  padding: 30px 40px;
  top: 0px;
  right: 0px;
  background-size: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../../../img/JH_CLOSE.svg");
  cursor: pointer;
  z-index: 2;
}

/* a.tigid-gallery__close::after {
  font-family: var(--font-regular);
  text-transform: uppercase;
  content: 'Close';
  transition: opacity 0.2s;
} */

a.tigid-gallery__close:hover::after{
  width: 0px !important;
  opacity: 0.3;
}
.tigid-gallery__imageContainer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 50px);
  width: calc(100% - 240px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tigid-gallery__image {
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.tigid-gallery__description {
  display: none;
  
  position: absolute;
  left: 40px;
  top: 24px;
  z-index: 5;
  font-family: var(--font-regular);
  text-transform: uppercase;
}

.tigid-gallery__description i{  
  /* font-family: var(--font-light); */
  font-style: initial !important;
}

.tigid-gallery__description a{
  position: relative;
}

.tigid-gallery__description a::after{
  content: '';
  width: calc(100% - 2px);
  position: absolute;
  left: 0px;
  bottom: 1px;
  height: 1px;
  background-color: var(--color-text);
}

.tigid-gallery__description a:hover::after{
  display: none;
}

.tigid-gallery__description span{
  position: fixed;
  left: 40px;
  bottom: 24px;
  /* font-family: var(--font-light); */
}

.tigid-gallery__index {
  display: none;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-regular);
  text-transform: uppercase;
}