*{
	box-sizing: border-box;
}

body{
	background-color: #f7f7f7;
	padding: 0px;
	margin: 0px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}

label{
	user-select: none;
}

button{
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	filter: none;
}

input, textarea{
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
}

.main-div{
	width: 30%;
	margin: 0px auto;
	margin-top: 80px;
	padding: 20px;
	display: none;
	border-style: solid;
	border-width: 1px;
	border-radius: 10px;
}

.loggedin-div{
	margin: 0px auto;
	margin: 80px;
	display: none;
	border-style: solid;
	border-width: 1px;
	border-radius: 10px;
	padding-bottom: 40px;
}

#panel{
	overflow: auto;
	padding-bottom: 15px;
}

#content-div{
	padding: 20px;
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
	text-align: center;
	overflow: auto;
}

#admin-div #content-div{
	padding: 20px 10px;
}

.padded-div{
	padding: 20px;
}

.main-div input{
	display: block;
	border: 1px solid #333;
	border-radius: 5px;
	background: #fff;
	padding: 15px;
	outline: none;
	width: 100%;
	margin-bottom: 20px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
}

.main-div input:focus{
	border: 1px solid #999;
}

.main-div button, .loggedin-div button{
	background: #331155;
	color: #fff;
	border: 1px solid #333;
	border-radius: 5px;
	padding: 10px 15px;
	width: 100%;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
}

.main-div button:hover, .loggedin-div button:hover{
	background: #4C187F;
	border: 1px solid #333;
	cursor: pointer;
}

table{
	width: 100%;
}

#admin-div table{
	width: calc(100% - 20px);
	margin: 0px 10px;
}

table, th, td{
	border: 1px solid black;
	border-collapse: collapse;
}

td{
	padding: 5px;
}

.center{
	text-align: center;
}

h3{
	margin-top: 0px;
}

.header{
	font-weight: 500;
	border-bottom: 2px solid #331155;
	padding-bottom: 10px;
	margin-right: 10%;
	margin-left: 10%;
}

.video{
	border: 1px solid black;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 20px;
	background-color: black;
}

.station{
	padding-bottom: 20px;
}

.station p{
	padding: 20px;
	margin-right: 20px;
	margin-left: 20px;
}

/*.gallery{
	text-align: left;
}*/

.gallery img{
	transition: 0.5s;
	margin: 10px;
	width: 200px;
	border: 1px solid black;
}

.gallery img:hover{
	filter: brightness(120%);
	transform: scale(1.1);
}

.loggedin-div #panel .buttons{
	float: left;
	width: 200px;
	margin-right: 5px;
	margin-bottom: 5px;
}

.loggedin-div .logout{
	float: right;
	width: 120px;
}

.loggedin-div table tr td button{
	width: 100px;
}

#loading-box {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 1;
	opacity: 0.9;
	background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='69.141' height='40' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(0,0%,100%,1)'/><path d='M69.212 40H46.118L34.57 20 46.118 0h23.094l11.547 20zM57.665 60H34.57L23.023 40 34.57 20h23.095l11.547 20zm0-40H34.57L23.023 0 34.57-20h23.095L69.212 0zM34.57 60H11.476L-.07 40l11.547-20h23.095l11.547 20zm0-40H11.476L-.07 0l11.547-20h23.095L46.118 0zM23.023 40H-.07l-11.547-20L-.07 0h23.094L34.57 20z'  stroke-width='0.5' stroke='hsla(0, 0%, 91%, 1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
}
	
#loading-box:before {
	  content: "";
	  height: 100%;
	  display: inline-block;
	  vertical-align: middle;
}
	
#loading-box .loading-frame {
	  display: inline-block;
	  vertical-align: middle;
	  width: 100px;
	  height: 100px;
	  border-radius: 50%;
	  position: relative;
	  overflow: hidden;
	  padding: 10px;
	  border: 5px solid #fff;
}

#loading-box .loading-bar {
		background: #29d;
		width: 50%;
		height: 50%;
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 100% 0 0 0;

		animation: spin 2s linear infinite;
		transform-origin: 100% 100%;
}
	  
#loading-box .loading-cover {
		background: #fff;
		width: 100%;
		height: 100%;
		border-radius: 50%;
		position: relative;
		z-index: 2;
}

