@charset "UTF-8";

/*------------------------------------------------------------------------------
  PÍSMO
------------------------------------------------------------------------------*/
@font-face {
	font-family:"din-2014";
	src:	url("./fonts/din-2014--regular.eot"); /* IE9*/
	src:	url("./fonts/din-2014--regular.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
			url("./fonts/din-2014--regular.woff2") format("woff2"), /* chrome、firefox */
			url("./fonts/din-2014--regular.woff") format("woff"), /* chrome、firefox */
			url("./fonts/din-2014--regular.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
			url("./fonts/din-2014--regular.svg#din-2014") format("svg"); /* iOS 4.1- */
	font-display:auto;
	font-style:normal;
	font-weight:400;
}

@font-face {
	font-family:"din-2014";
	src:	url("./fonts/din-2014--bold.eot"); /* IE9*/
	src:	url("./fonts/din-2014--bold.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
			url("./fonts/din-2014--bold.woff2") format("woff2"), /* chrome、firefox */
			url("./fonts/din-2014--bold.ttf") format("truetype"); /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
	font-display:auto;
	font-style:normal;
	font-weight:600;
}

@font-face {
	font-family:"din-pro";
	src:	url("./fonts/din-pro--black.eot"); /* IE9*/
	src:	url("./fonts/din-pro--black.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
			url("./fonts/din-pro--black.woff2") format("woff2"), /* chrome、firefox */
			url("./fonts/din-pro--black.woff") format("woff"), /* chrome、firefox */
			url("./fonts/din-pro--black.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
			url("./fonts/din-pro--black.svg#din-pro") format("svg"); /* iOS 4.1- */
	font-display:auto;
	font-style:normal;
	font-weight:800;
}

html {
	font-size: 62.5%;
	--color-cervena:		rgb(226, 0, 0);

	--color-bila:			white;
	--color-svetleseda:		rgb(240,240,240);
	--color-seda: 			rgb(220,220,220);
	--color-tmaveseda: 		rgb(160,160,160);
	--color-nejtmavsiseda:	rgb(100,100,100);
	--color-dark:			black;

	--font-normal:	'din-2014', sans-serif;
	--normal:			400;
	--bold:				600;

	--font-nadpis:	'din-pro', sans-serif;
	--nadpis-bold:		800;

}

article, aside, footer, header, nav, section, div {
	display: block;
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--color-dark);
	background-color: var(--color-bila);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h1 {
	font-family: var(--font-nadpis);
	font-weight: var(--nadpis-bold);
	font-size: 2.5rem;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--color-bila);
	margin: 0 0 1.5rem 0;
}

input {
	display: block;
	box-sizing: border-box;
	font-family: var(--font-normal);
	font-weight: var(--normal);
	font-size: 1.6rem;
	line-height: 1.3;
	color: var(--color-dark);
	background-color: var(--color-svetleseda);
	border: none;
	box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.25);
	padding: 1.25rem 1rem;
	margin: 0 0 0.75rem 0;
	width: 100%;
}

input::placeholder {
	color: var(--color-tmaveseda);
}

.btn  {
	display: inline-block;
	box-sizing: border-box;
	font-family: var(--font-nadpis);
	font-weight: var(--nadpis-bold);
	font-size: 1.3rem;
	line-height: 1.3;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-bila);
	background-color: var(--color-dark);
	border: none;
	padding: 1.75rem 3rem;
	margin: 4.5rem 1.5rem 0 0;
	cursor: pointer;
}


.btn-ico {
	background-repeat: no-repeat;
	background-position: 1.5rem center;
	background-size: auto 1.75em;
	padding-left: 5.25rem;
}

.ico--create {
	background-image: url(img/create.svg);
}

.ico--edit {
	background-image: url(img/edit.svg);
}

.ico--copy {
	background-image: url(img/copy.svg);
}





/*-----------------------------------------------------------------------------
  SECTION
------------------------------------------------------------------------------*/
.telo {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: var(--color-cervena);
	flex-grow: 1;
	padding: 1.5rem;
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(img/paze.svg);
}

.obsah {
	width: 600px;
	max-width: 100vw;
	min-height: 30rem;
	padding: 3rem;
}

.pole {
	background-color: var(--color-bila);
	padding: 3rem;
}

.pole--center {
	text-align: center;
}

.clipboard {
	display: inline-block;
	border: 3px dashed var(--color-seda);
	padding: 1.5rem;
	text-align: left;
}





/*------------------------------------------------------------------------------
 COPYRIGHT
------------------------------------------------------------------------------*/
.copy {
	background-color: var(--color-dark);
	color: var(--color-svetleseda);
	font-family: var(--font-normal);
	font-weight: var(--bold);
	font-size: 1.3rem;
	line-height: 1.3;
	text-align: center;
	padding: 1rem;
}

.copy a {
	color: var(--color-bila);
	text-decoration: none;
}





/*-----------------------------------------------------------------------------
  MODAL
------------------------------------------------------------------------------*/

.w3-modal {
	z-index: 3;
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(7.5px);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.w3-modal.close {
	display: none;
}

.w3-modal-content {
	margin: auto;
	background-color: var(--color-bila);
	position: relative;
	padding: 0;
	outline: 0;
	width: 600px;
	max-width: 100vw;
}

.w3-animate-bottom {
	position: relative;
	animation: animatebottom 0.4s;
}

@keyframes animatebottom {
	0% {
		bottom: -300px;
		opacity: 0;
	}
	100% {
		bottom: 0;
		opacity: 1;
	}
}


.w3-close {
	border: none;
	display: inline-block;
	padding: 0.5rem;
	vertical-align: middle;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background-color: inherit;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	position: absolute;
	right: 0;
	top: 0;
	font-family: var(--font-nadpis);
	font-weight: var(--nadpis-bold);
	font-size: 3rem;
	line-height: 3rem;
	width: 3rem;
}

.w3-container {
	padding: 4.5rem 3rem;
	font-family: var(--font-normal);
	font-weight: var(--normal);
	font-size: 1.6rem;
	line-height: 1.3;
	color: var(--color-dark);
}

.w3-container li {
	margin-bottom: 1rem;
}