:root {
    --color-tone-1: #1a1a1b;
    --color-tone-2: #454747;
    --color-tone-3: #a9abad;
    --color-tone-4: #d3d6da;
    --color-tone-5: #edeff1;
    --color-tone-6: #e8f0f8;
    --color-tone-7: #fff;
    --green: #89520F;
    --yellow: #D7AB52;
    --opacity-50: hsla(0, 0%, 100%, .5);
    --easing: cubic-bezier(0.19, 1, 0.22, 1);
    --orange: #f27f1d;
    --blue: #4285f4;
    --font-size: 20px;
    --board-size: 450px;
    --game-width: 700px;
    --tile-font-size: 2rem;
    --vertical-spacing: 0.7rem;
    --title-font: "Kanit", sans-serif;
    --title-font-weight: 700;
    --tile-font: var(--title-font);
    --tile-font-weight: var(--title-font-weight)
}


.modal {
    background: rgba(0, 0, 0, .5);
    display: flex;
    left: 0;
    max-height: 100%;
    min-height: 100%;
    opacity: 0;
    overflow-y: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity .3s var(--easing);
    width: 100%;
    z-index: 10
}

.modal .modal__content {
    background-color: var(--color-tone-7);
    border-radius: 5px;
    margin: auto;
    margin: var(--vertical-spacing) auto;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: .5rem 1rem;
    position: relative;
    transform: translateY(10%);
    transition: transform .3s var(--easing);
    width: 100%;
    width: 600px
}

.modal .modal__content>* {
    margin: auto
}

.modal .modal__content header {
    background: var(--color-tone-7);
    margin: -.5rem -1rem 1rem;
    padding: 0;
    position: sticky;
    top: -.5rem
}

.summary .row button {
    margin: 0 0.5rem;
}

button:not(.icon-button) {
    height: 2.7rem;
    padding: 0 2rem;
}

button {
    align-items: center;
    background-color: var(--green);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-family: var(--tile-font);
    font-size: var(--font-size);
    font-weight: var(--tile-font-weight);
    letter-spacing: calc(var(--font-size)*.1);
    line-height: var(--font-size);
    text-align: center;
    text-transform: uppercase;
    transition: background-color .2s var(--easing);
}

.modal .modal__content header button {
    align-items: center;
    display: flex;
    height: 3rem;
    justify-content: center;
    width: 3rem
}

.modal .modal__content header button svg {
    height: 1.5rem;
    width: 1.5rem
}

.modal .modal__content h1 {
    flex-grow: 1;
    font-size: 1.4rem
}

.modal .modal__content>:not(header) {
    margin: var(--vertical-spacing)
}

.modal .modal__content hr {
    border: solid var(--color-tone-4);
    border-width: 1px 0 0;
    margin: calc(var(--vertical-spacing)*2);
    opacity: 1
}

.modal .modal__content p {
    text-align: left
}

.modal .modal__content .tile {
    font-size: 27px;
    height: 50px;
    margin: 2px;
    pointer-events: none;
    position: static;
    width: 50px
}

.modal.modal--show {
    opacity: 1;
    pointer-events: all
}

.modal.modal--show .modal__content {
    transform: translateY(0)
}

.modal.success .modal__content {
    border-radius: 0;
    height: auto;
    margin: 33vh auto auto;
    padding: 0 1rem;
    position: static;
    width: 100%
}

.modal.success .modal__content h2 {
    font-size: 2rem
}

.modal.settings .modal__content {
    border: 1px solid var(--color-tone-4);
    box-shadow: 1px 5px 14px rgba(0, 0, 0, .24), 0 1px 3px rgba(0, 0, 0, .32);
    margin: auto
}

.modal.settings .modal__content .row {
    justify-content: space-between
}

.modal.settings .modal__content p {
    text-align: center
}

.modal.settings .modal__content p:not(.smalltext) {
    margin-bottom: 1.2rem;
    margin-top: -5px
}

.modal.settings .warning,
.modal.settings.settings__timezone-disabled .smalltext {
    display: none
}

.modal.settings.settings__timezone-disabled .warning {
    display: block;
    margin: 1rem 2rem
}

.modal.settings.settings__timezone-disabled .settings__timezone-row {
    opacity: .3;
    pointer-events: none
}

.modal.settings footer {
    border-bottom: none;
    color: var(--color-tone-3);
    font-size: .8rem;
    line-height: 1.2rem;
    margin: 1rem -1rem -.5rem;
    padding: .8rem 1rem;
    text-align: center;
    width: auto
}

.modal.settings .settings__hidesupport-row {
    display: none
}

.body--supporter .modal.settings .settings__hidesupport-row {
    display: flex
}

.modal.help .modal__content {
    margin: 0 auto;
    width: var(--game-width)
}

.modal.help .modal__content p {
    line-height: 1.4em;
    text-align: justify
}

.modal.help .modal__content h2 {
    font-size: 1.3rem
}

.modal.help .modal__content .grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.modal.help .modal__content .grid5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

.modal.help .modal__content .copyright {
    display: block
}

.modal.statistics .modal__content {
    margin-bottom: auto;
    margin-top: auto;
    max-height: 95vh;
    padding-bottom: 2rem
}

.modal.statistics header {
    border-bottom: none;
    margin-bottom: calc(var(--vertical-spacing))
}

.modal.statistics .stat-row {
    margin: 0 -1rem;
    width: calc(100% + 2rem)
}

.modal.statistics .stat-row.games-played {
    border-top: 1px solid var(--color-tone-4)
}

.modal.statistics h3 {
    margin-top: calc(var(--vertical-spacing)*2)
}

.modal.statistics .playerid {
    bottom: 8px;
    left: 0;
    margin: 0;
    position: absolute;
    right: 0;
    text-align: center
}

