#flyouts {
    display: none;
}

.contactPage a, .contactPage a:visited {
    font-family: "Deutsche Bank Medium",Arial,clean,sans-serif;
    color: #0550D1; 
    text-decoration: underline; 
}
  
.contactPage a:hover {
    color: #0D43B3; 
    background-color: #E7F4FE;
}
  
.contactPage a:focus {
    outline: 1px solid #0D43B3; 
    outline-offset: 2px;
}
  
.contactPage a:active {
    color: #163796;
    background-color: #C1D9F6; 
}

.db-form__field span {
    padding-right: 10px;
}

.db-form hr {
    -ms-grid-column-span: 12;
    grid-column-end: span 12;
    width: 100%;
    height: 0;
    border: 0;
    margin: -32px 0 0;
    visibility: hidden;
}    

.db-form__field.invalid input, .db-form__field.invalid select, .db-form__field.invalid textarea, .db-form__field.invalid > div:first-of-type {
    border-color: #a31111;
    border-width: 2px;
    box-shadow: none;
    border-style: solid;
    display: flex;
}

.flow-title {
    display: flex;
    align-items: flex-start;
    font-size: 1.75rem;
    font-weight: 400;
    text-align: left;
    color: #0018a8;
    margin-bottom: 18px;
}

.flow-title img {
    margin-right: 14px;
}

#form_container {
    width: 100%;
}

div {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.db-form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 0 16px;
    row-gap: 0px;
    column-gap: 16px;
    width: 100%;
    margin-top: 60px;
}

.db-form__field.col-6.form {
    display: none;
}

.db-form__field label {
    order: -1;
    font-weight: 400;
}

.db-form__field input, select, textarea {
    width: 100%;
    background-color: transparent;
    margin-top: 8px;
    height: 48px;
    border: 1px solid #1e2a78;
    padding: 0 16px;
    font-family: "Deutsche Bank Regular","Arial",sans-serif;
    font-size: 1rem;
    line-height: 1.2rem;
}

textarea {
    padding: 10px;
}

div.input {
    display: flex;
}

.db-form__field input[type="radio"] {
    appearance: none;
    -webkit-appearance:none; /* safari and chrome */
    -moz-appearance:none; /* Mozilla */
    -ms-appearance:none; /* Ie */
	width: 22px;
	height: 22px;
	border: 2px solid #1e2a78;
	border-radius: 50%;
	background-clip: content-box;
    padding: 3px;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 2px;
}

.db-form__field input[type="radio"]:checked {
	background-color: #1e2a78;
}

.db-form__field .radio {
    display: flex;  
    margin-top: 8px;
}

.db-form__field .radio label {
    padding: 12px 12px 12px 8px;
    vertical-align: sub;
    order: 1;
    cursor: pointer;
}

.db-form__field input[type="checkbox"] {
    appearance: none;
    -webkit-appearance:none; /* safari and chrome */
    -moz-appearance:none; /* Mozilla */
    -ms-appearance:none; /* Ie */
	width: 22px;
	height: 22px;
	border: 2px solid #1e2a78; 
	background-clip: content-box;
    padding: 3px;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 0px;
}

.db-form__field input[type="checkbox"]:checked {
	background-color: #1e2a78;
}

.db-form__field select {
    appearance:none;
    -webkit-appearance:none; /* safari and chrome */
    -moz-appearance:none; /* Mozilla */
    -ms-appearance:none; /* Ie */
    background-position: calc(100% - 12px) center !important;  
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
        linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    background-repeat: no-repeat, repeat;
    /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
    background-position: right .7em top 50%, 0 0;
    /* icon size, then gradient */
    background-size: .65em auto, 100%;
}

/* To remove the arrow of select element in IE */
.db-form__field select::-ms-expand {
    display: none;
}

.db-form__field {
    position: relative;
    display: flex;
    flex-direction: column;
    -ms-grid-column-span: 12;
    grid-column-end: span 12;
    margin-bottom: 32px;
}	

#contact_form .db-form__field .error-msg {    
    width: 100%;
    /*
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    */
    display: none;
    padding: 5px 8px;
    color: #fff;
    background-color: #a31111;
    font-size: 0.875rem;
    font-weight: 400;
    z-index: 1;
}

.db-form__field.col-3 {
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
}

.db-form__field.col-6 {
    -ms-grid-column-span: 6;
    grid-column-end: span 6;
}

.db-form__field.col-9 {
    -ms-grid-column-span: 9;
    grid-column-end: span 9;
}

.db-form__field.col-12 {
    -ms-grid-column-span: 12;
    grid-column-end: span 12;
}

