html{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
body{padding: 2px;}
section{
    display: flex;
    display: -ms-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
section div{
    flex-grow: 1;
    -ms-flex-grow: 1;
    margin: 2px;
    background-color: #ffffff;
    height: 200px;
    -ms-float:left;
}
section img{
    height: 200px;
    object-fit: cover;
    -ms-object-fit: cover;
    max-width: 100%;
    min-width: 100%;
    vertical-align: bottom;
}
section div{
    position: relative;
    cursor: pointer;
}
section div address{
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-style: normal;
    display: none;
}
section div:hover address{
    display: block;
}
section > div span.adult{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 200px;
    background-color: #000000;
    color: #ffffff;
    display: box !important;
    display: -webkit-box !important;
    display: -moz-box !important;
    text-align: center;
    -webkit-box-pack:center;
    -moz-box-pack:center;
    -webkit-box-align:center;
    -moz-box-align:center;
    vertical-align: middle;
}
#views{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    -webkit-box-pack:center;
    -moz-box-pack:center;
    -webkit-box-align:center;
    -moz-box-align:center;
    vertical-align: middle;
    display: none;
}
#views img{
    max-width:90%;
    max-height: 90%;
    vertical-align:middle;
    text-align:center;
    border: solid #ffffff 8px;
    background-color: #ffffff;
    min-width: 100px;
    min-height: 100px;
    user-select:none;
}
.views{
    display: box !important;
    display: block !important;
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-box !important;
}
.goHome{
    display: box !important;
    display: block !important;
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-box !important;
    width: 60px;
    height: 60px;
    background-color: #ff0000;
    border-radius: 100%;
    position: fixed;
    top: 6px;
    right: 6px;
    z-index: 10086;
    text-align: center;
    -webkit-box-pack:center;
    -moz-box-pack:center;
    -webkit-box-align:center;
    -moz-box-align:center;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3),-4px -4px 8px rgba(0, 0, 0, 0.3);
}
.goHome:hover{
    transform: scale(1.1);
    opacity: 0.8
}
.goHome svg{
    fill: #fff;
}

body.views > *:not(#views){
    filter: blur(100px);
}

@media screen and (max-width:500px){
    #views img{
        max-width: 98%;
        max-height: 98%;
        border: solid #fff 4px;
    }
    #views{
        background-color: rgba(0, 0, 0, 0.85);
    }
}