.modal.statistics .stats {
    margin-left: -1rem;
    margin-right: 1rem;
    width: calc(100% + 2rem)
}

.modal.statistics .stats__label:first-child {
    padding-left: 1rem;
    padding-right: .5rem;
    width: 4rem
}

.modal.statistics .stats__label:nth-child(3) {
    padding-right: 1rem;
    width: 4rem
}

.switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px
}

.switch input {
    height: 0;
    opacity: 0;
    width: 0
}

.slider {
    background-color: var(--color-tone-4);
    border-radius: 30px;
    bottom: 0;
    cursor: pointer;
    left: 0;
    right: 0;
    top: 0
}

.slider,
.slider:before {
    position: absolute;
    -webkit-transition: .4s;
    transition: .4s
}

.slider:before {
    background-color: #fff;
    border-radius: 50%;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    width: 26px
}

input:checked+.slider {
    background-color: var(--green)
}

.switch--no-color .slider {
    background-color: var(--yellow)
}

.switch--no-color input:checked+.slider {
    background-color: var(--green)
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--green)
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px)
}

* {
    transition: background-color .2s var(--easing), color .2s var(--easing)
}

.button {
    align-items: center;
    background-color: var(--green);
    border: none;
    border-bottom: 4px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-family: var(--tile-font);
    font-size: var(--font-size);
    font-weight: var(--tile-font-weight);
    letter-spacing: calc(var(--font-size)*.1);
    line-height: var(--font-size);
    text-align: center;
    text-transform: uppercase;
    transition: background-color .2s var(--easing)
}

.button:active,
.icon-button:active {
    border: none;
    transform: translateY(2px)
}

.button:not(.icon-button) {
    height: 2.7rem;
    padding: 0 2rem
}

.button:not(.icon-button) svg {
    fill: #fff;
    margin-left: 0;
    margin-right: .3rem;
    opacity: .7;
    transform: translateX(-.5rem)
}

.icon-button {
    background-color: var(--color-tone-6);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 2.4rem;
    margin: 0 .5rem;
    padding: .6rem;
    width: 2.4rem
}

.icon-button img,
.icon-button svg {
    fill: var(--color-tone-1);
    height: 100%;
    width: 100%
}

.icon-button img {
    margin: 0
}

.button--showsolution {
    display: none
}

.button--close {
    background: none;
    padding: .9rem
}

.button--blank {
    background: none !important;
    pointer-events: none
}

.button img {
    height: 32px;
    margin: 0 .5rem;
    object-fit: contain;
    width: 32px
}

.button:disabled,
.icon-button:disabled {
    opacity: .4;
    pointer-events: none
}

.tile {
    align-items: center;
    background-color: var(--color-tone-5);
    border: 5px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    font-family: var(--tile-font);
    font-size: var(--tile-font-size);
    font-weight: var(--tile-font-weight);
    height: var(--tile-size);
    justify-content: center;
    position: absolute;
    transition: transform .3s var(--easing), background-color 1s var(--easing);
    width: var(--tile-size);
    color: #604122;
}

.tile--dragging {
    box-shadow: 2px 4px 10px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .25);
    transition: transform .2s var(--easing), zoom .2s var(--easing);
    z-index: 1
}

.tile--dropped {
    z-index: 1
}

.tile:empty {
    border: none;
    opacity: .5
}

.gameover .space {
    opacity: 0
}

.tile.blank {
    background-color: var(--color-tone-7);
    border: none
}

.green {
    background-color: var(--green);
    color: #fff;
    cursor: default;
    border-color: #D7AB52;
}

.yellow {
    background-color: var(--yellow);
    color: #fff
}

.space {
    border: 2px solid var(--color-tone-5);
    border-radius: .4rem;
    height: var(--tile-size);
    position: absolute;
    width: var(--tile-size)
}

.animate,
.animate--infinite {
    animation: rainbow .9s linear, bounce .6s linear
}

.animate,
.animate--infinite,
.html--darkmode .animate,
.html--darkmode .animate--infinite {
    --red: #c95050;
    --blue: #5c85b0;
    --purple: #805cb0
}

.animate--infinite {
    animation: rainbow 4s linear infinite
}

@keyframes rainbow {
    0% {
        background-color: var(--green)
    }

    20% {
        background-color: var(--yellow)
    }

    40% {
        background-color: var(--red)
    }

    60% {
        background-color: var(--purple)
    }

    80% {
        background-color: var(--blue)
    }

    to {
        background-color: var(--green)
    }
}

@keyframes bounce {
    0% {
        margin-top: 0
    }

    30% {
        margin-top: -20px
    }

    70% {
        margin-top: 6px
    }

    90% {
        margin-top: -8px
    }

    to {
        margin-top: 0
    }
}

html {
    background-color: var(--color-tone-5);
    color: var(--color-tone-1);
    font-family: Lato, sans-serif;
    font-size: var(--font-size);
    height: 100%;
    overflow: hidden;
    overscroll-behavior: contain
}

body {
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
    left: 0;
    margin: auto;
    overscroll-behavior: contain;
    padding: 0;
    right: 0;
    font-family: 'Kanit', sans-serif;
    width: 100%
}

.centre,
body {
    height: 100%;
    max-width: 100%;
    position: relative
}

.centre {
    background-color: var(--color-tone-7);
    margin: 0 auto;
    overflow: hidden;
    width: 700px
}

hr {
    border: solid var(--color-tone-4);
    border-width: 1px 0 0;
    opacity: .3;
    width: 100%
}

:not(input) {
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none
}

main {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: visible
}

h1,
h3 {
    font-family: var(--title-font);
    font-weight: var(--title-font-weight)
}

h1,
h2,
h3,
h4 {
    margin: 0;
    text-align: center;
    text-transform: uppercase
}

