/** PANEL **/
.panel{
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: transparent;
}
.panel.tiny{
	width: 400px;
}
.panel.small{
	width: 600px;
}
.panel.medium{
	width: 800px;
}
.panel.large{
	width: 1000px;
}
@media only screen and (max-width:1080px) {
	.panel.large{
		/*width: calc(100% - 40px);*/
		width: 100%;
	}
}

@media only screen and (max-width:1040px) {
}
@media only screen and (max-width:820px) {
	.panel.medium{
		/*width: calc(100% - 20px);*/
		width: 100%;
	}
}
@media only screen and (max-width:720px) {
}
@media only screen and (max-width:640px) {
	.panel.large{
		/*width: calc(100% - 20px);*/
		width: 100%;
	}
	.panel.small{
		/*width: calc(100% - 20px);*/
		width: 100%;
	}
}
@media only screen and (max-width:520px) {
}
@media only screen and (max-width:420px) {
	.panel.tiny{
		width: 100%;
	}
}

/** REVEAL **/
.reveal {
	top: 50px;
	padding: 0;
	border-radius: 0;
	border: none;
}
.reveal.tiny{
	width: 400px;
	max-width: 400px;
}
.reveal.small{
	width: 600px;
	max-width: 600px;
}
.reveal.medium{
	width: 800px;
	max-width: 800px;
}
.reveal.large{
	width: 1000px;
	max-width: 1000px;
}
@media only screen and (max-width:1080px) {
	.reveal .tiny,
	.reveal.tiny{
		width: 400px;
		max-width: 400px;
	}
	.reveal .small,
	.reveal.small{
		width: 600px;
		max-width: 600px;
	}
	.reveal .medium,
	.reveal.medium{
		width: 800px;
		max-width: 800px;
	}
}
@media only screen and (max-width:1040px) {
	.reveal.large{
		width: calc(100% - 40px);
		max-width: none;
	}
}
@media only screen and (max-width:880px) {
	.reveal{
		top: 40px !important;
	}
	.reveal.tiny{
		width: 400px;
		max-width: 400px;
	}
	.reveal.small{
		width: 600px;
		max-width: 600px;
	}
	.reveal.medium{
		width: calc(100% - 40px);
		max-width: none;
	}
}
@media only screen and (max-width:720px) {
	.reveal{
		top: 30px !important;
	}
}
@media only screen and (max-width:640px) {
	.reveal{
		top: 20px !important;
		max-width: none;
		height: auto;
	}
    .reveal.large,
	.reveal.medium,
	.reveal.small{
		left: 20px;
		width: calc(100% - 40px);
		max-width: none;
		height: auto;
		min-height: 100px;
	}
	.reveal.tiny{
		left: calc(50% - 200px);
		width: calc(100% - 40px);
		max-width: 400px;
		height: auto;
		min-height: 100px;
	}
}
@media only screen and (max-width:520px) {
    .reveal{
		top: 10px !important;
    }
    .reveal.large,
	.reveal.medium,
	.reveal.small{
		left: 10px;
		width: calc(100% - 20px);
		max-width: none;
		height: auto;
		min-height: 100px;
	}
	.reveal.tiny{
		width: 400px;
		max-width: 400px;
	}
}
@media only screen and (max-width:480px) {
    .reveal{
		top: 5px !important;
    }
    .reveal.large,
	.reveal.medium,
	.reveal.small{
		left: 5px;
		width: calc(100% - 10px);
		max-width: none;
		height: auto;
		min-height: 100px;
	}
	.reveal.tiny{
		width: 400px;
		max-width: 400px;
	}
}
@media only screen and (max-width:420px) {
    .reveal{
		top: 3px !important;
    }
    .reveal.large,
	.reveal.medium,
	.reveal.small,
	.reveal.tiny{
		left: 3px;
		width: calc(100% - 6px);
		max-width: none;
		height: auto;
		min-height: 100px;
	}
}
@media only screen and (max-width:380px) {
    .reveal{
		top: 0 !important;
    }
    .reveal.large,
	.reveal.medium,
	.reveal.small,
	.reveal.tiny{
		left: 0;
		width: 100%;
		max-width: none;
		height: 100vh;
		min-height: 100px;
	}
}