/* These styles are generated from project.scss. */
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
body {
  font-family: 'Oswald', sans-serif !important;
}


.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/*autocomplete*/

#autocomplete-list {

    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    margin-bottom: 10px;
    margin-top: -12px;
}
.autocomplete-item {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 8px;
    cursor: pointer;
}
.autocomplete-item:hover {
  background-color: #ccadcc;
}


/*PHOTO GALLERY*/
.tiletainer {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 0.5rem;
}

.tile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile:nth-child(1){
    grid-column: span 4;
    grid-row: span 2;
}

.tile:nth-child(2),
.tile:nth-child(3){
    grid-column: span 2;
}

.tile:nth-child(4),
.tile:nth-child(5),
.tile:nth-child(6){
    grid-column: span 2;
}

@media screen and (max-width: 650px){
    .tiletainer{
        display: block;
    }
    .tile{
        margin-bottom: 1rem;
    }
}

/*footer*/

.sticky-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}
