:root {
    --text: rgb(61, 62, 63);
    --nav-border: rgb(230, 231, 232);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html {
    font-size: initial;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

a {
    text-decoration: none !important;
    text-align: center;
    color: black !important;
    padding: 15px;
    font-size: 14px;
    transition: background-color 50ms;    
}

a:hover {
    background-color: #f7f8f9;
}

a:active {
    background-color: #f2f4f6;
}

a.logo-link:hover {
    background-color: initial;
    opacity: .85;    
}

a.logo-link:active {
    opacity: .7;    
}

nav * {
    line-height: normal;
}

nav {
    display: grid;
    grid-template-rows: minmax(min-content, 50px) min-content;
    position: relative;
}

nav .content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 11.7%;
    border-bottom: 1px solid var(--nav-border);
    background: white;
    z-index: 4;
}

nav .content .menu {
    display: none;
    cursor: pointer;
    transition: none;
    padding: 15px 25px;
    padding-top: 11px;
}

nav .content .menu:hover {
    user-select: none;
}

nav .dropdown {
    display: grid;
    background-color: white;
    padding: 0 9%;
    padding-right: 7%;
    position: absolute;
    right: 0;
    top: 50px;
    width: 60%;
    overflow: hidden;
    transition: transform 450ms, opacity 100ms;
    pointer-events: none;
    font-weight: bolder;
    opacity: 0;
    z-index: 3;
    transform: scale(.99);
}

nav .dropdown.dropdown--open {
    pointer-events: all;
    opacity: 1;
    box-shadow: 0 0 3px rgba(0,0,0,0.15), 1px 1px 2px rgba(0, 0, 0, 0.08);
    transform: scale(1);
    z-index: 6;
}

nav .dropdown ul {
    list-style-type: none;
}

nav .dropdown li:not(:first-child)::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--nav-border);
}

ul {
    margin-bottom: 0;
}

nav .dropdown li:last-child a {
    margin-bottom: .325rem;
}

nav .dropdown a {
    color: black;
    padding: 17px 0;
    display: block;
}

nav .content .links {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(min-content, 80px);
    white-space: nowrap;
    font-weight: bolder;
}

.link-dropdown {
    font-size: 14px;
    position: relative;
    padding: 15px;
    cursor: default;
    color: black;
}

.link-dropdown:hover~.link-items, .link-items:hover {
    display: flex;
}

.link-items a {
    display: block;
    text-align: initial;
}

.link-items {
    display: none;
    position: absolute;
    top: 49px;
    flex-wrap: wrap;
    flex-direction: column;
    height: 160px;
    align-content: flex-start;
    background: transparent;
}

.item {
    background: white;
    color: black;
}

.link-drop-calc, .link-drop-food {
    border-left: 1px solid var(--nav-border);
    border-right: 1px solid var(--nav-border);
}

.link-drop-exercise {
    border: 1px solid var(--nav-border);
    border-top: 0;
    padding-top: 16px;
}

.link-sub-fitness {
    border-right: 1px solid var(--nav-border);
    box-shadow: inset 0px 1px 0px 0px var(--nav-border);
}

.link-sub-keto {
    border-right: 1px solid var(--nav-border);
    border-bottom: 1px solid var(--nav-border);
    border-left: 1px solid var(--nav-border);
}

.link-sub-paleo {
    border-right: 1px solid var(--nav-border);
    border-top: 1px solid var(--nav-border);
}

.link-drop-calc, .link-drop-food {
    cursor: default;
}

.link-items div:not(.column-break, .--calculator, .--food) {
    font-size: 14px;
    padding: 15px;
}

.link-drop-calc:hover~.--calculator, .--calculator:hover, .link-drop-food:hover~.--food, .--food:hover {
    display: unset;
}

.--calculator, .--food {
    display: none;
    margin-left: -1px;
}

.column-break {
    height: 100%;
    padding: 0 !important;
}

.item-blank {
    color: transparent;
    user-select: none;
}

.logo-link {
    padding: 10px 15px;
    margin-top: 4px;
    transition: opacity 50ms;
}

.logo {
    width: 65px;
    pointer-events: none;
    vertical-align: initial !important;
}        

.container {
    display: grid;
    justify-content: center;
    grid-template-columns: minmax(30px, 476px) 250px;
    column-gap: 50px;
    grid-template-rows: auto;
    grid-template-areas: 
    "header header"
    "main-one main-two";
    position: relative;
}

.container--flip {
    grid-template-columns: 250px minmax(30px, 476px);
    grid-template-areas: 
    "header header"
    "main-two main-one";
    padding-bottom: 4rem;
}

.container--last {
    padding-bottom: 4rem
}

