/* ==========================================

   FOOTER

======================================*/

/* about modal */

#about-modal {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  width: 100%;
  max-width: 90vw;
  height: 30rem;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  justify-content: center;
  align-items: center;
}
#about-modal.active{
  display: flex;
}
.about-modal .closeModal{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 3rem;
}

#about-modal .modal-body h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 1rem;
}

#about-modal .modal-body p {
  font-size: 1.7rem;
  color: var(--text-muted);
  font-weight: 400;
}
#about-modal .timer{
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #555;
}

/* ==========================================

   FAQ MODAL

======================================*/

.faq-modal {
  background: #fff;
  /* padding: 100px; */
}

.faq-modal .modal-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all ease-in 0.6s;
  z-index: 2;
  background: #fff;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 1rem 10rem;
  overflow: hidden;
}

.faq-modal .modal-header .closeModal {
  width: 3rem;
}

.faq-modal-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
  grid-gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  /* background: #222; */
}

#faq-modal .modal-header .sub-heading {
  color: var(--green3);
}

.faq-modal .modal-header h3 {
  font-size: 2rem !important;
  color: #222;
  font-weight: 500;
  text-transform: capitalize;
}

.faq-modal .modal-body {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 100px;
}

.faq-modal .close {
  background: tomato;
}

#faq-modal .modal-footer {
  z-index: 2;
  background: #f2f2f2;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* ==========================

   What's New Modal

========================== */
.whatsNewModal{
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 40vw;
  width: 90%;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}
.whatsNewModal.active{
  display: flex;
}
/* .whatsNewModal::before{
  content: "🎉";
  position: absolute;
  top: 1rem;
  left: -3rem;
  font-size: 2rem;
} */
.whatsNewModal .closeModal{
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  font-size: 3rem;
  color: tomato;
  cursor:pointer;
}
.whatsNewModal .modal-body h3{
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 1rem;
}
.whatsNewModal h3 .version{
  color: var(--success);
  font-weight: 600;
  text-transform: lowercase;
}
.whatsNewModal .modal-body p{
  font-size: 1.8rem;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.whatsNewModal .modal-body > small{
  font-size:1.5rem;
  font-weight: 500;
  color: var(--danger);
  text-transform: capitalize;
}
/* ==========================================

   STORAGE MODAL
   (in dummy.css file)

======================================*/
/* ----------------------------------- */

@media (max-width: 768px) {

  .faq-modal .modal-header {
    padding: 1rem 5rem;
  }
  .faq-modal .faq-modal-body{
    padding: 50px;
  }
  .whatsNewModal{
    max-width: 80vw;
  }
}

@media (max-width: 480px) {

  .faq-modal .modal-header {
    padding: 1rem 3rem;
  }
  .faq-modal .faq-modal-body{
    padding: 30px;
  }
}