/* #wrapper {
    line-height: 0;
     
    -webkit-column-count: 3;
    -webkit-column-gap:   0px;
    -moz-column-count:    3;
    -moz-column-gap:      0px;
    column-count:         3;
    column-gap:           0px;  
    column-fill: auto;
  }
  
  
   #wrapper img {
    width: 100% !important;
    height: auto !important;
  } 

  @media (max-width: 1200px) {
    #wrapper {
    -moz-column-count:    2;
    -webkit-column-count: 2;
    column-count:         2;
    }
  }
  @media (max-width: 1000px) {
    #wrapper {
    -moz-column-count:    2;
    -webkit-column-count: 2;
    column-count:         2;
    }
  }
  @media (max-width: 800px) {
    #wrapper {
    -moz-column-count:    1;
    -webkit-column-count: 1;
    column-count:         1;
    }
  }
  @media (max-width: 400px) {
    #wrapper {
    -moz-column-count:    1;
    -webkit-column-count: 1;
    column-count:         1;
    }
  } */

/* #mobile-instructions {
    display: none; 
} */

@font-face {
    font-family: permanentMarker;
    src: url(fonts/PermanentMarker.ttf);
 }

#mobile-instructions {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: #ffcc00;
    padding: 10px;
    margin-bottom: 10px;
}

#wrapper {
    text-align: center;
/* margin-left: 280px; */
}

 /* For Use with Sidebar */
/* #wrapper {
    text-align: center;
    float: left;
    width: 80%;
}*/

#sidebar {
    box-sizing: border-box;
    width: 280px;
    position: fixed;
    font-size: 20px;
    padding-left: 50px;
    padding-top: 50px;
    font-family: Arial, Helvetica, sans-serif;
}

#sidebar #name {
    font-weight: 400;
    font-style: normal;
}

 /* =================================================================================================
======================================= Trip Preview ===============================================
================================================================================================= */
.trip-preview {
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 50px;
    cursor: pointer;
}

.trip-preview .banner{
    margin-bottom: 10px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: #404040;
}

.trip-preview .banner .location{
    font-size: 40px;
    margin-bottom: 5px;
}

.trip-preview .banner .date{
    font-size: 20px;
}

.trip-preview:hover {
    cursor: pointer;
}

/*Prevent hover img scale from exceeding original size*/
.trip-preview .img{
    overflow: hidden;
}

.trip-preview img {
    /* transition: 0.5s linear; */
}

.trip-preview:hover img {
     /* transform: scale(1.2);  */
     opacity: 0.8;
    /* filter: grayscale(100%); */
}

/* END OF TRIP PREVIEW */
.trip-full {
    margin-bottom: 50px;
    font-size: 20px;
}

.trip-full .banner {
    background-color:#436476;
}

.trip-full .banner:hover {
    cursor: pointer;
}

.trip-expanded{
    width: 100%;
    height: 100%;
}

.trip-full .location {
    font-size: 50px;
    text-align: center;
    font-family: Impact, Arial, Helvetica, sans-serif;
    /* background-color: #344146; */
    color: #e8ecee;
    padding-top: 15px;
    margin-bottom: 10px;
}

.city {
    font-size: 30px;
    font-family: Impact;
    text-align: left;
    margin-left: 20%;
    margin-top: 35px;
    color: #344146;
}

.trip-full .date {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    font-family: sans-serif;
    /* background-color: #344146; */
    color: #e8ecee;
    padding-bottom: 15px;
}

.description {
    width: 80%;
    text-align: left;
    font-size: 20px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 50px;
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
}

.description p {
    margin: 20px 0;
}

.return {
    cursor: pointer;
    text-decoration: underline;
}

.return-button {
    width: 65px;
    position: absolute;
    left: 20px;
    top: 20px;
    color: #e8ecee;
}

.return-button:hover {
    color: white;
}

/* .first {
    width: 70%;
    float: left;
}

.second {
    width: 30%;
    float: left;
} */

.clear {
    clear: both;
}

.hide {
    display: none;
}

body {
    margin: 0;
    /* background-color: #e8ecee; */
    background-color: #fcfcfc;
}

.gallery {
    text-align: center;
    font-size: 0;
    /* display: none; */
}

.polaroid {
    display: inline-block;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px 10px 0 10px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.polaroid .container{
    padding: 10px 0;
}

.caption {
    font-size: 16px;
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
} 

img {
    max-height: 300px;
    max-width: 100%;
    /* border: 5px solid black; */
    /* padding: 5px; */
}

img.lazy {
    /* width: 350px; */
    min-width: 200px;
}

img:focus {
    outline: 0 !important;
}

#home {
    position: fixed;
    top: 50px;
    padding: 10px;
    z-index: 5;
    background-color: rgb(106, 107, 161);
}


/* =================================================================================================
======================================= Media Querys ===============================================
================================================================================================= */
@media screen and (min-width: 800px) { /* 800px is roughly when it goes from one picture per row to 2 */
    .trip-preview {
      margin-left: 30px;
    }

    .polaroid .container{
        height: 16px;
    }

    #mobile-instructions {
        display: none;
    }
  }

/* @media screen and (max-width: 800px) {
    #mobile-instructions {
        display: block;
    }
} */