/* Master.css stylesheet */

.container 
{
    text-align: center;
    border: 1px solid black;
    background-color: snow;
    width: 900px;
    height: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.display_container 
{
    width: 75%;
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, 0%);
}

.display 
{
    position: relative;
    left: 50%;
    width: 300px;
    height: 150px;
    transform: translate(-50%, 0%);
}

.lifes_container 
{
    display: flex;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.vida 
{
    width: 50px;
    height: 50px;
    background-image: url('../img/svg/heart_like_love_twitter_icon_127132.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

#lines_container
{
    display: inline-flex;
    width: 95%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, 0%);
    height: 100px;
    margin-bottom: 20px;
}

.controls 
{
    display: inline;
    position: absolute;
    width: 60%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.boton 
{
    background-color: cornflowerblue;
    color: cornsilk;
    cursor: pointer;
    padding: 5px;
    margin: 3px;
    width: 25px;
    font-size: 20px;
    border: none;
}

.boton:hover, .boton:focus
{
    background-color: royalblue;
}

.score 
{
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 25px;
}

.btns_Container 
{
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, 0%);
    display: inline;
    flex-wrap: wrap;
    width: 35%;
    height: 35px;
}

.btnCS {
    position: relative;
    display: inline-block;
}

.nbtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.restart { background-color: #db3434; display: none; } .restart:hover, .restart:focus { background-color: #b92929;}
.next { background-color: #34db34; display: none;  } .next:hover, .next:focus { background-color: #35b929; }
.info { background-color: #c834db; } .info:hover, .info:focus { background-color: #ad29b9; }
.ok { background-color: #db3434; margin-top: 25%; } .ok:hover, .ok:focus { background-color: #b92929;}

/*
*Start button Dropdown and all 
*it's elements style 
*and behavior
*/
/*Start button*/
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}

/*Dropdown menu and content style*/
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/*
*Style for the individual items
*in the dropdown menu
*/
.dropElement {
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    display: block;
    text-align: center;
    font-family: sans-serif;
}

.dropElement:hover {background-color: #ddd;}

/*Javascript accessed atributes*/
.show {display: block;}
.hide {display: none;}

.messajes 
{
    border: 2px solid black;
    border-radius: 4px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -0%);
    width: 550px;
    height: 85px;
    z-index: 3;
    background-color: #ebece5;
    text-align: center;
    display: none;
    padding-top: 16px;
    font-size: 25px;
    cursor: pointer;
}

.infoPanel {
    text-align: center;
    border: 1px solid black;
    background-color: whitesmoke;
    width: 800px;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
    display: none;
}

.infoPanel h3 {
    margin-top: 15%;
}

.infoPanel p {
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 25px;
}
