/*
 Theme Name:   Nonstop Festivalen
 Author:       Robert Ahlin Toftegaard @ Breakfast AS
 Author URI:   https://www.breakfast.no
 Template:     kulturfangst
 Version:      1.0.5
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  kulturfangst
*/

section.festival-pass {    
    z-index: 242;
    position: fixed;
    bottom: 16px;
    left: 0px;
    width: 100%;
    opacity: 0;
    animation: appear 0.2s ease;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;

    @media (min-width: 768px) {
        left: 16px;
    }

    .wrapper {
        .content {
            display: flex;
            gap: 16px;
            align-items: stretch;     
            font-family: 'Alegreya', Georgia, "Times New Roman", serif;
            font-style: italic;
            font-size: 24px;
            line-height: 24px;   

            .button {                
                display: flex;
                align-items: center;
                justify-content: center;                
                background-color: #f16978;
                text-decoration: none;
                padding: 0.3em 1em;
                transition: all 0.2s ease;
                border:1px solid #f16978;

                &:hover {
                    background-color: #f2f2f2;
                    transform: scale(1.025);
                    border-color: #000000;
                }
            }
            .text {
                color: #ffffff;
                background-color: #000000;
                padding: 4px 12px;

                p {
                    margin: 0;
                }
            }
        }
    }
}

@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}