/* ====================== */
/* === General Styles === */
/* ====================== */

.total-coffee {
    scroll-behavior: smooth;
    margin: 0 auto;
    max-width: 1440px;
}
  
.total-coffee * {
    font-size: 16px;
    font-weight: 400;
    font-family: "Staples Norms Pro";
    text-rendering: optimizeSpeed;
    /* text-rendering: optimizeLegibility; */
    font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
    /* -webkit-font-smoothing: subpixel-antialiased; */
}
  
.total-coffee *,
.total-coffee *::before,
.total-coffee *::after {
    box-sizing: border-box;
}
  
.total-coffee h1 {
    font-size: 32px;
}
  
.total-coffee h2 {
    font-size: 26px;
}
  
.total-coffee h3 {
    font-size: 20px;
}
  
.total-coffee h1,
.total-coffee h2,
.total-coffee h3,
.total-coffee h4,
.total-coffee p,
.total-coffee figure,
.total-coffee blockquote,
.total-coffee dl,
.total-coffee dd {
    margin: 0;
}

.total-coffee a {
    color: #CC0000;
}

.total-coffee a:hover {
    color: #dd1700;
}

.total-coffee a:not([class]) {
    text-decoration-skip-ink: auto;
}
  
.total-coffee img,
.total-coffee picture {
    max-width: 100%;
    display: block;
}

.total-coffee span,
.total-coffee input,
.total-coffee button,
.total-coffee textarea,
.total-coffee select {
    font: inherit;
}

.total-coffee ul {
    padding-left: 0;
    margin: 0;
}

.total-coffee ul li {
    line-height: 1.4;
    margin-left: 25px;
}
  
/* ===================== */
/* === Helper Styles === */
/* ===================== */

.total-coffee .shadow {
    box-shadow: 0px 1px 5px #dddddc;
}
  
.total-coffee .shadow-light {
    box-shadow: 0px 0px 2px #dddddc;
}
  
.total-coffee .border {
    border: 1px solid #dddddc;
}
  
.total-coffee .shadow:hover,
.total-coffee .shadow-light:hover {
    box-shadow: 0px 0px 15px #dddddc;
}
  
/* =================== */
/* === Text Styles === */
/* =================== */
  
.total-coffee .label {
    margin-top: 0.25em;
    font-size: 12px;
}
  
.total-coffee .emphasis {
    font-weight: 500;
}
  
.total-coffee .big {
    font-size: 22px;
    font-weight: 500;
}
  
.total-coffee .headline-lg {
    font-size: 48px;
    font-weight: 900;
    color: #cc0000;
}
  
.total-coffee .headline-md {
    font-size: 36px;
    font-weight: 900;
    color: #cc0000;
}
  
.total-coffee .headline-sm {
    font-size: 24px;
    font-weight: 900;
    color: #cc0000;
}
  
/* =================== */
/* === Link Styles === */
/* =================== */
  
.total-coffee .link {
    color: #0875e2;
    text-decoration: none;
}
  
.total-coffee .link:hover {
    text-decoration: underline;
}
  
.total-coffee .link.secondary {
    color: #000000;
    text-decoration: underline;
}
  
.total-coffee .link.secondary:hover {
    font-weight: 500;
}
  
.total-coffee .link.on-dark {
    color: #ffffff;
    text-decoration: underline;
}
  
.total-coffee .link.on-dark:hover {
    font-weight: 500;
}
  
/* ===================== */
/* === Button Styles === */
/* ===================== */
  
.total-coffee .button {
    color: #ffffff;
    background: #cc0000;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    border-radius: 22px;
    border: none;
    padding: 10px 30px;
    text-decoration: none;
    cursor: pointer;
}

.total-coffee .button:hover {
    color: #ffffff;
    background: #dd1700;
}
  
.total-coffee .button.on-dark {
    color: #cc0000;
    background: #ffffff;
}
  
.total-coffee .button.on-dark:hover {
    background: #f4f5f4;
}
  
.total-coffee .button.secondary {
    color: #000000;
    background: #ffffff;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
}
  
.total-coffee .button.secondary:hover {
    background: #f4f5f4;
}
  
.total-coffee .button.secondary.on-dark {
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
}
  
.total-coffee .button.secondary.on-dark:hover {
    background: rgba(0, 0, 0, 0.1);
}
  
.total-coffee .button.disabled {
    color: #ffffff;
    background: #dddddc;
    pointer-events: none;
}
  
/* ================== */
/* === Checkboxes === */
/* ================== */
  
.total-coffee .cbox-row {
    display: block;
}
  
.total-coffee .cbox-row input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
  
.total-coffee .cbox-row input:checked + label:before {
    background-color: #0875e2;
    border: 1px solid #0875e2;
}
  
.total-coffee .cbox-row input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
  
.total-coffee .cbox-row label {
    position: relative;
    cursor: pointer;
}
  
.total-coffee .cbox-row label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #979797;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px;
    top: -1px;
}
  
/* ===================== */
/* === Radio Buttons === */
/* ===================== */
  
.total-coffee .radio-row input:checked,
.total-coffee .radio-row input:not(:checked) {
    position: absolute;
    left: -9999px;
}
  
.total-coffee .radio-row input:checked + label,
.total-coffee .radio-row input:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}
  
.total-coffee .radio-row input:checked + label:before,
.total-coffee .radio-row input:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 18px;
    height: 18px;
    border: 1px solid #979797;
    border-radius: 100%;
    background: #ffffff;
}
  
.total-coffee .radio-row input:checked + label:after,
.total-coffee .radio-row input:not(:checked) + label:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 3px;
    left: 4px;
    border-radius: 100%;
}
  
.total-coffee .radio-row input:checked + label:before {
    background: #0875e2;
    border: none;
}
  
.total-coffee .radio-row input:checked + label:after {
    opacity: 1;
    transform: scale(1);
    background: #ffffff;
}
  
.total-coffee .radio-row input:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

