@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

:root {
    --anim-duration:10s;
}

body {
    background-color: #ffffff;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html, body {
    height: 90%;
}

#Navbar {
    background-color: #9ee0ff;
    border-radius: 5px;
}

#MainContent {
    /*height: inherit;*/
    border: 2px solid #aaaaaa;
    border-radius: 1px;
    margin-top: 5px;
    /*display: flex;
    flex-direction: column;*/
    align-items: stretch;
    justify-content: center;
}

#GameWindow {
    text-align: center;
}

#AlertWindow {
    position: absolute;
    width: 100%;
    text-overflow: ellipsis;
    opacity: 0.7;
    z-index: 1070;
}

#PurchasesWindow {  
    height: 70vh;
    background-color: #eeeeee;
}

#TendersWindow {  
    height: 35vh;
    background-color: #eeeeee;
}

#GameStatsWindow {
    background-color: #7dc1e1;
}

#LobbyConnectionsList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #dddddd;
    border-radius: 5px;
    min-width:50vw;
    min-height:40vh;
}

.GameWindowIcon {
    width: 100%;
    height: 100%;
}

.GameButton {
    position: relative;
    width: 200px;
    height: 50px;
    margin: 20px;
}

/*.TradeWindow {
    height: 70vh;
}*/

.TradeAddPanel {
    background-color: #eeeeee;
    border: 1px solid #777777;
}

.modal-content {
    border-radius: 0%;
}

.btn {
    border: 0 none;
    border-radius: 0%;
    padding: 6px;
}

.LobbyTeamBox {
    background-color: #f59d6e;
    width: 60px;
    height: 30px;
    text-align: center;
    margin:5px;
    color: white;
    border: 3px solid #8f5b3f;
    border-radius: 2px;
}

.HostContentBox {
    border: 2px solid #777777;
}

.nav-link {
    border-radius: 0% !important;
}

.card {
    border-radius: 0%;
}

.modal-xl {
    width: 90% !important;
    max-width: 90% !important;
}

.ticker-wrapper {
    overflow: hidden;
}

.invisible {
    display: none;
}

.tickerbox {
    font-size: 30pt;
    -moz-animation: marquee var(--anim-duration) linear infinite;
    -webkit-animation: marquee var(--anim-duration) linear infinite;
    animation: marquee var(--anim-duration) linear infinite;
}
@-moz-keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@-webkit-keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