.db-form__field.col-mob-6 {
    grid-column-end: span 3;
}

@media screen and (max-width: 713px) {
    #form_container {
        max-width: 100%;	
    }
    .db-form__field.col-9 {
        -ms-grid-column-span: 12;
        grid-column-end: span 12;
    }
    .db-form__field.col-6 {
        -ms-grid-column-span: 12;
        grid-column-end: span 12;
    }
    .db-form__field.col-3 {
        -ms-grid-column-span: 12;
        grid-column-end: span 12;
    }
    .db-form__field.col-mob-6 {
        grid-column-end: span 6;
    }
}		

.db-form [type=button], .db-form [type=reset], .db-form [type=submit], .db-form button {
    -webkit-appearance: button;
}
.db-form button {
    font-family: "Deutsche Bank Medium",Arial,clean,sans-serif;
    cursor: pointer;
}

.db-form img {
    display: inline;
}

.db-form__field.buttons {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 24px;
}
.db-form__field:last-child {
    margin-bottom: 0;
}
.db-cta {
    margin-bottom: 1.125rem;
}

.db-cta.big, .db-form__field label.custom-file-upload-button {
    padding: 0 3.438rem;
    margin-left: auto;
    margin-right: auto;
}

.db-cta.disabled, .db-cta:disabled, #form_submit.disabled {
    cursor: auto;
    pointer-events: none;
    opacity: 0.65;
    background: #000;
}

.db-cta, .db-form__field label.custom-file-upload-button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    height: 3.125rem;
    border: 0;  
    font-size: 1.125rem;
    font-weight: 300;
    text-align: center;
    line-height: 1;
    overflow: hidden;
    vertical-align: middle;
    -webkit-appearance: none;
    background-color: #0550D1;
    color: #FFFFFF;
    font-weight: medium;
    font-size: 16px;
    padding: 10px;
}
  
.db-cta:hover, .db-form__field label.custom-file-upload-button:hover {
   background-color: #0D43B3;
}
  
.db-cta:active, .db-form__field label.custom-file-upload-button:active {
    background-color: #163796;
}
  
.db-cta:focus, .db-form__field label.custom-file-upload-button:focus {
    outline: 1px solid #0D43B3;
    outline-offset: 2px;
}
  
.db-cta:before, .db-form__field label.custom-file-upload-button:before {
    display: none;
}

img {
    display: inline;
}

#iban_container {
    visibility: hidden;
}

@media screen and (max-width: 713px) {
    #iban_container {
        display: none;
    }
}

#optin_container > div {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

a.textlink {
    position: relative;
}

a.anchor::after {
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    align-items: center;
    content: ">";
    font-size: 1.35rem;
    height: 100%;
    top:0px;
    margin-left: 5px;
    position: absolute;
    display: inline-block;
}

#form_when {
    text-align: center;
    background-color: #e7f4fe;
    max-width: 100%;
    padding-top:30px;
    padding-bottom:30px;
}

#comment {
    height: 96px;
}

form {
    max-width: 996px;
    margin-left: auto;
    margin-right: auto;
}

#form_container {
    margin-top: 40px;
}

.disclaimer {
    font-size: 14px;
    line-height: 20px;
}

input[type="file"] {
    display: none;
}

.db-form__field label.custom-file-upload-button {
    display: inline-block;
    padding: 10px 35px 10px 20px;
    margin: 0 0 10px;
    cursor: pointer;
    position: relative;
    height: 3.125rem;
    font-size: 1.125rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding: 0 3.438rem;
    width: fit-content;
}

.db-form__field div.custom-file-upload, #filename {
    margin-left: auto;
    margin-right: auto;
}

.files .custom-file-upload:last-child {
    margin-top: 20px;
}

div.custom-file-upload.disabled, label.custom-file-upload-button.disabled, div.filesize, div.remove.disabled  {
    display: none;
}

.files span.disabled {
    display: none;  
}

.label.fileinfo {
    font-size: 14px;
    text-align: left;
    margin-left: 20px;
}

div.files {
    margin-top: 8px;    
}

@media screen and (max-width: 713px) {
    div.files {
        text-align: center;
    }
}

div.remove {
    float: left;
    display: block;
    color: red;
    display: inline-block;  
    font-size: 14px;
    cursor: pointer;
}

.contactPage #mapsection {
    width: 100%;
    max-width: 996px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    text-align: center;
}

.contactPage #map {
    height: 500px;
    width: 100%;
    max-width: 996px;
}

.markerinfo {
    display: block;
    font-size: 16px;
    margin-top: 20px;
}

