/* =========================================
   Utils
   ====================================== */

.wrapper {
    width: 100%;
}

/* =========================================
   Headings
   ====================================== */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6{
    font-family: "DeutscheBank", sans-serif;
}

h1,
.h1 {
    font-size: 44px;
    line-height: 57px;
    color: #0550D1;
    margin: 0 0 34px;
}

h2,
.h2 {
    font-size: 26px;
    line-height: 31px;
    color: #16184E;
    font-weight: 400;
}

/* =========================================
   Typography
   ====================================== */

p {
    font-size: 16px;
    line-height: normal;
}

/* ==============================
   Buttons
   ============================= */

.blue-box,
.white-box {
    padding: 14px 24px;
    display: flex;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    text-decoration: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.blue-box {
    background-color: var(--btn-primary-bg-color);
    color: #ffffff;
    border: 2px solid var(--btn-primary-bg-color);
}

.white-box {
    background-color: #ffffff;
    color: var(--btn-primary-bg-color);
    border: 2px solid var(--btn-primary-bg-color);
}


.btn-icon-arrow::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("../img/arrow_white.svg");
    background-repeat: no-repeat;
    background-position: center -1px;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.link-icon-arrow::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("../img/arrow_blue.svg");
    background-repeat: no-repeat;
    background-position: center -5px;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

/* ==============================
   Thankyou
   ============================= */

#thankyou {
    min-height: auto;
}

.alert,
#thankyou {
    display: none;
}

#thankyou p {
    font-size: 26px;
    line-height: 36px;
}

/* =========================================
   Hero
   ====================================== */

.hero {
    background-repeat: no-repeat;
    background-image: url("../img/bg-hero-mobile-v2.jpg");
    background-position: center center;
    background-size: cover;
    /*margin-bottom: 56px;*/
    margin-bottom: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.hero .caption {
    margin-top: 40px;
    margin-bottom: 50px;
    position: relative;
    padding-top: 60px;
}

.hero .caption .validity-bulletin {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    background-color: #C9DD03;
    padding: 5px 15px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 25px 25px 25px 25px;

    div {
        font-weight: 700;
    }
}

.hero .caption .text-container .tagline {
    font-size: 16px;
    line-height: 21px;
    color: #ffffff;
    margin-bottom: 8px;
}

.hero .caption .text-container h1 {
    font-size: 26px;
    line-height: 34px;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 700;
}

.hero .caption .percentage-container {
    padding-left: 46px;
}

.hero .caption .percentage-container .percentage {
    font-size: 180px;
    line-height: 1.1;
    font-weight: 800;
    color: #C9DD03;
}

.hero .caption .percentage-container .percentage span {
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
}

.hero .caption .percentage-container .percentage-note {
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
    color: #ffffff;
}

@media screen and (min-width: 768px) {

    .hero .caption {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        padding-top: 0;
        padding-left: 15px;
        padding-right: 15px;
        margin: 5vw 0;
    }

    .hero .caption .validity-bulletin {
        right: 15px;
    }

    .hero .caption .text-container {
        margin-top: 70px;
    }

    .hero .caption .text-container h1 {
        font-size: 39px;
        line-height: normal;
        color: #ffffff;
        margin-bottom: 0;
    }

}

@media screen and (min-width: 992px) {

    .hero {
        background-image: url("../img/bg-hero-desktop-v2.jpg");
        background-size: cover;
        height: 26.8vw;
        margin-bottom: 38px;
        max-height: 521px;
    }

    .hero .caption {
        margin: calc((23vw - 190px) / 2) 0;
        gap: 16px;
    }

    .hero .caption .percentage-container {
        padding-left: 10px;
    }

    .hero .caption .percentage-container .percentage {
        font-size: 200px;
        line-height: 1;
    }

    .hero .caption .percentage-container .percentage span {
        font-size: 100px;
        line-height: 1;
    }

    .hero .caption .percentage-container .percentage-note {
    }

    .hero .caption .text-container {
        margin-top: 40px;
    }

    .hero .caption .text-container h1 {
        font-size: 60px;
        line-height: normal;
        color: #ffffff;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1200px) {

    .hero .caption .validity-bulletin {
        right: 85px;
    }

    .hero .caption .percentage-container .percentage {
        font-size: 230px;
    }

    .hero .caption .percentage-container .percentage span {
        font-size: 110px;
        line-height: 1;
    }

    .hero .caption .text-container {
        margin-top: 70px;
    }

}


@media screen and (min-width: 1440px) {

    .hero .caption {
        margin: 0;
    }

}

/* =========================================
   Form intro
   ====================================== */

.form-intro {
    margin-bottom: 0;
}

/* =========================================
   Lists
   ====================================== */

.form-intro ul {
    list-style-type: none;
    padding-left: 46px;
}

.form-intro ul > li {
    position: relative;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 21px;
}

.form-intro ul > li:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 12px;
    border-left: 1px solid #0550D1;
    border-bottom: 1px solid #0550D1;
    transform: rotate(-45deg);
    left: -45px;
    top: 0;
}

ol {
    padding-left: 15px;
}

/* =========================================
   Cards
   ====================================== */

.cards-container {
    margin-bottom: 56px;
}

.card.margin-bottom-mobile {
    margin-bottom: 40px;
}

.card-content {
    padding: 24px 0;
}

.card-content.bg-light-blue {
    background-color: #6EC7E0;
    color: #16184E;
}

.card-content.bg-blue {
    background-color: #16184E;
    color: #ffffff;
}

.card-title {
    font-size: 26px;
    line-height: 31px;
    font-weight: 500;
}

@media screen and (min-width: 992px) {

    .cards-container {
        margin-bottom: 80px;
    }

    .card.margin-bottom-mobile {
        margin-bottom: 0;
    }

}

/* =========================================
    Table
   ====================================== */

.entra-in-contatto-link-container {
    padding: 24px;
    background-color: #E7F4FE;
}

/* =========================================
    Table
   ====================================== */

.table-container {
    border-top: 1px solid #8A8A8A;
    border-bottom: 1px solid #8A8A8A;
    margin-bottom: 51px;
}

.table-container h2 {
    margin-top: 0;
}

.table-container .table {
    margin-top: 55px;
}

.table-container .collapsed h2 {
    margin-bottom: 0;
}


.table > tbody > tr > td {
    font-size: 12px;
    line-height: 18px;
    padding: 23px 10px;
    color: #16184E;
    vertical-align: middle;
    width: 50%;
    border-color: #C2C6CD;
}

.table > tbody > tr:first-of-type td {
    border-top: 0;
}

.table > tbody > tr > td:first-of-type {
    background-color: #F0F0F0;
}

.table > tbody > tr > td:nth-of-type(2) {
    font-weight: 500;
}

.table > tbody > tr > td:nth-of-type(2) strong {
    font-weight: 700;
}

@media screen and (min-width: 992px) {

    .table-container {
        margin-bottom: 67px;
    }

    .table > tbody > tr > td {
        font-size: 16px;
        line-height: 28px;
        padding: 24px 16px;
    }

}


/* =========================================
   Form
   ====================================== */

#form-container {
    display: none;
}

