

/* Start:/local/components/cresu.unipartner.gallery/gallery.detail/templates/.default/style.css?17803853642137*/
.gallery-page {
  margin: 16px 0 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 4px 30px 0px rgba(37, 38, 41, 0.1019607843);
  padding: 24px 32px 32px;
}
@media (max-width: 767px) {
  .gallery-page {
    padding: 20px 16px 20px;
  }
}

.gallery {
  margin-top: 25px !important;
}
.gallery__body {
  display: grid;
}
.gallery__body_list {
  grid-template-columns: repeat(4, minmax(238px, 1fr));
  gap: 16px;
}
@media (max-width: 1439px) {
  .gallery__body_list {
    grid-template-columns: repeat(3, minmax(238px, 1fr));
  }
}
@media (max-width: 1023px) {
  .gallery__body_list {
    grid-template-columns: repeat(2, minmax(238px, 1fr));
  }
}
@media (max-width: 639px) {
  .gallery__body_list {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.gallery__body_single {
  grid-template-columns: repeat(6, minmax(211px, 1fr));
  gap: 14px;
}
@media (max-width: 1439px) {
  .gallery__body_single {
    grid-template-columns: repeat(4, minmax(211px, 1fr));
  }
}
@media (max-width: 1023px) {
  .gallery__body_single {
    grid-template-columns: repeat(3, minmax(211px, 1fr));
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .gallery__body_single {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
.gallery__back {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #14254A;
  padding: 5px 10px;
  width: fit-content;
  text-decoration: none;
}
.gallery__back svg {
  margin-left: 14px;
}
.gallery__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #14254A;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .gallery__title {
    font-size: 20px;
    margin: 12px 0;
  }
}
.gallery__more-btn {
  display: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #14254A;
  background-color: #F5F4F7;
  padding: 16px 10px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 639px) {
  .gallery__more-btn {
    display: block;
    width: 100%;
  }
}

/* End */


/* Start:/local/components/cresu.unipartner.ui/image.show/templates/.default/style.css?17803853701941*/
.empty_answer {
  margin: 50px auto !important;
}

.gallery-card {
  position: relative;
  height: auto;
}
.gallery-card:hover .gallery-card__img img {
  transform: scale(1.2);
}
.gallery-card__img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.gallery-card__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(14, 21, 35, 0) 0%, #0E1523 100%);
  z-index: 1;
}
.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 4/3;
}
.gallery-card__info {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gallery-card__count {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 8px;
}
.gallery-card__name {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 10px;
}
.gallery-card__date {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
  margin-block-start: 0;
  margin-block-end: 0;
}

.card {
  height: auto;
  position: relative;
}
.card:hover .card__img img {
  transform: scale(1.05);
}
.card__img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 3/2;
}
@media (max-width: 639px) {
  .card__img img {
    aspect-ratio: 4/3;
  }
}

/* End */


/* Start:/local/components/cresu.unipartner.ui/gallery.popup/templates/.default/style.css?17803853704012*/
.popup {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(14, 21, 35, 0.5019607843);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-in-out;
  overflow: auto;
}
@media (max-width: 767px) {
  .popup {
    background-color: rgba(14, 21, 35, 0.9019607843);
  }
}
.popup_opened {
  opacity: 1;
  visibility: visible;
}
.popup__container {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 64px 64px 36px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: calc(100% - 100px);
  height: 100%;
  max-height: calc(100% - 160px);
}
@media (max-width: 767px) {
  .popup__container {
    background-color: transparent;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: calc(100% - 90px);
    padding: 0;
    border-radius: 0;
    justify-content: space-between;
  }
}
.popup__close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  color: #575E6D;
  background: transparent;
  border: none;
}
@media (max-width: 767px) {
  .popup__close-btn {
    position: static;
    align-self: flex-end;
    margin: 0 16px 20px 0;
    color: #FFFFFF;
  }
}
.popup__content {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 767px) {
  .popup__content {
    justify-content: space-between;
    height: calc(100% - 45px);
  }
}
.popup__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: calc(100% - 63px);
}
@media (max-width: 767px) {
  .popup__img-wrapper {
    max-height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.popup__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #14254A;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.popup__nav:hover:not(:disabled) {
  background-color: #E8E6EB;
}
.popup__nav:disabled {
  opacity: 0;
  pointer-events: none;
}
.popup__nav--prev {
  left: -28px;
}
.popup__nav--next {
  right: -28px;
}
@media (max-width: 767px) {
  .popup__nav {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FEFEFE;
  }
  .popup__nav:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .popup__nav--prev {
    left: 16px;
    top: 100%;
  }
  .popup__nav--next {
    right: 16px;
    top: 100%;
  }
}
.popup__download {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 205px;
  padding: 16px 10px;
  border-radius: 8px;
  background-color: #F5F4F7;
  margin: 0 auto;
  text-decoration: none;
}
.popup__download--hidden {
  display: none;
}
@media (max-width: 639px) {
  .popup__download {
    width: calc(100% - 52px);
    margin: 0 16px;
  }
}
.popup__img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .popup__img {
    height: auto;
    width: 100%;
    justify-content: center;
  }
}
.popup__img img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .popup__img img {
    border-radius: 0;
  }
}
.popup__count {
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .popup__count {
    display: block;
  }
}

/* End */
/* /local/components/cresu.unipartner.gallery/gallery.detail/templates/.default/style.css?17803853642137 */
/* /local/components/cresu.unipartner.ui/image.show/templates/.default/style.css?17803853701941 */
/* /local/components/cresu.unipartner.ui/gallery.popup/templates/.default/style.css?17803853704012 */
