/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

body {
    background-color: rgb(223,223,216);
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#container {
    display: flex;
}

#left-panel,
#right-panel {
    display: none;
    flex: 1;
    margin-top: 190px;
    margin-left: 10px;
    margin-right: 10px;
}

#left-panel img,
#right-panel img
{
    width: 100%;
}

#page-content {
    width: 980px;
    min-height: 300px; /*TODO: check if needed*/
    margin-left: auto;
    margin-right: auto;
}

#top-bar {
    position: absolute;
    width: 100%;
    height: 160px;
    background-color: rgb(148,148,94);
    z-index: -1;
    -moz-box-shadow: inherit;
    -webkit-box-shadow: inherit;
}

#header-logo {
    margin-top: 10px;
}

#header-title {
    margin-top: 10px;
    margin-left: 15px;
    vertical-align: top;
    max-width: 444px;
}

header {
    position: relative;
    z-index: 2;
    background-color: rgb(148, 148, 94);
}

nav {
    position: absolute;
    top: 100px;
    right: 0px;
}

    nav ul {
        list-style-type: none;
        margin: 0px;
    }

    nav > ul li {
        display: inline;
    }

    nav > ul > li:hover {
        /*border-bottom: none;
	margin-bottom: 0px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;*/
    }

.submenu {
    display: none;
    margin: 0px;
    padding: 0px;
}

li:hover .submenu, .open-menu .submenu {
    display: block;
}

.submenu li {
    display: block;
    width: 100%;
}

.submenu .menu-item {
    display: block;
    margin: 0px;
    width: 100%;
    border: none;
    -moz-border-radius: unset;
    -webkit-border-radius: unset;
    border-radius: unset;
}

.submenu .menu-item:hover {
    background-color: rgb(48,48,48);
    border-color: rgb(48,48,48);
}

.menu-item, .menu-item-small {
    display: block;
    float: left;
    background-color: transparent;
    color: black;
    /*padding: 5px 15px;*/
    width: 190px;
    margin: 5px 3px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16pt;
}

.menu-item-small {
    width: 50px;
}

.menu-item a, .menu-item span {
    color: inherit;
    display: block;
    line-height: 40px;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
}

.menu-item:hover, .open-menu {
    background-color: rgb(48,48,48);
    border-color: rgb(64,64,64);
    color: white;
    position: relative;
}

.submenu .menu-item a {
    text-align: center;
    font-size: 12pt;
    margin: 0 5px;
    color: white;
}


.top-text {
    margin: 30px 6px 0px 6px;
    font-weight: 600;
}

.top-text p {
    margin: 0px;
    margin-block-end: 10px;
}

#offers-container {
    margin-top: 50px;
    display: inline-block;
}

#offers-container > h1 {
    text-align: center;
    font-size: 48pt;
}

.offer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 300px;
    margin: 20px 10px;
    float: left;
    display: flex;
    align-items: center;
}

.offer-icon {
    width: 32px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.offer-content {
    width: 250px;
    display: inline-block;
}

.offer-content h2 {
    margin: 0px;
}

.arrow-left {
    position: absolute;
}

.arrow-right {
    position: absolute;
    right: 0px;
    top: 0px;
}

.page-arrows {
    position: absolute;
    top: 0px;
    right: 0px;
}

    .page-arrows a {
        display: inline;
        margin: 0px !important;
    }

.open-menu .submenu .menu-item {
    position: relative;
}

.thumb-container {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 233px 233px 233px 233px;
    grid-row-gap: 4px;
}

.thumb-wrapper {
    display: inline-grid;
}

.thumb-link {
    display: inline-block;
    padding: 4px;
    margin: auto;
    background-color: white;
    line-height: 0;
    border-radius: 4px;
}

.thumb-img {
    max-width: 220px;
    max-height: 180px;
    width: auto;
    height: auto;
}