
body {
    background: url(/assets/background.png);
    background-size: cover;
    background-position: left bottom;
    background-position-y: 75%;
    background-color: #97E0CC;
    height: 100vh;
    overflow: hidden;
    max-width: 500px;
    margin: auto;
}

.ribbon {
    padding: 1rem;
    display: flex;
}

.ribbon .options {
    padding: 0.5rem;
    background: rgba( 0, 0, 0, 0.5 );
    color: white;
    text-align: center;
    line-height: 1.5rem;
    font-size: 1.5rem;
    width: 2.5rem;
    border-radius: 0.5rem;
    margin-left: 0.5rem;
}


/* Bottom Controls */
.bottom-control {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    display: flex;
    width: 100%;
    max-width: 500px;
}

.bottom-control .set-mood-btn {
    flex-grow: 1;
    margin-right: 0.5rem;
    padding: 0.8rem 0.8rem;
    border-radius: 2rem;
    background: #39B27D;
    color: white;
    border: none;
    box-shadow: -1px 5px 10px rgb(0 0 0 / 50%), -8px 1px 10px rgb(0 0 0 / 20%);
}

.bottom-control .set-message-btn {
    background: #00ABF0;
    color: white;
    border: none;
    box-shadow: -1px 5px 10px rgb(0 0 0 / 50%), -8px 1px 10px rgb(0 0 0 / 20%);
    padding: 0.8rem 1rem;
    border-radius: 2rem;
}


/* Dino Container */
.dino-container {
    margin: auto;
    width: 100%;
    max-width: 500px;
    display: flex;
    position: absolute;
    bottom: 24%;
}

.dino-container .dino {
    width: 50%;
    padding: 1rem;
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.dino-container .dino img {
    width: 100%;
    /* max-width: 200px; */
}

.dino-container .partnerDino img {
    transform: scaleX(-1);
}

.dino-container .dino p {
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
}

.dino-container .dino p#myDinoMsg {
    opacity: 0.3;
}

.dino-container .dino p#myDinoMsg:hover {
    opacity: 1;
}

.dino-container .dino p.dinoLabel {
    background: none;
    opacity: 0.5;
    font-size: 0.8rem;
    margin-top: 0.2rem;
    cursor: default;
}


/* Mood Seleor */
.drawer {
    padding: 2rem 1rem 1rem 1rem;
    background: white;
    border-radius: 1rem 1rem 0rem 0rem;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-width: 500px;
    box-shadow: -1px 5px 10px rgb(0 0 0 / 50%), -8px 1px 10px rgb(0 0 0 / 20%);
    transform: translateY(100%);
    transition: transform 0.2s;
}

.drawer.active {
    transform: translateY(0%);
}

.mood-options .mood {
    padding: 0.5rem 1rem;
    margin: 1rem -0.5rem;
    border-radius: 1rem;
    cursor: pointer;
}

.mood-options .mood:hover {
    background: rgba(0, 0, 0, 0.02);
}

.mood-options .mood.active {
    background: rgba(0, 0, 0, 0.08);
}

.mood-options .mood.active:hover {
    background: rgba(0, 0, 0, 0.1);
}


.mood-options .mood .title {
    font-weight: 700;
    margin: 0;
}

.mood-options .mood .subtitle {
    font-weight: 100;
    color: grey;
    margin: 0;
}

.drawer .set-mood-btn {
    flex-grow: 1;
    color: white;
    margin-right: 0.5rem;
    padding: 0.8rem 0.8rem;
    border-radius: 2rem;
    background: #8BDDC6;
    border: none;
    outline: 0;
    width: 100%;
    box-shadow: -3px 5px 10px rgb(0 0 0 / 20%);
}


/* Custom Popup */
.modal-footer {
    border: none;
}

.modal-content {
    border: none;
    padding: 1rem 0.8rem 0.5rem 0.8rem;
    border-radius: 1rem;
}


/* Poke Area */
.poke-area {
    width: 100%;
    height: calc( 100vh - 10.1rem );
    position: relative;
}

.poke-area .poke {
    width: 2rem;
    height: 2rem;
    animation-name: example;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    position: absolute;
    opacity: 0;
}


.poke-area .poke .heart {
    background: url( "/assets/heart.png" );
    background-size: cover;
    width: 100%;
    height: 100%;
}

.poke-area .poke .heart.myHeart {
    filter: grayscale();
}

@keyframes example {
    0%   {
        transform: scale( 0.5 );
        opacity: 1;
    }
    50%   {
        opacity: 0.8;
    }
    100%  {
        transform: scale( 1.5 );
        opacity: 0;
    }
}