body 
{
    background: #232323;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

img 
{
    pointer-events: none; 
}

/* Поле Игры */
#gameBlock 
{
    position: relative;
    background: #4c4c4c; 
    width: 1000px;
    height: 600px;
    margin: 0 auto; 
    overflow: hidden;
}

/* Поле Информации */
#infoBlock 
{
    width: 1000px;
    height: 60px;
    background: #3e3e3e;
    margin: 0 auto;
    margin-bottom: 15px;
}


/* Дома */
#building 
{
    position: absolute;
    top: 100px;
    width: 100px;
    height: 100px;
}

.house img
{
    width: 100%;
    height: 100%;
    /*background: #6ca452;*/
}

.hospital img
{
    width: 100%;
    height: 100%;
    /*background: #c96b74;*/
}


/* Люди */
.people
{
    position: absolute;
    top: 450px;
    width: 50px;
    height: 50px;
    left: -40px;
    border-radius: 50%;
    box-shadow: none; /* 0 0 5px #6ca452 */
}

.healthy
{
    background: #6ca452;
}

.sick
{
    background: #c96b74;
}

.people #img-block
{
    width: 50px;
    height: 50px;
}

.people #img-block img
{
    width: 100%;
    height: 100%;
}


/* Указатель */
.vl {
    border-left: 2px dashed white;
    height: 200px;
    position: absolute;
    left: 50%;
    top: -210px;
    display: none;
    opacity: 0.5;
}


/* Жизни */
#lifes 
{
    position: absolute;
    top: 11px;
    right: 15px;
}

#lifes #life 
{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #c9b56b;
    background: #ff6d69;
    float: right;
    margin-right: 3px;
}


/*Стиль очков*/
#points
{
    position: absolute;
    font-size: 40px;
    color: #c9b56b;
    font-weight: bold; 
    left: 13px;
    top: 2px;
}


#infoBlock #game-time
{
    position: absolute;
    margin: 15px 0 15px 15px;
    color: #c9b56b;
}




/*============= Дополнительно =============*/

/* Больные */
#score-sick 
{
    float: right;
    width: 120px;
    height: 100%;
}

#score-sick div 
{
    width: 30px;
    height: 30px;
    margin: 15px 15px 15px 15px;
    float: left;
}

#score-sick div img 
{
    width: 100%;
    height: 100%;
}

#score-sick h5 
{
    color: #c9b56b;
    font-size: 30px;
    float: left;
    margin: 13px 0 13px 0;
}


/* Здоровые */
#score-healthy 
{
    float: right;
    width: 120px;
    height: 100%;
}

#score-healthy div 
{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 15px 15px 15px 15px;
    float: left;
}

#score-healthy div img 
{
    width: 100%;
    height: 100%;
}

#score-healthy h5 
{
    color: #c9b56b;
    font-size: 30px;
    float: left;
    margin: 13px 0 13px 0;
}

/* Мертвые */
#score-dead 
{
    float: right;
    width: 120px;
    height: 100%;
    margin-right: 15px;
}

#score-dead div 
{
    width: 30px;
    height: 30px;
    margin: 15px 15px 15px 15px;
    float: left;
}

#score-dead div img 
{
    width: 100%;
    height: 100%;
}

#score-dead h5 
{
    color: #c9b56b;
    font-size: 30px;
    float: left;
    margin: 13px 0 13px 0;
}

/*Start block*/
#start-block 
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #4c4c4c;
}

#start-block button
{
    background-color: transparent;
    border: none;
    color: #c9b56b;
    padding: 40px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 34px;
    transition-duration: 0.4s;
    cursor: pointer;
    top: 220px;
    left: 360px;
    position: absolute;
    box-shadow: 0 0 5px #c9b56b;
    outline: none;
}

#start-block button:hover 
{
    opacity: 0.9;
    background: #c9b56b;
    color: #4c4c4c;
    border: none;
    outline: none;
}

#start-block button:active 
{
    background-color: #d6706d;
    color: #4c4c4c;
    border: none;
    outline: none;
    box-shadow: 0 0 5px #ff6d69;
}

#game-name 
{
    position: absolute;
    margin: 10px 0 10px 0;
    color: #c9b56b;
    width: 230px;
    left: calc(50% - 115px);
    right: calc(50% - 115px);
    font-size: 34px;
}


/*The end block*/
#end-game-block
{
  position: relative;
  background: #3e3e3e; 
  width: 1000px;
  height: 600px;
  margin: 0 auto; 
  overflow: hidden;
  text-align: center;
}

#end-game-block #result
{
    position: absolute;
    font-size: 45px;
    margin: 20px 35px 20px 35px;
    box-shadow: 0 0 5px #c9b56b;
    padding: 20px 35px 20px 35px;
}

#end-game-block #statistic
{
    position: absolute;
    margin: 30px 35px 25px 35px;
    padding: 25px 515px 25px 35px;
    top: 200px;
    width: 380px;
    box-shadow: 0 0 5px #c9b56b;
}

#end-game-block #statistic h3 
{
    font-size: 30px;
    margin: 10px;
    float: left;
}

#end-game-block #restart-button
{
    position: absolute;
    top: 500px;
    right: 0px;
    margin: 20px 35px 20px 35px;
    padding: 10px;
    background: transparent;
    color: #c9b56b;
    outline: none;
    border: none;
    box-shadow: 0 0 5px #c9b56b;
    cursor: pointer;
}

#end-game-block #restart-button:hover 
{
    opacity: 0.9;
    background: #c9b56b;
    color: #4c4c4c;
}

#end-game-block #restart-button:active 
{
    background-color: #d6706d;
    color: #4c4c4c;
    box-shadow: 0 0 5px #ff6d69;
}

/* Вакцина */

#vaccine-block
{
    float: right;
    width: 270px;
    height: 100%;
}

#vaccine-block #vaccine {
    position: relative;
    border: 2px solid #245791;
    width: 150px;
    height: 20px;
    margin: 18px 50px 18px 0;
}

#vaccine-block #vaccine #loader {
    content: "";
    position: absolute;
    width: 146px;
    height: 16px;
    top: 2px;
    left: 2px;
    background-color: #48aee2;
    margin: 0;
}

#vaccine-block div
{
    width: 30px;
    height: 30px;
    margin: 15px 15px 15px 15px;
    float: left;
}

#vaccine-block div img
{
    width: 100%;
    height: 100%;
}