/* HOW TO USE THE APPLICATION */
.how-to-use-the-application {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 444;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms;
}

.how-to-use-the-application-active {
    pointer-events: unset;
    opacity: 1;
}

/* HOW TO USE THE APPLICATION INNER */

.how-to-use-the-application-inner {
    width: 235px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

/* HOW TO USE THE APPLICATION INNER ITSELF */

.how-to-use-the-application-inner-itself {
    background-color: rgb(25,25,25);
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

/* HOW TO USE THE APPLICATION INNER ITSELF PARAGRAPH CONTAINER */

.how-to-use-the-application-inner-itself-paragraph-container {
    background-color: rgb(15,15,15);
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.2rem;
}

.how-to-use-the-application-inner-itself-paragraph {
    color: white;
    font-weight: 300;
    text-align: center;
}

.how-to-use-the-application-inner-itself-paragraph-bold {
    font-weight: 600;
}

/* HOW TO USE THE APPLICATION INNER ITSELF BUTTONS */

.how-to-use-the-application-inner-itself-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5px;
}

.how-to-use-the-application-inner-itself-button-itself {
    color: white;
    border: 0;
    background-color: rgb(35,35,35);
    font-size: 1rem;
    padding-block: 5px;
    cursor: pointer;
    border-radius: 0.2rem;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.01);
    text-transform: uppercase;
}

.how-to-use-the-application-inner-itself-button-itself:hover {
    background-color: rgb(40,40,40);
}

.how-to-use-the-application-inner-itself-button-itself:active {
    background-color: rgb(37,37,37);
}

#prevHowToUseButton:disabled {
    opacity: 0;
    pointer-events: none;
}

#nextHowToUseButton:disabled,
#gotItHowToUseButton:disabled {
    display: none;
}

#gotItHowToUseButton {
    background-color: rgb(45,45,47);
}

#gotItHowToUseButton:hover {
    background-color: rgb(50,50,52);
}

#gotItHowToUseButton:active {
    background-color: rgb(47,47,49);
}

/* HOW TO USE THE APPLICATION INNER INDICATOR */

.how-to-use-the-application-inner-indicator {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1px 1fr;
    padding-inline: 4.6px;
    column-gap: 5px;
}

.how-to-use-the-application-inner-indicator-itself {
    display: flex;
    justify-content: center;
}

.how-to-use-the-application-inner-indicator-itself-svg {
    fill: white;
    width: 24px;
    height: 24px;
}