/*!**************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-1.use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/card-notice/style.scss ***!
  \**************************************************************************************************************************************************************************************************/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/**
 * Helper mixins
*/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
https://toward.studio/latest/making-css-gradients-smooth
*/
.card-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #141414;
  border-radius: 15px;
  padding: 33px 40px 48px 40px;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin-right: 30px;
  position: relative;
  overflow: hidden;
  min-height: 325px;
}
@media (max-width: 767px) {
  .card-notice {
    padding: 35px 28px;
  }
}
.card-notice:last-child {
  margin-right: 0;
}
.card-notice:after {
  content: "";
  display: block;
  width: 600px;
  height: 600px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 212, 117, 0.17) 0%, rgba(255, 212, 117, 0) 100%);
  position: absolute;
  top: -400px;
  right: -30%;
}
.card-notice:nth-child(2n):after {
  right: 30%;
}
.card-notice__inner:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.card-notice__title {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}
.card-notice__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #FFD475;
  width: 100%;
  max-width: 285px;
  margin: 0 0 auto 0;
}
@media (max-width: 413px) {
  .card-notice__text br {
    display: none;
  }
}
.card-notice__link {
  min-width: 140px;
  color: #FFD475;
  border: 1px solid #FFD475;
  border-radius: 37px;
  padding: 0 25px;
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 413px) {
  .card-notice__link {
    width: 100%;
  }
}
.card-notice__link.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
.card-notice__img {
  width: 136px;
  height: 136px;
}
@media (max-width: 1119px) {
  .card-notice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .card-notice__inner:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 35px;
  }
  .card-notice__inner:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-notice__link {
    text-align: center;
    margin-top: 24px;
  }
  .card-notice:after {
    right: -62%;
  }
}
@media (max-width: 1023px) {
  .card-notice__title {
    font-size: 25px;
    line-height: 33px;
  }
  .card-notice__text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .card-notice {
    margin-right: 0;
    margin-bottom: 20px;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .card-notice:last-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .card-notice:after {
    right: -50%;
  }
}