@keyframes spin {
	0% {
	  transform: rotate(0deg);
	  background: #4C187F;
	}
	50% {
	  transform: rotate(180deg);
	  background: #331155;
	}
	100% {
	  transform: rotate(360deg);
	  background: #4C187F;
	}
}

.box {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 20%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

.box p{
	display: block;
	text-align: center;
}

.boxContent{
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	border-color: #333;
	border-radius: 10px;
	background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='69.141' height='40' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(0,0%,100%,1)'/><path d='M69.212 40H46.118L34.57 20 46.118 0h23.094l11.547 20zM57.665 60H34.57L23.023 40 34.57 20h23.095l11.547 20zm0-40H34.57L23.023 0 34.57-20h23.095L69.212 0zM34.57 60H11.476L-.07 40l11.547-20h23.095l11.547 20zm0-40H11.476L-.07 0l11.547-20h23.095L46.118 0zM23.023 40H-.07l-11.547-20L-.07 0h23.094L34.57 20z'  stroke-width='0.5' stroke='hsla(0, 0%, 91%, 1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
	width: 200px;
}

.close {
	margin-top: -20px;
	margin-right: -10px;  
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

#addBtn{
	margin-right: 10px;
	margin-top: 10px;
	float: right;
	width: 120px;
}

.addOffer #addBtn{
	float: right;
	width: 120px;
	margin-right: 0px;
}

.offerList{
	overflow: auto;
	clear: both;
	border-spacing: 10px 20px;
}

#user-div .offerList{
	margin-right: -10px;
}

.chosen{
	border-spacing: unset;
}

.offer{
	display: table-row;
	clear: left;
}

.offer .offerTitle, .offer .offerLp{
	display: table-cell;
}

.offer .offerLp{
	vertical-align: middle;
}

.offer .offerTitle{
	position: relative;
	text-align: left;
	width: 100%;
	box-shadow: 0px 0px 3px #331155;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
}

#user-div .offer.unavailable .offerTitle{
	cursor: default;
}

.offer .offerTitle:hover{
	box-shadow: 0px 0px 3px #4C187F;
	background-color: #e8f1fa98;
}

#user-div .offer.unavailable .offerTitle:hover{
	box-shadow: 0px 0px 3px #331155;
	background-color: transparent;
}

.offer .offerTitle label{
	display: flex;
	align-items: center;
	width: calc(100% - 280px);
	padding-left: 10px;
	cursor: pointer;
	float: left;
}

.offer .offerTitle .dates{
	display: flex;
	align-items: center;
	width: 230px;
	padding-left: 10px;
	cursor: pointer;
	float: right;
}

.offer .offerTitle .dates .start{
	color: darkgreen;
	margin-right: 20px;
}

.offer .offerTitle .dates .end{
	color: darkred;
}

#user-div .offer.unavailable .offerTitle label{
	cursor: default;
}

.offer .offerAvailability{
	display: flex;
	position: absolute;
	right: 10px;
	top: calc(50% - 10px);
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.red{
	background-color: #fc5f5f;
}

.green{
	background-color: #49aa61;
}

.blue{
	background-color: #91dcff;
}

#user-div .unavailable{
	color: grey;
}

.addOffer{
	padding: 0px 10px;
}

.addOffer .title input{
	padding: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	border: 1px solid gray;
	border-radius: 5px;
	margin-bottom: 20px;
}

.addOffer .title input:focus{
	outline: 1px solid #331155;
}

.addOffer label, .addOffer input, .addOffer textarea{
	display: block;
	text-align: left;
	margin-bottom: 10px;
	border-radius: 5px;
	width: 100%;
}

.addOffer .poziom
{
	width: 120px;
	margin-bottom: 20px;
}

.addOffer .poziom input[type="radio"]{
	opacity: 0;
	position: fixed;
	width: 0;
}

.poziom .poziom-label{
    display: inline-block;
    padding: 10px 21px 10px 19px;
    font-family: sans-serif, Arial;
    font-size: 16px;
	border-radius: 10px;
	border: 2px solid #4C187F;
	width: 50px;
	margin-right: 5px;
	margin-bottom: 0px;
	cursor: pointer;
}

