/* xxxxxxxxxxxxxxxxxxxxxxxxxx
                            xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                            Formattierungen */

/* a.mainTxt {
    font-family: TheSans,sans-serif;
    color: #001155;
    border-bottom: 1px solid #001155;
    background-color: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.1px;
    line-height: 22px;
    background-color: transparent
}

p:hover{
    cursor: pointer;
} 

.whiteningTxt p:hover{
    cursor: pointer;
    color: white;
    border-bottom: 1px solid white;
}   */

/* Main text, header */
.modalHeading h1{
    font-family: TheSans,sans-serif;
    font-weight: 550;
    line-height: 50px;
    letter-spacing: 0.6px;
    font-size: 22px;
    color: #333333;    
    text-align: left;
    border-bottom: 1px solid grey;
    padding: 0 10px;
}
/* Text description */
.modalDescription p{
    font-family: TheSans,sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.6px;
    text-align: left;
    color: grey;
    padding: 0 10px;
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxx
                            xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                            Modal */
.modal {
    display: none;
    position: fixed; 
    z-index: 1; 
    padding-top: 300px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    border: 1px solid #888;
    width: 620px;
  }
  
  /* Close Button */
  .close{
    color: #aaaaaa;
    font-size: 55px;
    font-weight: normal;       
    float: right; 
    line-height: 40px;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
