* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body, html {
    font-family: sans-serif;
    line-height: 1;
    font-weight: 400;
    color: #111;
    background-color: black !important;
    background-image: url('../Content/Billiards.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed !important;
    min-width: 100%;
    min-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.scroll-x {
    width: 100%;
    overflow-x: auto;
}

.maxw-100 {
    max-width: 100%;
}

.body-content {
    padding-top: 5rem;
    background-color: transparent !important;
    margin-bottom: 3rem;
    max-width: 100vw;
}

hr {
    border: 1px solid #808080;
    margin-bottom: 3rem;
}

text-center {
    text-align: center;
}

.control {
    width: 100%;
    font-size: 1rem;
    margin-top: .3rem;
    padding: .3rem .6rem;
    border-radius: 5px;
    border: none;
}

.profile-Picture {
    width: 25%;
}

.pointer {
    cursor: pointer;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    background-color: #034b70;
    color: #fff;
    justify-content: center;
    align-content: center;
    font-size: 1rem;
    padding: .3rem;
    width: 100%;
    text-align: center;
}

.br-15 {
    border-radius: 15px;
}

.bg {
    background-image: linear-gradient(#445f69, #0e3949, #000) !important;
    background: -moz-linear-gradient(#445f69, #0e3949, #000); /* FF 3.6+ */
    background: -webkit-linear-gradient(#445f69, #0e3949, #000); /* Safari 5.1+, Chrome 10+ */
    background: -o-linear-gradient(#445f69, #0e3949, #000); /* Opera 11.10 */
    background: linear-gradient(#445f69, #0e3949, #000); /* the standard */
}

.bg-mild {
    background-image: linear-gradient(#1b2528, #0e3949, #31434a) !important;
    background: -moz-linear-gradient(#1b2528, #0e3949, #31434a); /* FF 3.6+ */
    background: -webkit-linear-gradient(#1b2528, #0e3949, #31434a); /* Safari 5.1+, Chrome 10+ */
    background: -o-linear-gradient(#1b2528, #0e3949, #31434a); /* Opera 11.10 */
    background: linear-gradient(#1b2528, #0e3949, #31434a); /* the standard */
}

.tile {
    border-radius: 15px !important;
    margin: .2rem !important;
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    height: 150px;
    cursor: pointer !important;
    padding: 1.5rem;
    border: 2px solid #777;
}

.tileBorder {
    border: 2px solid #777 !important;
}

.pageTitle {
    color: #dbbcbc !important;
    background-image: linear-gradient(#601212, #b24c4c);
    text-align: center !important;
    padding: 12px;
    font-size: 35px;
}

.centeredTitle {
    color: #fff !important;
    text-align: center !important;
    font-size: 1.8rem;
    width: 100% !important;
}

.lastPublished {
    color: #35908c !important;
    text-align: center !important;
    font-size: 1.5rem;
    width: 100% !important;
}

.weekNumberLabel {
    color: #35908c !important;
    text-align: center !important;
    padding-bottom: 18px;
    font-size: 24px;
    width: 100vw !important;
}

.panelTitle {
    color: #87cac0 !important;
    background-color: #093738 !important;
    text-align: center !important;
    padding: 12px;
    font-size: 22px;
}

.label {
    font-size: 1rem !important;
    color: #e6934d !important;
    line-height: 2rem !important;
    white-space: nowrap !important;
}

.control-dark {
    width: 100% !important;
    color: #b9b2b2 !important;
    background-color: #2A3038 !important;
    min-height: 30px !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: .9rem !important;
    padding-left: 8px !important;
}

.profilePicture {
    max-width: 256px;
}

.poolBallLogo {
    width: 100px !important;
    height: 100px !important;
    margin-top: -8rem !important;
    margin-left: 3rem;
}

@media (max-width: 59em) {
    .br-15 {
        border-radius: 0;
    }

    .toprow {
        justify-content: space-between !important;
    }

    .pageTitle {
        font-size: 1.5rem;
    }

    .centeredTitle {
        font-size: 1.4rem;
    }
}

.progress-container {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background-color: rgba(0,0,0,.4);
}

.progress-modal {
    display: flex;
    width: 600px;
    max-width: 90%;
    height: 400px;
    max-height: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    /*    background-image: linear-gradient(#000, #1b5a46, #31a580);
*/ color: white;
}

.progress-container .loader {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
    font-size: 3rem;
}

.progress-open {
    display: flex;
}

.progress-container .loader img {
    animation: move 3s infinite linear;
    height: 10vw;
}

@keyframes move {

    0%, 100% {
        transform: translate3d(300px, 0, 0) rotate(359deg);
    }

    50% {
        transform: translate3d(-300px, 0, 0) rotate(0deg);
    }
}

