

/* Start:/local/templates/ksrk2025/components/ksrk/photogallery.album.detail/photogallery.album.list/style.css?17643161145888*/
#photogallery-album-detail {
    width: 100%;
}
#photogallery-album-detail .info .title,
#photogallery-album-detail .info .description,
#photogallery-album-detail .metadata,
#photogallery-album-detail .action-list {
	font-family: Tahoma, sans-serif;
	will-change: opacity, transform;
}
#photogallery-album-detail .content {
    position: relative;
    width: 100%;
    min-height: 520px;
	height: auto;
    overflow: hidden;
	padding: 160px 0 60px 0;
}
#photogallery-album-detail .background-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
#photogallery-album-detail .background-blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2;
}
#photogallery-album-detail .detail {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}
#photogallery-album-detail .info {
    max-width: 900px;
    margin-bottom: 30px;
    padding: 0 10px;
    word-wrap: break-word;
}
#photogallery-album-detail .info .title {
    font-size: 40px;
    margin-bottom: 25px;
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s forwards;
    animation-delay: 0.2s;
	color: #ffffff;
}
#photogallery-album-detail .info .title::before {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: #b8860b;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
#photogallery-album-detail .info .description {
    font-size: 16px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(-20px);
    text-align: justify;
    animation: fadeInDown 1s forwards;
    animation-delay: 0.5s;
}
#photogallery-album-detail .metadata {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.8s;
}
#photogallery-album-detail .metadata .data {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    min-width: 80px;
}
#photogallery-album-detail .metadata .data .icon {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
#photogallery-album-detail .metadata .data .value,
#photogallery-album-detail .metadata .data .value-date,
#photogallery-album-detail .metadata .data .value-photo {
    font-size: 16px;
    display: flex;
    align-items: center;
}
#photogallery-album-detail .metadata .data .value-date {
	color: #ffffff;
}
#photogallery-album-detail .action-list {
	display: flex;             
    justify-content: center;   
    gap: 20px;
    flex-wrap: wrap;           
    padding-top: 20px;
	position: relative;
	margin: 0px;
	/*margin-top: -30px;*/
    text-align: center;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 1.0s;
}
#photogallery-album-detail .action-list .action-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 7px 14px;
    border: 2px solid #fff;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}
#photogallery-album-detail .action-list .action-link:hover {
    background-color: #fff;
    color: #000;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    #photogallery-album-detail .metadata .data {
        min-width: 60px;
        gap: 3px;
    }
    #photogallery-album-detail .metadata .data .icon {
        width: 20px;
        height: 20px;
    }
    #photogallery-album-detail .metadata .data .value {
        font-size: 14px;
    }
}
@media (min-width: 768px) {
    #photogallery-album-detail .content { height: 480px; padding: 20px 0 60px 0;}
    #photogallery-album-detail .info { max-width: 950px; padding: 0 20px; text-align: center; }
    #photogallery-album-detail .info .title { font-size: 36px; }
    #photogallery-album-detail .info .description { font-size: 18px; }
    #photogallery-album-detail .action-list { margin-top: 0px; padding: 0px; }
}
@media (min-width: 992px) {
    #photogallery-album-detail .content { height: 560px; }
    #photogallery-album-detail .info { max-width: 1000px; padding: 0 30px; text-align: justify; }
    #photogallery-album-detail .info .title { font-size: 36px; text-align: center; }
    #photogallery-album-detail .info .description { font-size: 18px; }
}
@media (min-width: 1200px) {
    #photogallery-album-detail .content { height: 560px; }
    #photogallery-album-detail .info { max-width: 1100px; padding: 0 40px; text-align: justify; }
    #photogallery-album-detail .info .title { font-size: 36px; text-align: center; }
    #photogallery-album-detail .info .description { font-size: 18px; }
	#photogallery-album-detail .metadata .data .value,
    #photogallery-album-detail .metadata .data .value-date,
    #photogallery-album-detail .metadata .data .value-photo {
        font-size: 20px;
    }
	#photogallery-album-detail .metadata .data .icon {width: 32px; height: 32px; }
}