.markerinfo .name, .agencyInfos .name {
    font-size: 28px;
    margin-top: 10px;
    display: block;
}

@media screen and (max-width: 1199px) {
    .markerinfo .name {
        display: none;
    } 
}

.leaflet-container {
    font-family: inherit;
}

div.leaflet-popup-content {
    width: max-content !important;
    text-align: center;
}

.leaflet-container a.leaflet-popup-close-button {
    padding: 5px 5px 0 0;
    right: 10px;
    font-size: 24px;
    line-height: 24px;
    font-family: inherit;
}

.contactPage #map.noconsent {
    background: url(https://www.deutschebank.be/dam/belgium/shared/images/defaultmap.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
}

.contactPage #consent_message {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    background: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.contactPage #branch_info {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    background: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.contactPage #mapsection select {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.contactPage .hidden {
    display: none !important;
}

div.teaser-wrapper:has(a.selected_segment):after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -30px;
    width: 0;
    height: 0;
    border-top: solid 30px #1e2a78;
    border-left: solid 30px transparent;
    border-right: solid 30px transparent;
}

div.theme-one--color-01:has(a.deselected_segment), div.teaser-wrapper:has(a.deselected_segment) .teaser__text-overlay {
    background-color: #f7f7f7 !important;
}

div.teaser-wrapper:has(a.deselected_segment) .teaser__text {
    color:#16184e !important;
}

#prospect_want_to_contact_options div.colctrl__alpha div.colctrl__wrapper {
    margin-right: 0;
    margin-left: auto;
}

#prospect_want_to_contact_options div.colctrl__wrapper:hover div, #client_want_to_contact_options div.colctrl__wrapper:hover div {
    cursor: pointer;
    caret-color: transparent;
}

#prospect_want_to_contact_options div.colctrl__wrapper:hover div, #client_want_to_contact_options div.colctrl__wrapper:hover div,  #prospect_want_to_contact_options div.colctrl__wrapper div.selected_option div, #client_want_to_contact_options div.colctrl__wrapper div.selected_option div {
    background-color: #1e2a78;
    color:#FFFFFF;
    caret-color: transparent;
}

#prospect_want_to_contact_options div.colctrl__wrapper:has(#prospect_want_to_contact_options_campaign):hover div, #prospect_want_to_contact_options div.colctrl__wrapper:has(#prospect_want_to_contact_options_campaign) div.selected_option div {
    background-color: #24778D;;
    color:#FFFFFF;
    caret-color: transparent;
}

#prospect_want_to_contact_options div.colctrl__wrapper:has(#prospect_want_to_contact_options_campaign):hover div.deselected_option  div {
    background-color: #f7f7f7;
    color:#16184e;
    caret-color: transparent;
}

#prospect_want_to_contact_options div.colctrl__wrapper div.deselected_option div, #client_want_to_contact_options div.colctrl__wrapper div.deselected_option div {
    background-color: #f7f7f7;
    color:#16184e;
    caret-color: transparent;
}

#prospect_want_to_contact_options div[id*="want_to_contact_options"]:hover, #client_want_to_contact_options div[id*="want_to_contact_options"]:hover,
#prospect_want_to_contact_options div[id*="want_to_contact_options"]:focus-visible, #client_want_to_contact_options div[id*="want_to_contact_options"]:focus-visible {
    outline: 2px solid #16184e;
    outline-offset: 5px;
}

#prospect_want_to_contact_options div[id="prospect_want_to_contact_options_campaign"]:hover, #prospect_want_to_contact_options div[id="prospect_want_to_contact_options_campaign"]:focus-visible {
    outline: 2px solid #24778D;;
}

#prospect_want_to_contact_options div.deselected_option div[id="prospect_want_to_contact_options_campaign"]:hover, #prospect_want_to_contact_options div.deselected_option div[id="prospect_want_to_contact_options_campaign"]:focus-visible {
    outline: 2px solid #16184e;
}

#prospect_want_to_contact_options div.selected_option div[id*="want_to_contact_options"]:hover, #client_want_to_contact_options div.selected_option div[id*="want_to_contact_options"]:hover {
    outline: none;
}

#prospect_want_to_contact_options div.colctrl__wrapper:hover div.image__picture, #client_want_to_contact_options div.colctrl__wrapper:hover div.image__picture,
#prospect_want_to_contact_options div.colctrl__wrapper div.selected_option div.image__picture, #client_want_to_contact_options div.colctrl__wrapper div.selected_option div.image__picture,
#prospect_want_to_contact_options div.colctrl__wrapper div.deselected_option div.image__picture, #client_want_to_contact_options div.colctrl__wrapper div.deselected_option div.image__picture {
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 48px; /* Width of new image */
    height: 48px; /* Height of new image */
    padding-left: 48px; /* Equal to width of new image */
    margin-left: auto;
    margin-right: auto;
    caret-color: transparent;
}

