@charset "utf-8";
/* CSS Document */

.privacyTitle-Container {
    text-align: center;
    padding-top: 20px;
}
.privacyTitle-Container h4 {
    margin: 0px;
}
.privacyTitle-Container img {
    max-width: 100%;
}
.privacy-Content {
	border: 6px ridge #387538;
	background-color: antiquewhite;
    margin: 0px auto;
    width: 75%;
    padding: 15px;
    text-align: justify;
	position: relative;
}
.privacy-Content ol {
    padding-left: 25px;
}
.privacy-Content ol li {
	color: black;
}
.privacy-Content h4, .privacy-Content p, .privacy-Content li {
    margin: 0px;
    padding: 3px 0px;
}
.privacy-Content a {
    color: #387538;
    text-decoration: none;
}

.cookiePolicy-Container {
	display: none;
	background-color: rgb(0,0,0,0.5);
	max-width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 99;
}
.cookiePolicy-Item {
	background-color: blanchedalmond;
	border: 15px ridge #5E3002;
	border-radius: 25px;
	position: relative;
	max-width: 65%;
	max-height: 300px;
	top: 20px;
	margin: 0px auto;
	padding: 0px 15px;
	overflow: auto;
}
.cookiePolicy-Item .closeButton {
	text-align: right;
	font-size: 20px;
	margin: 0px;
	padding: 2px 0px 0px;
	position: sticky;
	right: 0px;
	top: 0px;
}
.cookiePolicy-Item .closeButton span {
	background-color: black;
	margin: 0px;
	padding: 0px 8px 2px;
	color: aliceblue;
	border-radius: 50%;
	cursor: pointer;
}
.cookiePolicy-Content {
	padding: 5px 0px 10px;
}
.cookiePolicy-Content h2, .cookiePolicy-Content p, .cookiePolicy-Content ul {
	margin: 0px;
}
.cookiePolicy-Content h2 {
	background-color: #387538;
	border-radius: 15px;
	padding-bottom: 5px;
	color: aliceblue;
	text-align: center;
}
.cookiePolicy-Content p {
	padding-bottom: 5px;
}

@media all and (max-width : 1200px) {
    .privacy-Content {
        width: 90%;
    }
	.cookiePolicy-Item {
		max-width: 90%;
		font-size: 14px;
	}
}

@media all and (max-width : 900px) {
    .privacy-Content {
        width: 90%;
    }
}