.pricing { 
    width: 80%; 
    margin: var(--sections-top-margin) auto 0 auto;
    transition: opacity 1.5s, transform 1.5s;
}

.pricing__content {
    display: flex;
}

/* ------------------------------------ */

.pricing__help {
    align-self: center;
    width: 30%;
    margin-right: 50px;
}

.pricing__form {
    width: 70%;
}

.help__title {
    font-family: var(--font-family);
    font-size: var(--h2-font-size);
}

.help__text {
    font-family: var(--font-family);
    font-size: var(--p-font-size);
    text-align: justify;
}

/* ------------------------------------ */

.form__elements {
    display: flex;
}

.element {
    background-color: tomato;
    margin-right: 5px;
    cursor: pointer;
}

.element__text {
    margin: 0 0 0 0;
    padding: 5px 10px;
    font-family: var(--font-family);
    font-size: 20px;
    color: white;
}

/* ------------------------------------ */

.form__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 500px;
    margin-top: 10px;
    border: 1px solid #bfbfbf;
}

.box__empty {
    align-self: center;
    font-family: var(--font-family);
    font-size: 24px;
    color: #bfbfbf;
}