#prospect_want_to_contact_options div.colctrl__wrapper:hover #prospect_want_to_contact_options_phone div.image__picture, #client_want_to_contact_options div.colctrl__wrapper:hover #client_want_to_contact_options_phone div.image__picture,
#prospect_want_to_contact_options div.colctrl__wrapper div.selected_option #prospect_want_to_contact_options_phone div.image__picture, #client_want_to_contact_options div.colctrl__wrapper div.selected_option #client_want_to_contact_options_phone div.image__picture {
    background: url(https://www.deutschebank.be/dam/belgium/shared/iconlist/white/135_phone_white.svg) no-repeat;
}

#prospect_want_to_contact_options div.colctrl__wrapper:hover #prospect_want_to_contact_options_mail div.image__picture, #client_want_to_contact_options div.colctrl__wrapper:hover #client_want_to_contact_options_mail div.image__picture, 
#prospect_want_to_contact_options div.colctrl__wrapper div.selected_option #prospect_want_to_contact_options_mail div.image__picture, #client_want_to_contact_options div.colctrl__wrapper div.selected_option #client_want_to_contact_options_mail div.image__picture {
    background: url(https://www.deutschebank.be/dam/belgium/shared/iconlist/white/073_mail_white.svg) no-repeat;
}

#client_want_to_contact_options div.colctrl__wrapper:hover #client_want_to_contact_options_meeting div.image__picture,
#client_want_to_contact_options div.colctrl__wrapper div.selected_option #client_want_to_contact_options_meeting div.image__picture {    
    background: url(https://www.deutschebank.be/dam/belgium/shared/iconlist/white/061_calendar_white.svg) no-repeat;
}

#prospect_want_to_contact_options div.colctrl__wrapper:hover #prospect_want_to_contact_options_campaign div.image__picture,
#prospect_want_to_contact_options div.colctrl__wrapper div.selected_option #prospect_want_to_contact_options_campaign div.image__picture {    
    background: url(https://www.deutschebank.be/dam/belgium/shared/iconlist/white/135_phone_white.svg) no-repeat;
}

#prospect_want_to_contact_options div.colctrl__wrapper div.deselected_option #prospect_want_to_contact_options_phone div.image__picture, #client_want_to_contact_options div.colctrl__wrapper div.deselected_option #client_want_to_contact_options_phone div.image__picture {
    background: url(https://www.deutschebank.be/dam/belgium/shared/iconlist/grey/135_phone.svg) no-repeat;
}

#prospect_want_to_contact_options div.colctrl__wrapper div.deselected_option #prospect_want_to_contact_options_mail div.image__picture, #client_want_to_contact_options div.colctrl__wrapper div.deselected_option #client_want_to_contact_options_mail div.image__picture {
    background: url(https://www.deutschebank.be/dam/belgium/shared/iconlist/grey/073_mail.svg) no-repeat;
}

#client_want_to_contact_options div.colctrl__wrapper div.deselected_option #client_want_to_contact_options_meeting div.image__picture {    
    background: url(https://www.deutschebank.be/dam/belgium/shared/iconlist/grey/061_calendar.svg) no-repeat;
}

#prospect_want_to_contact_options div.colctrl__wrapper div.deselected_option #prospect_want_to_contact_options_campaign div.image__picture {    
    background: url(https://www.deutschebank.be/dam/belgium/shared/iconlist/grey/135_phone.svg) no-repeat;
}

/* Dirty hack to make the arrow fit regardless the extra optional linebreak */
#client_want_to_contact_options p br, #prospect_want_to_contact_options p br {
    display: none;
}
#client_want_to_contact_options p:has(br), #prospect_want_to_contact_options p:has(br) {
    min-height: 58px;
}

#client_want_to_contact_options span.h4:after, #prospect_want_to_contact_options span.h4:after {
    content: '';   
    position: absolute;
    margin-top: 3px;
    width: 25px;
    height: 25px;    
}

#client_want_to_contact_options span.h4:after, #prospect_want_to_contact_options span.h4:after {
    background:  url(https://www.deutschebank.be/dam/belgium/shared/images/arrow-right-white.svg);
    background-size: contain;
}

#client_want_to_contact_options .deselected_option span.h4:after, #prospect_want_to_contact_options .deselected_option span.h4:after {
    background:  url(https://www.deutschebank.be/dam/belgium/shared/images/arrow-right-black.svg);
    background-size: contain;
}