h1 {
    font-size: 1.8rem;
    letter-spacing: .1rem;
    line-height: 1.8rem
}

h2,
h3 {
    font-size: 1rem
}

h2,
h3,
h4 {
    letter-spacing: 1px
}

h4 {
    color: var(--color-tone-3);
    font-size: .8rem
}

label {
    letter-spacing: 1px;
    text-transform: uppercase
}

a,
a:hover,
a:visited {
    color: var(--green);
    text-decoration: none
}

footer {
    background-color: var(--color-tone-6);
    border-bottom: 1px solid var(--color-tone-4);
    border-top: 1px solid var(--color-tone-4);
    color: var(--color-tone-3);
    font-size: .9rem;
    margin-top: calc(var(--vertical-spacing)*2);
    padding: 1rem;
    text-align: center;
    width: 100%
}

footer button {
    margin: auto;
    margin-bottom: var(--vertical-spacing);
    margin-top: var(--vertical-spacing)
}

.body--supporter footer {
    display: none !important
}

.waffle-heart {
    transform: translateY(1px)
}

.row {
    flex-direction: row
}

.col,
.row {
    align-items: center;
    display: flex;
    justify-content: center
}

.col {
    flex-direction: column
}

.warning {
    font-weight: 700
}

.smalltext {
    color: var(--color-tone-3);
    font-size: .8rem;
    line-height: 1.2rem;
    text-align: center
}

.error {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center
}

.copyright,
.error {
    color: var(--color-tone-3);
    width: 100%
}

.copyright {
    font-size: 13px;
    opacity: .5;
    text-align: center
}

body>.copyright {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0
}

.switch-tab {
    background-color: var(--color-tone-6);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0 4px 4px;
    padding: 8px 4px;
    text-align: center;
    width: 50%
}

.switch-tab span:first-child {
    font-size: .7rem
}

.switch-tab span:nth-child(2) {
    font-weight: 700
}

.switch-tab span:nth-child(3) {
    font-size: .7rem
}

.switch-tab__selected {
    background-color: var(--green);
    color: #fff
}

.tab {
    background-color: var(--color-tone-6);
    border: 1px solid var(--color-tone-4);
    border-radius: 99px;
    color: var(--color-tone-2);
    justify-content: center;
    margin: 0 .4rem;
    max-height: 42px;
    max-width: calc(50vw - .8rem);
    width: 12rem
}

.tab--active {
    background-color: var(--green);
    color: #fff
}

.preloader {
    align-items: center;
    display: flex;
    height: 200px;
    justify-content: center;
    width: 100%
}

.preloader img {
    animation: spin 1s linear infinite;
    height: 50px;
    object-fit: contain;
    width: 50px
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.menu {
    align-items: left;
    background-color: var(--color-tone-6);
    bottom: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2), 0 0 500px rgba(0, 0, 0, .4);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    left: 0;
    max-width: 100%;
    position: absolute;
    top: 0;
    width: 350px;
    z-index: 100
}

.menu h2 {
    flex-grow: 1;
    font-size: 1.3rem;
    height: 4rem;
    line-height: 4rem;
    margin-left: 1rem;
    text-align: left
}

.menu hr {
    border-color: var(--color-tone-3);
    margin-top: 20px;
    opacity: .5
}

.menu__item {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 3.2rem;
    justify-content: flex-start;
    width: 100%
}

.menu__item .smalltext {
    text-align: left
}

.menu__item:hover {
    background-color: var(--color-tone-7)
}

.menu__item .menu__item-label {
    font-family: var(--title-font);
    font-size: .9rem;
    font-weight: var(--title-font-weight);
    letter-spacing: .1rem;
    text-transform: uppercase
}

.menu__item .menu__item-icon {
    height: 64px;
    margin-right: 10px;
    width: 32px
}

.menu {
    opacity: 0;
    pointer-events: none;
    transform: translate(-100%);
    transition: opacity .3s .1s var(--easing), transform .5s var(--easing)
}

body.menu--open .menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0);
    transition: opacity .3s var(--easing), transform .5s var(--easing)
}

:root {
    --header-height: 72px
}

header {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: var(--header-height);
    justify-content: center;
    padding: 0 1vh
}

.title {
    /* flex-grow: 1; */
    font-family: var(--title-font);
    font-weight: var(--title-font-weight);
    letter-spacing: .1rem;
    margin: 0;
    text-transform: uppercase
}

.title h1 {
    line-height: 1rem
}

.title__archive,
.title__unlimited {
    color: var(--title-color);
    display: none;
    font-size: .7rem;
    font-weight: var(--title-font-weight);
    line-height: .7rem;
    text-align: center
}

.button--blank {
    display: none
}

body.archive--active h1,
body.archive-main--active h1 {
    font-size: 1.5rem;
    line-height: 1.6rem
}

body.archive--active .title__archive,
body.archive-main--active .title__archive {
    display: block
}

body.unlimited--active h1 {
    font-size: 1.5rem;
    line-height: 1.6rem
}

body.unlimited--active .title__unlimited {
    display: block
}

body header .button--unlimited {
    display: none
}

body header .button--daily,
body.daily--active header .button--help {
    display: block
}

body.daily--active header .button--back,
body.deluxe--active header .button--back {
    display: none
}

body.deluxe--active header .button--stats {
    /* visibility: hidden */
}

body.support--active header .button--back {
    display: block
}

body.body--new header .button--heart,
body.support--active header .button--heart {
    display: none
}

body.body--new header .button--blank {
    display: block
}

header .icon-button {
    transition: opacity .3s 1s
}

.adbox {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    position: absolute;
    width: calc(50vw - 350px)
}

.adbox:first-child {
    left: 0
}

.adbox:nth-child(2) {
    right: 0
}

