﻿

@media print {
    .navbar-nav {
        display: none !important;
    }

    .modal-dialog {
        min-width: 100% !important;
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .modal-content {
        height: auto !important;
        min-height: 100% !important;
        border-radius: 0 !important;
    }
}

.card {
    border-radius: 1em !important;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.bg-exclude {
    background-color: #dd8927 !important;
}

.bg-selected {
    background-color: #b4ba36 !important;
}

.buttonCard {
    text-align: center;
    background-color: #02A8B6 !important;
}

    .buttonCard:hover {
        text-decoration: none;
    }

.glow {
    font-size: 40px;
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #e60073, 0 0 20px #e60073, 0 0 25px #e60073, 0 0 30px #e60073, 0 0 35px #e60073;
    }

    to {
        text-shadow: 0 0 10px #fff, 0 0 15px #ff4da6, 0 0 20px #ff4da6, 0 0 25px #ff4da6, 0 0 30px #ff4da6, 0 0 35px #ff4da6, 0 0 40px #ff4da6;
    }
}

.two-arrows {
    width: 40px;
    height: 30px;
    color: darkorange;
    display: grid;
}

    .two-arrows:before,
    .two-arrows:after {
        content: "";
        grid-area: 1/1;
        background: currentColor;
        clip-path: polygon(0 10px,calc(100% - 15px) 10px,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,calc(100% - 15px) calc(100% - 10px),0 calc(100% - 10px));
        animation: myta .5s infinite alternate;
    }

    .two-arrows:after {
        --s: -1;
    }

@keyframes myta {
    0% {
        transform: scale(var(--s,1)) translate(12px,-6px) translate(4px)
    }

    100% {
        transform: scale(var(--s,1)) translate(12px,-6px) translate(-4px)
    }
}

