:root {
    --text-width: 350px;
}
h1 {
    font-size: 34px;
    margin-bottom: 0;
    padding-bottom: 10px;
    max-width: var(--text-width);
}

h2 {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;

    padding-bottom: 0;
    max-width: var(--text-width);
    @media only screen and (max-width: 1000px) {
        font-size: 20px;
    }
}

p {
    margin: 5px auto 15px;
    max-width: var(--text-width);
    @media only screen and (max-width: 1000px) {
        margin: 4px auto;
    }

}

.action-button.main-step-action {
    background-color: var(--highlight);
    padding: 0 20px;
    margin: 20px;
    font-weight: bold;
    min-width: 200px;
    font-size: 15px;
    @media only screen and (max-width: 1000px) {
        margin: 5px;
    }
}

.action-button.sub-step-action {
    min-width: 200px;
    font-size: 16px;
    padding: 0 20px;
    margin: 20px;
}

.action-button {
    padding: 0 20px;
    cursor: pointer;
    color: white;
    min-width: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    text-decoration: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 18px;
    height: 50px;
    content: '';
    top: 0;
    left: 0;
    border-radius: 25px;
    background-color: black;
    user-select: none;
    transition: padding 0.4s ease-in-out;
    margin: 0 5px;
}

.action-button.main-step-action::after {
    opacity: 0;
    background: url("../icons/arrow-OsFDdCt.svg");
    content: '';
    position: absolute;
    height: 10px;
    color: white;
    width: 20px;
    right: 10px;
    font-size: 20px;
    line-height: 50px;
}

.action-button.main-step-action:hover {
    padding: 0 40px 0 0;
    transition: opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
    position: relative;
}

.action-button.main-step-action:hover::after {
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}

.action-button.option {
    height: 35px;
}

.action-button.unselected {
    background-color: white;
    color: black;
}

.trash-icon {
    height: 24px;
}