.poziom input[type="radio"]:checked+label{
	background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='pattern' width='13' height='13' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform='rotate(135)'%3E%3Crect id='pattern-background' width='400%25' height='400%25' fill='rgba(2, 30, 54,1)'%3E%3C/rect%3E%3Cpath fill='rgba(44, 82, 130,1)' d='M-1 20v20h2v-20zM39 20v20h2v-20z'%3E%3C/path%3E%3Cpath fill='rgba(44, 82, 130,1)' d='M-10 29.5 h60 v1 h-60z'%3E%3C/path%3E%3Cpath fill='rgba(44, 82, 130,1)' d='M19 0v40h2v-40z'%3E%3C/path%3E%3Cpath fill='rgba(44, 82, 130,1)' d='M-10 9.5h60v1h-60z'%3E%3C/path%3E%3Cpath fill='rgba(44, 82, 130,1)' d='M-1 0v20h2v-20zM39 0v20h2v-20z'%3E%3C/path%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23pattern)' height='100%25' width='100%25'%3E%3C/rect%3E%3C/svg%3E");
	color: white;
}

.addOffer textarea{
	padding: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	width: 100%;
	height: 200px;
	border: 1px solid gray;
	border-radius: 5px;
	margin-bottom: 20px;
	resize: none;
}

.addOffer textarea:focus{
	outline: 1px solid #331155;
}

.addOffer .dateLeft #startDate,
.addOffer .dateRight #endDate{
	width: 135px;
	padding: 5px;
	border: 1px solid gray;
	border-radius: 5px;
	margin-bottom: 20px;
}

.addOffer .fileUpload,
.offerInfo.edit .fileUpload{
	text-align: left;
	margin-bottom: 20px;
}

.offerInfo.edit .fileUpload{
	margin-top: 10px;
	margin-left: 10px;
}

.addOffer .fileUpload input,
.offerInfo.edit .fileUpload input{
	display: none;
}

.addOffer .fileUpload button,
.offerInfo.edit .fileUpload button{
	width: 125px;
	padding: 6px 5px;
	margin-right: 5px;
}

.addOffer .fileUpload span,
.offerInfo.edit .fileUpload span{
	font-size: 14px;
	user-select: none;
}

.offerInfo.edit .title,
.offerInfo.edit .days,
.offerInfo.edit #endDate{
	margin-left: 0px;
}

.offerInfo{
	overflow: auto;
	border-spacing: 0px 20px;
	text-align: left;
}

.offerInfo.edit{
	padding-left: 10px;
	padding-right: 10px;
}

.offerInfo .desc{
	display: block;
	margin-left: 10px;
	margin-right: 10px;
	text-align: left;
}

.offerInfo textarea{
	/*width: calc(100% - 20px);*/
	width: 100%;
	height: auto;
	resize: none;
	overflow: hidden;
	border: 1px solid gray;
	border-radius: 5px;
	padding: 5px;
}

.offerInfo textarea:focus{
	outline: 1px solid #331155;
}

.offerInfo .pdfFile{
	margin-left: 10px;
	margin-right: 10px;
	text-align: left;
}

.offerInfo .file button{
	width: 80px;
	float: left;
	padding: 5px;
	height: 30px;
	margin: 5px 0px 5px 10px;
}

.offerInfo .file .download{
	overflow: auto;
	float: left;
}

.offerInfo .title{
	display: block;
	margin: 3px 10px 15px 10px;
	float: left;
	text-align: left;
}

.offerInfo input.title{
	width: calc(100% - 20px);
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 24px;
	border: 1px solid gray;
	border-radius: 5px;
}

.offerInfo input{
	float: left;
	width: 125px;
	padding: 5px;
	border: 1px solid gray;
	border-radius: 5px;
	margin-left: 10px;
	margin-bottom: 20px;
}

.offerInfo input:focus{
	outline: 1px solid #331155;
}

.offerInfo #lever{
	position: relative;
	display: none;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	float: right;
	cursor: pointer;
}

.offerInfo .adminUpload{
	margin-left: 10px;
	margin-bottom: 20px;
	text-align: left;
}

.offerInfo .adminFile #customBtn{
	width: 120px;
	height: 30px;
	padding: 5px;
	margin-right: 10px;
}

