/* 
    Created on : 2019/1/30, 上午 10:50:03
    Author     : zhiweilian
*/
body{
    background-image: url(../img/bg_grain.jpg)   ;
   
    /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;  
}

.nopadding-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
    max-width: 1140px;      
}
.type-container {
    /* margin-right: auto;
    margin-left: auto; */
    padding-right: 60px;
    padding-left: 0px;
    width: 100%;
    max-width: 1160px;      
}

.gameicon {
    height: 158px;
    width: 158px;
    margin: 0.5em 10px;
    display: inline-block;
    background-size: contain;
}
.gameicon:hover {
    filter: brightness(1.2);
    cursor: pointer;
}
.process-title {
    position: relative;
    left: 0px;
    bottom: 0px;
}
.process-title > span{
    font-size: 45px;
    color: #fff;
    font-weight: bold;
    margin-left: 15px;
}
 

.btn-type-select,.btn-type-select:focus{
    color: #fff;
    background: linear-gradient(to bottom, #b60000 0%,#4c0000 100%);
}

.player-navbar{
    background: linear-gradient(to bottom, #b60000 0%,#4c0000 100%);
}
.player-footbar{
    color:#faa;
    background: linear-gradient(to bottom, #b60000 0%,#4c0000 100%);
}

/* header.blade.php */
.header-dropdown-btn-group {
    display: flex;
    align-items: center;
}

/* main.blade.php */
.main-container {
    background-color: unset;
}
.game-type-button-container {
    padding-top: 120px; 
    /* display: flex;  */
    /* justify-content: space-around; */
}
.game-type-button-container .btn-type {
    width: 140%;
}
/* .header-left-menu-mobile{
    display: none;
} */

@media only screen and (max-width: 750px) {
    .container {
        padding-right: 0;
        padding-left: 0;
    }
    .header-container {
        display: flex;
        justify-content: center;
    }
    .header-dropdown-btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 10px;
    }
    .header-dropdown-btn {
        font-size: 12px;
        width: 95%;
        margin-right: 0px;
    }
    .player-navbar{
        height: 200%;
    }
    .header-left-menu{
        display: none;
    }
    /* .header-left-menu-mobile{
        display: initial;
    } */
    .type-container {
        /* margin-right: auto;
        margin-left: auto; */
        padding-right: 0px;
        padding-left: 0px;
        width: 100%;
        max-width: unset;      
    }
    .game-type-button-container {
        padding-top: 30px; 
        justify-content: unset;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;
    }
    .game-type-button-container .btn-type {
        width: 90%;
    }
    .process-title {
        display: none;
    }
}
 