/* CSS for Coupon Code Design */

/* Weekly Coupon Code Week 3 */



/* @group Used UIGradient Style
===================================================== */

.moonlit-asteroid-uigradient {
  background: #0F2027;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(200deg, #2C5364 30%, #203A43 62%, #1F2027);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(200deg, #2C5364 30%, #203A43 62%, #1F2027);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
}


/* @end Used UIGradient Style
===================================================== */


/* @group Course Link Style
===================================================== */

.course-link-word,
.course-link-word:hover {
  color: cyan;
  text-decoration: underline;
}

.bouncing-arrow>i.bi-arrow-up-circle-fill {
  color: cyan;
}

/* @end Course Link Style
===================================================== */




/* @group Used Text Shadow Style
===================================================== */

.promotional-offer {
  text-shadow: 1px 8px 8px rgba(0, 0, 0, 0.5);
}

/* @end Text Shadow Style
===================================================== */


/* @goup Used Button Style
===================================================== */

/*
< !-- HTML !-->
<button class="button-64"role="button">
  <span class="text">Button 64</span>
</button>
*/

/* CSS */
.button-64 {
  align-items: center;
  background: #ADA996;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border: 0;
  border-radius: 32px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  /*  font-size: 20px;*/
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button-64:active,
.button-64:hover {
  outline: 0;
}

.button-64 span {
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 32px;
  width: 100%;
  height: 100%;
  transition: 300ms;
  margin: 0.5rem;
  border: 1px solid transparent;
}

.button-64:hover span {
  background: none;
  border: 1px solid white;
  color: rgb(33, 37, 41);
}

@media (min-width: 768px) {
  .button-64 {
    font-size: 24px;
    min-width: 196px;
  }
}

.bouncing-arrow>.bi.bi-arrow-up-circle-fill {
  /*background: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
background: -webkit-linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;*/
}

/* @end Used Button Style
===================================================== */




/* @group Used Pop-up Button Style
===================================================== */


/*<!-- HTML !-->*/
/*<button class="button-77" role="button">Button 77</button>*/

/* CSS */
.button-77 {
  align-items: center;
  appearance: none;
  background-clip: padding-box;
  background-color: initial;
  background-image: none;
  border-style: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  flex-direction: row;
  flex-shrink: 0;
  font-family: Eina01, sans-serif;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 24px;
  margin: 0;
  min-height: 64px;
  outline: none;
  overflow: visible;
  /*  padding: 19px 26px;*/
  padding: initial;
  pointer-events: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  /*  width: auto;*/
  width: 100%;
  word-break: keep-all;
  z-index: 0;
}

@media (min-width: 768px) {
  .button-77 {
    /*    padding: 19px 32px;*/
    padding: initial;
  }
}

.button-77:before,
.button-77:after {
  border-radius: 80px;
}

.button-77:before {
  background-color: rgba(249, 58, 19, .32);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.button-77:after {
  background-color: initial;
  background-image: linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
  bottom: 4px;
  content: "";
  display: block;
  left: 4px;
  overflow: hidden;
  position: absolute;
  right: 4px;
  top: 4px;
  transition: all 100ms ease-out;
  z-index: -1;
}

.button-77:hover:not(:disabled):after {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  transition-timing-function: ease-in;
}

.button-77:active:not(:disabled) {
  color: #ccc;
}

.button-77:active:not(:disabled):after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
  bottom: 4px;
  left: 4px;
  right: 4px;
  top: 4px;
}

.button-77:disabled {
  cursor: default;
  opacity: .24;
}

/* @end Used Pop-up Button Style
===================================================== */