@media (min-width: 1400px) {
    #photogallery-album-detail .content { height: 600px; }
    #photogallery-album-detail .info { max-width: 1200px; padding: 0 50px; text-align: justify; }
    #photogallery-album-detail .info .title { font-size: 36px; text-align: center; }
    #photogallery-album-detail .info .description { font-size: 18px; }
}
/* End */


/* Start:/local/templates/ksrk2025/components/ksrk/photogallery.photo.list/photogallery.photo.list/style.css?17641432008962*/
#photogallery-photo-list {
  display: block;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 20px;
  margin-right: 10px;
  border: none;
  padding: 0px;
  width: auto;
  height: auto;
}

#photogallery-photo-list>.title {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 15px;
  margin: 0px;
  margin-top: 15px;
  margin-bottom: 30px;
  font-family: Tahoma, sans-serif;
}

#photogallery-photo-list>.title::before {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #b8860b;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
}

#photogallery-photo-list>.preview-photo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0px;
  border: none;
  padding: 0px;
  width: 100%;
  height: auto;
}

#photogallery-photo-list>.preview-photo>.show-picture {
  display: block;
  position: relative;
  margin: 0px;
  border: none;
  padding: 0px;
  min-width: 100px;
  width: 100px;
  max-width: 100px;
  min-height: 100px;
  height: 100px;
  max-height: 100px;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  will-change: transform, box-shadow;
}

#photogallery-photo-list>.preview-photo>.show-picture:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

#photogallery-photo-list>.preview-photo>.show-picture>.picture {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0px;
  border: none;
  padding: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#photogallery-photo-list>.detail-photo {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 0px;
  margin: 0px;
  border: none;
  padding: 0px;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

#photogallery-photo-list>.detail-photo.active {
  display: block;
  opacity: 1;
}

#photogallery-photo-list>.detail-photo>.close-detail-photo {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0px;
  border: none;
  padding: 0px;
  min-width: 25px;
  width: 25px;
  max-width: 25px;
  min-height: 25px;
  height: 25px;
  max-height: 25px;
  background-color: transparent;
}

#photogallery-photo-list>.detail-photo>.close-detail-photo>.close-detail {
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

#photogallery-photo-list>.detail-photo>.close-detail-photo:focus>.close-detail,
#photogallery-photo-list>.detail-photo>.close-detail-photo:hover>.close-detail {
  fill: #b8860b;
}

#photogallery-photo-list>.detail-photo>.view-area {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0px;
  border: none;
  padding: 0px;
  width: 100%;
  height: auto;
}

#photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button,
#photogallery-photo-list>.detail-photo>.view-area>.next-photo-button {
  display: none;
  margin: 0px;
  border: none;
  padding: 0px;
  min-width: 32px;
  width: 32px;
  max-width: 32px;
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  background-color: transparent;
}

#photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button {
  margin-left: 10px;
}

#photogallery-photo-list>.detail-photo>.view-area>.next-photo-button {
  margin-right: 10px;
}

#photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button>.prev-photo,
#photogallery-photo-list>.detail-photo>.view-area>.next-photo-button>.next-photo {
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
  width: 32px;
  height: 32px;
  fill: #ffffff;
}
#photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button:hover img,
#photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button:focus img {
  filter: brightness(0) invert(1);
}
#photogallery-photo-list>.detail-photo>.view-area>.next-photo-button:hover img,
#photogallery-photo-list>.detail-photo>.view-area>.next-photo-button:focus img {
  filter: brightness(0) invert(1);
}
#photogallery-photo-list>.detail-photo>.close-detail-photo:hover .close-detail,
#photogallery-photo-list>.detail-photo>.close-detail-photo:focus .close-detail {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}
#photogallery-photo-list>.detail-photo>.view-area>.detphoto-cont {
  display: inline-block;
  position: relative;
}

#photogallery-photo-list>.detail-photo>.view-area>.detphoto-cont>.viewed-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;  
  object-fit: contain;    
  position: relative;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

