/******************
    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
*/

:root {
    --ims_primary: #675770;
    --ims_primary_hover: #a278c9;
    --ims_secondary: #7f778f;
    --ims_secondary_hover: #645c75;
}

body {
    background-color: #f4f5f7;
}

.bg-light {
    background-color: #fff !important;
}

.btn-primary {
    background-color: var(--ims_primary) !important;
    border: var(--ims_primary) !important;
}

.btn-primary:hover {
    background-color: var(--ims_primary_hover) !important;
    border: var(--ims_primary_hover) !important;
}

a {
    color: var(--ims_primary) !important;
}

.text-primary {
    color: var(--ims_primary) !important;
}

.survey-name {
    font-weight: 500;    
    margin-bottom: 4rem;
}
.survey-description, .survey-welcome {
    font-weight: normal;
}

#welcome-container {
    background-color: #fff;
    padding: 3rem;
    border-radius: 0.375rem;
}

.question-title-container {

    padding-bottom: 0 !important;
}

.radio-item input[type="radio"] {
    width: 100%;
}

.radio-item {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-width: 1px;
    border-radius: 0.375rem;
    padding: 0.25rem .5rem !important;
    margin: 0 .75rem .75rem 0;
    background-color: #fff;
}

.radio-item label {
    margin-left: 20px !important;
}

table .radio-item label {
    margin-left: 0px !important;
}

table {
    margin-bottom: 1rem !important;
}

.radio-list li {
    margin-right: 0 !important;
}

.progress-bar {
    background-color: var(--ims_primary) !important;
}

@media (max-width: 768px) {
    .radio-list li {
        margin-bottom: 1rem !important;
    }
    td.radio-item {
        min-height: 30px !important;
        margin-bottom: 1rem !important;
        margin-right: 0 !important;
    }
    td.radio-item .ls-label-xs-visibility {
        margin-left: 20px !important;
    }
    tbody>tr>td{
        background-color: #fff !important;
    }
     table.ls-answers tr {
        padding: 1rem;
    }
    th {
        margin-bottom: 1rem !important;
    }
}

.privacy {
    margin-top: 4rem;
}

.limit-text-window {
    margin-bottom: 1rem;
}

.question-title-container {
    font-size: 1.2rem;
    font-weight: bold;
}

.radio-item, .list-unstyled {
    margin-bottom: 0 !important;
}

.radio-item label::before {
    top: 2px !important;
}

.radio-item label::after {
    top: 5px !important;
}

.question-container {
    border: none !important;
    border-radius: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1), 0px 0px 3px 0 rgba(0, 0, 0, 0.08) !important;
    border-radius: 0.375rem !important;
    background-color: transparent !important;
}

.progress {
    background-color: #ffffff !important;
    box-shadow: none !important;
    border: 1px solid #ccc;
}

.text-info {
    color: var(--ims_primary_hover) !important;
}

.asterisk {
    margin-right: 5px;
    font-size: .8rem;
}

.fruity .well {
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
    margin: 0 !important;
}

.no_margin_bottom {
    margin-bottom: 0 !important;
}

.top-container {
    margin: 0 auto;
}

.table>:not(:first-child) {
    border-top: 1px solid !important;
}
    
@media (min-width: 1400px) {
    .top-container {
        max-width: 1320px;
    }
}
@media (min-width: 1200px) {
    .top-container  {
        max-width: 1140px;
    }
}
@media (min-width: 992px) {
    .top-container  {
        max-width: 960px;
    }
}
@media (min-width: 768px) {
    .top-container {
        max-width: 720px;
    }
}