/* !Modals
------------------------------------------------------------------------------------- */ 
.Modal {
    position: relative;
    width: auto;
    max-width: 600px;
    margin: 150px auto 0 auto;
}
.Modal-header {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    line-height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    padding-left: 20px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.Modal-separator {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
    padding-bottom: 15px;
}
.Modal-subheader, h5 {
    font-size: 16px;
    padding: 0 0 10px 0;
    font-weight: 600;
    margin: 0;
}
.Modal-subheader-border-top {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #dddddd;
}
.Modal-main {
    background-color: #ffffff;
    padding: 20px;
    max-height: auto;
    transition: max-height 500ms ease-in-out;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.Modal-submit, .Modal-cancel {
    float: right;
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 20px;
    box-sizing: content-box;
    margin-right: 10px;
    margin-top: 10px;
    text-align: center;
    border-radius: 5px;
    border: 0;
    width: 40px;
    padding: 0;
    font-size: 20px;
    text-align: center;
}
.Modal-cancel {
    background-color: darkred;
    color: white;
}