﻿body {
    background-color: #2D2D2D;
}

.datepicker-inline {
    width: 100%;
}

.datepicker table {
    width: 100%;
}

.date-selected {
    background-color: #737B82 !important;
    position:relative;
}

.icon-selected {
    position: absolute;
    right: 5%;
    top: 35%;
}

#qrcode > img {
    margin:auto;
}

.step-inactive {
    opacity:0.2;
    pointer-events:none;
}

#numberCircle {
    font-size:25px;
}

.pulse {
    width:70px;
    height:70px;
}

.bg-tsm-gray {
    background-color: #737B82;
}

.bg-tsm-nav-bar {
    background-color: black;
}


.scrolltop {
bottom: 65px !important;
}

.bg-tsm {
    background-color: #EE2346 !important;
}

.navbar-toggler {
    background-color: #737B82 !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.animate-text {
    /* margin: 0;*/
    padding-bottom: 6rem;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    /*font-size: 10rem;*/
    animation: glow 5s ease-in-out infinite alternate;
}

.animate-text-login {
    /* margin: 0;*/
    padding-bottom: 6rem;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    /*font-size: 10rem;*/
    animation: glowLogin 5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px black;
    }

    to {
        text-shadow: 0 0 30px gray, 0 0 10px white;
    }
}

@keyframes glowLogin {
    from {
        text-shadow: 0 0 20px lightgray;
    }

    to {
        text-shadow: 0 0 30px gray, 0 0 10px black;
    }
}