﻿.pagination {
    padding-top: 10px;
}

    .pagination li {
        display: inline-block;
        border: 1px solid #ddd;
        height: 25px;
        width: 25px;
        text-align: center;
        margin-left: -1px;
    }

        .pagination li a:hover {
            color: #fff;
            text-decoration: none;
        }

        .pagination li:hover {
            background-color: #337ab7;
        }

            .pagination li:hover a {
                background-color: #337ab7;
                color: #fff;
            }

html, body {
    height: 100%;
}

#footerSite {
    clear: both;
    position: relative;
    margin-top: 0;
}

#footerSite-content {
    font-size: 12px;
    line-height: 2;
    text-align: center;
    padding: 1rem;
    min-height: 50px;
    margin: 20px 0;
}

#competitionDiv {
    display: inline-block;
    text-align: center;
    margin: 50px 5px 30px 5px;
    padding: 5px 5px;
    max-height: 100px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.bg-tcm {
    background-color: rgba(0, 0, 0, 0.8) !important; /*#C00000 !important; /*#0066aa !important;*/
}

a.bg-tcm:hover, a.bg-tcm:focus,
button.bg-tcm:hover,
button.bg-tcm:focus {
    background-color: #1d2124 !important;
}

.navbar-tcm {
    color: rgba(255, 255, 255, 1);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 1) !important;
}

.grid-header {
    background-color: rgba(0, 0, 0, 0.8) !important; /*#C00000 !important; /*#0066aa !important;*/
}

img.bg {
    /* Set rules to fill background */
    min-height: 100%;
    min-width: 1024px;
    /* Set up proportionate scaling */
    width: 100%;
    height: auto;
    /* Set up positioning */
    position: fixed;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
    img.bg {
        left: 50%;
        margin-left: -512px; /* 50% */
    }
}

#page-wrap {
    position: relative;
    margin: 50px auto;
    padding: 20px;
    /*background: white;*/
    background-color: rgba(255, 255, 255, 0.9);
    -moz-box-shadow: 0 0 20px black;
    -webkit-box-shadow: 0 0 20px black;
    box-shadow: 0 0 20px black;
}

/*.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}*/

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    opacity: 0.8;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.box {
    margin: 0 auto;
    width: 40px;
    height: 140px;
    /*border: solid 1px black;*/
    position: relative;
}

    .box .shadow {
        position: absolute;
        width: 100%;
        height: 10px;
        background-color: grey;
        bottom: 0;
        border-radius: 100%;
        transform: scaleX(.8);
        opacity: .6;
        animation: shadowScale 1s linear infinite;
    }

.gravity {
    width: 40px;
    height: 40px;
    animation: bounce 1s cubic-bezier(0.68, 0.35, 0.29, 0.54) infinite;
}

.ball {
    width: 40px;
    height: 40px;
    background-image: url('https://image.flaticon.com/icons/svg/33/33736.svg');
    background-size: cover;
    animation: roll .6s linear infinite;
}

.btn-default {
    background-color: rgba(0, 0, 0, 0.8) !important; /*#C00000; /*#0066aa;*/
    color: white;
}

@keyframes roll {
    0% {
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes bounce {
    0% {
    }

    50% {
        transform: translateY(100px)
    }

    100% {
    }
}

@keyframes shadowScale {
    0% {
    }

    50% {
        transform: scaleX(1);
        opacity: .8;
    }

    100% {
    }
}