.archive,
.archive-main,
.deluxe,
.game-main,
.support-screen,
.unlimited {
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: var(--header-height);
    transition: transform .5s var(--easing), opacity .5s var(--easing)
}

.body--loading .game-main {
    transform: translate(0);
    transition: none
}

.game-main {
    transform: translate(200px)
}

.game-main .footer {
    display: none
}

.archive,
.deluxe,
.support-screen,
.unlimited {
    transform: translate(-200px)
}

.archive-main {
    transform: translate(200px)
}

body.archive--active .archive,
body.daily--active .game-main,
body.deluxe--active .deluxe,
body.unlimited--active .unlimited {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: translate(0);
    z-index: 10
}

body.archive-main--active .archive-main,
body.support--active .support-screen {
    opacity: 1;
    pointer-events: all;
    transform: translate(0);
    z-index: 10
}

.game {
    overflow: hidden
}

.game>* {
    transform: translateY(0);
    transition: opacity .3s var(--easing), transform .3s var(--easing), height .3s var(--easing)
}

.game .error,
.game .preloader {
    animation-play-state: paused;
    opacity: 0;
    position: fixed;
    top: 30%;
    transform: translateY(100px)
}

.game .preloader img {
    animation-play-state: paused
}

.game footer {
    display: none
}

.game .top {
    flex-direction: column;
    flex-shrink: 0;
    height: 80vh;
    justify-content: center
}

#game-number {
    display: flex;
}

.game .game-number,
.game .top {
    align-items: center;
    display: flex
}

.game .game-number {
    color: var(--color-tone-3);
    flex-direction: row;
    font-family: var(--title-font);
    font-size: .9rem;
    height: 90px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    transition: height .5s var(--easing)
}

.game .board {
    flex-shrink: 0;
    height: var(--board-size);
    position: relative;
    width: var(--board-size)
}

.game .swaps {
    align-items: center;
    color: var(--color-tone-3);
    display: flex;
    flex-direction: row;
    font-family: var(--title-font);
    font-size: 1.2rem;
    font-weight: 400;
    height: 100px;
    letter-spacing: 2px;
    line-height: 1.2rem;
    max-width: var(--board-size);
    text-align: center;
    text-transform: uppercase;
    transition: margin-top 1s var(--easing);
    white-space: nowrap;

}

.game .swaps__val {
    color: var(--color-tone-1);
    font-weight: 700;
    margin-right: .5rem;
    opacity: 1
}

.game .nostars {
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: calc(var(--vertical-spacing)*.5);
    margin-top: calc(var(--vertical-spacing)*.5)
}

.game .stars {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    font-size: 2.5rem;
    height: 2.5rem;
    justify-content: center;
    letter-spacing: .5rem;
    line-height: 2.5rem;
    text-align: center
}

.game .stars img {
    height: 2.5rem;
    margin: 0;
    width: 2.5rem
}

.game .stars .star {
    background-image: url(star.21fc9b3a.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 2.5rem;
    margin: 0 .5rem;
    width: 2.5rem
}

.game .summary {
    align-items: center;
    border-bottom: 1px solid var(--color-tone-4);
    border-top: 1px solid var(--color-tone-4);
    display: none;
    flex-direction: column;
    flex-shrink: 0;
    margin: calc(var(--vertical-spacing)*1.5) 0;
    min-height: 4rem;
    padding-bottom: var(--vertical-spacing);
    width: 100%
}

.game .summary .row {
    justify-content: space-evenly;
    margin-top: var(--vertical-spacing);
    max-width: 90vw;
    width: var(--board-size)
}

.game .summary .row button {
    margin: 0 .5rem
}

.game .success__timer {
    text-align: center;
    display: none;
}

.game .success__timer .success__timer-val {
    font-size: 1.5rem
}

.game .note {
    border-bottom: none;
    border-top: 1px solid var(--color-tone-4);
    color: var(--color-tone-2);
    display: none;
    font-size: .9rem;
    line-height: 1.4rem;
    margin-bottom: calc(var(--vertical-spacing)*-1);
    margin-top: calc(var(--vertical-spacing)*1.5);
    padding: calc(var(--vertical-spacing)*2) 2rem;
    text-align: center;
    width: 100%
}

.game .note h2 {
    font-family: var(--title-font);
    font-size: 1.2rem;
    margin-bottom: 10px
}

.game .note:empty {
    display: none !important
}

.game .definition {
    flex-shrink: 0;
    margin: 0 auto calc(var(--vertical-spacing)*2) auto;
    max-width: 90vw;
    text-align: justify;
    width: var(--board-size)
}

.game .definition__word {
    font-size: 1.1rem;
    font-weight: 700
}

.game .definition__type {
    font-style: italic;
    opacity: .5
}

.game .definition__example {
    font-size: .9rem;
    font-style: italic;
    margin: .2rem 0
}

.game .definition__origin {
    font-size: .9rem;
    font-style: italic;
    opacity: .6
}

.game .definition__fact {
    font-size: .9rem;
    font-weight: 700
}

.game .gameovermessage,
.game .successmessage {
    align-items: center;
    background-color: var(--color-tone-6);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 1.2rem;
    justify-content: center;
    text-align: center;
    transition: height .5s var(--easing);
    width: 100%
}

.game .gameovermessage h2,
.game .successmessage h2 {
    font-family: var(--title-font);
    font-size: 1.4rem;
    font-weight: var(--title-font-weight)
}

.game .gameovermessage,
.game .successmessage {
    display: none;
    height: 90px;
    margin-bottom: calc(var(--vertical-spacing)*1.5);
    overflow: visible
}

.game .gameovermessage h2,
.game .successmessage h2 {
    letter-spacing: 1px;
    text-transform: uppercase
}

.game .gameovermessage p,
.game .successmessage p {
    font-size: .8rem;
    margin: 5px 0 0;
    text-transform: none
}

.game .gameovermessage {
    background-color: var(--color-tone-2);
    color: var(--color-tone-7)
}

.game .solution {
    grid-gap: .1rem;
    display: none;
    flex-shrink: 0;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    margin-bottom: calc(var(--vertical-spacing)*2);
    margin-top: var(--vertical-spacing)
}

.game .solution .tile {
    font-size: 27px;
    height: 50px;
    margin: 2px;
    pointer-events: none;
    position: static;
    width: 50px;
    background-color: var(--green);
    border: 5px solid #D7AB52;
    color: #fff;
}

.game .solution .blank {
    background-color: transparent;
    border: 0;
}

.game .definition,
.game .nostars,
.game .stars,
.game .summary {
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s var(--easing)
}

.game .nostars {
    display: none;
    flex-shrink: 0
}

.game .copyright,
.game .definitions,
.game .nostars,
.game .stars {
    display: none
}

.game.showdefinitions .definitions,
.game.success .definitions {
    display: block
}

.game.showdefinitions .definition,
.game.success .definition {
    opacity: 1
}

.game.showsolution .button--showsolution {
    display: none
}

.game.showsolution .solution {
    display: grid
}

.game.loading,
.game.loading.gameover,
.game.loading.success {
    overflow: hidden
}

.game.loading.gameover>:not(.preloader),
.game.loading.success>:not(.preloader),
.game.loading>:not(.preloader) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px)
}

