/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
* {
    font-family: "Plus Jakarta Sans", sans-serif;
}
a {
    color: #222222;
    text-decoration: underline;
}
a:hover {
    color: #e8173a;
}
p {
    font-size: 18px;
    line-height: 26px;
}
/* BUTTONS */
.btn-primary {
    color: #e8173a;
    background-color: #fff;
    border: solid 1px #e8173a;
    border-radius: 0;
    font-weight: 500;
}
.btn-primary:hover {
    color: #fff;
    background-color: #e8173a;
    border: solid 1px #e8173a;
    border-radius: 0;
    font-weight: 500;
}
.btn-primary:disabled {
    color: #fff;
    background-color: #e8173a;
    border: solid 1px #e8173a;
    border-radius: 0;
    font-weight: 500;
    opacity: 0.5;
}
.form-control {
    color: #222222;
    background-color: #fff;
    background-clip: padding-box;
    border: solid 1px #949494;
    border-radius: 0;
}

.btn-outline-secondary {
    color: #222222;
    border-color: #222222;
    border-radius: 0;
    font-weight: 500;
}

.alert-danger {
    background-color: #e8173a;
    border-radius: 0;
}
.alert-warning {
    background-color: #222222;
    border-radius: 0;
}
.text-info {
    --bs-text-opacity: 1;
    color: #222222 !important;
}
.text-muted {
    font-size: 18px;
    line-height: 26px;
    --bs-text-opacity: 1;
    color: #222222 !important;
    font-weight: 500;
}
.bg-light {
    --bs-bg-opacity: 1;
    background-color: #FFFFFF !important;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #FFF !important;
    color: #222222;
    border: none;
}
.question-help-container {
    border-color: transparent;
}
.question-valid-container {
    position: relative;
    text-align: left !important;
}
.question-text {
    font-size: 1.5rem;
}
.question-text .asterisk.float-start {
    float: none !important;
    display: inline;
}
.question-text .asterisk.float-start .small {
    font-size: .575em !important;
}
label {
    font-size: 16px;
}
.radio-item label::before {
    top: 50%;
    transform: translateY(-50%);
    border: solid 1px #949494;
    width: 18px;
    height: 18px;
}
.radio-item label::after {
    width: 12px;
    height: 12px;
    left: 3px;
    top: 6px;
    background-color: #e8173a !important;
}
.answer-container {
    border: none;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
h1.survey-name {
    text-align: left !important;
    font-size: 70px;
    font-weight: 600;
    inline-size: 90%;
    overflow-wrap: break-word;
}
.h2 {
    font-weight: 600;
}
.h3 {
    font-size: 46px;
    font-weight: 600;
}
.group-title {
    text-align: left !important;
}


/* NAV */
.navbar>.container-fluid {
    justify-content: flex-end;
}
.navbar-light .navbar-nav .nav-link {
    color: #222222;
}
.logo-container>img {
    max-height: 153px;
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 38px !important;
        line-height: 1.1;
        margin-bottom: 16px;
        max-width: calc(100vw - 100px) !important;
    }
    .h3 {
        font-size: 32px !important;
        line-height: 1.1;
        margin-bottom: 30px;
        margin-top: 60px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 38px !important;
        line-height: 1.1;
        margin-bottom: 16px;
        max-width: calc(100vw - 100px) !important;
        inline-size: 90%;
        overflow-wrap: break-word;
        text-wrap: balance
    }
    .h3 {
        font-size: 32px !important;
        line-height: 1.1;
        margin-bottom: 30px;
        margin-top: 60px;
    }
}