.offerInfo .adminFile #addFile{
	width: 80px;
	height: 30px;
	padding: 5px;
	margin-left: 10px;
}

.offerInfo #lever img{
	width: 100%;
	height: 100%;
}

.offerInfo #lever label{
	display: block;
	position: relative;
	padding-top: 3px;
	color: black;
	font-size: 24px;
	cursor: pointer;
	width: 100%;
}

.offerInfo #lever label:after{
	content: "★";
	position: absolute;
	color: gold;
	-webkit-text-stroke: 1px #ab5414;
	font-size: 24px;
	top: 0px;
}

.edit #lever{
	position: relative;
	display: none;
	width: 60px;
	height: 36px;
	border-radius: 25px;
	margin-top: 6px;
	float: right;
	cursor: pointer;
}

.edit #lever.green{
	background-color: #5dd880;
}

.edit #lever.gray{
	background-color: #bfbdbd;
}

.edit #lever:after{
	position: absolute;
	display: block;
	content: '';
	background-color: white;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	box-sizing: border-box;
}

.edit #lever.green:after{
	border: 3px solid #5dd880;
	right: 0;
}

.edit #lever.gray:after{
	border: 3px solid #bfbdbd;
	left: 0;
}

.offerInfo #confirmEdit{
	width: 80px;
	float: right;
	margin-top: 20px;
}

.offerInfo .days{
	clear: left;
	text-align: left;
	margin-left: 10px;
	font-size: 14px;
	color: gray;
}

.offerInfo .desc{
	margin-bottom: 10px;
}

.offerInfo .file{
	display: table-row;
	border-spacing: 0px 20px;
}

.offerInfo .file:after{
	content: '';
	display: block;
	clear: left;
}

.offerInfo .pdfFile{
	height: 40px;
	width: 33px;
	float: left;
	cursor: pointer;
}

.offerInfo .fileName{
	float: left;
	min-height: 20px;
	padding: 10px 0px;
	cursor: pointer;
}

.offerList .title{
	margin: 10px 10px 40px 10px;
	padding-bottom: 10px;
	border-bottom: solid 1px black;
	text-transform: uppercase;
}

.offerMenu{
	padding-left: 10px;
	padding-right: 10px;
}

.offerMenu #sortLabel{
	float: right;
	padding-top: 8px;
	margin-right: 10px;
	height: 37px;
}

.offerMenu #sortBtn{
	position: relative;
	width: 37.6;
	height: 37.6;
	float: right;
	margin-left: 5px;
}

.offerMenu #sortBtn::after{
	content: "";
	position: absolute;
	background: url("../images/arrow.svg");
	background-repeat: repeat;
	background-size: auto;
	background-size: contain;
	background-repeat: no-repeat;
	height: 40%;
	width: 40%;
	top: 11px;
	right: 11px;
	transition: all 0.4s;
}

.offerMenu #sortBtn.asc::after
{
	transform: rotateX(180deg);
	top: 10px;
}

.offerFile
{
	margin: 0px 10px 20px 10px;
}

.offerFile .offer-img
{
	display: block;
	position: relative;
	overflow: hidden;
	border: solid 1px gray;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	float: left;
	margin-right: 20px;
}

.chosen .offerFile .offer-img
{
	display: inline-block;
	margin-right: 10px;
	float: none;
}

.offerFile .offer-img img
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
}

.offerFile .fileName,
.offerFile .chooseBtnDiv{
	display: block;
}

.chosen .offerFile .fileName
{
	display: table;
	width: auto;
}

.offerFile .fileName{
	width: calc(100% - 180px);
	float: left;
	text-align: left;
	height: 70px;
	margin-left: 10px;
}

.offerFile .fileName label{
	display: inline-block;
	padding: 26px 10px;
	height: 20px;
}

.offerFile .chooseBtnDiv{
	width: 140px;
	float: right;
}

.offerFile .chooseBtnDiv button{
	display: block;
	height: 40px;
	margin: 15px 0px;
}

.offerFile .pdfFile{
	height: 40px;
	margin: 15px 10px 15px 10px;
	float: left;
}

.chosen .offerFile .pdfFile{
	display: table-cell;
	vertical-align: middle;
}

