/*  ====================================================================================================
    "content" part
    ==================================================================================================== */

section.play-now .content {
    display: flex;
}

/*  ====================================================================================================
    "instructions" part
    ==================================================================================================== */

section.play-now .content .instructions {
    /* width: 500px; */
    margin-right: 50px;
}

section.play-now .content .instructions > div {
    padding: 20px;
    border-radius: 3px;
    border: 1px solid #727272;
    background-color: var(--blackDark);
}

/*  ====================================================================================================
    "top" part
    ==================================================================================================== */

section.play-now .content .instructions .top {
    margin-bottom: 15px;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .content .instructions .top .heading {
    text-align: center;
    margin-bottom: 10px;
    color: var(--blue);
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .content .instructions .top .the-steps ul {
    margin-left: 12px;
    list-style-type: disc;
}

section.play-now .content .instructions .top .the-steps ul li:not(:last-child) {
    margin-bottom: 15px;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .content .instructions .top .the-steps ul li:nth-child(1),
section.play-now .content .instructions .top .the-steps ul li:nth-child(2) {
    color: var(--green);
}

section.play-now .content .instructions .top .the-steps ul li:nth-child(3),
section.play-now .content .instructions .top .the-steps ul li:nth-child(4) {
    color: var(--redLight);
}

section.play-now .content .instructions .top .the-steps ul li:nth-child(5),
section.play-now .content .instructions .top .the-steps ul li:nth-child(6) {
    color: var(--yellow);
}

/*  ====================================================================================================
    "bottom" part
    ==================================================================================================== */

section.play-now .content .instructions .bottom table tbody * {
    border: 1px solid var(--whiteDark);
}

section.play-now .content .instructions .bottom table caption {
    margin-bottom: 5px;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .content .instructions .bottom table tr td:first-child {
    text-align: left;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .content .instructions .bottom table tr td.red {
    color: var(--redLight);
}

section.play-now .content .instructions .bottom table tr td.green {
    color: #37c359;
}

section.play-now .content .instructions .bottom table tr td.yellow {
    color: var(--yellow);
}

section.play-now .content .instructions .bottom table caption.blue,
section.play-now .content .instructions .bottom table tr td.blue {
    color: var(--blue);
}

/*  ====================================================================================================
    "symon-game" part
    ==================================================================================================== */

section.play-now .symon-game {
    color: white;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}
    
/*  ====================================================================================================
    "buttons-group" part
    ==================================================================================================== */

section.play-now .symon-game .buttons {
    display: flex;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .symon-game .buttons .button {
    width: 250px;
    height: 250px;
    cursor: pointer;
    border: 0 solid #333;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .symon-game .buttons .button.green {
    border-top-width: 10px;
    border-left-width: 10px;
    border-right-width: 5px;
    border-bottom-width: 5px;
    background-color: #3ba354;
    border-top-left-radius: 100%;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .symon-game .buttons .button.red {
    border-top-width: 10px;
    border-left-width: 5px;
    border-right-width: 10px;
    border-bottom-width: 5px;
    background-color: #de4659;
    border-top-right-radius: 100%;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .symon-game .buttons .button.yellow {
    border-top-width: 5px;
    border-left-width: 10px;
    border-right-width: 5px;
    border-bottom-width: 10px;
    background-color: #f4b05e;
    border-bottom-left-radius: 100%;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .symon-game .buttons .button.blue {
    border-top-width: 5px;
    border-left-width: 5px;
    border-right-width: 10px;
    border-bottom-width: 10px;
    background-color: #00abea;
    border-bottom-right-radius: 100%;
}

/*  ====================================================================================================
    "controls" part
    ==================================================================================================== */

section.play-now .symon-game .controls {
    width: 200px;
    height: 200px;
    text-align: center;
    position: absolute;
    border-radius: 100%;
    padding: 16px 0px 9px;
    background-color: #333;
    border: 10px solid #333;


    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .symon-game .controls .round .text {
    margin-bottom: 20px;
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .symon-game .controls .button input {
    width: 22px;
    height: 22px;
    cursor: pointer;
    border-radius: 100%;
    border-color: var(--whiteDark);
    background-color: var(--whiteDark);
}

/* ---------------------------------------------------------------------------------------------------- */

section.play-now .symon-game .controls .button input.running {
    border-color: #8f8f8f;
    background-color: #4ee372;
}