#photogallery-photo-list>.detail-photo>.view-area>.detphoto-cont>.photo-category {
  display: inline-block;
  padding: 6px 10px;
  position: absolute;
  z-index: 10;
  border-radius: 4px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-10px);
  opacity: 0;
}

#photogallery-photo-list>.detail-photo.active>.view-area>.detphoto-cont>.photo-category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 1;
  transform: translate3d(0, -10px, 0);
}

#photogallery-photo-list>.detail-photo>.view-area>.detphoto-cont>.photo-category>span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.7);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  padding: 6px 12px;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-5px);
}

#photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button:active,
#photogallery-photo-list>.detail-photo>.view-area>.next-photo-button:active,
#photogallery-photo-list>.detail-photo>.close-detail-photo:active {
  transform: scale(0.9);
  transition: transform 0.1s ease;
}
#photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button:hover,
#photogallery-photo-list>.detail-photo>.view-area>.next-photo-button:hover,
#photogallery-photo-list>.detail-photo>.close-detail-photo:hover {
    transform: scale(1.1); 
    transition: transform 0.2s ease;
}
@media screen and (min-width: 576px) {
  #photogallery-photo-list>.preview-photo>.show-picture {
    min-width: 120px;
    width: 120px;
    max-width: 120px;
    min-height: 120px;
    height: 120px;
    min-height: 120px;
  }

  #photogallery-photo-list>.detail-photo>.view-area>.detphoto-cont>.photo-category>span {
    font-size: 18px;
    padding: 8px 14px;
    border-radius: 6px;
  }

  #photogallery-photo-list>.title {
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) {
  #photogallery-photo-list>.preview-photo>.show-picture {
    min-width: 140px;
    width: 140px;
    max-width: 140px;
    min-height: 140px;
    height: 140px;
    min-height: 140px;
  }

  #photogallery-photo-list>.detail-photo>.view-area {
    justify-content: space-between;
  }

  #photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button,
  #photogallery-photo-list>.detail-photo>.view-area>.next-photo-button {
    display: block;
  }

  #photogallery-photo-list>.detail-photo>.view-area>.detphoto-cont>.photo-category>span {
    font-size: 20px;
    padding: 10px 16px;
    border-radius: 8px;
  }

  #photogallery-photo-list>.title {
    font-size: 36px;
  }
}

@media screen and (min-width: 1024px) {
  #photogallery-photo-list>.detail-photo {
    width: 100vw;
    height: 100vh;
  }

  #photogallery-photo-list>.preview-photo>.show-picture {
    min-width: 160px;
    width: 160px;
    max-width: 160px;
    min-height: 160px;
    height: 160px;
    min-height: 160px;
  }

  #photogallery-photo-list>.title {
    font-size: 48px;
  }
}

@media screen and (min-width: 1200px) {
  #photogallery-photo-list>.preview-photo>.show-picture {
    min-width: 180px;
    width: 180px;
    max-width: 180px;
    min-height: 180px;
    height: 180px;
    min-height: 180px;
  }

  #photogallery-photo-list>.detail-photo>.view-area>.detphoto-cont>.photo-category>span {
    font-size: 22px;
    padding: 12px 18px;
    border-radius: 10px;
  }

  #photogallery-photo-list>.detail-photo>.view-area>.prev-photo-button {
    margin-left: 20px;
  }

  #photogallery-photo-list>.detail-photo>.view-area>.next-photo-button {
    margin-right: 20px;
  }

  #photogallery-photo-list>.detail-photo>.close-detail-photo {
    top: 25px;
    right: 25px;
	min-width: 30px;
	min-height: 30px;
  }
}

@media screen and (min-width: 1400px) {
  #photogallery-photo-list>.preview-photo>.show-picture {
    min-width: 200px;
    width: 200px;
    max-width: 200px;
    min-height: 200px;
    height: 200px;
    min-height: 200px;
  }
}
/* End */
/* /local/templates/ksrk2025/components/ksrk/photogallery.album.detail/photogallery.album.list/style.css?17643161145888 */
/* /local/templates/ksrk2025/components/ksrk/photogallery.photo.list/photogallery.photo.list/style.css?17641432008962 */