.offerFile .offerTxt{
	display: block;
	overflow: auto;
	padding-right: 20px;
	border: 1px solid gray;
	border-radius: 5px;
}

.chosen .offerFile .offerTxt{
	display: inline-block;
	overflow: hidden;
	padding-right: 0px;
	height: 70px;
}

.deadline h3{
	margin: 0px 0px 10px 10px;
	text-align: left;
}

.deadline p{
	margin: 10px 0px 0px 10px;
	text-align: left;
}

#deadline-btn{
	display: block;
	position: relative;
	background-color: white;
	border: none;
	margin-left: 10px;
	box-shadow: 0px 0px 1px 1px #331155;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 0px;
	height: 30px;
	width: 30px;
}

#deadline-btn:hover{
	background: #ddd;
}

#deadline-btn::after {
	position: absolute;
	content: '';
	background-color: #331155;
	height: 16px;
	width: 4px;
	top: 7px;
	left: 13px;
}

#deadline-btn::before {
	position: absolute;
	content: '';
	background-color: #331155;
	width: 16px;
	height: 4px;
	top: 13px;
	left: 7px;
}

#deadline-btn:hover::before, #deadline-btn:hover::after{
	background-color: #4C187F;
}

.addFile h3{
	margin: 20px 0px 20px 10px;
	text-align: left;
}

.addFile .fileUpload{
	width: 400px;
	overflow-wrap: break-word;
	margin-left: 10px;
	border: 1px solid black;
	border-radius: 10px;
	overflow: auto;
	padding: 40px 20px 20px 20px;
}

.addFile .fileUpload.closed{
	padding: 20px;
}

.addFile .fileUpload .offerStatus{
	display: block;
	margin: 20px 0px 30px 0px;
}

.addFile #openFileBox{
	width: 100px;
	padding: 5px;
	height: 30px;
	float: right;
}

.boxContent{
	width: 400px;
	overflow: auto;
}

.customUpload{
	display: table-row;
}

#fileBox #customTxt{
	display: table-cell;
	vertical-align: middle;
	width: 290px;
	height: 50px;
	padding: 5px 5px 5px 10px;
	text-align: left;
	word-break: break-all;
}

#fileBox #customBtn{
	display: table-cell;
	vertical-align: middle;
	margin: 10px 0px;
	width: 100px;
	height: 30px;
	padding: 5px;
}

#deadlineBox #deadlineBtn, #fileBox #addBtn{
	margin-right: 0px;
	padding: 5px;
	height: 30px;
	width: 70px;
}

#fileBox h3{
	text-align: left;
}

.deadlineDiv{
	display: block;
}

#deadlineDate{
	width: 135px;
	padding: 5px;
	border: 1px solid gray;
	border-radius: 5px;
	margin: 10px;
}

#deadlineBtn 
{
	margin-top: 10px;
	float: right;
}

.fileUpload .file{
	display: table-row;
}

.fileUpload .pdfFile
{
	display: table-cell;
	vertical-align: middle;
	height: 40px;
	width: 33px;
	cursor: pointer;
}


.fileUpload .fileName
{
	display: table-cell;
	min-height: 20px;
	padding: 10px 0px 10px 10px;
	cursor: pointer;
}

.addFile .file + #openFileBox
{
	margin-top: 20px;
}

.pdf
{
	display: inline;
}

.chosen .pdf
{
	display: table-row;
}

.pdfFile, .pdf label
{
	cursor: pointer;
}

.chosen .pdf label
{
	display: table-cell;
	vertical-align: middle;
	height: 70px;
	padding: 0px 20px 0px 0px;
}


#admin-div .comments
{
	margin-right: 10px;
}

.comments
{
	clear: both;
	overflow: auto;
	margin-top: 40px;
}

.comments-div
{
	overflow: auto;
}

.comments-div h3
{
	display: block;
	margin: 20px 0px 10px 10px;
	padding-bottom: 5px;
	border-bottom: solid 1px black;
	text-transform: uppercase;
}

.comments-div p
{
	min-height: 21px;
	margin: 0px;
	text-align: left;
}

.comments-container
{
	overflow: hidden;
	margin: 20px 0px 0px 10px;
}

.comments-container .comments-img
{
	position: relative;
	overflow: hidden;
	border: solid 1px gray;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	float: left;
}

