@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Rajdhani:400,700);

body{
    font-family: 'Rajdhani', sans-serif;
    font-size: 12pt;
    margin: 0;
    padding: 0;
}

.content_1024{
    display: block;
    clear:  both;
    margin: 0 auto;
    width: 1024px;
}

header{
    display: block;
    clear: both;
}

footer{
    display: block;
    clear: both;
}

.clearfix{display: block; clear: both; height: 5px;}

/*MODULES*/
.ModuleIntroduction{
    display: block;
    padding: 12px;
    margin-bottom: 15px;
}
.ModuleIntroduction h1{
    display: block;
    text-align: left;
    margin: 0;
    margin-bottom: 5px;
}
.ModuleQuestions{
    display: block;
    padding: 15px;
    background: #f3f4f4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.ModuleQuestion_Content{
    display: block;
    padding: 15px;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid #fff;
}

.ModuleQuestions_Q{
    display: block;
    clear: both;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.ModuleQuestions_Q img{
    margin-top: 10px;
    margin-bottom: 10px;
}
.ModuleQuestions_Q iframe{
    margin-top: 10px;
    margin-bottom: 10px;
}

.ModuleQuestions_A{
    display: block;
    margin:0px;
    list-style: none;
    padding: 0px;
}
.ModuleQuestions_A li{
    display: block;
    margin:0px;
    list-style: none;
    margin-bottom: 5px;
}
.ModuleQuestions_A li label{
    display: block;
    margin:0;
    list-style: none;
    padding: 10px;
    margin-bottom: 5px;
    background: #f5f5f5;
    text-align: left;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.ModuleQuestions_A li label:hover{
    background: #f1f1f1;
}

#footer_send{
    display: block;
    text-align: center;
    margin-top: 15px;
}
input[type="submit"]{
    display: inline-block;
    padding: 12px;
    font-size: 14pt;
    font-family: 'Rajdhani', sans-serif;
    margin: 15px auto;
    font-weight: 700;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #333;
    color: #fff;
    border: 0px;
    cursor: pointer;
}
input[type="submit"]:hover{
    background: #848484;
}


.cd-top {
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 10;
  white-space: nowrap;
  text-decoration: none;
  color: #848484;
}
.cd-top:hover{
  color: #333;
}

.errorlabel{
    border: 1px solid red;
    background: #fbf3f3;
}

/*CONTADOR*/
#countdown{
  position: fixed;
  top: 20px;
  right: -2px;
  z-index: 100;
}
.countDays{ display:none !important; } .countDiv0{ display:none !important; } .countHours{ display:none !important; } .countDiv1{ display:none !important; }

/*PÁGINA DE RESULTADOS*/
.modulos{
    display: none;
}
.modulos div{
    display: block;
    margin-bottom: 16px;
}

#break1{display: none; clear:  both; margin: 5px;}
#break2{display: none; clear:  both; margin: 5px;}
#break3{display: none; clear:  both; margin: 5px;}
#break4{display: none; clear:  both; margin: 5px;}
#break5{display: none; clear:  both; margin: 5px;}
#break6{display: none; clear:  both; margin: 5px;}
#break7{display: none; clear:  both; margin: 5px;}
#break8{display: none; clear:  both; margin: 5px;}

/*COMPARTIR*/
.sharebox{ display: block; clear: both; text-align:  center; margin-top: 10px;}
#ShareTwitter{width: 40%; height: 50px; display: inline-block; margin: 5px; line-height:50px; text-align: left; background: #1dadeb url(http://static-base-blog.mitest.de/wp-content/uploads/2015/05/btnTW1.jpg) left no-repeat; color: #fff; font-size: 12pt; text-decoration: none; text-indent: 35px; cursor:pointer;}

#ShareFacebook{width: 40%; height: 50px; display: inline-block; margin: 5px; line-height:50px; text-align: left; background: #3b5998 url(http://static-base-blog.mitest.de/wp-content/uploads/2015/05/btnFB1.jpg) left no-repeat; color: #fff; font-size: 12pt; text-decoration: none; text-indent: 35px; cursor:pointer;}

/*MODAL WINDOW*/
	.modalDialog {
		position: fixed;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(255,255,255,0.9);
		z-index: 99999;
		opacity:0;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		pointer-events: none;
	}

	.modalDialog:target {
		opacity:1;
		pointer-events: auto;
	}

	.modalDialog > div {
		width: 500px;
		position: relative;
		margin: 10% auto;
		padding: 25px;
		border-radius: 10px;
		background: #fff;
		-webkit-box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.6);
		-moz-box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.6);
		box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.6);
		
	}

	.modalClose {
		background: #606061;
		color: #FFFFFF;
		line-height: 25px;
		position: absolute;
		right: -12px;
		text-align: center;
		top: -10px;
		width: 24px;
		text-decoration: none;
		font-weight: bold;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		-webkit-box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.6);
		-moz-box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.6);
		box-shadow: 0px 0px 11px -4px rgba(0,0,0,0.6);
	}

	.modalClose:hover { background: #00d9ff; }
	
	#openWindow{display: none;}

/*VER MAS*/
.vermas{text-decoration: none;}

/*MEDIA QUERIES*/
@media only screen and (max-width: 768px) {

    .content_1024{
        width: 100%;
    }
    
	.modalDialog > div {
		width: 80%;
	}
    
    .ModuleQuestions_Q iframe{
        width: 90% !important;
        height: auto !important;
    }
    
    .cd-top {
        bottom: 12px;
        right: 12px;
      }
      
      #ShareTwitter{width: 70%; height: 50px; display: inline-block; margin: 5px; line-height:50px; text-align: left; background: #1dadeb url(http://static-base-blog.mitest.de/wp-content/uploads/2015/05/btnTW1.jpg) left no-repeat; color: #fff; font-size: 12pt; text-decoration: none; text-indent: 35px; cursor:pointer;}
      #ShareFacebook{width: 70%; height: 50px; display: inline-block; margin: 5px; line-height:50px; text-align: left; background: #3b5998 url(http://static-base-blog.mitest.de/wp-content/uploads/2015/05/btnFB1.jpg) left no-repeat; color: #fff; font-size: 12pt; text-decoration: none; text-indent: 35px; cursor:pointer;}
    
}

@media only screen and (max-width: 320px) {

    .ModuleQuestions_Q img{
        width: 90% !important;
        height: auto !important;
    }
    
}