::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


body {
    background-color:#0A0913;

    min-height:100vh;
    background-size:cover;
    background-repeat:no-repeat;

    background-attachment:fixed;
}

.avatar {
    border-radius:100%;
    width:400px;
    height:400px;
    object-fit:cover;
    @media only screen and (max-width: 800px) {
        width:100%;
        border-radius:0;

    }
}

.card-pict {
    width:100%;

    object-fit:cover;
    object-position:center;
    height:100%;

}

.avatar-mini {
    width:100px;
    height:100px;
    object-fit:cover;
}

.avatar-wide {
    height:auto;
    width:100%;
    object-fit:cover;
}

.banner {
    width:100%;
    height:100%;
    object-fit:cover;
}

.card-image {
    height:300px;
    object-fit:cover;
    width:100%;
}










@keyframes show-toast {
    0% {bottom:-100px}
    20% {bottom:50px}
    80% {bottom:50px}
    100% {bottom:-100%}
}


.show-notification {

    position:fixed !important;
    bottom:20px;
    right:20px;
    animation-name:show-toast;
    animation-duration:7s;
    animation-fill-mode: forwards;
}


/************** banner text animation **************/
.banner-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;

  width: auto;
  max-width: 90%;
  padding: 1.5rem 2rem;
  box-sizing: border-box;


}

.banner-text-container h1,
.banner-text-container h5 {
  text-shadow: 0px 00px 10px rgba(0, 0, 0, 0.9);
  margin: 0;
}

/* Animációk */
.slide-in-left,
.slide-in-right {
  opacity: 0;
  position: relative;
}

.slide-in-left {
  animation: slideLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideRight 0.8s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes slideLeft {
  from {
    left: -100%;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    left: 100%;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

/* Mobilbarát szövegméret */
@media (max-width: 768px) {
  .banner-text-container h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .banner-text-container h5 {
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  .banner-text-container h1 {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
  }

  .banner-text-container h5 {
    font-size: 2rem;
  }
}

/************** banner text animation end **************/
/************** CHECKBOX **************/
/* Rejtett natív checkbox */
input[type="checkbox"] {
  appearance: none;
  width: 35px;
  height: 35px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #282442;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Bejelölve */
input[type="checkbox"]:checked {
  background-color: #00cc66;
  border-color: #00cc66;
}
/************** CHECKBOX END **************/



/************** REFERENCE PICTURE **************/
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90vw;
    max-height:90%;
    height: auto;
    image-rendering: auto;
    object-fit: contain;

}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
/************** REFERENCE PICTURE END **************/