html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}
.rounded_base {
  border-radius: 12px !important;
}
.rounded_left_base {
  border-radius: 12px 0 0 12px !important;
}
.rounded_right_base {
  border-radius: 0 12px 12px 0 !important;
}
.shadow_base {
  box-shadow: 4px 0px 50px rgba(0, 0, 0, 0.08);
}
.shadow_light {
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.08);
}
.fs_64{
  font-size: 64px;
}
@media (max-width : 600px) {
  .fs_64{
    font-size: 48px;
  }
}
.max-lines {
  display: block; /* or inline-block */
  text-overflow: Ellipsis;
  Word-wrap: break-Word;
  overflow: hidden;
  max-height: 7rem;
  line-height: 1.8rem;
}
.max-lines  ::after {
  content: "...";
  position: absolute;
  right: -12px; 
  bottom: 4px;
}
button:hover{
  opacity: 0.8 !important;
  box-shadow: 3px 6px 16px rgba(61, 61, 61, 0.05);
}