.container--torso {
    grid-template-columns: 200px minmax(30px, 531px);
    column-gap: 5px;
}

.container--heart {
    column-gap: 5px;
}

.main-content {
    padding: 0 15px;
    margin: auto;
    margin-bottom: 40px;
    max-width: 735px;
    position: relative;
}

.main-content--chart {
    margin-top: 50px;
    max-width: 1000px;
    opacity: 0;
    transition: opacity 150ms;
}

.epsilon, .epsilon-slash {
    display: inline-block;
}

.epsilon {
    transform: scaleY(.8);
    top: 3px;
    position: relative;
}

.epsilon-slash {
    transform: scaleY(.9);
    top: 1px;
    left: 135px;
    position: absolute;
    rotate: -10deg;
}

.chart-description {
    margin-bottom: 65px;
    font-size: 21px;
}

.chart-gender {
    font-size: 21px;
    color: var(--text);
    font-weight: bolder;
    margin-bottom: 32px;
}

.chart-gender-female, .chart-gender-male {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: red;
    position: relative;
    bottom: 3px;
    margin-right: 3px;
}

.chart-gender-female {
    background: rgb(242, 52, 114);     
}

.chart-gender-male {
    margin-left: 10px;
    background: rgb(105, 176, 209);     
}


.main-content--food {
    margin-left: 25%;
    max-width: 500px;
    visibility: hidden;
}

.main-content--food--visible {
    visibility: visible;
}

@media only screen and (max-width: 768px) {
    nav .content .menu {
        display: initial;
        position: absolute;
        right: .5%;
        top: 1px;
    }

    nav .content .links {
        display: none;
    }

    nav .content {
        padding-right: 0;
        justify-content: center;
    }
    
    .container, .container:nth-of-type(2) {
        padding: 0 20px;
        grid-template-columns: 1fr;
        justify-content: center;
        grid-template-areas: 
        "header"
        "main-one"
        "main-two"
    }
    
    a {
        text-align: initial;
    }
    
    .main-content--food {
        margin-left: auto !important;
    }

    .text-fine {
        display: none;
    }

    .item-c.head-img {
        position: relative;
        width: 163px;
        z-index: 1;
        left: 20px;
        margin: auto;
    }
    
    .item-c.head-img-two {
        opacity: .2;
    }
    
    .item-c.head-vid {
        position: relative;
        left: -6px;
        bottom: 74px;
        width: 88px;
        transform: rotate(-45deg) scaleX(-1);
        filter: invert(1);
        margin: auto;
    }
}

