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

/*Fonts*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.table-bordered > thead > tr > th {
    border: 1px solid #dadada;
}
.table-bordered > thead > tr > td {
    border: 1px solid #dadada;
}

h1,h2,h3,h4,h5,h6 {
   font-family: 'Montserrat', sans-serif;
}

/*Text for survey - number qestions */
.text-muted {
    text-align: right;
}

btn-primary {
    background-color: #3973FF;
    border-color: #3973FF;
    color: #fff;
}

/* Define the color for Awesome Bootsrap Checkboxes ; based on bg-primary background-color*/
label::after {
    background-color: #3973FF;
} 


/* Multiplechoice bootstrap buttons unchecked focus*/
.btn-check .btn-primary:focus, .btn-check:focus+.btn-primary {
    background-color: #3973FF;
    border: 1px solid #3973FF;
    box-shadow: none;
    color: #fff;
}
.btn-check:focus:checked + .btn-primary, .btn-check .btn-primary:focus:checked {
    background-color: #3973FF;
    border-color: #3973FF;
    color: #fff;
}

/*for template_start_surv*/
.bisr_start_survey {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}
.bisr_start_survey h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 150%;
    color: #000000;
    text-align: left;
}
.bisr_start_survey p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    text-align: left;
}
.bisr_start_survey__image {
    position: relative;
    display: flex;
    width: 50%;
    justify-content: flex-end;
    padding-right: 30px;
}

.bisr_start_survey__image img {
    position: absolute;
    top: 0;
}
.bisr_start_survey__info {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 768px) {
    .bisr_start_survey__image {
        display: none;
    }
    .bisr_start_survey__info {
        width: 100%;
    }
}


