/* Style contest game */

:root {
    --main-color: #C89F4D;
    --secondary-color: #592715;
}

#checkout_contest_game {
    margin-bottom: 40px;
    border: 5px solid #C89F4D4D;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 43%;
    grid-column-gap: 4.3%;
    align-items: center;
}

#checkout_contest_game .contest_game_content {
    padding-left: 11.5%;
    padding-top: 30px;
    padding-bottom: 30px;
}

#checkout_contest_game .contest_game_content .contest_game_title {
    font-weight: bold;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--main-color);
}

#checkout_contest_game .contest_game_content .contest_game_paragraph {
    line-height: 21px;
    margin-bottom: 18px;
    color: var(--secondary-color);
}

#checkout_contest_game .contest_game_content .contest_game_paragraph a {
    color: var(--secondary-color);
    text-decoration: underline;
}

#checkout_contest_game .contest_game_content .contest_game_participat_input,
#checkout_contest_game .contest_game_content .contest_game_general_conditions_input {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#checkout_contest_game .contest_game_content .contest_game_participat_input p,
#checkout_contest_game .contest_game_content .contest_game_general_conditions_input p {
    margin-bottom: 0;
}

#checkout_contest_game .contest_game_content .contest_game_participat_input input,
#checkout_contest_game .contest_game_content .contest_game_general_conditions_input input {
    margin-top: 0;
}

#checkout_contest_game .contest_game_content .contest_game_participat_input label {
    color: var(--main-color);
    font-weight: bold;
}

#checkout_contest_game .contest_game_content .contest_game_participat_input label,
#checkout_contest_game .contest_game_content .contest_game_general_conditions_input label {
    display: flex;
    align-items: center;
    margin: 0;
}

#checkout_contest_game .contest_game_content .contest_game_participat_input label a,
#checkout_contest_game .contest_game_content .contest_game_general_conditions_input label a {
    text-decoration: underline;
    color: #232323;
}

#checkout_contest_game .contest_game_content .contest_game_participat_input label .optional ,
#checkout_contest_game .contest_game_content .contest_game_general_conditions_input label .optional {
    display: none;
}

#checkout_contest_game .contest_game_content .contest_game_disclamer {
    font-size: 10px;
    line-height: 15px;
    color: var(--main-color);
}

#checkout_contest_game .contest_game_media {
    display: flex;
}

/* Responsive Tablet */
@media (max-width: 990px) {
    #checkout_contest_game {
        grid-template-columns: 1fr;
        padding: 20px 30px;
    }

    #checkout_contest_game .contest_game_content {
        padding: 0;
    }

    #checkout_contest_game .contest_game_media {
        display: none;
    }
}

/* Responsive Mobile */
@media (max-width: 600px) {
    #checkout_contest_game {
        padding: 20px;
    }
}