.main-window {
    margin: 0 auto;     /* centering */
    max-width: 1800px;
    display: flex;
    justify-content: center;
}

.sidebar-container {
    max-width: 300px;
    flex: 2;
    padding: 0 10px;
}

.sidebar-title {
    font-weight: bold;
    padding: 10px 0 0px 0px;
}

.sidebar-subtitle {
    padding: 10px 0 0px 0px;
}

.sidebar-container input[type=submit] {
    padding: 4px 25px;
}

.checkbox-label {
    font-family: var(--fonts2);
}

.results-container {
    max-width: 1500px;
    flex: 9;
    flex-basis: 1;
}

.results-subcontainer {
    display: flex;
    gap: 10px;
    justify-content: left;
    flex-wrap: wrap;
}

.results-title {
    font-weight: bold;
    padding: 10px 0 6px 6px;
}

.results-subtitle {
    padding: 0 0 6px 6px;
}

.result-frame {
    border-radius: 10px;
    border: 1px solid white;
    max-width: 290px;
    flex-grow: 0;
    margin-bottom: 10px;
}

.result-pic {
    
}

.result-frame a {
    text-decoration: none;
}

.result-frame a:link, .result-frame a:visited { 
    color: #424949;
}

.result-frame a:hover {
    color: green;
}

a .result-pic img {
    border-radius: 10px;
    width: 100%;
}

.result-label {
    padding: 6px;
    font-family: var(--fonts2);
}

.price {
    color: green;
    font-size: 20px;
    font-weight: bold;
    padding: 6px;
}

.delivery-text {
    padding: 6px;
    font-size: 14px;
}

.result-frame button {
    border: none;
    border-radius: 15px;
    margin-left: 6px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: orange;
    font-size: 15px;
}

.result-frame button:hover, a .result-pic img:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    div.sidebar-container { 
        display: none;
    }
    
    div.result-frame {
        max-width: 48.5%;    
        flex-grow: 1;
    }
    
    div.result-frame, a .result-pic img {
        padding: 6px;
    }
}