body {
    background: none !important;
}

.support-btn {
    display: inline-block;
    padding: 0 26px;
    height: 50px;
    line-height: 50px;
    margin-top: 12px;
    font-size: 20px;
    letter-spacing: 0;
    text-transform: capitalize;
}

/* Partie gauche de l'écran : titre de la page */
#left {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100vh;
    background: url(/static/img/home/generic-background.jpg) 35% 0;
    background-size: cover;
}

#left h1 {
    color: #fff !important;
    font-family: "Alegreya Sans SC", sans-serif !important;
    font-size: 5vw !important;
    line-height: 5vw!important;
    font-weight: 900;
    text-align: center;
    font-variant: small-caps;
    user-select: none;
    background: none !important;
    text-transform: uppercase !important;
    height: initial !important;
    padding: 0 !important;
    margin-left: 0 !important;
    animation: blue-glow 1000ms infinite alternate linear;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%
}

@keyframes blue-glow {
    0% {
        text-shadow: #59d6e4 0 0 10px, #59d6e4 0 0 15px, #59d6e4 0 0 20px, #59d6e4 0 0 25px, #59d6e4 0 0 38px;
    }
    100% {
        text-shadow: #59d6e4 0 0 10px, #59d6e4 0 0 15px;
    }
}

#left::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/static/img/home/wave.png) no-repeat right;
    background-size: contain;
}

/* Partie droite de l'écran: FAQ */
#right {
    position: absolute;
    top: 0;
    left: 40%;
    width: 60%;
}

#right h2 {
    margin: 80px 0 30px;
    text-align: center;
    color: #646262;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 45px;
    font-weight: 800;
}

/* Menu de la FAQ */
#right #support-menu {
    display: inline-block;
    vertical-align: top;
    margin-left: 40px;
}

#right .meta-category {
    padding: 30px 28px 14px;
    width: 275px;
    box-sizing: border-box;
    box-shadow: 0 0 9px rgba(50, 50, 51, 0.36);
    margin: 32px 0;
    position: relative;
}

#right .meta-category.single-category {
    cursor: pointer;
}

#right .meta-category.active {
    box-shadow: #59d6e4 0 0 10px, #59d6e4 0 0 15px;
}

#right .meta-category .toggle {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

#right .meta-category .toggle::after {
    content: '+';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid #F600FF;
    color: #F600FF;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    transition: opacity ease-in-out 200ms;
}

#right .meta-category .toggle::before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid #56F3F8;
    color: #56F3F8;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    opacity: 0;
    transition: opacity ease-in-out 200ms;
}

#right .meta-category.open .toggle::after {
    opacity: 0;
}

#right .meta-category.open .toggle::before {
    opacity: 1;
}

#right .meta-category h3 {
    color: #8F8D8D;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 22px;
    line-height: 22px;
    font-weight: 800;
    user-select: none;
    margin-bottom: 16px;
}

#right .meta-category ul {
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transition: opacity ease-in-out 400ms;
}

#right .meta-category ul::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #9A9A9A;
}

#right .meta-category.open ul {
    height: auto;
    opacity: 1;
}

#right .meta-category ul li {
    color: #B6B0B0;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 18px;
    line-height: 18px;
    margin: 6px 0;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
}

#right .meta-category ul li a {
    color: #B6B0B0;
    text-decoration: none;
}

#right .meta-category ul li a:hover {
    font-weight: bold;
}

#right .meta-category ul li:first-of-type {
    margin-top: 16px;
}

/* Partie centrale de la FAQ: les questions */
#right #questions {
    box-shadow: 0 0 9px rgba(50, 50, 51, 0.36);
    width: 619px;
    display: inline-block;
    vertical-align: top;
    margin-top: 32px;
    margin-left: 60px;
    padding: 26px 48px;
}

#right #questions h3 {
    color: #8F8D8D;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 25px;
    text-align: left;
}
#right #questions hr:first-of-type {
    margin-top: 50px;
}

#right #questions hr {
    height: 2px;
    border: none;
    width: 100%;
    background-color: #9A9A9A;
    color: #9A9A9A;
    margin: 10px 0;
}

#right #questions .question {
    padding: 16px 53px 16px 0;
    margin: 0;
    color: #646262;
    font-family: "Alegreya Sans", sans-serif;
    font-size: 16px;
    position: relative;
}

#right #questions .question h3 {
    color: #B6B0B0;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 20px;
    font-weight: 500;
}

#right #questions .question .question-contact-done h3 {
    margin-top: 16px;
    text-transform: none;
    font-family: "Alegreya sans", sans-serif;
    font-size: 16px;
    color: #01d0f0;
}

#right #questions .question .question-contact-done h3.error {
    color: red;
}

#right #questions .question .question-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity ease-in-out 300ms;
    text-align: justify;
    text-align-last: left;
}

#right #questions .question.open .question-content {
    height: auto;
    opacity: 1;
}

#right #questions .question.open .question-content .question-message {
    margin-top: 25px;
}

#right #questions .question.open .question-content .question-message img {
    max-width: 100%;
}

#right #questions .question a {
    font-weight: 700;
    font-style: italic;
    color: #9A9A9A;
}

#right #questions .question .question-contact {
    margin-top: 20px;
}

#right #questions .question .question-contact h3 {
    color: #B6B0B0;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

#right #questions .question .question-contact textarea {
    width: 99%;
    margin: auto;
    display: block;
}

#right #questions .question .question-contact .button {
    margin-top: 12px;
}

#right #questions .question .toggle {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    right: 24px;
    cursor: pointer;
}

#right #questions .question .toggle::after {
    display: block;
    content: '+';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid #F600FF;
    color: #F600FF;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    transition: opacity ease-in-out 200ms;
}

#right #questions .question.open .toggle::after {
    opacity: 0;
}

#right #questions .question .toggle::before {
    display: block;
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid #56F3F8;
    color: #56F3F8;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    opacity: 0;
    transition: opacity ease-in-out 200ms;
}

#right #questions .question.open .toggle::before {
    opacity: 1;
}
