body {
  background-color: #1F253D;
    font-family: "roboto", arial, sans-serif;
  }
  
  a,
  a:hover,
  a:active,
  a:focus{ 
    color: inherit; 
    text-decoration:none;
  }
  .titulo {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
  }
  
  .link {
    color: #41ABD6;
    font-size: 13px;
    font-weight: 400;
    line-height: 10px;
    text-decoration: none;
  }
  
  .link:hover {
    color: #0088B2;
  }
  
  .modulo {
    border: 1px solid #394264 ;
    border-radius: 3px;
    background-color: #394264 ;
    margin: 20px 10px;
    transition: all .3s ease;
    overflow: auto;
    padding: 0px 25px;
  }
  
  @media screen and (max-width: 900px){
      .modulo{
          text-align: center;
      }
    
  }
  
  
  .modulo:hover {
    border: 1px solid #11A8AB;
    box-shadow: 0px 0px 3px #bababa;
    transition: all .3s ease;
  
  }
  
  .contenido {
    margin-left: 150px;
  }
  
  @media screen and (max-width: 900px){
      .contenido{
    margin-left: 0px;
      }
  }
  
  .imgmodulo {
    float: left;
    width: 100px;
    margin: 20px 15px;
  
  }
  
  @media screen and (max-width: 900px){
      .imgmodulo{
         float: none;
          margin-bottom: 0px;
      }
  }
  
  .nombremodulo {
    font-size: 23px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
  }
  
  @media screen and (max-width: 991px){
      .nombremodulo{
          font-size: 20px;
      }
    
  }
  .descmodulo {
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin-bottom: 10px;
  }
  
  .acceder{
    background-color: #11A8AB;
    color: #ffffff;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding: 5px 0;
    margin: 40px 0px 55px 0px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 21px;
    transition: all .3s ease;
    cursor: pointer;
  }
  
  .acceder:hover {
    background-color: #1A4E95;
     transition: all ease-in-out .3s;
  }
  
  .imgdeshabilitado {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    opacity: 0.8;
  }
  
  .modulodeshab {
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    background-color: #ffffff;
    margin: 20px 10px;
    transition: all .3s ease;
    overflow: auto;
    padding: 0px 25px;
  }
  
  .modulodeshab:hover {
    border: 1px solid #aaaaaa;
    box-shadow: 0px 0px 3px #bababa;
    transition: all .3s ease;
  }
  
  @media screen and (max-width: 900px){
      .modulodeshab{
          text-align: center;
      }
    
  }
  
  
  .accederdeshab{
    background-color: #a5a5a5;
    color: #ffffff;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding: 5px 0;
    margin: 40px 0px 55px 0px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 21px;
    cursor: pointer;
      transition: all .3s ease;
  }
  .accederdeshab:hover  {
    background-color: #888888;
    transition: all .3s ease;
  }
  
  
  .accederdeshab:hover span {
    display:none;
  
  }
  .accederdeshab:hover:before {
    content:"Aún no dispones de este módulo.";
  
  }