body {
  background-color: #F7F7F9;
}

.container {
  margin-top: 10px;
}

.well {
  margin: 20px;
}

.board {
  display: table;
  margin: 0 auto;
}

.panel-label {
  color: #555;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  line-height: 46px;
  min-width: 35px;
}
.panel-label-icon {
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin: -4px 5px 0;
}
.panel-body {
  display: block !important;
  margin: 1em 0;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100% !important;
}

.field {
  height: 30px;
  width: 30px;
  float: left;
  margin: 1px;
  position: relative;
  padding: 0;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  background-color: #158CBA;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  text-shadow: 1px 1px 1px #FFF;
  color: #FFF;
  -moz-transition: 100ms;
  -ms-transition: 100ms;
  -o-transition: 100ms;
  -webkit-transition: 100ms;
  transition: 100ms;
}
.field.hover {
  cursor: pointer;
  background-color: #8AC6DD;
}
.field.inactive {
  background-color: #f0f0f0;
  cursor: default;
}
.field.last {
  clear: both;
}
.field.last:after { 
   content: " ";
   display: block; 
   height: 0; 
   clear: both;
}
.field.label-1:before {
  content: '1';
  color: #414FBC;
}
.field.label-2:before {
  content: '2';
  color: #266C13;
}
.field.label-3:before {
  content: '3';
  color: #A60505;
}
.field.label-4:before {
  content: '4';
  color: #00008D;
}
.field.label-5:before {
  content: '5';
  color: #7A0100;
}
.field.label-6:before {
  content: '6';
  color: #007C78;
}
.field.label-7:before {
  content: '7';
  color: #B10101;
}
.field.label-8:before {
  content: '8';
  color: #AF0208;
}
.field.marker-1 {
  background-image: url('./../img/marker-1.svg');
}
.field.marker-2:before {
  content: '?';
  text-shadow: none;
}
.field.mine {
  background-image: url('./../img/mine.svg');
  background-size: 16px;
}
.field.win {
  background-color: #28B62C;
}
.field.lose {
  background-color: #FF4136;
}

.modal-backdrop {
  bottom: 0;
  position: fixed;
}