:root {
  --color-brand-primary: #1897d9;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
}

body {
  background: #f7f7f7;
  margin: 0;
  font-family: "Rubik", sans-serif;
}

* {
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #000;
  display: inline-block;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

strong {
  font-family: "Rubik";
}

fieldset {
  border: 0;
}

.o-wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}
body {
  line-height: 1.5;
  background-color: #f2fbff;
}

/**** Header ****/
.c-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  background: #fdfdfd;
  padding: 1rem;
  box-shadow: 0 3px 21px 0 rgba(0, 0, 0, 0.03);
}
.c-header .c-logo {
  color: var(--color-brand-primary);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 799px) {
  .c-header .c-logo {
    flex-basis: 100%;
  }
}
@media (min-width: 800px) {
  .c-header .c-logo {
    margin-bottom: 0;
  }
}
@media (min-width: 800px) {
  .c-header {
    display: flex;
  }
}

.c-nav ul {
  display: flex;
}
.c-nav li:not(:last-child) {
  margin-right: 1.5rem;
}
.c-nav a:hover {
  color: var(--color-brand-primary);
}
@media (max-width: 799px) {
  .c-nav {
    flex: 0 0 50%;
  }
}
@media (min-width: 800px) {
  .c-nav {
    margin-left: auto;
    margin-right: 1.5rem;
  }
}

.c-header__follow {
  color: #555;
  text-align: right;
}
.c-header__follow svg {
  width: 22px;
  height: 22px;
  fill: #1da1f2;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 799px) {
  .c-header__follow {
    flex: 0 0 50%;
  }
}

.c-box__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 2rem 0;
  background-color: var(--color-brand-primary);
  /* Make sure to support clamp ? */
  background-image: linear-gradient(to bottom, transparent 50%, #4baee3 0, #4baee3 calc(50% + 2px), transparent 0), linear-gradient(to right, transparent 50%, #4baee3 0, #4baee3 calc(50% + 2px), transparent 0), radial-gradient(circle clamp(100px, 20vw, 230px) at center, #4baee3, #4baee3 50%, transparent 0);
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}
.c-box__wrapper h1,
.c-box__wrapper p {
  color: #fff;
}
.c-box__wrapper a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 800px) {
  .c-box__wrapper {
    min-height: 490px;
    padding: 2rem 0;
  }
}

@supports (width: clamp(10px, 5vw, 150px)) {
  .c-box__wrapper {
    --circle-size: clamp(100px, 20vw, 230px);
  }
}
.c-box {
  padding: 0 1rem;
}
.c-box p {
  max-width: 710px;
  font-size: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  text-align: center;
}
.c-box p::selection {
  background: rgba(0, 172, 238, 0.2);
}
.c-box p.small {
  font-size: 1rem;
}
@media (min-width: 800px) {
  .c-box p {
    font-size: 1.5rem;
  }
  .c-box p.small {
    font-size: 1.25rem;
  }
}

.c-box__title {
  text-align: center;
  font-size: 24px;
  color: var(--color-brand-primary);
}
.c-box__title svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  width: 40px;
}
@media (min-width: 800px) {
  .c-box__title svg {
    font-size: 65px;
  }
}
@media (min-width: 800px) {
  .c-box__title {
    font-size: 65px;
    margin: 1rem 0 0;
  }
}

.intro {
  text-align: center;
}
.intro p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .intro p {
    font-size: 1.5rem;
  }
}

.plate-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.plate__item {
  margin: 10px;
}
.plate__item input:checked + label {
  font-weight: bold;
}
.plate__item input:checked + label:before {
  transform: scale(1.2);
  opacity: 1;
}
.plate__item.op-1 .plate__label:before {
  background-image: url("../img/fruit.svg");
}
.plate__item.op-2 .plate__label:before {
  background-image: url("../img/cake.svg");
}
.plate__item.op-3 .plate__label:before {
  background-image: url("../img/donut.svg");
}
.plate__item.op-4 .plate__label:before {
  background-image: url("../img/icecream.svg");
}
.plate__item.op-5 .plate__label:before {
  background-image: url("../img/konafa.svg");
}
.plate__item.op-6 .plate__label:before {
  background-image: url("../img/pancake.svg");
}
.plate__item.op-7 .plate__label:before {
  background-image: url("../img/diet.svg");
}

