@charset "UTF-8";
/* CSS Document */
.main{
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}
.instrucciones{
    margin-bottom: 1.5em;
}
#dialog, #dialog span, .ui-widget{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}
.container{
    text-align: left;
}
p{
	/*line-height: 3em;*/
}
#completable p{
    text-align: center;
    background: whitesmoke;
    padding: 20px;
}
.retroMal{
    color: rgb(131, 0, 0);
    background-color: rgba(255, 0, 0, 0.1);
    display: inline-block;
    border: 1px solid rgb(165, 0, 0);
    padding: 6px;
    border-radius: 3px;
    margin: 0 2px;
}
.options{
    padding: 0;
}
.options li{
    display: inline-block;
    display: inline-block;
    margin: 5px;
    background: #e3f0ff;
    padding: 8px;
    border-radius: 5px;
}
input[type="text"]{
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
input[type="text"].incorrecto{
	border:1px solid #F00;
	color:#600;
	background-color: transparent;
	background-image: url(tache.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
}
input[type="text"].correcto{
	border:1px solid #0C0;
	color:#030;
	background-color: transparent;
	background-image: url(palomita.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
}
span.correcto{
    border:1px solid #0C0;
    color:#030;
    background-color: #f0fff0;
    padding: 0.5em;
    border-radius: 3px;
}
span.incorrecto{
    border:1px solid #F00;
    color:#600;
    background-color: #ffeff2;;
    padding: 0.5em;
    border-radius: 3px;
}
@media (max-width: 480px) {
    html{
        margin:0;
        padding: 0;
    }
    body{
        padding: 0;
        border: none;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        margin:0.5em;
    }
}