#form_container, form, #form_footer, .db-form {
    display: none;
}

#form_footer {
    max-width: 996px;
}


div.selected_option {
    position: relative;
    background-color: #1e2a78;
    color: #FFFFFF !important;
}

div.selected_option div {
    background-color: #1e2a78;
    color: #FFFFFF !important;
}

#prospect_want_to_contact_options_campaign {
    background-color: #24778D;;
}

#prospect_want_to_contact_options_campaign .theme-one--color-01 {
    background-color: transparent;
}

@media screen and (min-width: 714px) {
    div.selected_option:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -30px;
        width: 0;
        height: 0;
        border-top: solid 30px #1e2a78;
        border-left: solid 30px transparent;
        border-right: solid 30px transparent;
    }

    div.selected_option:has(#prospect_want_to_contact_options_campaign):after {
        border-top: solid 30px #24778D;;
    }
}

#mapsection .db-form__field {
    margin-bottom: 50px;
}

#phoneinfo_container div {
    width: 100%;
    text-align: center;
    padding: 10px;
}

#phoneinfo_container #phoneinfo_intro, #phoneinfo_container #phoneinfo_number {
    font-size: 28px;
    padding-top: 0px;
    padding-bottom: 0px;
}

#phoneinfo_intro, #phoneinfo_number {
    padding-top: 10px;
    padding-bottom: 10px;
}

#phoneinfo_container #phoneinfo_times {
    padding-top: 0px;
    text-align: center;
    margin-bottom: 50px;
}

#contact_form #topic {
    padding-right: 30px;
}

#topic_container label {
    text-align: center;
}

@media screen and (max-width: 1023px) {
    #contact_form {
        padding: 20px;
    }

    div.contactPage {
        padding: 20px;
    }

    .contactPage #mapsection select {
        width: 100%;
    }

    #topic {
        max-width: 100% !important;
   }
}

#contact_form .phone_highlight {
    margin-bottom: 40px;
    padding-top: 20px; 
}

#contact_form #formtitle_container {
    text-align: center;
    margin-bottom: 0px;
    margin-top:40px;
}

#contact_form #callback_container {
    margin-top: 0px;
}

.hide_callback {
    display: none !important;
}

div.error_message, div.thanks_message {
    margin-right: auto;
    margin-top: 100px;
    width: 100%;
    max-width: 996px;
    margin-left: auto;
    text-align: center;
    background-color: #1e2a78;
    padding: 40px;
}

div.error_message h2, div.thanks_message h2 {
    margin-bottom: 40px;
    color: #FFF;
}

div.error_message div.message_content, div.thanks_message div.message_content {
    color: #FFF;
}

#client_or_prospect a.selected_segment {
    display: inline-block;
    padding-right:50px;
}

#client_or_prospect a.selected_segment span:after {
    content: '';
    background:  url(https://www.deutschebank.be/dam/belgium/shared/images/arrow-down-white.svg);
    position: absolute;
    right: 15px;
    margin-top: 13px;
    width: 25px;
    height: 25px;
    background-size: contain;
}

#client_or_prospect a.btn.btn--primary.deselected_segment {
    background: transparent;
    border: 1px solid #0550D1;
    color: #0550D1;
}

#client_or_prospect a.btn.btn--primary.deselected_segment:hover {
    background: #e7f4fe;
    border: 1px solid #0d43b3;
    color: #0d43b3;
}

#client_or_prospect a.btn.btn--primary.deselected_segment:focus {
    background: #bfd5f7;
    border: 1px solid #163796;
    color: #163796;
}

#client_or_prospect a.btn.btn--primary.deselected_segment:focus-visible {
    outline: 2px solid #fff;
    box-shadow: 0 0 0 4px #0550d1;
}

.contactPage a {
    background-color: transparent;
    color: #0550d1;
    text-decoration: underline;
    font-family: Deutsche Bank Medium;
}

.contactPage a:hover {
    background-color: #f7f7f7;
    color: #0d43b3;
    text-decoration: underline;
}

.contactPage a:active {
    background-color: #bfd5f7;
    color: #163796;
    text-decoration: underline;
}

input.valid_iban {
    color:#25A62D;
}

input.invalid_iban {
    color:#a31111;
}

img.privacy-icon {
    position:absolute;
    width: 25px;
    height: 25px; 
    right: 10px;
    top: 45px;
    z-index: 100;    
}

img.privacy-icon:hover {
    cursor: pointer;
}

.db-form__field input[type="password"] {
    font-size: 2rem;
}