.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    font-weight: 300;
    background-color: rgb(242, 243, 243);
}

.app-header {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    background: transparent url("/assets/img/bg-feedback.jpg") no-repeat top left;
    background-size: cover;
    color: white;
    flex-shrink: 0;
}

.header-title>.title-main-section {
    font-size: 1.5rem;
    line-height: 1em;
    font-weight: 200;
    padding-top: 7px;
    padding-bottom: 5px;
}

.env-label {
    display: inline-block;
    background-color: red;
    color: white;
    border-radius: 4px;
    line-height: 15px;
    font-size: 0.7rem;
    padding: 2px 4px;
    vertical-align: middle;
}

.header-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    /* margin-bottom: 30px; */
}

.wrap-content {
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 1024px;
    width: 100%;
    margin: 10px auto 0;
    margin-top: 0px;
    border: 1px solid #dedede;
    border-radius: 0.5rem;
    max-width: 430px;
    border-radius: 0.5rem;
    min-height: 512px;
}

/* responsive */

@media (max-width: 991.98px) {
    .wrap-content {
        padding: 0 0 10px 0;
    }

    .content {
        padding: 0;
    }

    .radio-wrap .custom-control-group {
        float: left;
        margin-left: 25px;
    }

    .card-element-row .text-bold p {
        margin-top: 10px;
    }
}

@media (min-width: 992px) {
    .wrap-content {
        border: 1px solid #dedede;
        border-radius: 0.5rem;
    }
}

.main-container {
    justify-content: flex-start;
}

.app-header+div {
    min-height: 20vh;
}