.ctn_dashboard {
    display: grid;
    grid-template-columns: calc(60% - 12px) calc(40% - 12px);
    column-gap: 24px;
}
.mobile {
    display: none;
}
.row_two {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.ctn_dashboard img {
    width: 100%;
}
.ctn_dashboard a {
    height: fit-content;
}
.dash_content {
    max-width: 485px;
    width: 100%;
    box-shadow: 0px 3px 6px var(--sombra);
    border-radius: 15px;
    border: none;
}
.dash_body {
    padding: 45px 25px;
}
.dash_text_modal {
    color: var(--first-color);
    font: normal normal bold 30px/20px Europa;
    text-align: center;
    margin-bottom: 42px;
}
.dash_confirm {
    text-align: center;
    font: normal normal normal 16px/20px Europa;
    color: var(--text-medium);
    margin-bottom: 30px;
}
.btn-form {
    width: 100% !important;
    margin: 0;
    font: normal normal bold 20px/20px Europa;
    padding: 0;
}
.modal.show .modal-dialog {
    max-width: 90vw;
    margin: 0 auto;
}
.ctn_img_modal {
    margin-bottom: 42px;
    text-align: center;
}
.ctn_img_modal img{
    width: 100%;
    max-width: 250px;
}

@media only screen and (max-width: 991.98px) {
    .desk {
        display: none;
    }
    .mobile {
        display: block;
    }
    .ctn_dashboard {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 18px;
    }
    .row_two {
        gap: 18px;
    }
    .dash_text_modal {
        font-size: 25px;
    }
    .dash_confirm {
        font-size: 18px;
        padding: 0 15px;
    }
    .btn-form {
        font-size: 16px;
    }
    .dash_body {
        padding: 30px 20px;
    }
}