.tigid-gallery {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #f7f7f7;
  z-index: 200;
  display: none;
} 

.tigid-gallery::before{
position: absolute;
left: 60px;
top: 40px;
background-image: url('../../../img/FEL_LOGO.svg');
content: '';
width: 95px;
height: 12px;
background-position: center top;
background-repeat: no-repeat;
background-size: contain;
}

.tigid-gallery__arrow {
  display: block;
  width: 20vw;
  height: 100vh;
  position: absolute;
  top: 0px;
  background-size: 3px;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 1;
  background-image: url('../../../img/FEL_DOT.svg');
}

.tigid-gallery__arrow-left {
  left: 0px;
  background-position: left 60px center;
}

.tigid-gallery__arrow-right {
  right: 0px;
  background-position: right 60px center;
}

.tigid-gallery__close{
  position: absolute;
  /* width: 9px; */
  height: 7px;
  top: -4px;
  right: 0px;
  padding: 45px 60px;
  cursor: pointer;
  z-index: 2;
  content: url('../../../img/ARROW_BACK_LONG.svg');
  transition: opacity 0.2s;
}

.tigid-gallery__close:hover{
  opacity: 0.3;
}

.tigid-gallery__image {
  position: absolute;
  display:block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  box-sizing: border-box;
  padding: 40px 0px;

  max-width: 60%;
  max-height: 100%;
  object-fit: contain;
}

.tigid-gallery__description {
  position: absolute;
  left: 60px;
  bottom: 40px;
  z-index: 5;
  max-width: calc(20vw - 60px);
}

.tigid-gallery__description a{
  position: relative;
}

.tigid-gallery__description a::after{
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--main-font-color);
}

.tigid-gallery__description a:hover::after{
  display: none;
}

.tigid-gallery__description span{
  position: fixed;
  right: 60px;
  bottom: 40px;
}