.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 + 40px);
  height: 100vh;
  position: absolute;
  top: 0px;
  background-size: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 1;
}

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

.tigid-gallery__arrow-right {
  right: 0px;
  background-image: url("../../../img/NM_ARR_RIGHT.svg");
}

.tigid-gallery__close {
  position: absolute;
  width: calc(40px + 10px + 40px);
  height: calc(20px + var(--line-height-normal) + 20px);
  top: 0px;
  right: 0px;
  background-size: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../../../img/CLOSE-black.svg?2");
  cursor: pointer;
  z-index: 2;
}

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

.tigid-gallery__image {
  position: absolute;
  display:block;
  height: calc(100% - 50px);
  width: calc(100% - 240px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.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);
}