/*general styles*/
body{
    font-family: 'Open Sans', helvetica, arial, verdana, sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

@media(max-width:767px) {
    body.entropia  {
        font-size: 14px;
        line-height: 1.2;
    }
}

hr {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    color: rgb(145,143,144);
    border-bottom: 1px solid rgb(145,143,144); 
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.fw100 {
    font-weight: 100;
}
.fw400{
    font-weight: 400;
}

@-webkit-keyframes fade {
    0% {color: rgba(0,0,0,1);}
    50% {color: rgba(0,0,0,0);}
    100% {color: rgba(0,0,0,1);}
}

/* Standard syntax */
@keyframes fade {
    0% {color: rgba(0,0,0,1);}
    50% {color: rgba(0,0,0,0);}
    100% {color: rgba(0,0,0,1);}
}

.anim_fadeout{
    -webkit-animation: fade 1s; /* Chrome, Safari, Opera */
    animation: fade 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.anim_fadein{
    -webkit-animation: fade 1s; /* Chrome, Safari, Opera */
    animation: fade 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}


#browser-warn {
    display: none;
    top: 0;
    width: 100%;
    background-color: #c33;
    padding: 5px;
    color: #fff;
    position: fixed;
    z-index: 10000;
}

#bad-browser-wrapper {
  display: none;
}

.badbrowser {
  width: 80%;
  max-width: 900px;
  background-color: white;
  color: black;
  font-size: 22px;
  margin: 40px auto;
  text-align: center;
  padding: 20px;
}

.badbrowser img {
    margin: 10px auto;
}

.main-content {
    min-height: 200px;
}

/* picts */
.picts .cell .overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(255,255,255,0.5);
}

.picts .cell {
    text-align: center;
    margin-bottom: 10px;
}

.picts .cell.selected .overlay {
    display: none;
}

.picts .cell .selection-sign {
    display: none;
}

.picts .cell.selected .selection-sign{
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(50,55,55,0.0);
    font-size: 60px;
}





