/*#mainContent > div.wrapper {
    max-width: 1300px;
}*/

.contentBox a span,
.contentBox a:active span,
.contentBox a:history span {
    text-decoration: none; 
} 

.text {
    font-size: 1.2em;
}

hr {
    border-color: #03582D;
    border-style: solid;
}

h2.noPadding {
    padding: 0px;
}

.flexContainerHoz {
    display: flex;
    justify-content: space-around;
    flex-flow: row nowrap;
    flex: 1;
    gap: 20px;
    align-content: space-between;
    padding: 2% 10%;
}

.contentBox {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.green-background {
    background-color: #03582D
}

.flexContainerHozSingle > div:first-child {
    width: 30%;
}

.flexContainerHozSingle > div:last-child {
    width: 40%;
}

.flexContainerHoz > div {
    width: 300px;
    padding: 10px;
    background-color: #ffffff;
    text-align: center;
    cursor: pointer;
}

.flexContainerHoz div img {
    width: 100%;
}

.flexContainerHozSingle {
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    gap: 25px;
    scroll-margin-top: 240px;
}

.flexContainerHozSingle > div {
    width: 300px;
    margin: 20px 0px;
    text-align: left;
}

.flexContainerHozSingle > div > img {
    width: 100%;
}

.flexContainerHozSingle > div.wideWidth {
    min-width: 500px;
}

.flexContainerHozSingle .text {
    text-align: left;
}

.alignCenter {
    align-items: center;
}

/* For Collapsible.js jQuery library */
.collapse-container > h3 {
    cursor: pointer;
}
.arrow-r {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #03582d;
    margin-bottom: 1%;
    margin-right: 7px;
    margin-left: 3px;
    display: inline-block;
    vertical-align: middle;
}

.arrow-d {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #03582d;
    margin-bottom: 6px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

.buttonGroup {
    text-align: center;
}

.buttonContainer {
    text-align: center;
    display: inline-block;
    margin-bottom: 20px;
}

.buttonContainer a {
    width: 140px;
    font-size: 1.2em;
}

.buttonContainer input {
    max-width: 125px;
    width: 100%;
    margin: 0px;
    margin-right: 10px;
    margin-bottom: 20px;
    text-align: center;
}

#reviews {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
}
.reviewText {
    width: 80%;
}

.signatureText {
    width: 50%;
    text-align: right;
}

/* Catering table */
.cateringPricesTable {
    border-collapse: collapse;
    text-align: center;
    margin: 0 auto;
    min-width: 80%;
}

.cateringPricesTable th:not(.title) {
    background-color: #03582D;
    color: #FFFFFF;
    font-weight: normal;
}

.cateringPricesTable th.title {
    font-size: 1.8em;
    vertical-align: middle;
    height: 35px;
    border: 0px;
}

.cateringPricesTable td,
.cateringPricesTable th {
    border: 1px solid #03582D;
    padding: 5px;
}

.cateringPricesTable tr.oddRow {
    background-color: #FFFFFF;
}

.cateringPricesTable tr.evenRow {
    background-color: #86C18D;
}

/*What to do when screen width has been reduced below a certain width (for mobile or small screens)*/
@media screen and (max-width: 900px) {
    .flexContainerHozSingle {
        flex-flow: column nowrap;
        gap: 0px;
    }
    
    .flexContainerHoz {
        flex-flow: column nowrap;
    }
    
    .flexContainerHoz > div {
        margin: auto;
    }
    
    .reverseFlexColumnOnMobile {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .flexContainerHozSingle > div:first-child {
        margin: auto;
        width: 75%;
    }
    
    .flexContainerHozSingle > div:last-child {
        margin: auto;
        width: 75%;
    }
    
    hr {
        margin: 15px auto;
    }
}