.plate__label {
  cursor: pointer;
  font-size: 0.85rem;
}
.plate__label:before {
  content: "";
  display: block;
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  margin-bottom: 6px;
  opacity: 0.5;
  transition: 0.3s ease-out;
  margin: auto;
}
@media (min-width: 800px) {
  .plate__label {
    font-size: 1rem;
  }
  .plate__label:before {
    width: 95px;
    height: 95px;
    background-size: 85px;
  }
}

.main-title {
  margin-top: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  background-color: var(--color-brand-primary);
}
.main-title h2 {
  color: #fff;
  margin: 1rem 0 0;
  font-size: 1.5rem;
}
@media (min-width: 800px) {
  .main-title {
    padding: 3rem 1rem;
  }
  .main-title h2 {
    font-size: 2rem;
  }
}

/**** Button ****/
.c-button {
  display: inline-block;
  color: #fff;
  background: linear-gradient(to bottom, #ef414b, #cc0813);
  font-size: 18px;
  font-weight: 500;
  padding: 8px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  background-origin: border-box;
  transition: 0.3s ease-out;
}
.c-button:hover {
  box-shadow: 0 0 0 6px rgba(204, 8, 19, 0.2), 0 8px 10px 8px rgba(204, 8, 19, 0.2);
}
.c-button ~ svg .naughty-head {
  transition: 0.3s ease-out;
}

.c-button--primary:hover ~ svg .naughty-head {
  transform: rotate(-7deg);
  transform-origin: 155px 7px;
}

.c-button--ghost:hover ~ svg .naughty-head {
  transform: rotate(9deg);
  transform-origin: 110px 48px;
}

.c-button--ghost {
  background: transparent;
  color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
}

/**** Section ****/
.c-section {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .c-section {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.c-section p {
  max-width: 450px;
}
.c-section p > code {
  display: inline-block;
  padding: 2px;
  border-radius: 4px;
  font-size: 14px;
  color: #4d3535;
  background: #f5f0cd;
}

.c-section__item {
  align-self: start;
}
.c-section__item > * + * {
  margin-top: 1rem;
}
@media (min-width: 800pxx) {
  .c-section__item {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 1rem 2rem;
    border-radius: 8px;
  }
}

.c-section--outside {
  padding-bottom: 6rem;
}

.c-section--normal,
.c-section--basic {
  display: block;
}
.c-section--normal > * + *,
.c-section--basic > * + * {
  margin-top: 2rem;
}

.c-section--demo > * + * {
  margin-top: 0.5rem;
}
.c-section--demo p {
  margin-bottom: 1rem;
}

.c-section--basic .c-section__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
@media (min-width: 800px) {
  .c-section--basic .c-section__item {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}

img {
  max-width: 100%;
}

/**** desk ****/
.desk {
  height: 190px;
  background-color: var(--color-brand-primary);
  background-image: repeating-linear-gradient(to right, transparent, transparent 17px, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08)), repeating-linear-gradient(to bottom, transparent, transparent 17px, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08));
  background-size: 21px 100%, 100% 21px;
  border-radius: 8px;
}
@media (min-width: 800px) {
  .desk {
    height: 250px;
  }
}

/**** Plate ****/
.plate {
  width: 100px;
  height: 100px;
  background: url("../img/fruit.svg") center/contain no-repeat;
  margin: 0 5px;
}
.plate.inline {
  display: inline-block;
}
.plate.block {
  display: block;
}
@media (min-width: 800px) {
  .plate {
    width: 120px;
    height: 120px;
  }
}

.plate[data-bg=op-1] {
  background-image: url("../img/fruit.svg");
}

.plate[data-bg=op-2] {
  background-image: url("../img/cake.svg");
}

.plate[data-bg=op-3] {
  background-image: url("../img/donut.svg");
}

.plate[data-bg=op-4] {
  background-image: url("../img/icecream.svg");
}

.plate[data-bg=op-5] {
  background-image: url("../img/konafa.svg");
}

.plate[data-bg=op-6] {
  background-image: url("../img/pancake.svg");
}

.plate[data-bg=op-7] {
  background-image: url("../img/diet.svg");
}

/**** desk Variations ****/
.desk {
  padding: 1.5rem 1rem;
}

.desk-1 {
  text-align: center;
}

.desk-2 {
  display: flex;
  justify-content: center;
}

.desk-3 {
  display: grid;
  justify-content: center;
}

.desk-4 .plate {
  margin-left: auto;
  margin-right: auto;
}

.desk-5 .tray {
  margin-left: auto;
  margin-right: auto;
}

.desk-6 {
  display: flex;
  justify-content: center;
}

.desk-7 {
  display: flex;
  justify-content: center;
}

.desk-8 {
  position: relative;
}
.desk-8 .plate {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.desk-9 {
  position: relative;
}
.desk-9 .plate {
  position: absolute;
  left: 50%;
  margin-left: -60px;
}

.desk-10 {
  position: relative;
  align-self: start;
  height: initial;
  padding: 1.5rem;
  overflow: hidden;
}
.desk-10 .plate {
  margin: 0;
}
.desk-10:before, .desk-10:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
}
.desk-10:before {
  top: 0;
}
.desk-10:after {
  bottom: 0;
}

.desk-11 {
  text-align: center;
}
.desk-11 .plate,
.desk-11 .knife,
.desk-11 .fork {
  vertical-align: middle;
}

.desk-12 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.desk-12 .plate {
  margin: 5px 13px;
}

.desk-13 {
  position: relative;
}
.desk-13 .plate {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.desk-14 {
  position: relative;
}
.desk-14 .plate {
  position: absolute;
  top: 50%;
  margin-top: -60px;
}

.desk-15 {
  height: initial;
  align-self: start;
  padding: 1.5rem;
  text-align: center;
}

.desk-16 {
  position: relative;
}
.desk-16 .plate {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.desk-17 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.desk-14-1 {
  display: grid;
  align-items: center;
}

.desk-17-1 {
  display: grid;
  place-items: center;
}

.tray {
  position: relative;
  width: 250px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d2f0fa;
  border: 6px solid #105172;
  border-radius: 9px;
}
.tray:after, .tray:before {
  content: "";
  position: absolute;
  width: 17px;
  height: 56px;
  background: #105172;
  top: 50%;
  transform: translateY(-50%);
}
.tray:before {
  right: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.tray:after {
  left: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.tray .plate {
  width: 90px;
  height: 90px;
}

/**** desk Variations ****/
.o-wrapper {
  counter-reset: test;
}

/**** Title ****/
.c-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
}
.c-title:before {
  counter-increment: test;
  content: counter(test);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-brand-primary);
  box-shadow: 0px 3px 0px rgba(24, 151, 217, 0.1);
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-right: 0.35rem;
}
@media (min-width: 800px) {
  .c-title {
    font-size: 1.5rem;
  }
  .c-title:before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    margin-right: 0.75rem;
  }
}
.c-title.counter-none {
  margin-bottom: 0;
}
.c-title.counter-none:before {
  display: none;
}

h4 {
  color: var(--color-brand-primary);
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

/**** Footer ****/
.c-footer {
  background-color: var(--color-brand-primary);
  background-image: repeating-linear-gradient(to right, transparent, transparent 17px, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08)), repeating-linear-gradient(to bottom, transparent, transparent 17px, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08));
  background-size: 21px 100%, 100% 21px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.1);
  font-size: 15px;
}
@media (min-width: 800px) {
  .c-footer {
    font-size: initial;
  }
}
.c-footer h2,
.c-footer p,
.c-footer a {
  margin: 0 0 0.5rem;
  color: #fff;
}
.c-footer h2 {
  font-size: calc(14px + 1vw);
}
@media (max-width: 2000px) {
  .c-footer h2 {
    font-size: 1.5rem;
  }
}
.c-footer a {
  text-decoration: underline;
}
.c-footer img {
  display: block;
  margin: -35px auto 1rem;
  width: 100px;
}

pre {
  border-radius: 6px;
  max-width: 460px;
}

.mb-1 {
  margin-bottom: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.note {
  position: relative;
  max-width: 460px !important;
  background: #fff;
  box-shadow: 0 9px 20px 0 rgba(0, 0, 0, 0.15);
  padding: 8px 8px 8px 50px;
  margin: 1rem 0;
  border-radius: 7px;
}
.note.lamp:before {
  content: "";
  position: absolute;
  left: 8px;
  width: 30px;
  height: 36px;
  background: url("../img/lamp.svg") center/contain no-repeat;
}
.note a {
  text-decoration: underline;
  color: var(--color-brand-primary);
  font-weight: bold;
}

.other-articles {
  margin-top: 1rem;
}
.other-articles li:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 800px) {
  .other-articles li {
    font-size: 18px;
  }
}
.other-articles a {
  text-decoration: underline;
  text-decoration-color: cornflowerblue;
}

hr {
  height: 20px;
  background: var(--color-brand-primary);
  border: 0;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #93d9f7 !important;
}

#carbonads {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#carbonads {
  position: relative;
  display: flex;
  max-width: 330px;
  margin: 2rem auto;
  background-color: #f3f3f3;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
}

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

