﻿.row {
    margin: 8px -25px 0px 0px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
    padding: 0px;
}

/* Create four equal columns that floats next to each other */
.column {
    float: left;
    width: 33%;
    display: none; /* Hide columns by default */
}

/* The "show" class is added to the filtered elements */
.show {
    display: inline-block;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
    .column {
        width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}

.gallery-image {
    width : 180px;
    height : 120px;
    border-radius: 10px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    padding: 5px;
    display: none;
    position: absolute;
    background-color: rgba(170,124,57,0.70);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd
}

table {
    color: rgba(255,234,203,1);
}

select {
    margin: 5px;
    background: rgba(170,124,57,0.70);
    color: rgba(65,38,0,1);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    max-width: 95%;
}

    select option {
        margin: 0px;
        background: rgba(170,124,57,0.70);
        color: rgba(65,38,0,1);
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    }