.joann_page {
    width:100%;
    overflow:hidden;
}
.main_container_joann {
    display: flex;
    flex-direction: column;
    margin: auto;
    /* gap: 10px; */
    /* padding: 0px 0 20px 0; */
    width: -webkit-fill-available;
    /* background: linear-gradient(180deg, #3eac13, transparent); */
    /* color: #000; */
    max-width: 650px;
    margin: 16px auto;
    width: 80%;
}

.joann_img {
       width: 100%;
    margin: auto;
 /*   background: linear-gradient(180deg, rgb(0 0 0 / 75%) 0%, #3eac13); */
}

.joann_img img {
    width: 90%;
    max-width: 660px;
    margin: auto;
    display: block;
    width: -webkit-fill-available;
    /* background: rgb(0 0 0 / 65%); */
    /* box-shadow: var(--box-shadow-img); 
    filter: drop-shadow(0px 0px 50px #000); */
}

.joann_explain {
   font-size: var(--font_large);
   text-align: justify;
   /* max-width: 650px; */
   /* margin: auto; */
   /* width: calc(100% - 40px); */
   /* background: linear-gradient(180deg, #3eac13, transparent); */
   /* text-align: center; */
}

.joann_explain_more {
    font-size: var(--font_large);
        max-width: 650px;
    margin: auto;
display:none;
}

a.gift_btn_joann, .gift_btn_craftsy {
    transition: var(--transition);
    display: block;
}

.ribblr-explainer-craftsy {
  display:flex;
  gap: 4px;
    margin-bottom: 6px;
}

.ribblr-explainer-craftsy svg {
  width:20px;
  height:20px;
}

.special_text {
      padding:2px 6px;
    border-radius:6px;
    background: rgba(206, 178, 255, 0.25);
    display:inline;
    }

.about_us_video {
    /* margin:15px auto; */
    /* position: relative; */
    /* padding-top: 56.25%;
    width:100%; */
    /* width: 315px; */
    /* height: 680px; */
}

.about_us_video iframe {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 1;
    transform: translateX(-50%);
    border-radius:10px;
}

.about_us_video img {
  border-radius:16px;
  max-width:650px;
  width:100%;
}

.about_ribblr_joann, .about_us_video {
    max-width: 650px;
    margin: 16px auto;
    width: 100%;
}

.about_ribblr_joann_title {
font-size: var(--font_title);
    color: #bf99ff;
    font-weight: var(--fontweight_heavy);
    display: block;
    margin: 10px auto;    
}

#ytplayer {
      display: block;
    margin: 16px 0;
    width: 320px;
    height: 180px;
    border-radius: 12px;
}

span.faq_ribblr_joann {
    font-weight: var(--fontweight_heavy);
    display: block;
}

span.faq_ribblr_joann::after {
    content: " 💜";
}

.about_ribblr_joann a::before {
    content: " - ";
}

@keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0;
  }
  
  .animated.fadeInDown {
    animation-name: fadeInDown;
  }
  
  .joann_img.animated {
    animation-delay: 0.25s; /* Delay for the image */
  }
  
  .joann_explain.animated {
    animation-delay: 1s; /* Delay for the explanation */
  }
  
  .gift_btn_joann.animated, .gift_btn_craftsy.animated {
    animation-name: slideFromRight;
    animation-duration: 1.75s;
    animation-delay: 1.5s; /* Delay for the button */
  }

  .joann_explain_more.animated {
    animation-delay: 2s; /* Delay for the explanation */    
  }

  .about_us_video.animated {
    animation-delay: 0.75s; /* Delay for the explanation */    
  }

  .about_ribblr_joann.animated {
    animation-delay: 4s; /* Delay for the explanation */
  }

  
  @keyframes slideFromRight {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  