#carbonads a:hover {
  color: inherit;
}

#carbonads span {
  position: relative;
  display: block;
  overflow: hidden;
}

#carbonads .carbon-wrap {
  display: flex;
}

.carbon-img {
  display: block;
  margin: 0;
  line-height: 1;
}

.carbon-img img {
  display: block;
}

.carbon-text {
  font-size: 13px;
  padding: 10px;
  line-height: 1.5;
  text-align: left;
}

.carbon-poweredby {
  display: block;
  padding: 8px 10px;
  background: -webkit-repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(0, 0, 0, 0.025) 5px, rgba(0, 0, 0, 0.025) 10px) rgba(241, 243, 244, 0.4);
  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.025) 5px, rgba(0, 0, 0, 0.025) 10px) rgba(241, 243, 244, 0.4);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 9px;
  line-height: 1;
}

#mc_embed_signup {
  font: inherit !important;
}

#mc_embed_signup form {
  background: #f7f7f7;
  padding: 1rem !important;
  border-radius: 5px;
  margin-top: 1.5rem;
}

#mc_embed_signup .button {
  margin: 0 !important;
  -ms-flex-item-align: end;
  -webkit-align-self: end;
  align-self: end;
  background-color: #3863d9 !important;
}

#mc_embed_signup .button:hover {
  background-color: #244cba !important;
}

#mc_embed_signup input {
  font-size: 16px !important;
}

#mc_embed_signup input:focus {
  border-color: #3863d9 !important;
  outline: none;
}

.mc-title {
  font-size: 1.5rem !important;
  margin: 0 0 0.5rem !important;
}

.mc-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.mc-input-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}

@media (min-width: 800px) {
  .mc-input-group {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  margin-bottom: 0 !important;
}

.mc-field-group {
  width: 100% !important;
  padding-bottom: 0 !important;
}

#mc_embed_signup div#mce-responses {
  width: 100% !important;
  padding: 0.5rem 0 !important;
  margin: 0 !important;
}

#mc_embed_signup #mce-error-response {
  line-height: 1.45;
  font-weight: normal !important;
}
