/*
handler: ndmais-discover-cta
version: 1.0
deps: bootstrap-icons,bootstrap-5
*/

.cta-discover {
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.cta-discover .cta-discover-message {
    margin: 0;
    padding-right: 20px;
}

.cta-discover .cta-discover-icon {
    font-size: 20px;
    line-height: 36px;
    width: 36px;
    height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: #174EA6;
    color: #fff;

}

.cta-discover .cta-discover-text {
    font-weight: 500;
    color: #000;
    font-size: 14px;
    line-height: 1.1;
    max-width: 100%;
    padding-left: 15px;
    width: calc(100% - 36px);
    box-sizing: border-box;
}

.cta-discover .cta-discover-btn {
    background-color: #1750a6;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: block;
    line-height: 30px;
    padding: 0 10px;
    color: #fff;
    min-width: 70px;
}

.cta-discover .cta-discover-btn:hover {
    background-color: #0f356e;
}

@media all and (min-width:992px) {
    .cta-discover {
        margin-bottom: 40px;
    }

    .cta-discover .cta-discover-btn {
        min-width: 100px;
    }

}