.game.loading .preloader,
.game.loading.gameover .preloader,
.game.loading.success .preloader {
    opacity: 1;
    transform: translateY(0)
}

.game.loading .preloader img,
.game.loading.gameover .preloader img,
.game.loading.success .preloader img {
    animation-play-state: running
}

.archive-main.gameover,
.deluxe.gameover,
.gameover,
.unlimited.gameover {
    overflow-y: auto;
    padding-bottom: 1rem
}

.archive-main.gameover .note,
.deluxe.gameover .note,
.gameover .note,
.unlimited.gameover .note {
    display: block
}

.archive-main.gameover .top,
.deluxe.gameover .top,
.gameover .top,
.unlimited.gameover .top {
    height: calc(var(--board-size) + 130px)
}

.archive-main.gameover .game-number,
.deluxe.gameover .game-number,
.gameover .game-number,
.unlimited.gameover .game-number {
    height: 50px
}

.archive-main.gameover .swaps,
.deluxe.gameover .swaps,
.gameover .swaps,
.unlimited.gameover .swaps {
    height: 80px
}

.archive-main.gameover .nostars,
.deluxe.gameover .nostars,
.gameover .nostars,
.unlimited.gameover .nostars {
    opacity: 1
}

.archive-main.gameover .summary,
.deluxe.gameover .summary,
.gameover .summary,
.unlimited.gameover .summary {
    opacity: 1;
    pointer-events: all
}

.archive-main.gameover .copyright,
.deluxe.gameover .copyright,
.gameover .copyright,
.unlimited.gameover .copyright {
    display: block
}

.archive-main.gameover .summary,
.deluxe.gameover .summary,
.gameover .summary,
.unlimited.gameover .summary {
    display: flex
}

.archive-main.gameover footer,
.deluxe.gameover footer,
.gameover footer,
.unlimited.gameover footer {
    display: block
}

.success .definition,
.success .stars {
    opacity: 1;
    pointer-events: all
}

.success .solution {
    display: none
}

.success .successmessage {
    display: flex
}

.success .note {
    display: block
}

.success .gameovermessage {
    display: none
}

.gameover:not(.success) .board .tile {
    background-color: var(--color-tone-1);
    color: #fff;
    cursor: none;
    pointer-events: none
}

.gameover:not(.success) .board .tile.green {
    background-color: var(--color-tone-2)
}

.gameover:not(.success) .gameovermessage {
    display: flex
}

.gameover:not(.success) .stars {
    display: none
}

.gameover:not(.success) .nostars {
    display: block;
    opacity: 1
}

.gameover:not(.success) .button--showsolution {
    display: block
}

.deluxe {
    --deluxe-board-size: 600px
}

.deluxe .board {
    height: var(--deluxe-board-size);
    width: var(--deluxe-board-size)
}

.deluxe .summary .stat-row {
    display: none
}

.deluxe .solution {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
    height: var(--board-size);
    width: var(--board-size)
}

.deluxe .solution .tile {
    height: var(--tile-size);
    width: var(--tile-size)
}

.deluxe.gameover .top {
    height: calc(var(--deluxe-board-size) + 130px)
}

.deluxe.deluxe--noswaps.gameover .top {
    height: calc(var(--deluxe-board-size) + 50px);
    margin-bottom: var(--vertical-spacing)
}

.swaps-info {
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    transform: translateY(30px);
    transition: none;
    transition: transform .3s var(--easing)
}

.deluxe--noswaps .swaps,
.swaps-info {
    display: none;
    height: 0;
    opacity: 0
}

.deluxe--noswaps .swaps-info {
    display: flex;
    height: 100px;
    opacity: 1;
    transform: translateY(0)
}

.deluxe--noswaps.gameover .swaps {
    display: none;
    height: 0;
    opacity: 0
}

.deluxe--noswaps.gameover .swaps-info {
    display: none;
    height: 0;
    opacity: 0;
    transition: height .3s var(--easing), transform .3s var(--easing)
}

@media (max-height:800px) {
    .deluxe {
        --deluxe-board-size: 60vh;
        --tile-font-size: 6vh
    }
}

@media (max-width:620px) {
    .deluxe {
        --font-size: 18px;
        --tile-font-size: 8vw;
        --deluxe-board-size: 90vw
    }
}

