/****************
*****Generic*****
*****************/
body {
    font-family: sans-serif;
}
  
/* Make content area fill the entire browser window */
html,
.fullscreen {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.fullscreen-GP{
    background-image: linear-gradient(260deg, #186d03 0%, #229e03  100%);
}

input, select{
    border: 2px solid darkblue;
    border-radius: 4px;
}

input:focus, input:focus {
    border: 3px solid #555;
}

/* Set a style for the submit button */
.btn {
    background-color: rgb(30, 128, 226);
    color: white;
    padding: 15px 20px;
    border: 2px solid rgb(12, 50, 100);
    cursor: pointer;
    width: 80%;
    opacity: 0.9;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}
  
.btn:hover {
    background-color: rgb(255, 255, 255); /* Green */
    color: darkblue;
}

/******************
*****Home Page*****
*******************/
/* Center the content in the browser window */
.containerHomePage {
    margin: auto;
    text-align: center;
    width: 80%;
    padding-bottom: 25px;
}

.HomePagelogo {
    width:auto;
    max-height:180px;
}

.title {
    font-size: 2rem;/*3vw;*/
}

.body-text {
    font-size:1rem;
}

.form {
    font: 95% Arial, Helvetica, sans-serif;
	max-width: 400px;
	margin: 10px auto;
	padding: 16px;
    background: #F7F7F7;
}

.form h1{
    background: rgb(30, 128, 226);
	padding: 20px 0;
	font-size: 140%;
	font-weight: 300;
	color: #fff;
    font-family: Georgia, serif;
}

@media screen and (min-width: 768px){
    .HomePagelogo {
        width:auto;
        max-height:350px;
    }

    .title {
        font-size: 3rem;/*3vw;*/
    }
    
    .body-text {
        font-size:2rem;
    }
}

/******************
*****Game Page*****
*******************/
.containerGamePage {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 90%;
}

.playerSection{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.playerArea,
.activityArea {
    width: 100%;
}

/*****************
***LEADERBOARD***
****************/

.leaderboard {
    border: 1px solid black;
    border-radius: 4px;
    font: 95%;
    font-family: 'Allerta Stencil';
    margin: 10px auto;
	padding: 0px;
    background: rgb(172, 138, 136);
    padding-bottom: 10px;
    padding-top: 0px;
}

.leaderboard h1{
    border-radius: 4px;
    background: rgb(160, 37, 37);
	padding: 15px 0;
	font-size: 140%;
	font-weight: 300;
    color: #fff;
    font-family: 'Allerta Stencil';
    margin: 0px auto;
}


@media screen and (min-width: 768px){
    .leaderboardArea,
    .playerArea{
        /*width: 50%;*/
    }
}

/******************
***PLAYER CARDS****
******************/

/* Slideshow container */
.slideshow-container {
    max-width: 500px;
    position: relative;
    margin: auto;
}

.player-card{
    display: none;
    /*min-height: 100px;*/
    border: 1px solid black;
    border-radius: 4px;
    font: 95% Arial, Helvetica, sans-serif;
    margin: 10px auto;
	padding: 0px;
    background: rgb(138, 193, 224);
    padding-bottom: 10px;
    padding-top: 0px;
}

.player-card h1{
	font-size: 140%;
	font-weight: 1000;
    color: rgb(0, 0, 0);
    font-family: 'Aclonica';
    /*font-family: Georgia, serif;*/
    margin: 0px auto;
}

.player-card .body-text{
    font-size: 80%;
	font-weight: 1000;
    color: rgb(0, 0, 0);
    font-family: 'Allerta Stencil';
    /*font-family: Georgia, serif;*/
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}
  
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.active, .dot:hover {
    background-color: #717171;
}
  
@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
  
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/******************
***BETTING PANEL***
******************/

.placeBetInput{
    border: 2px solid rgb(0, 0, 0);
    border-radius: 4px;
}

.conf-btn-section{
    padding-top: 15px;
}

.conf-btn-yes,
.conf-btn-no {
    background-color: rgb(255, 255, 255);
    font-weight: bold;
    color: black;
    padding: 5px 5px;
    /*font-size: 10px;*/
    cursor: pointer;
}

.conf-btn-yes{
    border: 2px solid rgb(88, 180, 59);
}

.conf-btn-no{
    border: 2px solid rgb(190, 34, 34);
}

.conf-btn-yes:hover, .conf-btn-yes:focus {
    background-color: rgb(174, 238, 169);
}

.conf-btn-no:hover, .conf-btn-no:focus {
    background-color: rgb(243, 152, 152);
}

.bet-btn {
    border: 4px solid black;
    background-color: white;
    color: black;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Aclonica';
}

.revTakePot{
    border-color: #4CAF50;
    color: green;
}

.revTakePot:hover, .revTakePot:focus{
    background-color: #4CAF50;
    color: white;
}

.revBet{
    border-color: #ff9800;
    color: orange;
}

.revBet:hover, .revBet:focus{
    background: #ff9800;
    color: white;
}

.revBuyIn{
    border-color: #f44336;
    color: red
}

.revBuyIn:hover, .revBuyIn:focus{
    background: #f44336;
    color: white;
}

.confirmation-box{
    border: 1px solid black;
    border-radius: 4px;
    max-width: 500px;
    font-size: 100%;
	font-weight: 300;
	color: rgb(0, 0, 0);
    font-family: Georgia, serif;
    margin: 5px auto;
    display: none;
    padding-bottom: 10px;
    padding-top: 10px;
}


/****************
*****NAV BAR*****
***************/

.navbar {
    width:100%;
    z-index: 9999;
    list-style-type: none;
    position: sticky;
    top: 0;
    font-size: 18px; 
    background-image: linear-gradient(260deg, #025c11 0%, #016412   100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    overflow: hidden;
    text-align: left;
}

.main-nav{
    list-style-type: none;
    display: none;
}

.logo {
    display: inline-block;
    font-size: 22px;
    margin-top: 10px;
    margin-left: 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1.0);
}

.nav-links{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
}

.main-nav li {
    text-align: left;
    margin: 15px auto;
}

.navbar-toggle {
    display: inline-block;
    margin-top: 10px;
    position: absolute;
    right: 20px;
    cursor: pointer; 
    color: rgba(255,255,255,0.9);
    font-size: 24px;
}

.nb-active {
    display: block;
}


@media screen and (min-width: 768px){
    .navbar{
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        align-items: center;
    }

    .main-nav {
        display: flex;
        margin-right: 30px;
        flex-direction: row;
        justify-content: flex-end;
    }

    .main-nav li {
        margin: 0;
    }

    .nav-links {
        margin-left: 40px;
    }

    .logo {
        margin-top: 0;
    }

    .navbar-toggle {
        display: none;
    }

    .logo:hover,
    .nav-links:hover {
        color: rgba(255, 255, 255, 1);
    }
}


/***************
******MISC******
***************/

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#potText {
    color: rgb(21, 245, 21);
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}

#bettingText {display: none;}
#winningText {display: none;}
#buyingInText {display: none;}

