/** 
 * Theme for novaGallery - https://novagallery.org
 * Theme: "novaGallery"
 * Author: novafacile OÜ
 * License: AGPL-3.0 
 **/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --bg-color: rgb(31, 34,36);
  --text-color: #eeeeee;
  --link-color: #eeeeee;
  --link-color-hover: #eeeeee;
  --link-color-muted: rgba(222, 226, 230, 0.75);
  --link-color-muted-hover: rgba(222, 226, 230, 0.75);
  --lightbox-bg: rgb(31, 34,36);
  --lightbox-color: #eeeeee;
}

body {
  font-family: "Outfit", sans-serif !important;
  background-color: var(--bg-color);
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  padding: 0;
  margin: 0;
  color: var(--text-color);
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

a, a:visited {
  color: var(--link-color);
  text-decoration: none;
}

a:hover, a:active {
  color: var(--link-color-hover);
}

.text-muted a, .text-muted a:visited {
  color: var(--link-color-muted);
  text-decoration: none;
}

.text-muted a:hover, .text-muted a:active{
  color: var(--link-color-muted-hover); 
}

main .cover-image img {
  width: 100%;
  object-fit: cover;
}

main .cover-image-album img {
  width: 105%;
  object-fit: fill;
}


main .album-image-fix {
  padding-bottom: 0px !important;
}


.pb-3 {
  text-align: center;
  margin-bottom: -1rem;
}

.pb-3-album{
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  bottom: 55px;
  left: 10px;
  margin-bottom: -2.2rem;
}
@media (min-width: 1400px) {
  .row-gap-xxl-3 {
    row-gap: 0rem !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  main .cover-image {
    transition: transform .4s;
  }

  main .cover-image:hover {
    transform: scale(1.1);
  }
  main .cover-image-album:hover {
    transition: transform .4s;
    transform: scale(1.1);
}  
}

@media (max-width: 576px) {
  main .cover-image-album img {
    /* padding-right: 10px !important;
    padding-left: 10px !important; */ 
    margin-top: 3px !important;
    margin-left: 10px !important;
    width: 95%;
  }
  main .pb-3-album {
     margin-left: 10px !important;
  }
}

@media (max-width: 768px) {
  main .cover-image img {
   margin-top: 20px !important;
  }
}

.mt-3-back {
  margin-top: -30px;
}

#myBtn{
  content: "›";
  font-size: 40px;
  font-color: white;
  text-align: right;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  text-align: center;



  transform: rotate(-90deg);
}

/** Lightbox **/
.sl-overlay {
  background: var(--lightbox-bg);
}

.sl-wrapper .sl-image .sl-caption {
  font-size: 1rem;
  opacity: 0.9 !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter { 
  color: var(--lightbox-color);
  opacity: 1;
  }