@media (max-width:380px) {
    .deluxe {
        --font-size: 16px;
        --deluxe-board-size: 90vw
    }
}

.archive {
    overflow-y: auto
}

.archive .item.template {
    display: none
}

.archive__items {
    width: 100%
}

.archive .item {
    background-color: var(--color-tone-6);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    height: 70px;
    margin: .4rem 1rem;
    padding-left: 1rem;
    width: calc(100% - 2rem)
}

.archive .item__icon {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: 80px;
    justify-content: center;
    width: 80px
}

.archive .item__icon img {
    height: 48px;
    width: 48px
}

.archive .item__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .1rem;
    line-height: 1.8rem;
    text-align: left
}

.archive .item__date {
    font-size: .7rem;
    opacity: .7;
    text-align: left
}

.archive .item__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    justify-content: center;
    position: relative;
    text-align: left
}

.archive .item__stars {
    align-items: center;
    bottom: 0;
    color: var(--color-tone-3);
    display: flex;
    font-family: var(--title-font);
    font-weight: 400;
    letter-spacing: 2px;
    position: absolute;
    right: 1rem;
    text-transform: uppercase;
    top: 0
}

.archive .item__stars img {
    height: 28px;
    margin: 2px;
    width: 28px
}

.unlimited {
    display: flex;
    flex-direction: column
}

.unlimited .top {
    height: 80vh;
    justify-content: center;
    transition: height 1s var(--easing)
}

.unlimited .summary,
.unlimited .top {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-shrink: 0
}

.unlimited .summary {
    border-bottom: 1px solid var(--color-tone-4);
    border-top: 1px solid var(--color-tone-4);
    margin: calc(var(--vertical-spacing)*2) 0;
    min-height: 4rem;
    padding-bottom: var(--vertical-spacing);
    width: 100%
}

.unlimited .summary .row {
    justify-content: space-evenly;
    margin-top: var(--vertical-spacing);
    max-width: 90vw;
    width: var(--board-size)
}

.unlimited h3 {
    line-height: 3rem
}

.unlimited.playing .definition,
.unlimited.playing .nostars,
.unlimited.playing .stars,
.unlimited.playing .summary {
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s var(--easing)
}

.unlimited.playing .nostars {
    display: none;
    flex-shrink: 0
}

.unlimited.gameover {
    padding-bottom: 3rem
}

.unlimited.gameover .swaps {
    margin-top: var(--vertical-spacing)
}

.unlimited.gameover .nostars,
.unlimited.gameover .summary {
    opacity: 1;
    pointer-events: all
}

.unlimited.gameover footer {
    display: block
}

.unlimited.gameover:not(.success) .board .tile {
    background-color: var(--color-tone-2);
    color: #fff;
    cursor: none;
    pointer-events: none
}

.unlimited.gameover:not(.success) .gameovermessage {
    height: 3rem
}

.unlimited.gameover:not(.success) .stars {
    display: none
}

.unlimited.gameover:not(.success) .button--showsolution {
    display: block
}

.unlimited.gameover:not(.success) .definition {
    opacity: 0
}

.unlimited.gameover:not(.success) .definitions--show .definition,
.unlimited.success .definition,
.unlimited.success .stars {
    opacity: 1;
    pointer-events: all
}

.unlimited.success .solution {
    display: none
}

.stat-row {
    border-bottom: 1px solid var(--color-tone-4);
    display: flex;
    flex-shrink: 0;
    font-size: .8rem;
    height: 2rem;
    letter-spacing: 1px;
    line-height: 2rem;
    margin: 0;
    text-transform: uppercase;
    width: 100%
}

.stat-row__label {
    background-color: var(--color-tone-6);
    padding-right: .5rem;
    width: 50%
}

.stat-row__val {
    font-weight: 700;
    padding-left: .5rem;
    width: 50%
}

.stats__row {
    display: flex;
    padding: 5px 0
}

.stat-row__val,
.stat-row__label {
    text-align: center;
}

.stats__row:nth-child(odd) {
    background-color: var(--color-tone-6)
}

.stats__row:nth-child(even) {
    background-color: #dff0d8;
}

.stat-row__val {
    width: 100%;
    background-color: #dff0d8;
}

.stats .stat-row.games-played {
    border-top: 1px solid var(--color-tone-4)
}

.stats__label {
    align-items: center;
    display: flex;
    font-size: .9rem;
    justify-content: center;
    line-height: 24px;
    text-align: center;
    width: 3rem
}

.stats__label img {
    stroke: var(--color-tone-2);
    height: 16px;
    margin-left: 5px;
    width: 16px
}

.stats__label:nth-child(3) {
    font-size: .75rem;
    justify-content: flex-end;
    line-height: 24px;
    opacity: .5;
    padding-right: 4px;
    text-align: right
}

.stats__val {
    flex-grow: 1
}

.stats__bar {
    background-color: var(--green);
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    height: 24px;
    line-height: 24px;
    min-width: 1rem;
    padding-right: 10px;
    text-align: right
}

.stats__bar--empty {
    background-color: var(--color-tone-3);
    padding-right: 0;
    text-align: center
}

.modal .modal__content .statistics__selector-row {
    margin-top: 0
}

.modal.support .modal__content,
main.support {
    margin: auto;
    max-height: 95vh;
    overflow: auto;
    padding: 0 .5rem 3rem
}

.modal.support .modal__content p,
main.support p {
    color: var(--color-tone-3);
    line-height: 1.4rem;
    text-align: center
}

.modal.support .modal__content header,
main.support header {
    margin-bottom: 0
}

.modal.support .modal__content .bulletnote,
main.support .bulletnote {
    justify-content: flex-start;
    margin-bottom: .5rem;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
    width: 75%
}

