$white: #ffffff;
$veryLightGray: #f8f9fa;
$lightGray: #f3f3f3;
$midLightGray: #929faa;
$gray: #6c757d;
$darkGray: #212529;
$veryDarkGray: #545454;
$green: #4CAF50;
$lightGreen: #d1e7dd;
$red: #ED4028;
$blue: #0D6EFD;

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0;
    height: 0;
}

html,
body {
    margin: 0px;
    padding: 0px;
    background-color: $white;
    direction: ltr;
    font-family: 'Oswald', sans-serif;
    top: 0 !important;
}

.main-nav {
    padding-block: .5em;

    >.container {
        >.row {
            align-items: center;
            text-align: center;
        }

        .navbar-brand {
            margin: 0;

            img {
                width: 75px;
            }
        }

        .navbar-language {
            .select2-container {
                .select2-selection--single {
                    height: unset;
                    background-color: transparent !important;
                    border: none;

                    .select2-selection__rendered {
                        line-height: 0;
                        padding: 0;
                    }

                    .select2-selection__arrow {
                        display: none;
                    }
                }
            }
        }

        .survey-button {
            img {
                width: 1.75em;
                cursor: pointer;
            }
        }
    }
}

.main-footer {
    text-align: center;
    background-color: $darkGray;
    color: $white;
    padding-block: 2em;
}

.section-header {
    display: flex;
    align-items: center;
    margin-inline: 2em;

    >div {
        flex: 0 0 auto;
        width: 25%;
        height: 1px;
        background-color: $darkGray;
    }

    .title {
        width: 50%;
        text-align: center
    }
}

.main-title {
    padding: 1.25em;
    margin: 0;

    h3 {
        font-size: 2em;
        text-align: center;
    }
}

.questions {
    .question {
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: $veryLightGray;
            color: $darkGray;
            padding: 10px 20px;
            cursor: pointer;

            .title {
                font-weight: 600;
            }

            .arrow {
                font-size: 30px;
            }
        }

        .options {
            padding: .5em 1em;

            .option {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 15px 0;
                flex-wrap: wrap;

                .pretty {
                    margin-right: unset;
                    margin-inline-end: 10px;
                    flex: 1 0 0%;
                }

            }
        }
    }
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;

    button {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: $green;
        font-size: .9em;
        width: 100%;
    }
}

.replied {
    text-align: center;
    padding-block: 2rem;

    img {
        width: 100px;
        margin-bottom: 1rem
    }
}


@import "components/pretty_checkbox";
@import "components/google_translate";
@import "rtl";