*,
*:before,
*:after {
    box-sizing: border-box;
}

#logo-svg {
    width: auto;
    height: 50px;
}

#logo-svg-wrapper {
    height: 50px;
}

.nav-btn {
    border-radius: 50px;
    margin-left: 10px;
    transition: 0.2s;
}

.nav-btn.consent-btn {
    margin: 5px 0px;
    width: 100%;
}

.nav-btn:hover {
    transform: scaleX(1.03) scaleY(1.03);
}

.btn.theme-strong {
    color: white;
    background-color: #AA00FF;
}

.btn.theme-light {
    color: #AA00FF;
    background-color: white;
    border: 2px #AA00FF solid;
}

nav {
    background-color: white;
    border-bottom: 1px #AA00FF solid;
}

.nav-link {
    transition: 0.3s;
}

.nav-link:hover {
    color: #AA00FF !important;
}

.navbar-expand-button {
    width: 30px;
    padding: 0;
    background-color: transparent;
    border: transparent;
}

#navbarNav.collapsing .nav-btn,
#navbarNav.collapse.show .nav-btn {
    margin: 5px 0px 8px 0px;
    padding: 0%;
    border: transparent;
    color: #AA00FF;
    background-color: transparent;
}

.inline-icon {
    vertical-align: bottom;
}

.spaced {
    margin-top: 5px;
    margin-bottom: 5px;
}

.spaced-large {
    margin-top: 10px;
    margin-bottom: 10px;
}

.spaced-side {
    margin-left: 5px;
    margin-right: 5px;
}

.spaced-side-large {
    margin-left: 10px;
    margin-right: 10px;
}

.spaced-divider {
    margin-top: 10px;
}

.divider-line {
    border-bottom-width: 1px;
}

.divider-line-dashed {
    border-bottom-style: dashed;
}

.divider-line-solid {
    border-bottom-style: solid;
}

.divider-line-gainsboro {
    border-bottom-color: gainsboro;
}

.divider-line-theme-strong {
    border-bottom-color: #AA00FF;
}

.divider-line-theme-light {
    border-bottom-color: #643A71;
}

.content-box {
    padding: 25px;
}

.col-item {
    padding: 15px;
}

.img-fill-width {
    width: 100%;
    height: auto;
    max-width: 350px;
    display: inline-block;
}

.theme-light {
    color: black;
    background-color: white;
}

.theme-light h1,
.theme-light h2,
.theme-light h3,
.theme-light h4,
.theme-light h5,
.theme-light h6 {
    color: #643A71;
}

.theme-mid1 {
    color: black;
    /*background-color: #FED9FB;*/
    background-color: #EAD8FF;
}

.theme-mid2 {
    color: black;
    background-color: #FEEFE1;
}

.theme-strong {
    color: white;
    background-color: #AA00FF;
}

.theme-dark {
    color: white;
    background-color: #643A71;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

h1 {
    font-family: 'Libre Franklin';
    font-weight: 700;
}

h3 {
    font-family: 'Libre Franklin';
}

h4 {
    font-family: 'Libre Franklin';
    font-weight: 400;
}

h5 {
    font-family: 'Libre Franklin';
    font-weight: 500;
}

.material-icons-sharp {
    user-select: none;
}

.text-orange {
    color: #ef7900;
}

.material-icons-sharp.size-auto {
    font-size: initial;
}

.md-18 {
    font-size: 18px;
}

.md-24 {
    font-size: 24px;
}

.md-36 {
    font-size: 36px;
}

.md-48 {
    font-size: 48px;
}

.article-item {
    transition: 0.2s;
}

.article-item:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.hover-underline:hover {
    text-decoration: underline;
}

.question-box {
    border: #AA00FF solid 1px;
    border-radius: 20px;
    margin-top: 20px;
}

.question-answer {
    width: 100%;
    margin: 10px 0px;
}

.question-option {
    margin: 6px 0px;
    height: 40px;
    padding: 5px;
    border: lightgray solid 1px;
    border-radius: 7px;
    background-color: ghostwhite;
}

@media (min-width: 768px) {
    .question-box .question-media-box {
        border-right: #EAD8FF dashed 3px;
    }
}

a:not(.style-default) {
    /* blue colors for links too */
    text-decoration: inherit;
    /* no underline */
}

a:hover {
    color: inherit;
    /* blue colors for links too */
    text-decoration: inherit;
    /* no underline */
}

@keyframes consent-container-anim {
    0% {
        visibility: hidden;
    }
    66% {
        visibility: hidden;
        opacity: 0;
    }
    100% {
        visibility: visible;
        opacity: 1;
    }
}

#consent-container {
    height: 100vh;
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    transition-delay: 0s;
}

#consent-box {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    transition-delay: 0.3s;
}

#consent-preferences {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    transition-delay: 0s;
}

.consent-anim {
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    visibility: hidden;
    opacity: 0;
}

.consent-anim.consent-show {
    visibility: visible;
    opacity: 1;
}

.consent-image {
    height: 50px;
}

.m-top {
    margin-top: 5px;
}

footer {
    padding: 15px;
    background-color: gainsboro;
}

input {
    padding: 5px 7.5px;
    display: block;
    margin-bottom: 10px;
    border-radius: 0px;
    border: 1px solid gray;
    width: 200px;
}

.btn-purple {
    background-color: #AA00FF;
    color: #fff;
    border-color: #AA00FF;
}

.btn-purple:hover {
    background-color: #643A71;
    color: #fff;
    border-color: #AA00FF;
}

.card-content-box {
    width: 100%;
    background-color: white;
    border: 2px solid gainsboro;
    border-radius: 15px;
    color: black;
}

.card-content-box.strong {
    background-color: #EAC2FF;
}

.card-content-container.noborder {
    background-color: initial;
    border: 0px solid black;
    padding: 20px;
}

.card-content-container {
    background-color: white;
    border: 2px solid gainsboro;
    border-radius: 15px;
    padding: 20px;
}

.purplescroll::-webkit-scrollbar {
    width: 10px;
}


/* Track */

.purplescroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

.purplescroll::-webkit-scrollbar-thumb {
    background: #7A00B8;
}


/* Handle on hover */

.purplescroll::-webkit-scrollbar-thumb:hover {
    background: #52007A;
}

.text-body {
    color: #000000;
}