html, body {
    height: 100%;
}

html, body, h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", sans-serif;
}

/* BACKGROUND COLORS */

.s-background-color-grey {
    background-color: #808080;
}

.s-background-color-green {
    background-color: #9CBC59;
}

.s-background-color-white {
    background-color: #FFFFFF;
}

/* COLORS */

.s-color-white {
    color: #FFFFFF;
}
 
 .s-color-333333 {
    color: #333333;
}

/* WIDTH, HEIGHTS, MARGIN AND PADDINGS */

@media (min-width: 1230px) {
    .s-max-width-1200px {
        max-width: 1200px;
    }
}

@media (max-width: 1229px) {
    .s-max-width-1200px {
        max-width: 1200px;
        margin: 0 15px !important;
    }
}

.s-margin-auto {
    margin: auto;
}

.s-margin-bottom-15px {
    margin-bottom: 15px;
}

.s-padding-top-15px {
    padding-top: 15px;
}

.s-padding-bottom-15px {
    padding-bottom: 15px;
}

.s-height-menu-bar {
    height: 75px;
}

.s-position-absolute {
    position: absolute;
}

.s-display-flex {
    display: flex;
}

.s-height-100p {
    height: 100%;
}

.s-width-100p {
    width: 100%;
}

/* POSITIONS */

.s-position-absolute {
    position: absolute;
}

.s-position-relative {
    position: relative;
}


/* FONT AND TEXT STUFF */

.s-text-align-center {
    text-align: center;
}

.s-font-size-10px {
    font-size: 10px;
}

.s-font-size-13px {
    font-size: 13px;
}

.s-font-size-16px {
    font-size: 16px;
}

.s-font-size-20px {
    font-size: 20px;
}

.s-font-size-24px {
    font-size: 24px;
}

.s-font-weight-600 {
    font-weight: 600;
}

/* ELEMENT SPECIFIC STUFF */

.s-menu-position {
    position: absolute;
    top: 0;
}

.s-mobile-menu-sidebar {
    width: 100%;
    z-index: 1100;
}

.s-mobile-menu, .s-mobile-menu ul {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;

    padding-inline-start: 0;
}

.s-mobile-menu ul {
    padding-inline-start: 20px;
}

.s-mobile-menu > li:not(:first-child) {
    padding-top: 5px;
}

.s-mobile-menu > li:not(:last-child) {
    border-bottom: #999999 1px solid;
    padding-bottom: 5px;
}

.s-mobile-menu a {
    text-decoration: none;
}

.s-mobile-menu a:hover {
    color: #9CBC59;
}

.s-menu {
	z-index: 999;
}

.s-menu-shadow {
    box-shadow: 0 0 12px 2px rgb(0 0 0 / 80%);
}

.s-menu-background {
    position: absolute;
    width: 100%;
}

.s-menu-item {
    /*height: 48px;*/
    font-size: 16px;
    text-decoration: none;
    padding: 26px 15px !important;
}

.s-menu-item a {
    text-decoration: none;
}

.s-menu-item:hover, .s-menu-item-highlighted {
    box-shadow: inset 0 -6px 0 #808080;
}

.s-menu-dropdown-content {
    margin-top: 25px;
    margin-left: -15px;

    font-size: 14px;
}