@media only screen and (min-width: 769px) {
    html {
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .text-coarse {
        display: none;
    }

    .text-desc--body {
        padding-left: 15px;
        padding-right: 35px;
    }
}

/* page banner */
.banner-grid {
    height: 8rem;
    font-size: 0;
    display: none;    
    mask: radial-gradient(circle, rgba(0,0,0, 1) 0, rgba(0,0,0, 1) 40%, rgba(0,0,0, 0) 85%, rgba(0,0,0, 0) 0);
}

.point {
    display: inline-block;
    width: 1rem;
    height: 1rem;
}

.point:first-of-type:not(.blood) {
    margin-top: 2rem;
}

.square-container {
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOAAAACACAYAAAAS2WW7AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCA1LjEuMvu8A7YAAAC2ZVhJZklJKgAIAAAABQAaAQUAAQAAAEoAAAAbAQUAAQAAAFIAAAAoAQMAAQAAAAIAAAAxAQIAEAAAAFoAAABphwQAAQAAAGoAAAAAAAAAYAAAAAEAAABgAAAAAQAAAFBhaW50Lk5FVCA1LjEuMgADAACQBwAEAAAAMDIzMAGgAwABAAAAAQAAAAWgBAABAAAAlAAAAAAAAAACAAEAAgAEAAAAUjk4AAIABwAEAAAAMDEwMAAAAADp1fY4ytpsegAAAltJREFUeF7t3UFKJEEQQNHWwfufVkTHsbUwT5Ah/El8DyTLlW3pr1oF8XC/399vv9vHOnc9rnPX9OdPTT//33XuelpnZfr5/6xzy/TmAwMChJAAISRACAkQQgKEkAAhJEAICRBCAoSQACEkQAgJEEIChJAAIfQT84DpPNWX6UNkOo/3b527pvNwp8/j/ep5SG9ACAkQQgKEkAAhJEAICRBCAoSQACEkQAgJEEIChJAAISRACAkQQgKE0DUP+Laud03n4aam84S16UPwdZ276odw/feb/v7mAeFUAoSQACEkQAgJEEIChJAAISRACAkQQgKEkAAhJEAICRBCAoSQACF0zQM+r+td9X656X68qdP3+50+z3n0fkRvQAgJEEIChJAAISRACAkQQgKEkAAhJEAICRBCAoSQACEkQAgJEEIChNA1D/iyrisf69xVP0RO//zTebjpfsLT5yntB4RTCRBCAoSQACEkQAgJEEIChJAAISRACAkQQgKEkAAhJEAICRBCAoTQNQ/4vq53TefhpvvppvvlHr6+7t+XW07f7ze9f/V+wen/n/2AsUl8MCJACAkQQgKEkAAhJEAICRBCAoSQACEkQAgJEEIChJAAISRACAkQOo/XPODz+mZXHfF0nu30eb56Hm56/6bq+z/iDQghAUJIgBASIIQECCEBQkiAEBIghAQIIQFCSIAQEiCEBAghAUJIgBC65gHf1vWuep5sOs+V7of7D5y+H3Aq/f29ASEkQAgJEEIChJAAISRACAkQQgKEkAAhJEAICRBCAoSQACEkQAgJEDK32yelNEemKtZdDgAAAABJRU5ErkJggg==');
    transition: background-color 100ms;
}

.square {
    border-radius: 3px;
    background-color: inherit;
    border-top: 1px solid rgb(252, 252, 252);
    border-left: 1px solid rgb(252, 252, 252);
    transition: opacity 1000ms, background-color 100ms;
}

/* .square--fade-out > .square {
    background-color: black;
} */

.square--animate {
    opacity: 0 !important;
}

.blood-grid {
    width: 100%;
    height: 128px;
    position: absolute;
    top: 50px;
    opacity: 0;
    transition: opacity 200ms;
}

.blood-backdrop {
    width: 100%;
    height: 128px;
    background: rgb(255, 255, 245);
    position: absolute;
    pointer-events: none;
    top: 50px;
    mask: radial-gradient(circle, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 0);
    opacity: 0;
    transition: opacity 100ms;
}

.blood-backdrop--200 {
    transition: opacity 200ms;
}

.blood-container {
    height: 8rem;
    width: 100%;
    top: .7rem;
    position: absolute;
    mask: radial-gradient(circle, rgba(0,0,0, 1) 0,   rgba(0,0,0, 1) 40%, rgba(0,0,0, 0) 85%, rgba(0,0,0, 0) 0);
}

.blood {
    position: absolute;
    left: -2rem;
}

.blood-outer {
    font-size: 3.2px;
    width: 7.6em;
    height: 7.6em;
    opacity: 0.8;
}

.blood-middle {
    background: rgb(240, 0, 0);
    width: 4.5em;
    height: 5em;
    border-radius: 50%;
    margin: auto;
}

.blood-inner {
    background: rgb(228, 0, 42);
    width: 2em;
    height: 2em;
    border-radius: 50%;
    position: relative;
    left: 1em;
    top: 1em;
}

.blood--animate-one {
    animation: flow 5s linear infinite;
}

@keyframes flow {
    100% { transform: translate(100vw) rotate(var(--blood-rotate)) }
}

.contact-grid {
    position: absolute;
    pointer-events: none;
    top: 50px;
    width: 100%;
    mask: radial-gradient(circle, rgba(0,0,0, 1) 0,   rgba(0,0,0, 1) 40%, rgba(0,0,0, 0) 85%, rgba(0,0,0, 0) 0);
    opacity: 0;
    transition: opacity 100ms;
}

.contact-grid-sub {
    position: relative;
    height: 8rem;
    background-size: 1rem 1rem;
    background-image:
        linear-gradient(to right, rgb(232, 232, 237) 1px, transparent 1px),
        linear-gradient(to bottom, rgb(232, 232, 237) 1px, transparent 1px);
    mask: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

#contact-comments {
    width: 100%;
    max-width:655px;
    height: 105px;
    margin-bottom: 15px;
    padding: 6px;
}

#contact-address {
    margin-right: 10px;
    display: none;
}

.banner-404 {
    position: absolute;
    top: 50px;
    height: 138px;
    width: 100%;
    background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+CjxyZWN0IHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgZmlsbD0icmdiKDI0Niw3MCw3MCkiPjwvcmVjdD4KPGcgZmlsbD0icmdiKDIzNywxMiwxMikiPgo8cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjIiIHk9IjIwIj48L3JlY3Q+CjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMiIgeT0iNDAiPjwvcmVjdD4KCgo8cmVjdCB3aWR0aD0iMiIgaGVpZ2h0PSIxMDAiIHg9IjIwIj48L3JlY3Q+CjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjEwMCIgeD0iNDAiPjwvcmVjdD4KCgo8L2c+CjxyZWN0IHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiPjwvcmVjdD4KPC9zdmc+") repeat 0 38px;
}

