
/*Style the popups of Learn More*/
/* Popup container */
.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black background with opacity */
}

/* Popup content */
.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.goalAlgoContainer{
    border: 1px solid #3f6a72;
    margin: 10px;
    width: auto;
}

#h3Popup {
    margin: 10px 0;
    font-family: 'Dancing Script', cursive;
    text-align: center;
}

#h2Popup{
    color: #86b9e8;
    font-family: 'Alef', sans-serif;
}

#pPopup{
    font-size: 20px;
    text-align: left;

}

h4 {
    font-family: 'Alef', sans-serif;
    font-size: 23px;
    color: #86b9e8;

}

li {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: #666;
}

/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */

}

h5 {
    font-size: 30px;
    color: #7e297e;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
    text-align: center;
}

/* Close Button */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Popup of the more information about the algos parameters */
.popup-parameter {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.popup-parameter-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.popup-parameter-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.popup-parameter-close:hover,
.popup-parameter-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}