.modal.support .modal__content .bulletnote .waffle-icon,
main.support .bulletnote .waffle-icon {
    flex-shrink: 0;
    float: left;
    height: 32px;
    margin-right: 1rem;
    width: 32px
}

.modal.support .modal__content .bulletnote .col,
main.support .bulletnote .col {
    align-items: flex-start
}

.modal.support .modal__content .bulletnote h3,
main.support .bulletnote h3 {
    text-align: left
}

.modal.support .modal__content .bulletnote p,
main.support .bulletnote p {
    line-height: 1rem;
    margin: 0;
    text-align: left
}

.modal.support .modal__content input,
main.support input {
    background-color: var(--color-tone-5);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    height: 48px;
    margin: 0;
    text-align: center;
    width: 100%
}

.modal.support .modal__content button:disabled,
.modal.support .modal__content input:disabled,
main.support button:disabled,
main.support input:disabled {
    opacity: .4
}

.modal.support .modal__content .support__input-row,
main.support .support__input-row {
    margin: .5rem auto;
    width: 100%
}

.modal.support .modal__content .support__status,
main.support .support__status {
    align-items: center;
    background: var(--color-tone-6);
    border-radius: 10px;
    display: flex;
    font-size: 90%;
    justify-content: center;
    margin: 0 auto;
    min-height: 60px;
    padding: 0;
    text-align: center;
    white-space: pre-wrap;
    width: 100%
}

.modal.support .modal__content .support__status:empty,
main.support .support__status:empty {
    min-height: 0;
    opacity: 0
}

.modal.support .modal__content button,
main.support button {
    justify-content: center;
    margin: 0 1rem;
    min-width: 100px
}

.modal.support .modal__content .button-row,
main.support .button-row {
    margin-bottom: .5rem;
    position: relative
}

.modal.support .modal__content .preloader,
main.support .preloader {
    animation-play-state: paused;
    display: none
}

.modal.support .modal__content .support__verified,
main.support .support__verified {
    display: none
}

.modal.support .modal__content .support__verified img,
main.support .support__verified img {
    height: 100px;
    width: 100px
}

.modal.support .modal__content .waffle-icon,
main.support .waffle-icon {
    background-image: url(waffle-heart.dc798d19.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 2.5rem;
    margin: 0;
    width: 2.5rem
}

.modal.support--loading .modal__content .preloader,
main.support--loading .preloader {
    animation-play-state: running;
    display: flex
}

.modal.support--loading .modal__content>:not(.preloader):not(header),
.modal.support--verified .modal__content .preloader,
.modal.support--verified .modal__content>:not(header):not(.support__verified),
main.support--loading>:not(.preloader):not(header),
main.support--verified .preloader,
main.support--verified>:not(header):not(.support__verified) {
    display: none
}

.modal.support--verified .modal__content .support__verified,
main.support--verified .support__verified {
    display: block;
    text-align: center
}

.modal.support--verified .modal__content .support__verified button,
main.support--verified .support__verified button {
    margin: auto
}

.modal.support .modal__content .button--reset,
main.support .button--reset {
    display: none
}

.modal.support--checking .modal__content .button--reset,
.modal.support--verifying .modal__content .button--reset,
main.support--checking .button--reset,
main.support--verifying .button--reset {
    display: flex
}

.modal.support--checking .modal__content .button--ok,
.modal.support--verifying .modal__content .button--ok,
main.support--checking .button--ok,
main.support--verifying .button--ok {
    display: none
}

#select-waffle::-webkit-scrollbar-track, .gameover::-webkit-scrollbar-track, .modal__content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

#select-waffle::-webkit-scrollbar, .gameover::-webkit-scrollbar, .modal__content::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

#select-waffle::-webkit-scrollbar-thumb, .gameover::-webkit-scrollbar-thumb, .modal__content::-webkit-scrollbar-thumb {
    background-color: #89520F;
    background-image: -webkit-linear-gradient(90deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent)
}

.html--darkmode input {
    color: var(--color-tone-1)
}

.binder {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.default {
    background-color: var(--color-tone-5);
}

.select-waffle-box {
    margin: 0 0.5rem;
}

select {
    /* Reset Select */
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    background-color: var(--color-tone-6);
    background-image: none;
    cursor: pointer;
    padding: 0 0.5rem;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-tone-1);
    font-family: inherit;
}

/* Remove IE arrow */
select::-ms-expand {
    display: none;
}

/* Custom Select wrapper */
.select {
    position: relative;
    display: flex;
    min-width: 75px;
    height: 48px;
    border-radius: 0.25em;
    overflow: hidden;
    font-weight: 600;
}

/* Arrow */
.select::after {
    content: "\25BC";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-color: var(--color-tone-6);
    transition: 0.25s all ease;
    pointer-events: none;
}

/* Transition */
.select:hover::after {
    color: #89520F;
}

.transparent-button {
    background-color: transparent !important;
    visibility: hidden;
}

.waffe-bake {
    width: 300px;
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto !important;
}

.tile-bake {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin: 5px;
    border: 5px solid #D7AB52;
}

.bake_blank {
    border: 0;
}

.solution .tile {
    background-color: var(--green);
    border: 5px solid #D7AB52;
}

@media (max-width:480px) {

    .modal.support .modal__content .bulletnote,
    main.support .bulletnote {
        padding: 0 1rem;
        width: 100%
    }
}

@media (max-width:490px) {
    :root {
        --font-size: 18px;
        --board-size: 80vw;
        --tile-font-size: 8vw
    }

    header h1 {
        font-size: 1.6rem
    }

    header .icon-button {
        margin: 2px
    }

    button:not(.icon-button) {
        padding: 0 1rem
    }

    button:not(.icon-button) svg {
        transform: translateX(-.2rem)
    }

    .modal .modal__content {
        border-radius: 0
    }

    main .gameovermessage {
        height: 64px
    }

    main .gameovermessage p {
        margin-top: 0
    }
}