.form-container {
    margin-bottom: 56px;
}

@media screen and (min-width: 992px) {

    .form-container {
        margin-bottom: 71px;
    }

}

.form-group {
    height: 70px;
}

.form-group-fullwidth {
    clear: both;
}

.form-control {
    height: 46px !important;
}

.errors-container{
    color:red;
    font-size: 11px;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

#branch_choice{
    display: none;
}

/* =============================================================================
   Tooltip
   ========================================================================== */

/* ICON */

label[data-toggle="tooltip"]:after {
    margin-left: 5px;
    font-family: 'FontAwesome';
    content: "\f05a";
    font-size: 18px;
    color: #0098db;
}

.dbe label[data-toggle="tooltip"]:after {
    color: #e00034;
}

label[data-toggle="tooltip"]:hover:after {
    color: #002244;
}

.tooltip {
    left: 0 !important;
}

/* ==========================================================================
   404
   ========================================================================== */

/* ==============================
   Logo
   ============================= */

.logo-text .title,
.logo-text .subtitle {
    font-family: 'DeutscheBank', sans-serif;
    font-size: 21px;
}

.logo-text .title {
    color: #0550D1;
}

.logo-text .subtitle {
}

/* ==============================
   Mask
   ============================= */

.mask {
    background-color: #EAF1F7;
}

.mask h2 {
    color: #00A3E0;
}

/* ==============================
   Collapse
   ============================= */

.collapse-row {
    position: relative;
    padding: 18px 0;
}

.collapse-row h2 {
    padding-right: 42px;
}

.collapse-btn {
    position: absolute;
    transform: translate(-50%, 0);
    width: 32px;
    height: 32px;
    background-color: #0550D1;
    right: -15px;
    top: 18px;
}

.collapse-btn:before {
    display: block;
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    border-left: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%) rotate(135deg);
}

.collapsed .collapse-btn:before {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 45%;
}

.collapse-plus {
    display: none;
}

.collapsed .collapse-plus {
    display: block;
}

.collapsed .collapse-minus {
    display: none;
}

@media screen and (min-width: 768px){

    .collapse-row {
        padding-bottom: 18px;
        padding-right: 0;
    }

}

/* ==============================
   Pre Footer
   ============================= */

.pre-footer {
    margin-bottom: 60px;
}

@media screen and (min-width: 992px) {

    .pre-footer {
        margin-bottom: 100px;
    }

}


/* ==============================
   Footer (disclaimer)
   ============================= */

.footer h1 {
    color: #0E1B34;
    font-family: "DeutscheBank", sans-serif;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 24px;
}

.footer {
    padding-bottom: 0;
}

.footer ul {
    padding-left: 0;
}

.footer p,
.footer li {
    font-size: 12px;
    line-height: normal;
}

.footer ul li::before {
    display: none;
}

.footer li sup {
    top: -5px;
}

.footer li {
    margin-bottom: 15px;
}

.footer .strong {
    font-weight: bold;
}

.footer .big {
    font-size: 14px;
    line-height: normal;
}

.footer-grey {
    background-color: #F3F4F5;
}

.footer-grey .container {
    position: relative;
}

