@font-face {
    font-family: 'Proxima Nova';
    src:  url('../font/proxima_nova_regular.woff2') format('woff2'), url('../font/proxima_nova_regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src:  url('../font/proxima_nova_bold.woff2') format('woff2'), url('../font/proxima_nova_bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src:  url('../font/proxima_nova_thin.woff2') format('woff2'), url('../font/proxima_nova_thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src:  url('../font/proxima_nova_sbold.woff2') format('woff2'), url('../font/proxima_nova_sbold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src:  url('../font/proxima_nova_black.woff2') format('woff2'), url('../font/proxima_nova_black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

:root {
    --idn-blue-dark: #14477B;
    --idn-blue-light: #1A80AA;
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    font-family: 'Proxima Nova', Arial, Helvetica, sans-serif;
    background-color: #fff;
    background-image: url("../img/leaf_background3.jpg");
    background-size: cover;
}
.body-content-container {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
}

.cozy-width {
    width: 100%;
    max-width: 1200px;
}

header {
    height: 100px;
    padding: 16px;
    background-color: rgba(255,255,255,0.8);
}
.standard_idn_heading {
    font-family: 'century-gothic';
    font-weight: bold;
    color: var(--idn-blue-dark);
}

footer {
    padding: 20px;
    background-color: #5a8b38;
    background-image: url("../img/footer_bg.jpg");
    background-size: cover;
}

a {
    text-decoration: none;
}

p {
    width: 100%;
}

button, .button {
    background-color: var(--idn-blue-light);
    color: #FFF;
    font-family: 'century-gothic';
    font-weight: bold;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    text-align: center;
    text-wrap: wrap;
}
a.button {
    display: block;
}
.button--uniform-width {
    width: 240px;
    margin-bottom: 20px;
}
.button--outline {
    background-color: #FFF;
    color: var(--idn-blue-light);
    border: 2px solid var(--idn-blue-light);
}

.errorlist {
    color: #B22222;
    font-weight: bold;
}

.back_to_profile_button {
    display: inline-block;

    font-family: 'century-gothic';
    font-weight: bold;

    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #FFF;
    color: rgba(0,103,165,1);
    margin-left: -4px;
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);

    padding: 10px 16px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.back_to_profile_button__inner {
    display: flex;
}
.back_to_profile_button img {
    width: 40px;
    height: 20px;

    display: inline;
}

.donor_name_entry_container {
    width: 100%;
    max-width: 700px;

    background-color: #FFF;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);

    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 10px;    
}
.donor_name_entry_container h4{
    color: rgba(0,103,165,1);
    font-family: 'Proxima Nova';
    font-weight: 600;
    font-size: 20px;
}
.donor_name_entry_container input {
    width: 100%;
    color: rgba(0,103,165,1);
    border-color: rgba(0,103,165,1);
    border-style: solid;
    font-family: 'Proxima Nova';
    font-weight: 600;
    font-size: 26px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 10px;
}
.donor_name_entry_container input::placeholder {
    opacity: 0.6;
    color: rgba(0,103,165,1);
}
.donor_name_entry_container input:focus {
    border-color: rgba(0,103,165,1);
}

/** Forms & Messages **/
.idn-form__errors-container,
.messages-container {
    background-color: #FFF;
    padding: 10px;
    margin-bottom: 1rem;
    text-wrap: wrap;
    border-radius: 2px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
}

.form-field-errors-container {
    width: 100%;
    text-align: left;
}

.idn-form {
    width: 100%;
    max-width: 700px;

    display: flex;
    flex-direction: column;
}
.idn-form--centered {
    align-items: center;
}
.idn-form__field-container {
    background-color: #FFF;
    padding: 10px;
    display: flex;
    flex-direction: column;
    margin-top: 2vh;
    border-radius: 2px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
}
.idn-form__field-container label {
    color: rgba(0,103,165,1);
    font-family: 'Proxima Nova';
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}
.idn-form__field-container input {
    color: rgba(0,103,165,1);
    border-color: rgba(0,103,165,1);
    border-style: solid;
    font-family: 'Proxima Nova';
    font-weight: 600;
    font-size: 26px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 10px;
}
.idn-form__field-container input:focus {
    border-color: rgba(0,103,165,1);
    outline: none;
}
.idn-form .idn-form__field-container:last-of-type {
  margin-bottom: 15px;
}
.idn-form__additional-link {
    align-self: flex-start;
    margin-bottom: 15px;
    color: var(--idn-blue-light);
    font-family: 'Proxima Nova';
    font-weight: bold;
}
.idn-form__additional-link img {
    display: inline;
    vertical-align: middle;
}
.form-container {
    width: 100%;
    max-width: 700px;
}

.hcaptcha_input_container {
    display: flex;
    align-items: center;
}

/** Menu Related Items **/
.flex_container_header {
    height: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.flex_container_header_item {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: flex-end;
    gap: 3vw;
}
.flex_container_header_item img {
    max-height: 50px;
}
.flex_container_header_item_breadcrumb {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1vh;
    font-family: 'century-gothic';
    font-weight: bold;
    color: var(--idn-blue-dark);
    display: flex;
}
.flex_container_header_item_breadcrumb a {
    color: var(--idn-blue-dark);
}

.flex_container_header_item_breadcrumb a:active {
    color: var(--idn-blue-dark);
}
.flex_container_header_item_breadcrumb_top {
    font-family: 'century-gothic';
}
.flex_container_header_item_breadcrumb_bottom {

}
.flex_container_header_item_hideable_menu_item {
    display: flex;
}
.flex_container_header_item_breadcrumb_hamburg {
    display: none;
}
/** Mobile Full Screen Menu on top of everything **/
.flex_container_header_full_screen {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background-color: #FFF;
    opacity: 1;
    transition: opacity 0.5s, width 0.5s;
}
.flex_container_header_full_screen_closed {
    width: 0vw;
    opacity: 0;
}
.flex_container_header_mobile_inner_container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100vw;
    overflow-x: hidden;
}
.flex_container_header_item_mobile {
    display: flex;
    max-height: 10vh;
    margin-bottom: 2vh;
}
.flex_container_header_item_mobile .flex_container_header_item_breadcrumb {
    font-size: 24px;
}
.flex_container_header_item_mobile_top {
    display: flex;
    max-height: 10vh;
    margin-bottom: 2vh;
    width: 96vw;
    margin-left: 4vw;
    justify-content: space-between;
}
.flex_container_header_item_mobile_logo {
    display: flex;
    justify-content: flex-start;
    max-height: 10vh;
    margin: 2vmin;
}
.flex_container_header_item_mobile_close {
    display: flex;
    justify-content: flex-end;
    max-width: 20vw;
}
.flex_container_header_item_mobile_close img {
    height: 100%;
}
.idn_footer_additional_detail_container {
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.idn_footer_additional_detail_container a {
    color: #FFF;
}
.idn_footer_additional_detail_container a:visited {
    color: #FFF;
}
.flex_container_center {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
img.idn_footer_logo {
    max-height: 80%;
    width: 240px;
    display: flex;
    align-self: center;
}
.idn_loading_spinner {
    border: 6px solid #f3f3f3; 
    border-top: 6px solid var(--idn-blue-light); 
    border-radius: 50%;
    width: 75px;
    height: 75px;
    animation: idn_loading_spin_keyframes 2s linear infinite;
}
.idn_special_logout {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
    font-weight: normal;
	cursor: pointer;
	outline: inherit;
}
#menu_log_out {
    cursor: pointer;
}
#menu_log_out_mobile {
    cursor: pointer;
}
.idn_global_headline_title {
    width: 100%;

    overflow-wrap: break-word;
    text-align: center;

    font-size: 52px;
    line-height: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Proxima Nova';
    font-weight: bold;
    color: rgba(0,103,165,0.4);
    -webkit-text-stroke-color: rgba(0,103,165,1);
    -webkit-text-stroke-width: 2px;
    -webkit-text-fill-color: rgba(143,183,225,0);
    text-shadow: rgba(143,183,225,0.4) 3px 3px 0px;
}

@media (min-width: 576px) {
    .idn_global_headline_title {
        font-size: 80px;
    }
}

@media (min-width: 768px) {
    .idn_global_headline_title {
        font-size: 100px;
    }
}

@keyframes idn_loading_spin_keyframes {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.no_display_item {
    display: none !important;
}
@media only screen and (max-width: 600px) {

    .flex_container_header_item_hideable_menu_item {
        display: none;
    }
    .flex_container_header_item_breadcrumb_hamburg {
        display: flex;
    }
}
