.rodomodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999999999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.6s;
    animation-name: fadeIn;
    animation-duration: 0.6s;
	font-family:Roboto, Arial;
	font-size:13px;
	text-align:justify;
}

.rodomodal-body div.extendedRODO {margin:10px 0; border-radius: 4px; }

.rodomodal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.6s;
    animation-name: slideIn;
    animation-duration: 0.6s;
	padding:10px 0;
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.rodomodal-header {
    padding: 0;
	border:none;

}

.rodomodal-header .inside {
   max-width:1140px;
   width:100%;
   margin:auto;
}

.rodomodal-footer .inside {
   max-width:1140px;
   width:100%;
   margin:auto;
}

.rodomodal-body {
	padding: 0;
	max-width:1140px;
	width:100%;
	margin:auto;
}

.rodomodal-footer {
    padding: 0;
	border:none;

}

.rodomodal-footer button{
	text-decoration: none;
	width: 160px;
	margin: auto;
	padding: 0px;
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	border-radius: 4px !important;
	background: #a01f2c;
	color: #fff;
	border:none;
	float: left;
}

.rodomodal-footer a {
    color: #005499;
    float: right;
    text-decoration: none;
    width: 160px;
    margin: auto;
    padding: 0px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    border-radius: 4px;	
}

/* Add Animation */
@-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}
.rodomodal p {padding:0 5px;}
.rodomodal-body p {padding:0 5px; margin:10px 0;}
.rodomodal-body div.extendedRODO p {padding:10px 0;}
.rodomodal-body ul {list-style:outside; padding-left:15px;}
.rodomodal-body ul li {}

@media only screen and (max-width: 320px) {
   .rodomodal-footer button{
		width: 80%;
		display:block;
		float:none;
	}

	.rodomodal-footer a {
		width: 80%;
		display:block;
		float:none;
	} 
}