/* === COLORS === */
/* === TRANSITIONS === */
/* === SIZES === */
/* New public web */
/* line 74, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pastel-orange {
  background-color: #fce6a6;
}

/* line 76, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pale-orange {
  background-color: #fef7e5;
}

/* line 78, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pale-green {
  background-color: #eef7e5;
}

/* line 80, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-white {
  background-color: #fff;
}

/* line 82, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.color-dark-red {
  color: #970b00;
}

/* line 2, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice {
  background-color: #0C1D24;
  align-items: center;
  display: none;
  justify-content: space-between;
  transition: all 0.3s ease;
}
/* line 3, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice .cta_link:hover {
  text-decoration: none;
}
/* line 10, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice .notice-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
}
/* line 17, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice .notice-content .text-section {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  /* line 17, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
  #notice .notice-content .text-section {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  /* line 10, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
  #notice .notice-content {
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
    margin: 1em 0;
  }
}
/* line 29, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice p {
  color: #CFF9A1;
  text-decoration: none;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  /* line 29, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
  #notice p {
    font-size: 1rem;
  }
}
/* line 35, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  background-image: url(/assets/public/06-icons/close-91f3090f7ea1f481ba591d130fb263255c442c7b123b794ace836c4ac4bb081f.svg);
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  /* line 35, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
  #notice .close-btn {
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
  }
}
/* line 52, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice .close-btn:hover {
  opacity: 0.8;
}
/* line 54, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice:hover {
  background-color: #1F56C7;
}
/* line 57, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/notice.sass */
#notice:hover .notice-content p {
  color: white;
}