@media (max-width:380px) {
    :root {
        --font-size: 16px;
        --board-size: 90vw;
        --header-height: 52px
    }

    header {
        padding: 10px
    }

    header h1 {
        font-size: 1.2rem
    }

    .deluxe .top,
    .game-main .top {
        height: calc(var(--board-size) + 130px)
    }

    .deluxe .game-number,
    .game-main .game-number {
        height: 50px
    }

    .deluxe .swaps,
    .game-main .swaps {
        height: 80px
    }

    .deluxe.gameover .game-number,
    .game-main.gameover .game-number {
        height: 35px
    }

    .deluxe.gameover .swaps,
    .game-main.gameover .swaps {
        height: 50px
    }

    .deluxe.gameover .top,
    .game-main.gameover .top {
        height: calc(var(--board-size) + 85px)
    }

    .deluxe.deluxe--noswaps.gameover .swaps {
        height: 0
    }

    .deluxe.deluxe--noswaps.gameover .top {
        height: calc(var(--board-size) + 35px);
        margin-bottom: var(--vertical-spacing)
    }

    .summary .row {
        max-width: 100%;
        width: 100%
    }

    .definition {
        max-width: 90%;
        width: 90%
    }

    .modal .modal__content {
        padding: .5rem 0
    }

    .modal .modal__content header {
        margin: -.5rem 0 0
    }

    .modal.statistics .stat-row {
        margin: 0;
        width: 100%
    }

    .modal.statistics .stats {
        margin-left: 0;
        margin-right: 0;
        width: 100%
    }

    .note {
        padding: calc(var(--vertical-spacing)*2) 1rem
    }

    main>.copyright {
        display: none
    }
}

@media (max-width:350px) {
    .button--support {
        font-size: 15px
    }

    .button--support img {
        height: 24px;
        width: 24px
    }
}

@media (max-height:480px) {
    :root {
        --board-size: 60vh;
        --tile-font-size: 6vh;
        --vertical-spacing: 0.5rem
    }

    .game .top {
        height: auto
    }

    .game:not(.gameover).top {
        height: calc(100vh - var(--header-height));
        justify-content: flex-start
    }

    .game-number,
    .swaps {
        max-height: 30px
    }

    .swaps {
        font-size: 1rem;
        max-width: 100%
    }

    .tile {
        border-radius: 4px
    }

    .definition {
        max-width: 90%;
        width: 90%
    }

    .summary .row {
        max-width: 100%;
        width: 100%
    }

    .game-number {
        margin: 0
    }

    main>.copyright {
        display: none
    }
}

.modal.help .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

html.canuckle {
    --green: #e00
}

html.canuckle .game-number {
    text-transform: none;
    transition: opacity .8s
}

html.canuckle .game-number img {
    height: 15px;
    width: 15px
}

html.canuckle .body--highcontrast {
    --green: #e00
}

html.canuckle .stars .star {
    background-image: url(maple.4bde2aba.svg)
}

html.canuckle .definition__fact:before {
    content: "🍁"
}

html.canuckle .footer--canuckle .kofi-link:first-child img {
    background-color: var(--green);
    border-radius: 6px
}

html.canuckle .footer--canuckle .kofi-link img {
    max-width: 100%;
    width: 396px
}

html.canuckle .game.gameover footer {
    display: none
}

html.canuckle .game.gameover .footer--canuckle {
    display: block
}

html.canuckle .game.gameover .footer--canuckle button {
    font-size: 12px;
    max-width: 100%
}

html:not(.canuckle) .game.gameover footer.footer--canuckle {
    display: none
}

html.canuckle.html--darkmode,
html.canuckle.html--darkmode .body--highcontrast {
    --green: #900
}

html.canuckle:not(.html--darkmode) {
    background-color: #ac0000
}

html.canuckle:not(.html--darkmode) .definition__fact {
    color: #833737
}

.body--highcontrast {
    --yellow: var(--blue);
    --green: var(--orange)
}

.html--darkmode {
    --color-tone-7: #1a1a1b;
    --color-tone-6: #292b2b;
    --color-tone-5: #323434;
    --color-tone-4: #323434;
    --color-tone-3: #666;
    --color-tone-2: #f6f7f8;
    --color-tone-1: #f6f7f8;
    --green: #3a8b38;
    --yellow: #b59626
}

.html--darkmode .gameover:not(.success) .board .tile {
    background: #000;
    color: var(--color-tone-2)
}

.html--darkmode .gameover:not(.success) .board .tile.green {
    background: #101010;
    color: var(--color-tone-2)
}

.html--darkmode .gameovermessage {
    background: #000;
    color: var(--color-tone-2)
}

.html--darkmode a,
.html--darkmode a:visited {
    color: #fff
}

.html--darkmode .stats__bar {
    /* background-color: var(--color-tone-4) */
}

.html--darkmode .stats__row:nth-child(odd) {
    background-color: transparent
}

.html--darkmode .centre header .icon-button {
    background: #000
}

.html--darkmode .button--close {
    background: none
}

.html--darkmode .note {
    color: #b3b3b3
}

.html--darkmode .note h2 {
    color: var(--color-tone-2)
}

.html--darkmode .stat-row__val, .html--darkmode .stats__row:nth-child(even) {
    background-color: transparent;
}

.kofi-link {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: var(--vertical-spacing);
    margin-top: var(--vertical-spacing)
}

.heart-icon {
    height: 54px;
    margin-left: 1rem;
    margin-right: 1rem;
    object-fit: contain;
    width: 44px
}

::placeholder {
    color: var(--color-tone-3);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}