.idn_donor_profile_hr {
    border-top: 1px solid var(--idn-blue-light);
    width: 10vw;
    margin: auto;
}
.idn_donor_profile_outer_box {
    width: 100%;
    max-width: 500px;

    display: flex;
    align-self: center;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #FFF;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
}
.idn_donor_profile_quote_box {
    width: 100%;

    display: flex;
    justify-content: center;

    color: var(--idn-blue-dark);
    border: 1px solid var(--idn-blue-dark);

    
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.idn_donor_profile_quote_box_inner {
    width: 100%;

    display: flex;
    align-self: center;
    flex-direction: column;

    padding-top: 20px;
    padding-bottom: 20px;
}
.idn_donor_profile_quote_box h2 {
    font-family: 'Century Gothic';
    font-weight: bold;
    font-size: 24px;
}
.idn_donor_profile_quote_box pre {
    font-family: 'Century Gothic';
    font-weight: bold;
    font-size: 24px;
    color: var(--idn-blue-dark);
    word-wrap: break-word;
    white-space: break-spaces;
}
.idn_donor_profile_quote_citation {
    font-size: 14px;
    font-family: 'Proxima Nova';
    text-align: right;
}
h3 {
    font-family: 'Proxima Nova';
    font-weight: normal;
    font-size: 2.5rem;

    margin-top: 20px;
    margin-bottom: 0;
}
.birth-death-dates {
    font-family: 'Proxima Nova';
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--idn-blue-light);

    margin-top: 0;
    margin-bottom: 20px;
}
.idn_donor_profile_nickname {
    color: var(--idn-blue-dark);
    font-family: 'Proxima Nova';
    font-weight: 600;
}
.idn_donor_profile_image_list {
    display: flex;
    align-items: center;
    align-self: center;
    flex-flow: column wrap;
    max-width: 90vw;
    max-height: 476px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: flex-start;
    align-content: center;
    /*transition: opacity 1s ease;*/
    opacity: 1;
}
.idn_donor_profile_image_list img {
    margin: 0.4vw;
    max-width: 28vw; 
}
.idn_donor_profile_warn_container {
    width: 100%;
    max-width: 700px;

    border: 1px solid #d07028;
    padding: 20px;
    margin: 10px;
    margin-bottom: 20px;
}
.idn_donor_profile_warn_container h3 {
    font-family: 'Century Gothic';
    font-weight: bold;
    font-size: 2rem;
    color: #d07028;

    text-align: center;
}
.idn_donor_profile_single_img {
    cursor: pointer;
}
.idn_donor_edit_full_screen_image_container {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 150vh;
    width: 90vw;
    background-color: #FFF;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
    border: 1px solid var(--idn-blue-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.5s ease;
    opacity: 0;
}
.idn_donor_edit_full_screen_image_container_opacity_full {
    opacity: 1;
}
.idn_donor_edit_full_screen_image_container_close {
    color: var(--idn-blue-light);
    text-align: right;
    margin-top: 10px;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    cursor: pointer;
    align-self: flex-end;
}
.idn_donor_edit_full_screen_image_container .idn_donor_edit_full_screen_image_container_featured {
    max-width: 96%;
    max-height: 70vh;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 4vh;
    margin-bottom: 2vh;
}
.idn_donor_edit_full_screen_img_nav_container {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    color: var(--idn-blue-light);
    font-weight: bold;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}
.idn_donor_edit_full_screen_img_nav_container img {
    width: 64px;
    height: 20px;
}
.idn_donor_edit_full_screen_image_container_previous {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.idn_donor_edit_full_screen_image_container_next {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.idn_donor_edit_photo_cover {
    background-color: #FFF;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.idn_donor_edit_photo_cover_show {
    opacity: 0.8;
}
@media only screen and (max-width: 600px) {
    .idn_donor_profile_image_list img {
        max-width: 60vw; 
    }
    
    .idn_donor_profile_image_list {
        flex-flow: column;
        max-height: none;
    }
    
}
