/* 
    00FA Student Info Center - $95 app
*/
.card-flip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.card-inner {
  position: relative;
  text-align: center;
  background: lightgray;
  height: 260px;
  color: white;
  transition: all 0.25s ease-in-out;
  width: 260px;
  overflow-y: hidden;
}
.card-corner:before {
  content: "";
  position: absolute;
  top: 93%;
  right: 0%;
  width: 0px;
  height: 0px;
  border-bottom: 20px solid #ffffff;
  border-left: 20px solid transparent;
}
.card-corner:after {
  content: "";
  position: absolute;
  top: 93%;
  right: 0%;
  width: 0px;
  height: 0px;
  border-top: 20px solid #00000050;
  border-right: 20px solid white;
}
.cf-teal {
  background: #4eb9ad;
}
.cf-blue {
  background: #1f536f;
}
.cf-green {
  background: #093924;
}
.cf-orange {
  background: #cc8261;
}
.show {
  display: block !important;
}
.hidden {
  display: none;
}
.title-lg-font {
  font-size: 115px;
  font-weight: 700;
  padding: 30px 0 50px 0;
}
.title-md-font {
  font-size: 32px !important;
  font-weight: 600;
  line-height: 1.2;
  margin: auto;
  padding: 16px 0px;
}
.title-sm-font {
  font-size: 16px !important;
  font-weight: 500;
}
.cf-read-more {
  bottom: 0;
  text-align: center;
  font-family: Avenir, "Century Gothic", sans-serif;
  font-weight: 300;
  font-size: 16px !important;
  line-height: 1.5;
  margin-bottom: 33px;
  position: absolute;
  padding-left: 58px;
}
.card-front {
  padding: 50px;
  cursor: pointer;
}
.card-back {
  margin: auto;
  padding: 35px 25px;
}
.card-back > p {
  font-size: 18px !important;
  line-height: 1em;
}
.card-back.hidden.show {
  text-align: left;
  overflow-y: scroll!important;
  height: 260px;
  scrollbar-color: #ffc108 #08527e!important;
}
.card-inner a {
  color: white !important;
  text-decoration: none;
  font-weight: 400;
}
.card-inner a:hover {
  font-weight: 600;
}
.card-inner p {
  color: white !important;
}
.cf-teal > .card-back a {
  color: #00453d !important;
}
.cf-blue > .card-back a {
  color: #97c5e5 !important;
}
.cf-green > .card-back a {
  color: #75a58a !important;
}
.cf-orange > .card-back a {
  color: #531a00 !important;
}
.card-inner::-webkit-scrollbar {
  width: 0 !important;
}
.card-flip-container svg path {
  fill: #fbd50d;
}
@media only screen and (max-width: 600px) {
  .card-inner {
    text-align: left;
    width: 100%;
  }
  .cf-read-more {
    text-align: left;
    padding-left: 0;
  }
}