/* Davy - 2022 */

/* Step */
.form_step {
    position: relative;
    width: 90%;
    max-width: 980px;
    margin: 0px auto;
}

.fieldset_step {
    width: 100%;
    margin: 32px 0px;
    padding: 16px 32px;
}

.fieldset_theme_step {
    text-align: center;
    margin: 32px auto;
    padding: 16px 32px;
    width: 100%;
    /* max-width: 640px; */
}

.progress-contain {
    width: 40%;
    margin: 5% auto 0 auto;
}

.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
}

.progressbar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: -1;
}

.select_step {
    background-color: white;
    padding: 8px 0;
}

.input_radio_step {
    position: absolute;
    opacity: 0;
}

.label_radio_step input[type="radio"]:checked + .video_theme_step {
    box-shadow: 0 0 12px #aaaaaa;
    background-color: #ffffff;
    padding: 3px;
    border-radius: 0;
}

.block_theme_step {
    position: relative;
    display: block;
    width: 100%;
}

.block_theme_music_step {
    margin: 0 auto 1rem;
}

.image_theme_step {
    width: 100%;
    box-shadow: 0 0 12px #dddddd;
}

.video_theme_step {
    width: 53%;
}

.video-container {
    justify-content: end;
}

.video_theme_step.link_step:hover {
    box-shadow: 0 0 12px #aaaaaa;
}

.text_theme_step {
    color: white;
    font-weight: 600;
    font-size: 24px;
}

.contain_theme_step {
    position: absolute;
    text-align: center;
    margin: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.link_step {
    text-decoration: none;
    cursor: pointer;
}

.block_music_step {
    position: relative;
    text-align: left;
    border: 1px solid #dddddd;
    box-shadow: inset 0 0 2px #eeeeee;
    padding: 8px;
}

.block_select_options_music_step {
    position: relative;
}

.block_select_music_step {
    cursor: pointer;
}

.block_options_music_step {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #dddddd;
    box-shadow: inset 0 0 2px #eeeeee;
    transform: translateY(2px);
    width: 100%;
    z-index: 2;
}

.block_option_music_step {
    position: relative;
    text-align: left;
    cursor: pointer;
    padding: 8px;
}

.block_option_music_step:hover {
    background-color: #eeeeee;
}

.image_music_step {
    max-width: 42px;
    max-height: 42px;
}

.text_music_step {
    position: absolute;
    font-weight: bold;
    font-size: 12px;
    top: 8px;
    left: 54px;
    margin: 0;
}

.block_options_music_step.show {
    display: block;
}

@media screen and (max-width: 768px) {
    .progress-contain {
        padding-top: 8%;
    }
}