/* misc */
#c {
    position: absolute;
    display: block;
    bottom: -48px;
    left: -135px;
    filter: saturate(4);
}

.canvas-container {
    width: 34px;
    height: 16px;
    display: inline-block;
    position: relative;
    transform: scale(.55);
    z-index: -1;
}

.bc-icon {
    animation: roll 4.5s infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 400ms;
}

@keyframes roll {
    20% { transform: translate(-12px) rotate(-51deg) }
    40% { transform: translate(2px) rotate(5deg) }
    60% { transform: translate(-2px) rotate(-6deg) }
    72% { transform: translate(-10px) rotate(-45deg) }
    84% { transform: translate(4px) rotate(11deg) }
    95% { transform: translate(-1px) rotate(-3deg) }
    100% { transform: translate(0px) rotate(0deg) }
}

.heading:first-of-class {
    margin: 10px 0 20px;
}

.heading {
    font-size: 36px;
    padding-bottom: 9px;
    margin: 20px 0 20px;
    border-bottom: 1px solid #eee;
}

.heading--extra-margin {
    margin: 3.25rem 0 20px;
}

.demo-img-container {
    position: relative;
    pointer-events: none;
    user-select: none;
    margin: auto;
}

.exercise-img-container {
    box-shadow: 0 0 6px rgba(88, 88, 88, 0.06), 0 2px 2px rgba(88, 88, 88, 0.08), 0 4px 4px rgba(88,88,88,.08), 0 8px 8px rgba(88,88,88,.08);
    height: 163px;
    position: relative;
    pointer-events: none;
    width: 250px;
    margin: auto;
}

.exercise-img {
    position: absolute;
    width: 90px;
}

.exercise-img--a {
    top: 64px;
    left: 20px;
    rotate: -10deg;
}

.exercise-img--b {
    top: 5px;
    left: 80px;
    rotate: -3deg;
}

.exercise-img--c {
    top: 48px;
    left: 158px;
    rotate: 7deg;
}

.demo-img {
    box-shadow: 0 0 6px rgba(88, 88, 88, 0.06), 0 2px 2px rgba(88, 88, 88, 0.08), 0 4px 4px rgba(88,88,88,.08), 0 8px 8px rgba(88,88,88,.08);
    min-height: 163px;
}

.food-img {
    width: 80px;
    height: 60px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-img--a {
    left: 12px;
    top: 39px;
}

.food-img--b {
    left: 144px;
    top: 7px;
}

.food-img--c {
    left: 105px;
    top: 96px;
}

.demo-img--calc {
    display: none;
    margin: auto;
}

.heart-img {
    width: 180px;
    position: relative;
    top: -10px;
    left: 0px;
    z-index: 1;
    margin: auto
}

.heart-vid {
    position: relative;
    top: 4px;
    left: -10px;
    width: 140px;
    filter: invert(1);
    margin: auto;
}

.head-img {
    position: absolute;
    width: 163px;
    z-index: 1;
    left: 20px;
}

.head-img-two {
    opacity: .2;
}

.heart-vid, .head-vid {
    animation: fadeIn 200ms forwards;
}

.head-vid {
    position: relative;
    left: 33px;
    bottom: 40px;
    width: 88px;
    transform: rotate(-45deg) scaleX(-1);
    filter: invert(1);
}

.img--placeholder {
    z-index: -1;
}

.item-a {
    grid-area: header;
}

.item-b {
    grid-area: main-one;
}

.item-c {
    grid-area: main-two;
}

.text-desc {
    font-size: 20px;
    margin-bottom: 27px;
}

.text-desc--contact {
    font-size: 21px;
    margin-bottom: 20px;
}

.heading, .text-desc {
    color: var(--text);
}

.question, .network-name {
    font-weight: bolder;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 24px;
}

.question, .answer {
    font-size: 21px;
}

.answer {
    margin-bottom: 48px;
}

.lead:last-of-type {
    margin-bottom: 32px;
}

.network-name {
    padding: 0 8px;
}

.network-address {
    color: rgb(195, 195, 195);
    font-size: 21px;
    
}

.network-container {
    position: relative;
    overflow-wrap: break-word;
    margin-bottom: 10px;
}

.eth-static {
    position:absolute;
    left: -2px;
    top: -5px;
    transition: opacity 250ms;
}

.eth-static--hide {
    opacity: 0;
}

#contact-button {
    padding: 3px 7px;
}

.sponsored-bubble {
    display: inline-block;
    transform: scaleY(.9);
    border-radius: 3px;
    padding: .25rem .4rem;
    font-family: monospace;
    font-weight: bold;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.25);
    background-color: rgb(252, 253, 254);
    color: #5c5c5c;
    margin-top: 1.8rem;
    pointer-events:none;
    user-select:none;
    animation: op2 99s infinite;
}

