/*author: Zekun Li */
/*
Color palette
Primary group 1
Gilded purple: #462977
Purple 2: #7859A5
Purple 3: #B194C5
Purple 4: #DDC8E1

Primary group 2
Gilded gold: #F8BB1C
Gold 2: #FED360
Gold 3: FEEB98
Gold 4: #FFF0C1

Tertiary: 
Black: #010101
Grey 1: #39393A
*/

h2 {
    font-weight: 900;
}

body {
    background-color: white;
    font-family: 'Inter', sans-serif;
}

#quizDiv,
#affinityRow,
#inputRow {
    background-image: linear-gradient(to bottom right, #DDC8E1, #7859A5);
}

#selectors,
#graphicalResult,
#affinityRow {
    display: none;
}

h2,
h3,
p,
label,
.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    color: #010101;
}

p .text-muted {
    color: #A7A5AB;
}

input[type='range']::-webkit-slider-thumb {
    background-color: #462977;
}



.btn-primary,
.btn-primary:focus {
    color: white;
    background-color: #462977;
    border-color: rgba(0, 0, 0, 0);
}

.btn-primary:hover,
.btn-primary:active {
    color: white;
    background-color: #7859A5;
    border-color: black;
}

.accordion-button[aria-expanded='true'] {
    color: black;
    background-color: #DDC8E1;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

a {
    color: #7859A5;
}

#adviceNote p {
    font-size: 12px;
}

th a {
    text-decoration: none;
}