.page-options {
    position: relative;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    margin: 20px 20px 0 20px;
}

.page-options>.option {
    text-align: left;
    font-weight: 400;
    padding: 20px;
    margin: 0 0 15px;
    border-radius: 15px;
    font-size: var(--FontSize5);
    background: var(--ColorThemes1);
    color: var(--ColorThemes3);
    border: 1px solid var(--ColorThemes2);
    box-shadow: var(--shadow-l1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-options>.option>label {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    font-size: var(--FontSize1);
    font-weight: 500;
    margin: 5px 0;
    width: 100%;
}

.page-options>.option>select {
    width: 100%;
    min-width: 140px;
    padding: 0 5px;
    border-radius: calc(var(--border-radius) - 5px - 4px);
    height: 30px;
    background-color: var(--ColorThemes0);
    color: var(--ColorThemes3);
}

.page-options>.option>.custom-checkbox+label {
    font-size: var(--FontSize4);
    font-weight: 400;
    width: 100%;
    display: flex;
    align-items: center;
    user-select: none;
    flex-direction: row-reverse;
    justify-content: space-between;
    cursor: pointer;
    margin: 5px 0;
}

.page-options>button {
    border-radius: var(--border-radius);
    background: var(--PrimaryColor);
    color: var(--PrimaryColorText);
    width: 100%;
    height: 40px;
    font-size: var(--FontSize3);
    font-weight: 400;
    margin: 20px 0;
    text-transform: uppercase;
}