#product-container {
    margin-bottom: 1.2rem;
}

#product-container a:last-of-type {
    margin-bottom: 0;
}

.product-link, .sponsored-bubble {
    margin-bottom: 1.5rem;
}

.product-link {
    text-decoration: none !important;
    color: black !important;
    font-size: inherit;
    text-align: initial;
    padding: 0;
    display: block;
}

.product-link:hover, .product-link:active {
    background-color: initial;
}

.product-grid-container {
    display: grid;
    grid-template-columns: minmax(3.125rem,10rem) minmax(0,1fr);
    grid-template-rows: minmax(auto, 7rem);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15), 0 0px 2px rgba(0, 0, 0, 0.08);
    padding: 1.2rem;
    position: relative;
}

.product-grid-container:hover {
    cursor: pointer;
}

.product-grid-container:hover .product-grid-url {
    color: #1d85da;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    padding-right: 1rem;
}

.product-grid-text {
    z-index: 1;
}

.product-grid-title {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: .75;
}

.product-grid-url {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color:rgba(0, 0, 0, 0.4);
    transition: color 75ms;
}

.product-grid-title, .product-grid-url {
    padding-right: 2rem;
}

#sponsor-button {
    padding: 3px 7px;
}

.terms-label {
    padding-left: 7px;
}

.terms-note {
    display: inline-block;
    font-family: monospace;
    margin-top: 10px;
    border-left: 3px solid rgb(237, 236, 229);
    padding: 10px;
    padding-left: 20px;
    line-height: 1.1rem;
}

.sponsor-input-desc--address, .sponsor-address {
    display: none;
}

.sponsor-input-desc {
    font-family: monospace;
    color: rgb(169, 169, 177);
    color: rgb(111, 113, 116);
    font-weight: bold;
    margin-bottom: .6rem;
}

.sponsor-input-url {
    display:block;
    height: 45px;
    font-size: 18px;
    width: 85%;
    padding: 0 10px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(118, 118, 118);
    border-radius: 2px;
    caret-color: transparent;
}

.sponsor-input-url:disabled {
    border-color: rgb(208, 208, 208);
}

.sponsor-url-container {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}

.sponsor-address {
    font-size: 18px;
    margin-bottom: 27px;
}

.sponsor-address-string {
    word-break: break-all;
}

.sponsor-hover {
    margin-right: 3px;
    padding-right: 5px;
}

.sponsor-hover--click {
    cursor: pointer;
}

.sponsor-price-container {
    font-size: .9em;
    opacity: .8;
    vertical-align: top;
}

.tap-expand {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(0,123,255,.7);
    bottom: 7px;
    left: 0;
    border-radius: 50%;
    position: relative;
    transition: opacity 150ms, transform 100ms;
}

.sponsor-hover:active .tap-expand {
    transform: scale(.9);
}

.promo {
    display: inline-block;
    background: red;
    color: white;
    font-weight: bold;
    padding: 0.1rem 0.6rem;
    padding-top: 0;
    border-radius: 50px;
    font-size: 12px;
    position: relative;
    left: -18px;
    bottom: 8px;
    transform: scale(.9);
    user-select: none;
}

.sponsor-input-url:focus+.sponsor-input-url-caret {
    width: 2px;
    height: 23px;
    background: rgba(0, 0, 0, .7);
    position: absolute;
    margin-left: 12px;
    pointer-events: none;
    border-radius: 1px;
}

.sponsor-loading-container {
    display: flex;
    position: relative;
    align-items: center;
    min-width: 3rem;
}

.sponsor-loading {
    transition: opacity 200ms;
    position: absolute;
    right: 10%;
}

.sponsor-loading--default {
    animation: spin 450ms infinite linear;
    -webkit-mask-image: conic-gradient(rgba(0, 0, 0, 0.12) 0deg, rgba(0, 0, 0, 0.12) 90deg, rgba(0, 0, 0, 0.12) 90deg, rgba(0, 0, 0, 0.12) 180deg, rgba(0, 0, 0, 0.12) 180deg, rgba(0, 0, 0, 0.12) 270deg, rgba(0, 0, 0, 0.87) 270deg);
    opacity: 0;
}

.sponsor-loading--success {
    fill: rgb(0, 211, 40);
    opacity: 0;
}

