
body {
  margin: 0;
  background: #f5f5f5;
}

html {
  font-family: sans-serif;
  font-size: 100%;
  margin: 0;
  height: 100%;
}

.header-global {
    margin: 0;
    padding: 0;
    background: #45515A;
    padding-top: 25px;
    padding-bottom: 25px;
    color: #fff;
    width: 100%;
    height: 120px;
}

.headline {
  text-align: center;
}

.footer-global {
    /*position: fixed;*/
    background: #45515A;
    bottom: 0;
    padding-top: 1px;
    padding-bottom: 1px;
    margin-top: 25px;
    color: #fff;
    width: 100%;
    /*height: 120px;*/
}

.button {
    background-color: #f5f5f5;
    color: #45515A;
    border: 1px solid #ccc;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.button:hover {background-color: #ccc;color: #45515A;}

.expand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px;
}

.messageline {
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 25px;
}

.messagetext {
   vertical-align: middle;
   margin-left: 25px;
}

#msgimg {
  visibility: hidden;
}

.svv-logo {
    width: 120px;
    height: 80px;
    float: left;
    margin-left: 30px;
    margin-right: -100%;
}

.ttlogo {
    width: 180px;
    height: 80px;
    float: right;
    /*margin-bottom: 10px;*/
    margin-right: 30px;
    margin-left: -100%;
}

div.infobody {
    margin: 20px; 
}

div.gallery {
    border: 1px solid #ccc;
    background: #ffffff;
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: 0.3s;
}

div.gallery img:hover {opacity: 0.7;}

div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 11.0%;/*width: 12.49%;/*16.65%;*/
    font-size: 80%;
}

@media only screen and (max-width: 1900px) {
    .responsive {
        width: 19.99999%;/*16.65%;*/
        margin: 6px 0;
        font-size: 100%;
    }
}
/*
@media only screen and (max-width: 1299px) {
    .responsive {
        width: 24.99999%;
        margin: 6px 0;
    }
}*/

@media only screen and (max-width: 1090px) {
    .responsive {
        width: 33.33332%;
        margin: 6px 0;
        font-size: 100%;
    }
}

@media only screen and (max-width: 750px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
        font-size: 100%;
    }
    .svv-logo {
        visibility: hidden;
    }
    .ttlogo {
        visibility: hidden;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
        font-size: 100%;
    }
    .svv-logo {
        visibility: hidden;
    }
    .ttlogo {
        visibility: hidden;
    }
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
}

@keyframes zoom {
    from {transform: scale(0.1)} 
    to {transform: scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

