/* 
    Document   : mensaje
    Created on : 15/10/2013, 02:10:09 PM
    Author     : Alberto
    Description: Estilos para el mensaje de error.
*/

.md-modal {
   position: fixed;
   top: 38%;
   left: 50%;
   width: 40%;
   max-width: 600px;
   min-width: 300px;
   height: auto;
   z-index: 2000;
   visibility: hidden;
   -webkit-backface-visibility: hidden;
   -moz-backface-visibility: hidden;
   backface-visibility: hidden;
   -webkit-transform: translateX(-50%) translateY(-50%);
   -moz-transform: translateX(-50%) translateY(-50%);
   -ms-transform: translateX(-50%) translateY(-50%);
   transform: translateX(-50%) translateY(-50%);
}

.md-show {
   visibility: visible;
}

.md-overlay {
   position: fixed;
   width: 100%;
   height: 100%;
   visibility: hidden;
   top: 0;
   left: 0;
   z-index: 1000;
   opacity: 0;
   background: rgba(109, 109, 109, 0.3);
   -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   transition: all 0.3s;
   /* margin-left: 10px; */
   /* margin-top: 20px; */
   border-radius: 3px;
}

.md-overlayAll {
   position: fixed;
   width: 100%;
   height: 100%;
   visibility: hidden;
   top: 0;
   left: 0;
   z-index: 1000;
   opacity: 0;
   background: rgba(109, 109, 109, 0.5);
   -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   transition: all 0.3s;
   /* margin-left: 10px; */
   /* margin-top: 20px; */
   border-radius: 3px;
   margin-left: auto;
   margin-right: auto;
}
.md-show ~.md-overlayAll {
    opacity: 1;
   visibility: visible;
}
.md-show ~.md-overlay {
   opacity: 1;
   visibility: visible;
}

/* Content styles */
.md-content {
   color: #fff;
   background: #FFFFFF;
   position: relative;
   border-radius: 3px;
   margin: 0 auto;
   border: 1px solid rgb(105, 105, 105);
}

.md-content h3 {
   margin: 0;
   /* padding: 0.4em; */
   text-align: center;
   font-size: 2.4em;
   font-weight: 300;
   background: rgb(109, 26, 66);
   border-radius: 3px 3px 0 0;
   font-family: 'Lato Bold', 'Yanone Kaffeesatz', arial, sans-serif !important;
}

.md-content > div {
   padding: 15px 35px 30px;
   margin: 0;
   font-weight: 300;
   font-size: 1.15em;
}

.md-content > div p {
   margin: 0;
   padding: 10px 0;
   color: #202020;
   font-family: 'Lato Bold', 'Yanone Kaffeesatz', arial, sans-serif !important;
}

.md-content > div ul {
   margin: 0;
   padding: 0 0 30px 20px;
   list-style: none;
}

.md-content > div ul li {
   padding: 5px 0;
   color: #9B1E5A;
}

.md-content button {
   display: block;
   margin: 0 auto;
   font-size: 0.8em;
   width: 26%;
   height: 30px;
   cursor: pointer;
   border-radius: 3px;
   border: 1px solid;
   border-color: #4E4E4E;
/*   box-shadow: -2px 2px 5px #666;*/
   font-size: 18px;
   font-weight: bold;
/*   text-shadow: -2px 2px 5px #666;*/
   color: #FFF;
/*   opacity: 0.8;
   filter: alpha(opacity=80);*/
   -webkit-transition: all 0.5s ease-out;
   -o-transition: all 0.5s ease-out;
   -moz-transition: all 0.5s ease-out;
   -ms-transition: all 0.5s ease-out;
   transition: all 0.5s ease-out;
   background-color: rgb(109, 26, 66);
   background-image: none !important;
   font-family: 'Lato Bold', 'Yanone Kaffeesatz', arial, sans-serif !important;
}

.md-content button:hover {   
   background-color: #636363;
   color: #FFFFFF;
   font-family: 'Lato Bold', 'Yanone Kaffeesatz', arial, sans-serif !important;
}

/* Effect 11: Super scaled */
.md-effect-11 .md-content {
   -webkit-transform: scale(2);
   -moz-transform: scale(2);
   -ms-transform: scale(2);
   transform: scale(2);
   opacity: 0;
   -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   transition: all 0.3s;
}

.md-show.md-effect-11 .md-content {
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   -ms-transform: scale(1);
   transform: scale(1);
   opacity: 1;
}

#trigger{
   border-width: 0px;
   border-color: transparent;
   border-radius: 0px;
   background-repeat: repeat-x;
   background-position: top left;
   background-color: transparent;
   background-image: none !important;
}

strong#mensajeModal {
    font-family: 'Lato Bold', 'Yanone Kaffeesatz', arial, sans-serif !important;
    color: #5C1939;
}

@media screen and (max-width: 32em) {
   body { font-size: 75%; }
}