.sponsor-loading--fail {
    fill: red;
    opacity: 0;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.loading {
    position: absolute;
    top: 0px;
    display: none;
    z-index: 4;
    height: 3px;
    width: 9px;
    background: rgb(123,220,240);
    animation: move 1.5s linear infinite;
}

.hide {
    display: none !important;
}

.show {
    display: block
}

.product-shine {
    position: absolute;
    width: 230px;
    height: 170px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 30%,
                rgba(0, 0, 0, 1) 50%,
                rgba(255, 255, 255, 0) 70% 100%);
    filter: invert(1) blur(14px) opacity(0.42);
    animation: wave 3s cubic-bezier(.45,.05,.55,.95) infinite;
    z-index: 1;
}

@keyframes wave {
    0% { transform: translate(-20rem, 0); opacity: 1 }
    100% { transform: translate(10rem, 0) skew(10deg, 10deg); opacity: .3 }
}

.product-image {
    animation: upDownProduct 8s infinite, rotateProduct 5s linear infinite;
}

@keyframes upDownProduct {
    0% { transform: translate(0px, 0px) }
    50% { transform: translate(0px, 1px) }
}

@keyframes rotateProduct {
    25% { rotate: .25deg }
    75% { rotate: -.25deg }
}

.sparkle {
    --timescale: 1s;
    width: calc(1px * var(--w));
    height: calc(1px * var(--h));
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(rgb(255, 230, 183), rgb(255, 164, 60), rgb(255, 210, 0));
    background: radial-gradient(rgb(255, 230, 183), rgb(255, 127, 0), rgb(255, 208, 0));
    mask: radial-gradient(#0000 71%, #000 72%) 10000% 10000%/99.5% 99.5%;
    display: block;
    position: absolute;
    left: calc( var(--x) * 1%);
    top: calc( var(--y) * 1% );
    animation: moveRightLeft calc( var(--timescale) * var(--xt) ) infinite cubic-bezier(.45,.05,.55,.95) alternate , flicker calc( 2s * var(--xd) ) infinite alternate  cubic-bezier(.45,.05,.55,.95),
               moveUpDown calc( var(--timescale) * var(--yt) ) infinite cubic-bezier(.45,.05,.55,.95) alternate,
               fadeSparkle calc( 450ms * var(--xt) ) infinite cubic-bezier(.45,.05,.55,.95);
    animation-delay: calc( -1s * var(--d, 0) ) , calc( -0.2s * var(--d, 0) );
}

@keyframes fadeSparkle {
    50% { opacity: 1; }
    55% { opacity: 0.2; transform: scaleY(.9); filter:blur(14px)}
    60% { opacity: 1 }
    80% { opacity: 1; }
}

@keyframes moveUpDown {
    0% {}
    100% {transform:translateY( calc(50% * var(--yd, 3))  ); } 
}

@keyframes moveRightLeft {
    0% { transform:translateX(  calc(-50% * var(--xd, 3))  );}
    100% {transform:translateX(  calc(50% * var(--xd, 3))  ); }
}

@keyframes flicker{
    0% { opacity:calc( var(--o, 1) - 0.1); }
    100% { opacity:calc( var(--o, 1) + 0.1); }
}

.hr--contact {
    width: 50%;
    border: 0;
    border-top: 1px solid rgb(236, 238, 239);
    margin-bottom: 10px;
}

.footer-link {
    display: inline-block;
    cursor: pointer;
    color: #b7b7b7 !important;
    font-weight: bold;
    padding: 0;
}

.footer-icon {
    vertical-align: text-bottom;
    transform: scaleY(.8);
    position: relative;
    top: 2px;
}

.footer-link, .footer-icon {
    transition: color 150ms, fill 150ms;
}

.footer-link:hover, .footer-link:active {
    background-color: initial;
}

.footer-link:hover, .footer-link:hover svg {
    color: #5f6368 !important;
    fill: #5f6368;
}

.footer-link:active, .footer-link:hover:focus, .footer-link:active svg, .footer-link:hover:focus svg {
    color: rgb(61, 62, 63) !important;
    fill: rgb(61, 62, 63);
}

.demo-macros {
    pointer-events: none;
    max-width: 250px;
    margin: auto;
    box-shadow: 0 0 6px rgba(88, 88, 88, 0.06),
                0 2px 2px rgba(88, 88, 88, 0.08),
                0 4px 4px rgba(88, 88, 88, .08),
                0 8px 8px rgba(88, 88, 88, .08);
}

.demo-calc-container {
    width: 250px;
    height: 163px;
    position: relative;
    opacity: 0;
    transition: opacity 1.2s;
}

.demo-dot-container {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    pointer-events: none;
}

#cube {
    position: absolute;
    z-index: 10;
    width: 18px;
    height: 18px;
    animation: rotate 10s linear infinite;
    display: none;
}

@keyframes rotate {
    100% {transform: rotate(360deg);}
}

.demo-dot {
    pointer-events: auto;
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border-radius: 3px;
    opacity: 0;
    scale: .3;
    z-index: 5;
}

