.title {
	font-size: 2.4em;
	font-weight:700;
}

.text {
	font-size:1.4em;
	font-weight:500;
	line-height:1.6em;
}

.popup.show {
    display: flex!important;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
    justify-content: center;
    align-items: center;
}

.button {
	width: 200px;
    height: 50px;
    margin: 20px;
    font-size: 18px;
    font-weight: 600;
    border: unset;
	border-radius:6px;
	color:#fff;
}

.popup-content {
    background-color: #fefefe;
    margin: 20px;
    padding: 20px;
    border: 1px solid #888;
    width: fit-content;
	border-radius: 6px;
}

.close {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    top: -15px;
    position: relative;
    right: -10px;
    opacity: .3;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.content {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
	min-height:60vh;
	text-align:center;
	padding:0 80px 0 80px;
}


@media (max-width: 767px) {
	
	.content {
	padding:20px 10px 40px 10px;
	}
	
}

.LangSelector {
	display: flex;
    flex-direction: row;
    align-items: center;
	font-size:20px;
}

.LangSelector .shopping-basket-has-content {
	font-size: 14px;
    font-weight: 700;
}

.LangSelector img {
	margin:5px;
}

body {
	background-color:#F6F6F6;
	font-family:Catamaran;
}

.container {
	background-color:#fff;
	min-height:100vh;
	background-image: url("pirate-pattern.svg");
	background-size: 165px 141px;
	background-repeat: repeat;
	display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}

#header {
	background-color:#fff;
	padding:20px;
	display: flex;
	justify-content: space-between;
	align-items:center;
	z-index:1;
	position:relative;
	margin-left:-15px;
	margin-right:-15px;
}

#PageContent {

}

/* Hamburger Menu */

#menuArea {
	display: flex;
    align-items: center;
}


#menuToggle {
  display: none;
}

.open {
  background-color: #3c3c3c;
  width: 24px;
  height: 4px;
  display: block;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  top: 8px;
}

.open:before {
  content: "";
  background-color: #3c3c3c;
  width: 24px;
  height: 4px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: -8px;
  transform: rotate(0deg);
}

.open:after {
  content: "";
  background-color: #3c3c3c;
  width: 24px;
  height: 4px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: 4px;
  transform: rotate(0deg);
}

.menuOpen {
  width: 24px;
  height: 20px;
  display: block;
  cursor: pointer;
  float: right;
  margin-left:10px;
  margin-bottom:unset;
}

.menu {
	font-family: "Catamaran", sans-serif;
	font-weight:600;
	font-size:18px;
	color:#5D5D5D;
	line-height:20px;
	-webkit-font-smoothing: antialiased;
	position: fixed;
	width: 1170px;
	height: auto;
	right:0;
	top: 0;
	left: 0;
	background: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	margin: 0 auto;
	padding:40px;
	max-height:100vh;
	overflow:auto;
}

.menu strong {
	font-weight:800;
	font-size:20px;
}

@media (max-width: 1200px) {
	
	.menu {
	width:970px;
	}
	
}

@media (max-width: 991px) {
	
	.menu {
	width:750px;
	}
	
	.menuRow {
	flex-direction:column!important;
	}
	
}

@media (max-width: 767px) {
	
	.menu {
	padding:20px;
	}
	
}

.menu label {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 20px;
	top: 20px;
	background-size: 100%;
	cursor: pointer;
}



.menuContent {
	max-width:100vw;
}

.menuContent a {
	color: #5d5d5d; 
	text-decoration:unset;
}

.menuContent a:hover {
	color: #f15a29; 
}

.semiBold {
	font-weight:700;
}

.menuRow {
	display:flex;
	justify-content:flex-start;
	flex-direction:row;
}

.menuColumn {
	width: 100%;
	margin-bottom:20px;
}

@media (max-width: 767px) {
	
	.menuRow {
	flex-direction:column;
	}
	
}

.menuEffects {
  transform: translateY(-120%);
  transition: transform 0.6s;
}

#menuToggle:checked ~ .menuEffects {
  transform: translateY(0);
}

#menuToggle:checked ~ .menuEffects ul {
  opacity: 1;
}

#menuToggle:checked ~ .menuOpen .open {
  background-color: transparent;
}

#menuToggle:checked ~ .menuOpen .open:before {
  content: "";
  background-color: #5D5D5D;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:checked ~ .menuOpen .open:after {
  content: "";
  background-color: #5D5D5D;
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}
