/**
 * Official documentation: https://sass-lang.com/documentation/at-rules/mixin
 * Mixins should contain optional arguments whenever possible to promote flexibility for reuse.
 * 
*/
/**
* Mixin to generate data table fixed column css
* Vuetify datatable does not support fixed col
* https://github.com/vuetifyjs/vuetify/issues/4652
*/
/**
* Mixin for fallback if browser doesn't support aspect-ratio
* https://caniuse.com/mdn-css_properties_aspect-ratio
* https://css-tricks.com/aspect-ratio-boxes/
**/
/**
* Mixin for @font-face declarations
*  $family:    The name of the font-family to define.
*  $dir:       The directory where the font file is located.
*  $filename:  The name of the font file (excluding extension).
*  $weight:    (Optional) The font weight (default: 400).
*  $style:     (Optional) The font style (default: normal).
*  $format:    (Optional) The font format (default: 'woff2').
*
*  Example usage:
*  @include font-face('Andika', 'base/Andika', 'Andika-Bold', 700, normal);
*/
/** Breakpoints for responsive design
 *  Carbon Breakpoints: https://www.carbondesignsystem.com/guidelines/2x-grid/overview/#breakpoints
 *  Reference: https://davidwalsh.name/write-media-queries-sass
*/
/* Gradient for gamification background
   Value from Figma: https://www.figma.com/file/7RkxF5r3E2JPdtJdyxLWoF/Gamification?node-id=813%3A69686
*/
.card-component {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #e7e9ec;
  border-radius: 10px;
  background-color: #f3f5f8;
  word-break: break-word;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 1056px) {
.card-component {
    width: calc((100% - 2.5rem * 2) / 3 - 0.0694%);
}
.content-subpage .card-component {
    width: calc((100% - 1rem * 2) / 3 - 0.0694%);
}
}
.card-component._content-overflow::after {
  display: block !important;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0) 75%, #f3f5f8);
  z-index: 1;
  border-radius: 10px;
  pointer-events: none;
}
.card-component.moe .card-label {
  background-color: #e96a6a;
}
.card-component.community .card-label {
  background-color: #3ea2a9;
}
.card-component._disabled {
  position: relative;
  cursor: not-allowed;
}
.card-component._disabled:active {
  pointer-events: none;
}
.card-component._disabled._has-subject-code::before {
  border-top: 4px solid #ced3d9;
}
.card-component._disabled > div.card-header:hover {
  background-color: #ffffff;
  border-color: transparent;
}
.card-component._disabled > div.card-header:hover ~ .card-content {
  background-color: #f3f5f8;
}
.card-component._disabled > div.card-header .bx--form .field-set.title span {
  color: #9da7b2;
}
.card-component._disabled > div.card-header .label-component span {
  background-color: #f3f5f8;
  color: #9da7b2;
}
.card-component._disabled > div.card-header .title {
  color: #9da7b2;
}
.card-component._disabled > div.card-header .metadata li {
  color: #9da7b2;
}
.card-component._disabled > div.card-header .metadata .sls-icon [fill] {
  fill: #9da7b2;
}
.card-component._disabled > div.card-header .metadata .sls-icon [stroke] {
  stroke: #9da7b2;
}
.card-component._disabled > div.card-content {
  color: #9da7b2;
}
.card-component._disabled > div.card-content .sls-icon [fill] {
  fill: #9da7b2;
}
.card-component._disabled > div.card-content:hover {
  border-color: transparent;
}
.card-component._disabled > div.card-content .field-set.schedule .field-value {
  color: #9da7b2;
}
.card-component._disabled > div.card-content .field-set.section-info .sls-icon path {
  stroke: #9da7b2;
  fill: #ced3d9;
}
.card-component._disabled > div.card-content .field-set.type-progress .bar {
  background-color: #9da7b2;
}
.card-component._disabled .card-actions {
  pointer-events: none;
}
.card-component._disabled .card-actions .sls-icon [fill] {
  fill: #9da7b2;
}
.card-component:not(._disabled):not(._large):focus, .card-component:not(._disabled):not(._large):hover {
  border-color: #2b63d9 !important;
}
.card-component:not(._disabled) .card-content:focus, .card-component:not(._disabled) .card-content:hover {
  border-color: #2b63d9 !important;
}
.card-component:not(._disabled):active {
  box-shadow: 0px 4px 10px rgba(2, 41, 79, 0.1);
}
.card-component {
  /* Large cards would be displayed vertically and not have horizontal scrolling, unless they are nested in a carousel
   * Examples: [AssignmentCard.vue, AppListCard.vue, SubgroupCard.vue]
   * Regex to search: "<card-component(.|\n)*large"
  */
}
.card-component .card-actions {
  position: absolute;
  display: flex;
  top: 0.75rem;
  right: var(--title-padding, 12px);
  border-radius: 100%;
  z-index: calc(1 + 2);
}
.card-component .card-actions .bx--overflow-menu__trigger {
  width: inherit;
  height: inherit;
}
.card-component .card-actions .tooltip-button .bx--tooltip__trigger.bx--tooltip--a11y {
  padding: 0;
}
@media only screen and (max-width: 1055px) {
.card-component._2xsmall {
    height: 13.75rem;
    min-width: 7.25rem;
    flex: 0 0 7.25rem;
}
}
@media only screen and (min-aspect-ratio: 13/9) and (min-width: 600px) and (max-width: 1055px) {
.card-component._2xsmall {
    height: 4.5rem;
    max-height: 4.5rem;
    width: 18rem;
}
.card-component._2xsmall._content-overflow::after {
    visibility: hidden;
}
.card-component._2xsmall._content-overflow.annotation-list-item .card-content::before {
    visibility: hidden;
}
}
@media only screen and (min-width: 1056px) {
.card-component._2xsmall {
    height: 4.5rem;
    max-height: 4.5rem;
    width: 18rem;
}
.card-component._2xsmall._content-overflow::after {
    visibility: hidden;
}
.card-component._2xsmall._content-overflow.annotation-list-item .card-content::before {
    visibility: hidden;
}
}
.card-component._xsmall {
  height: 118px;
  flex-flow: row;
  overflow-x: unset;
}
@media only screen and (max-width: 671px) {
.card-component._xsmall {
    width: 100%;
    flex: 0 0 auto;
    display: flex;
}
}
@media only screen and (min-width: 672px) and (max-width: 1055px) {
.card-component._xsmall {
    width: calc((100% - 1rem) / 2);
    flex: 0 0 auto;
}
}
.card-component._xsmall .card-header {
  margin-top: 2rem;
  flex: auto;
}
.card-component._xsmall .card-header .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-pack: start;
  white-space: normal;
  word-wrap: break-word;
  line-height: normal;
  margin-bottom: 0.25rem;
}
.card-component._xsmall .card-thumbnail {
  min-width: 3.75rem;
  justify-content: flex-start;
  margin: 2.75rem 1rem 0 1rem;
}
.card-component._xsmall .card-thumbnail img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 10px;
}
.card-component._xsmall .card-thumbnail .icon {
  height: 3.75rem;
  width: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-component._xsmall .card-actions {
  top: 4px;
  right: 4px;
}
.card-component._small {
  height: 11.875rem;
}
@media only screen and (max-width: 671px) {
.card-component._small {
    width: 100%;
    flex: 0 0 auto;
}
}
@media only screen and (min-width: 672px) and (max-width: 1055px) {
.card-component._small {
    width: calc((100% - 1rem) / 2);
    flex: 0 0 auto;
}
}
.card-component._small .card-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem 0;
  height: 64px;
  min-height: 64px;
}
.card-component._small .card-thumbnail > img {
  width: 5.62rem;
  height: 4.25rem;
  margin-top: 3rem;
}
.card-component._small .card-thumbnail > .placeholder-thumbnail {
  margin-top: 2rem;
  transform: scale(0.5);
}
.card-component._small .card-actions {
  top: 4px;
  right: 4px;
}
.card-component._medium {
  height: 13.75rem;
  width: 18rem;
  min-width: 18rem;
  max-height: 13.75rem;
  padding: 1rem;
}
.card-component._large:hover .card-content {
  border: 1px solid #2b63d9;
}
.card-component._large._has-gamification._disabled .card-header {
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, rgb(205, 205, 205), rgb(255, 255, 255));
}
.card-component._large._has-gamification .card-header {
  position: relative;
  padding: 2px;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, rgb(253, 197, 17), rgb(255, 251, 230));
  border-radius: 10px;
  background-clip: content-box, border-box;
}
.card-component._large._has-gamification .card-header .bx--form {
  padding: 0.5rem 0.5rem 0 0;
}
.card-component._large._has-gamification .card-header > * {
  margin-left: 0.5rem;
}
.card-component._large._has-gamification .card-header .game-watermark {
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  height: 55px;
  width: 55px;
}
.card-component._large._has-gamification .card-header .game-watermark-active {
  background: url("/static/GameWatermark-CxVBFiNf.svg") no-repeat;
}
.card-component._large._has-gamification .card-header .game-watermark-disabled {
  background: url("data:image/svg+xml,%3csvg%20width='52'%20height='55'%20viewBox='0%200%2052%2055'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_d_51_7207)'%3e%3cpath%20d='M19.0623%205.24897C20.6688%203.78266%2023.0046%203.28617%2025.0686%203.97229L38.8554%208.55526C40.6978%209.16768%2042.0479%2010.6327%2042.431%2012.4352L45.6606%2027.6295C46.0438%2029.432%2045.4063%2031.3195%2043.9723%2032.6283L33.2415%2042.4227C31.635%2043.889%2029.2992%2044.3855%2027.2352%2043.6994L13.4484%2039.1164C11.6061%2038.504%2010.256%2037.0389%209.87283%2035.2364L6.64319%2020.0422C6.26006%2018.2397%206.89756%2016.3521%208.33151%2015.0433L19.0623%205.24897Z'%20fill='url(%23paint0_linear_51_7207)'/%3e%3cpath%20d='M16.8008%2020.8925L21.8939%203.80347L33.9096%2019.0412L22.3186%2030.4318L13.4484%2039.1164L16.8008%2020.8925Z'%20fill='url(%23paint1_linear_51_7207)'/%3e%3cpath%20d='M13.4484%2039.1164L27.2352%2043.6993C29.2992%2044.3855%2031.635%2043.889%2033.2415%2042.4227L43.9723%2032.6283C45.4063%2031.3195%2046.0438%2029.432%2045.6606%2027.6295L42.431%2012.4352C42.0479%2010.6327%2040.6978%209.16768%2038.8554%208.55526M13.4484%2039.1164C11.6061%2038.504%2010.256%2037.0389%209.87283%2035.2364L6.64319%2020.0422C6.26006%2018.2397%206.89756%2016.3521%208.33151%2015.0433L19.0623%205.24897C20.6688%203.78266%2023.0046%203.28617%2025.0686%203.97229L38.8554%208.55526M13.4484%2039.1164L16.8008%2020.8925M13.4484%2039.1164L22.3186%2030.4318M38.8554%208.55526L33.9096%2019.0412M16.8008%2020.8925L21.8939%203.80347L33.9096%2019.0412M16.8008%2020.8925L6.9638%2016.9472M16.8008%2020.8925L22.3186%2030.4318M45.5401%2030.1834L33.9096%2019.0412M33.9096%2019.0412L22.3186%2030.4318M22.3186%2030.4318L30.4099%2043.8682'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_51_7207'%20x='0.533569'%20y='1.66833'%20width='51.2367'%20height='52.335'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='4'/%3e%3cfeGaussianBlur%20stdDeviation='2.5'/%3e%3cfeComposite%20in2='hardAlpha'%20operator='out'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200.807843%200%200%200%200%200.827451%200%200%200%200%200.85098%200%200%200%200.25%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_51_7207'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_51_7207'%20result='shape'/%3e%3c/filter%3e%3clinearGradient%20id='paint0_linear_51_7207'%20x1='18.4015'%20y1='37.9987'%20x2='48.3966'%20y2='4.6642'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23CED3D9'/%3e%3cstop%20offset='0.604167'%20stop-color='%23F6F6F6'/%3e%3cstop%20offset='1'%20stop-color='white'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint1_linear_51_7207'%20x1='18.4015'%20y1='37.9987'%20x2='48.3966'%20y2='4.6642'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23CED3D9'/%3e%3cstop%20offset='0.604167'%20stop-color='%23F6F6F6'/%3e%3cstop%20offset='1'%20stop-color='white'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e") no-repeat;
}
@media only screen and (max-width: 671px) {
.card-component._large {
    width: 100%;
    flex: 0 0 auto;
}
}
@media only screen and (min-width: 672px) and (max-width: 1055px) {
.card-component._large {
    width: calc((100% - 1rem) / 2);
    flex: 0 0 auto;
}
}
.card-component._large .card-header {
  z-index: 3;
}
.card-component._large .card-content {
  z-index: 2;
  background-color: #f3f5f8;
  margin-top: -7.83rem;
  padding: 8rem 0.5rem 0.55rem 0.5rem;
  border-radius: 10px;
  border: 1px solid #e7e9ec;
}
.card-component._large .card-content .field-set.type-progress, .card-component._large .card-content .field-set.assignment-status {
  margin-bottom: 0;
}
.card-component._large .card-content .field-set.section-info {
  margin-bottom: -0.5rem;
}
.card-component._large .card-actions {
  width: 40px;
  height: 40px;
}
.card-component._large .card-actions .bx--btn {
  padding: 0 0.5rem;
}
.card-component._xlarge {
  height: 34.5rem;
  width: 22.8rem;
}
.card-component._xlarge .card-content {
  padding: 0 1rem 1rem 1rem;
}
.card-component._xlarge .card-content .rich-text-content {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.16px;
  line-height: 1.15;
}
.card-component.selected {
  border: 1px solid #2b63d9;
  box-shadow: 0px 4px 10px rgba(2, 41, 79, 0.1);
}
.card-component._has-subject-code::before {
  content: "";
  position: absolute;
  top: 0.75px;
  left: 3px;
  width: calc(100% - 6px);
  border-top: 4px solid var(--color);
  z-index: 100;
  border-radius: 10px 10px 0 0;
}
.card-component._header-icons-loaded .card-header .icons-wrapper {
  visibility: visible;
}
.card-component .metadata {
  display: flex;
  align-items: center;
  flex-flow: wrap;
}
.card-component .metadata li {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.733rem;
  font-weight: 400;
  line-height: 0.933rem;
  letter-spacing: 0.16px;
  position: relative;
  display: flex;
  align-items: center;
  color: #6d7b8c;
}
.card-component .metadata li:not(:last-of-type) {
  padding-right: 9px;
}
.card-component .metadata li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 2px;
  top: 50%;
  right: 4px;
  border-radius: 50%;
  background-color: #6d7b8c;
}
.card-component .metadata li .view-count {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.733rem;
  font-weight: 400;
  line-height: 0.933rem;
  letter-spacing: 0.16px;
  max-height: 15px;
  display: flex;
  align-items: center;
  color: #6d7b8c;
}
.card-component .metadata li .view-count .sls-icon {
  margin-right: 0.25rem;
}
.card-component .metadata li.subject {
  text-transform: capitalize;
}
.card-component .metadata li.subgroup-formclass {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  -webkit-box-pack: start;
  white-space: normal;
  word-wrap: break-word;
  line-height: normal;
  flex: 0 0 100%;
  margin-bottom: 0.25rem;
}
.card-component .metadata li.subgroup-formclass::after {
  content: none;
}
.card-component .metadata li.subgroup-formclass span {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.733rem;
  font-weight: 700;
  line-height: 0.933rem;
  letter-spacing: 0.16px;
}
.card-component .card-header {
  flex: 0 0 auto;
  padding: 1rem 1rem 0 0;
}
.card-component .card-header .bx--tooltip__trigger.bx--tooltip--bottom.bx--tooltip--align-end .bx--assistive-text {
  right: 1rem;
}
.card-component .card-header .bx--overflow-menu {
  position: absolute;
  top: 0.5rem;
  right: 0.25rem;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  z-index: 1;
}
.card-component .card-header .bx--overflow-menu:focus :hover {
  background-color: #e7e9ec;
}
.card-component .card-header .bx--overflow-menu .bx--overflow-menu__trigger {
  width: inherit;
  height: inherit;
}
.card-component .card-header .bx--overflow-menu svg {
  width: 24px;
  height: 24px;
}
.card-component .card-header .timestamp {
  flex: 0 0 100%;
  color: #6d7b8c;
}
.card-component .card-header .timestamp .label {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.688rem;
  font-weight: 400;
  line-height: 0.875rem;
  letter-spacing: 0.16px;
  margin-right: 0.25rem;
}
.card-component .card-header .timestamp time {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.688rem;
  font-weight: 700;
  line-height: 0.875rem;
  letter-spacing: 0.16px;
}
.card-component .card-header .icons-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  visibility: hidden;
}
.card-component .card-header .icons-wrapper .sls-icon:not(:first-child) {
  margin-left: 0.5rem;
}
.card-component .card-content {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.16px;
}
.card-component .card-content .media-component:not(.transcript-enabled) .empty-placeholder {
  margin-top: 0;
  padding-top: 3rem;
  background-color: #ffffff;
}
.card-component .card-content .media-component:not(.transcript-enabled):hover :is(.image, .video):not(._no-image) {
  background-color: #ffffff;
  border-color: #f3f5f8;
}
.card-component .card-content .media-component:not(.transcript-enabled):hover :is(.image, .video):not(._no-image) .attachment-placeholder {
  visibility: visible;
}
.card-component .card-content .media-component:not(.transcript-enabled):hover .media-image-view {
  background-color: #e7e9ec;
}
.card-component .card-content .media-component:not(.transcript-enabled) :is(.image, .video):not(._no-image) {
  background-color: transparent;
  border-color: transparent;
}
.card-component .card-content .media-component:not(.transcript-enabled) :is(.image, .video):not(._no-image) .attachment-placeholder {
  visibility: hidden;
}
.card-component .card-content .media-component:not(.transcript-enabled) .media-image-view {
  background-color: transparent;
}
.card-component .card-content .keywords .bx--tag {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.16px;
}
.card-component .card-content p {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.16px;
}
.card-component .card-content p.bx--inline-notification__title {
  font-weight: 700;
}
.card-component .card-content .field-set.title {
  padding-right: var(--title-padding, 2rem);
}
.card-component .card-label {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.688rem;
  font-weight: 700;
  line-height: 0.875rem;
  letter-spacing: 0.16px;
  position: absolute;
  left: 1rem;
  top: 1rem;
  background-color: #5885de;
  color: #ffffff;
  border-radius: 5px;
  padding: 0.125rem 0.5rem;
  z-index: 1;
  text-transform: uppercase;
}
.card-component .card-thumbnail > img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.card-component .content-thumbnail-loader {
  background-color: #e7e9ec;
  border-radius: 100%;
  width: 5rem;
  max-width: 5rem;
  height: 5rem;
  margin: auto;
  margin-bottom: 1rem;
  animation: skeleton 2s ease-in-out alternate infinite;
}
.card-component .label-component span {
  cursor: pointer;
}/**
 * Official documentation: https://sass-lang.com/documentation/at-rules/mixin
 * Mixins should contain optional arguments whenever possible to promote flexibility for reuse.
 * 
*/
/**
* Mixin to generate data table fixed column css
* Vuetify datatable does not support fixed col
* https://github.com/vuetifyjs/vuetify/issues/4652
*/
/**
* Mixin for fallback if browser doesn't support aspect-ratio
* https://caniuse.com/mdn-css_properties_aspect-ratio
* https://css-tricks.com/aspect-ratio-boxes/
**/
/**
* Mixin for @font-face declarations
*  $family:    The name of the font-family to define.
*  $dir:       The directory where the font file is located.
*  $filename:  The name of the font file (excluding extension).
*  $weight:    (Optional) The font weight (default: 400).
*  $style:     (Optional) The font style (default: normal).
*  $format:    (Optional) The font format (default: 'woff2').
*
*  Example usage:
*  @include font-face('Andika', 'base/Andika', 'Andika-Bold', 700, normal);
*/
/** Breakpoints for responsive design
 *  Carbon Breakpoints: https://www.carbondesignsystem.com/guidelines/2x-grid/overview/#breakpoints
 *  Reference: https://davidwalsh.name/write-media-queries-sass
*/
/* Gradient for gamification background
   Value from Figma: https://www.figma.com/file/7RkxF5r3E2JPdtJdyxLWoF/Gamification?node-id=813%3A69686
*/
.card-component.recipe-card {
  position: relative;
  flex-flow: row nowrap;
  align-items: center;
  gap: 1rem;
  height: 100%;
  min-height: 108px;
  background-color: #ffffff;
  padding: 1.5rem 1rem;
  border-color: #ced3d9;
  overflow: unset;
}
.card-component.recipe-card:has(.card-label)::before {
  position: absolute;
  content: "";
  background-color: #2b63d9;
  height: 20px;
  width: 20px;
  top: 5px;
  left: -2px;
  transform: rotate(45deg);
  opacity: 0.5;
  z-index: calc(-1);
}
.card-component.recipe-card:hover, .card-component.recipe-card.selected {
  border-color: #ea6613;
  box-shadow: 0px 4px 10px rgba(2, 41, 79, 0.1);
}
.card-component.recipe-card.recipe-card-gray {
  background-color: #f3f5f8;
}
.card-component.recipe-card .card-label {
  position: absolute;
  top: -3px;
  left: -6px;
  background-color: #2b63d9;
  border-radius: 4px 4px 4px 0px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
}
.card-component.recipe-card .card-thumbnail {
  display: inline-flex;
}
.card-component.recipe-card .card-header {
  flex: 1;
  padding: 0;
}
.card-component.recipe-card .card-header h5 {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  letter-spacing: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -webkit-box-pack: start;
  white-space: normal;
  word-wrap: break-word;
  line-height: normal;
}