.demo-dot--z-spawn {
    z-index: 3;
}

.demo-dot--z-spawn-mobile {
    z-index: 7;
}

.demo-dot--t-spawn {
    transition: opacity 2s, scale 1s, border-radius .5s, left 2s, top 2s;
}

.demo-dot--t-spawn-square {
    pointer-events: none;
    transition: border-radius .5s,
                scale 1s,
                opacity 1s,
                left 2s ease-out,
                top 2s linear,
                transform-origin 700ms,
                rotate 1s,
                height 1s,
                width 1s;
}

.demo-dot--no-click {
    pointer-events: none;
}

.demo-dot--transition-fields {
    transition: scale 1s, top ease-in-out 2s, left cubic-bezier(0.39, 0.575, 0.99, 1) 2s, transform-origin 500ms;
}

.demo-dot--transition-range {
    transition: scale 1s, left ease-out 2s, transform-origin 500ms;
}

@keyframes jump {
    50% { transform: scale(200); }
}

/* @keyframes jump {
    50% { width: 500px; height: 500px;}
} */

@keyframes stand-by {
    100% {
        transform: translate(2px, 2px);
    }
}

@keyframes spawn-square {
    100% {
        transform: translate(-1px, 0px);
    }
}

.demo-dot--square-init {
    border-top: 1px solid white;
    border-left: 1px solid white;
    animation: spawn-square 500ms ease-in-out alternate;
    animation-iteration-count: 2;
}

.demo-dot--stand-by {
    animation: stand-by 1s ease-in-out infinite alternate;
}

.pulse-one, .pulse-two {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    /* border-radius: 4px; */
    /* display: none; */
}

.pulse-one {
    animation: bs-xl 1300ms cubic-bezier(0.215,0.61,0.355,1);
    animation-play-state: paused;
}

.pulse-two {
    animation: bs-lg 1300ms cubic-bezier(0.215,0.61,0.355,1);
    animation-delay: 300ms;
    animation-play-state: paused;
}

@keyframes spawn-dot {
    0% {  opacity: 0; transform: scale(.8); }
    100% { opacity: 1; transform: scale(1); }
}

.demo-dot--bg, .pulse-one, .pulse-two {
    pointer-events: none;
}

.demo-dot--bg {
    animation: spin 30s linear infinite;
    animation-delay: 2s;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255), rgb(76, 162, 255));
    border-radius: inherit;
    opacity: 0.7;
    position: absolute;
}

/* .demo-dot--bg {
    display: none;
} */

/* .demo-dot--bg {
    border-radius: 0;
} */

.click {
    animation: click .5s;
}

@keyframes click {
    50% { transform: scale(.85) }
}

.fade-in--force {
    opacity: 1 !important;
}

.fade-out--force {
    opacity: 0 !important;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

@keyframes bs-lg {
    0%{box-shadow:0 0 0 0 rgba(0,123,255,.3)}
    100%{box-shadow:0 0 0 12px rgba(0,123,255,0)}
}

@keyframes bs-xl {
    0% { box-shadow:0 0 0 0 rgba(0,123,255,.3) }
    100% { box-shadow:0 0 0 14px rgba(0,123,255,0) }
}

@media only screen and (max-width: 425px) {
    .product-grid-container {
        grid-template-columns: minmax(3.125rem, 8rem) minmax(0, 1fr);    
    }

    .product-grid-title, .product-grid-url {
        padding-right: 0;
    }

    .container--torso {
        padding-bottom: 0;
    }

    .heart-img {
        left: 6px;
    }

    .heart-vid {
        left: -4px;
    }

    .item-c.head-img {
        left: 11px;
    }

    .item-c.head-vid {
        left: -17px;
    }

    .item-c.heart-img, .item-c.heart-vid, .item-c.head-img, .item-c.head-vid  {
        display: none;
    }

    .main-content--food {
        font-size: 15px;
    }

    .contact-grid {
        mask: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 85%, rgba(0, 0,0, 0) 100%);
    }

    body {
        margin-bottom: 1rem;
    }

    @keyframes scale {
        50% { transform: scale(38); }
    }
}

.chart-container {
    margin-bottom: 80px;
    font-weight: bold;
}

.chart-container table {
    display: grid;
    border-collapse: collapse;
    min-width: 100%;
    grid-template-columns: 
        minmax(120px, 1fr)
        minmax(130px, 1fr)
        minmax(140px, 1fr)
        minmax(130px, 1fr)
        minmax(130px, 1fr)
        minmax(140px, 1fr)
        minmax(130px, 1fr)
}
  
.chart-container thead,
.chart-container tbody,
.chart-container tr {
    display: contents;
}

