﻿
pickupfeed {
    position: absolute;
    right: 100px;
    bottom: 250px;
    font-size: 32px;
    flex-direction: column;
    text-align: right;

    label {
        color: #c2c2c2;
        text-shadow: 0px 0px 20px rgba(30, 30, 30, 0.87);
        position: relative;
        left: 0;
        transition: all 0.2s ease-out;
        height: 50px;
        opacity: 1;
        //
        // Pseudo class set for the first time of its life
        //
        &:intro {
            height: 0px;
            opacity: 0;
        }
        //
        // Pseudo class set for the last frame of its life
        // (and keeps the panel alive until transition ends)
        //
        &:outro {
            color: rgba(124, 124, 124, 0);
            text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
            transition: all 7.0s ease-in;
        }
    }
}