.comments-container .comments-img img
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
}

.comments-container .comments-content
{
	position: relative;
	background-color: #f1f1f1;
	width: calc(100% - 90px);
	margin-left: 20px;
	border: 1px solid gray;
	border-radius: 10px;
	padding: 10px;
	float: right;
}

.comments-container .comments-content span
{
	position: absolute;
	cursor: pointer;
	color: gray;
	font-size: 23px;
	right: 8px;
	top: 0px;
}

.comments-container .comments-content span:hover,
.comments-container .comments-content span:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.comments-container .comments-content label
{
	display: block;
	margin-top: 10px;
	text-align: right;
	color: gray;
}

.comments-container .comments-content textarea
{
	padding: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	width: 100%;
	height: 200px;
	border: 1px solid gray;
	border-radius: 10px;
	resize: none;
}

.comments-container .comments-content textarea:focus
{
	outline: 1px solid #331155;
}

.comments-container .comments-content button
{
	margin-top: 10px;
	width: 100px;
	float: right;
}

#comments-new
{
	background-color: white;
	padding: 0px;
	border: none;
}

.account-div
{
	width: 640px;
	margin: auto;
	overflow: auto;
	padding: 20px;
	border: solid 1px gray;
	border-radius: 10px;
	background-color: white;
}

.account-div .input-div
{
	margin-top: 30px;
	margin-bottom: 10px;
}

.account-div #addBtn
{
	margin-right: 0px;
}

.account-div input
{
	margin-left: 5px;
	padding: 5px;
	border: 1px solid gray;
	border-radius: 5px;
}

.account-div input:focus
{
	outline: 1px solid #331155;
}

.terms, .manual
{
	text-align: left;
}

.manual h2{
	font-size: 28pt;
	font-weight: 400;
	color: #331155;
}

.manual h3{
	font-size: 18pt;
	font-weight: 400;
	color: #4C187F;
}

.manual p{
	font-size: 14pt;
	width: 495pt;
}

.manual ul{
	padding-left: 15px;
	list-style-type: square;
}

.manual li{
	font-size: 14pt;
}

.manual img{
	width: 495pt;
	border: 1px solid black;
}

.users-div
{
	margin: auto;
}

.user
{
	display: block;
	background-color: white;
	box-shadow: 0px 0px 3px #331155;
	border-radius: 10px;
	margin: 10px;
	height: 230px;
	width: 170px;
	padding: 20px;
	float: left;
	transition: all 0.3s ease-in-out;
}

.user:hover
{
	transform: scale(1.05);
}

.user div
{
	display: block;
}

.user-img
{
	position: relative;
	overflow: hidden;
	border: solid 1px gray;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: auto;
}

.user-img img
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
}

/*.user-img .img-fg
{
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
	background: black;
	z-index: 1;
	position: absolute;
	transition: all 0.3s ease-in-out;
	opacity: 0;
}

.user-img .img-fg:hover
{
	opacity: 0.3;
}*/

.user label
{
	display: inline-block;
}

.user-name
{
	margin-bottom: 5px;
}

.user-st
{
	position: relative;
	width: 125px;
	height: 48px;
	font-size: 30px;
	user-select: none;
	margin: 10px auto 0px auto;
}

.user-st .gray
{
	-webkit-text-stroke: 1px black;
	opacity: 0.3;
	display: block;
	position: absolute;
	top: 0;
}

.user-st .gold
{
	position: absolute;
	color: gold;
	-webkit-text-stroke: 1px #ab5414;
	left: 0px;
	overflow: hidden;
	display: block;
	font-size: 30px;
	top: 0;
	width: 0%;
}

#st-box
{
	display: none;
	position: relative;
	width: 160px;
	height: 50px;
	font-size: 30px;
	user-select: none;
	margin: -15px auto 0px auto;
}