.chart-container th:nth-last-child(-n+6), .chart-container td:nth-last-child(-n+6) {
    color: rgb(242, 52, 114);
}

.chart-container th:nth-last-child(-n+3), .chart-container td:nth-last-child(-n+3) {
    color: rgb(105, 176, 209);
}
  
.chart-container th,
.chart-container td {
    /* padding: 15px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}
  
.chart-container th {
    background: #eff3f2;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    color: rgb(66, 66, 66) !important;
}
  
.chart-container th:last-child {
    border: 0;
}
  
.chart-container td {
    /* padding-top: 10px; */
    /* padding-bottom: 10px; */
    color: #808080;
}
  
.chart-container tr:nth-child(even) td {
    background: #f8f6ff;
}

/* animation */
.tap-demo { display: none;width: 0; opacity:0;position:relative;left:120px;bottom:35px;animation:fade-in 5300ms infinite;animation-iteration-count:1;pointer-events:none;z-index:1;animation-delay:300ms; animation-fill-mode: forwards }
.tap-demo-pieces { width:105px;height:105px;position:absolute;animation:grow-once 1000ms infinite;animation-iteration-count:1;animation-delay:300ms }
.shape { margin:40px;width:25px;height:25px;position:absolute;top:0;border-radius:50%}
.pulse1 { background:rgba(0,0,0,0);animation:shadow-pulse2 1300ms cubic-bezier(0.215,0.61,0.355,1);animation-iteration-count:1;animation-delay:1300ms }
.pulse2 { background:rgba(0,0,0,0);animation:shadow-pulse 1300ms cubic-bezier(0.215,0.61,0.355,1);animation-iteration-count:1;animation-delay:1600ms }
.tap { background:rgba(0,123,255,.7);animation:grow 400ms cubic-bezier(0.215,0.61,0.355,1);animation-iteration-count:1;animation-delay:3100ms }
.load { display: block;pointer-events:none;position: absolute;width: 1.5rem;height: 1.5rem;top: 6rem;left:50%;transform: scale(.8) translate(-50%,0);animation:fadeIn 200ms}
.box1, .box2 { position: absolute;display: inline-block;width: .5rem;height: .5rem;animation-duration: 1.1s;animation-iteration-count: infinite;}
.box1 { background: rgb(210, 211, 212);animation-name: route1;animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);}
.box2 { top: .5rem;left: .5rem;background: rgb(128, 128, 128);animation-name: route2;animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955)}
@keyframes route1 { 20% { transform: translate(.5rem); } 30% { transform: translate(.5rem, .5rem); } 40% { transform: translate(.5rem, 1rem); } 50% { transform: translate(1rem, 1rem);}
    60% { transform: translate(1rem, .5rem); } 70% { transform: translate(.5rem, .5rem); } 80% { transform: translate(0rem, .5rem); } 100% { transform: translate(0rem, 0rem);}}
@keyframes route2 { 25% { transform: translate(-.5rem); } 50% { transform: translate(-.5rem, -.5rem); } 75% { transform: translate(0rem, -.5rem);}}
@keyframes fade-in { 0% { opacity: 0; } 30% {opacity: 1; transform: translate(0px, 0px) } 40% { transform: translate(0px, 0px) } 50% { transform: translate(-5px, 15px) } 65% { opacity: 1} 73% {opacity: 0; transform: translate(-5px, 15px) } }
@keyframes shadow-pulse{0%{box-shadow:0 0 0 0 rgba(0,123,255,.3)}100%{box-shadow:0 0 0 25px rgba(0,123,255,0)}}
@keyframes shadow-pulse2{0%{box-shadow:0 0 0 0 rgba(0,123,255,.3)}100%{box-shadow:0 0 0 28px rgba(0,123,255,0)}}
@keyframes grow-once{0%{transform:scale(0)}100%{transform:scale(1)}}
@keyframes grow{0%{transform:scale(1)}60%{transform:scale(.7)}100%{transform:scale(1)}}
@keyframes op {0%{filter: opacity(1)}40%{filter: opacity(.7)}100%{filter: opacity(1)}}
@keyframes op2 {0%{opacity: 1; transform: scaleX(1) scaleY(.9)}40%{opacity: .88; transform: scaleX(.99) scaleY(.89)}100%{opacity: 1; transform: scaleX(1) scaleY(.9)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes move {from{transform: translate(0)}to{transform: translate(20vw, 0) scale(1.8, 1.1)}};
@keyframes bounce { 0% { transform: scaleX(1.2) scaleY(0.8) translateY(1px); } 40% { transform: scaleX(1) scaleY(1) translateY(-2px); } 70% { transform: scaleY(1) } 90% { transform: scaleX(1) translateY(0px); }}