/*Obecné nastavení vyskakovacích oken*/
.wrap{
	display: flex;
	align-items: center;
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
}

.wrap.background{
	background-color: rgba(0,0,0,0.4);
}

.wrap .content{
	width: 450px;
	height: 500px;
	background-color: white;
	margin: 0px auto;
	border-radius: 4px;
	overflow: hidden; 
	position: relative;
}

.wrap .content .header{
	width: calc(100% - 30px);
	border-bottom: 1px solid rgb(218, 221, 225);
	padding: 18px 18px 12px 12px;
	display: table;
}

.wrap .content .header h2{
    color: rgb(28, 30, 33);
    font-size: 14px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    float: left;
    margin: 0px;
    padding: 0px;
}

.wrap .content .header img{
    float: right;
    width: 12px;
    height: 12px;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.2s all;
}

.wrap .content .header img:hover{
    opacity: 1;
}

.wrap .content .footer
{
	width: calc(100% - 20px);
	border-top: 1px solid rgb(218, 221, 225);
	padding: 12px 12px 12px 12px;
	display: table;
	background-color: white;
	height: 30px;
}

.wrap .content .body{
    width: calc(100% - 40px);
    height: 360px !important;
    padding: 20px;
    overflow-y: auto;
}

.wrap .content .body hr{
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.wrap .content .body .row{
    width: calc(100% - 10px);
    min-height: 10px;
    display: table;
    padding: 5px 5px;
}

.wrap .content .body .row:hover{
    background-color: #F5F6F7;
}

.wrap .content .body .row.active{
    background-color: rgba(0,0,0,0.1);
}


.wrap .content .body .column p{
	vertical-align: top;
	padding: 0px 5px;
	font-size: 12px;
	font-family: Arial, sans-serif;
	margin: 0px;
	line-height: 1.5;
}

.wrap .content .body .column a{
	padding: 0px 5px;
	display: table;
}

.wrap .content .body .column p.bold{
	color: #5B5C5E;
}

.wrap.registrace .content{
	width: 400px !important;;
}

.wrap.prihlaseni .content{
	width: 350px !important;
	height: auto;
}

.wrap.prihlaseni .content .body{
	height: 140px !important;
}
/*Obecné nastavení vyskakovacích oken*/