  .border-b-2 {
  border-bottom-width: 2px;
  }

  .great-vibes-font {
    font-family: "great vibes", cursive;
  }
  
  .alex-brush {
    font-family: "Alex Brush", cursive;
  }
  
  .montserrat {
    font-family: "Montserrat";
  }
  
  .progress-bar {
    position: absolute;
    width: 92%;
    height: 5px;
    left: 4%;
  }
 
  @keyframes loadingCoverFadeOut {
    100% {opacity: 1;}
    0% {opacity: 0;}
  }

  .coverLoaderFadeOut {
    opacity: 1;
    animation: loadingCoverFadeOut 10s;
    animation-direction: reverse;
    animation-delay: 2s;
    background-color: black;
  }
  
  @keyframes fadein {
    0% {opacity: 0;}
    100% {opacity: 1;}
  }
  
  #introtext1 {
    opacity: 0;
    animation: fadein 5s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
  }
  
  #introtext2 {
    opacity: 0;
    animation: fadein 5s;
    animation-delay: 4s;
    animation-fill-mode: forwards;
  }
  
  #introtext3 {
    opacity: 0;
    animation: fadein 5s;
    animation-delay: 6s;
    animation-fill-mode: forwards;
  }
  
  #background-image-rsvp-login {
    background-image: url(../assets/images/blue_background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }

  #background-image-blue-gold {
    background-image: url(../assets/images/blue_gold_background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }

  #background-image-blue-2 {
    background-image: url(../assets/images/blue_background_2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }

  #background-image-venue {
    background-image: url(../assets/images/home_image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }

  /* #background-image-loading-cover {
    background-image: url(../assets/images/loading-cover.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
  } */
  
  .input_box_signin:focus {
    outline: none;
  }
  
  .checkbox-wrapper-39 *,
  .checkbox-wrapper-39 *::before,
  .checkbox-wrapper-39 *::after {
  box-sizing: border-box;
  }
  
  .checkbox-wrapper-39 label {
  display: block;
  width: 25px;
  height: 25px;
  scale: 0.9;
  cursor: pointer;
  }
  
  .checkbox-wrapper-39 input {
  visibility: hidden;
  display: none;
  }
  
  .checkbox-wrapper-39 input:checked ~ .checkbox {
  transform: rotate(45deg);
  width: 10px;
  translate: 12px -4px;
  border-color: darkblue;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 0;
  }
  
  .checkbox-wrapper-39 .checkbox {
  display: block;
  width: inherit;
  height: inherit;
  border: 1.5px solid darkblue;
  border-radius: 2px;
  transition: all 0.375s;
  }
  
  @media (max-width: 450px) {
    .checkbox-wrapper-39 label {
        width: 20px;
        height: 20px;
    
      }
      
    #background-image {
        background-attachment: scroll;
    }
    
    #landing-page-background-image {
      background-attachment: scroll;
    }
  }