#st-box .st
{
	color: black;
	-webkit-text-stroke: 1px black;
	opacity: 0.3;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

#st-box .gold, #st-box .clicked
{
	color: gold;
	-webkit-text-stroke: 1px #ab5414;
	opacity: 1;
}

#OKBox button
{
	display: none;
	width: 100px;
}

#OKConfirm
{
	margin-top: 10px;
	float: right;
}

#OKArea
{
	display: none;
	padding: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	width: 100%;
	height: 200px;
	border: 1px solid gray;
	border-radius: 10px;
	resize: none;
}

#OKArea:focus
{
	outline: 1px solid #331155;
}

.offer-st
{
	position: relative;
	display: flex;
}

.fin .offerTitle label
{
	width: calc(100% - 125px);
}

.fin .gray
{
	position: absolute;
	-webkit-text-stroke: 1px black;
	opacity: 0.3;
	display: block;
	font-size: 30px;
	left: 0;
	top: -12px;
}

.fin .gold
{
	position: absolute;
	color: gold;
	-webkit-text-stroke: 1px #ab5414;
	overflow: hidden;
	display: block;
	font-size: 30px;
	left: 0;
	top: -12px;
	width: 0%;
}

.platform-buttons
{
	overflow: auto;
	margin-bottom: 20px;
}

.platform-buttons .buttons
{
	float: left;
	width: 200px;
	margin-right: 5px;
	margin-bottom: 5px;
}

.improvements-div
{
	overflow: auto;
	padding: 20px;
	margin: auto;
	border: solid 1px gray;
	border-radius: 10px;
	background-color: white;
	width: 800px;
}

.improvements-div textarea
{
	width: 100%;
	height: 200px;
	padding: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	border: 1px solid gray;
	border-radius: 10px;
	resize: none;
}

.improvements-div textarea:focus
{
	outline: 1px solid #331155;
}

.improvements-div #addBtn
{
	margin-right: 0px;
}

.select-box {
	position: relative;
	display: flex;
	width: 220px;
	flex-direction: column;
	float: right;
	text-align: left;
	z-index: 1;
}

.select-box .options-container {
	position: absolute;
	top: 45px;
	background: #331155;
	color: #f5f6fa;
	max-height: 0;
	width: 220px;
	opacity: 0;
	transition: all 0.4s;
	border-radius: 5px;
	overflow: hidden;

	order: 1;
}

.selected {
	background: #331155;
	border-radius: 5px;
	color: #f5f6fa;
	position: relative;
	height: 37px;

	order: 0;
}

.selected::after {
	content: "";
	background: url("../images/arrow-down.svg");
	background-size: contain;
	background-repeat: no-repeat;

	position: absolute;
	height: 60%;
	width: 23px;
	right: 10px;
	top: 7px;

	transition: all 0.4s;
}

.select-box .options-container.active {
	max-height: 240px;
	opacity: 1;
	overflow-y: scroll;
}

.select-box .options-container.active + .selected::after {
	transform: rotateX(180deg);
	top: 5px;
}

.select-box .options-container::-webkit-scrollbar {
	width: 8px;
	background: #0d141f;
	border-radius: 0 5px 5px 0;
}

.select-box .options-container::-webkit-scrollbar-thumb {
	background: #525861;
	border-radius: 0 5px 5px 0;
}

.select-box .option,
.selected {
	padding: 11px 24px;
	font-size: 13px;
	font-weight: 400;
	cursor: pointer;
}

.select-box .option:hover {
	background: #4C187F;
}

.select-box label {
	cursor: pointer;
}

.select-box .option .radio {
	display: none;
}

#svg{
	max-width: 565px;
	max-height: 533px;
}

#svg path, #svg text{
	cursor: pointer;
	user-select: none;
}

.addOffer .offerMap{
	text-align: left;
	padding: 10px;
	border: none;
	margin: none;
}

.addOffer .offerMap svg{
	padding-top: 10px;
}

.addOffer .offerMap label{
	margin-top: 10px;
}

.offerMap{
	border-bottom: 1px solid #333;
	padding: 20px 0px;
}

#admin-div .offerMap{
	margin: 0px -10px 20px;
}

#user-div .offerMap{
	margin: 0px -20px 20px;
}

#admin-div .offerInfo.edit .offerMap{
	clear: left;
	text-align: left;
	padding: 20px 10px 0px;
	border-bottom: none;
}

.location{
	margin: 20px 0px 20px 10px;
}

.location h3{
	margin-bottom: 10px;
}

.location p{
	margin: 10px 0px;
}

.nicEdit-main:focus{
	outline: none;
}