#settings-info {
    padding-bottom: 100px;
    text-align: center;

    .content-block {
        width: 80%;
        margin: 0 auto;

        p {
            margin-right: 10px;
        }

        @media @mobile {
            width: 100%;
        }
    }

    .logo {
        max-width: 55%;
        margin: 20px auto;

        @media @portrait {
            max-width: 80%;
        }
    }

    .game-version {
        margin: 5px auto 30px;
    }

    .symbol-image-wrapper {
        width: 160px;
        height: 165px;
        display: flex;
        justify-content: center;

        &.high {
            align-items: flex-end;
        }

        &.low {
            align-items: center;
        }
    }

    p {
        font-size: 20px;
        line-height: 1.5;
        font-family: sansculottes, sans-serif;
        color: #e0a20a;
        padding: 4px;

        &.p-highlight {
            font-size: 22px;
        }
    }

    .symbol-pay-dot {
        color: #e02c03;
    }

    .wild-description {
        font-size: 18px;
        padding: 15px 0 20px 0;
    }

    .locomotive-image {
        width: 100%;
        max-width: 90%;
        padding: 20px;

        @media (min-width: 700px) {
            max-width: 70%;
        }

        @media (min-width: 1200px) {
            max-width: 50%;
        }
    }

    .buy-feature-image {
        width: 100%;
        max-width: 50%;
        padding: 20px;

        @media (min-width: 700px) {
            max-width: 35%;
        }

        @media (min-width: 1200px) {
            max-width: 25%;
        }
    }

    .win-description {
        padding: 20px;
    }

    .win-image {
        width: 100%;
        max-width: 75%;

        @media (min-width: 700px) {
            max-width: 55%;
        }

        @media (min-width: 1200px) {
            max-width: 35%;
        }
    }

    .scatter-descriptions-row {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;

        .scatter-description-block {
            width: 80%;
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;

            @media (min-width: 775px) {
                width: 40%;
            }

            @media (min-width: 1200px) {
                width: 26%;
            }

            .scatter-description-image-wrapper {
                margin-top: 20px;
                width: 185px;
                height: 185px;
            }

            .scatter-description-text {
                font-size: 20px;
                line-height: 28px;
                font-family: sansculottes, sans-serif;
                font-weight: 300;
                color: #e0a20a;
                text-align: center;
                padding: 10px;
            }
        }

        &.persistant-payer,
        &.persistant-sniper,
        &.persistant-collector {

            @media (min-width: 700px) {
                width: 80%;

                .scatter-description-block {
                    flex-direction: row;
                    width: 600px;
                }
            }

        }

        &.persistant-payer {
            @media (min-width: 750px) {
                justify-content: flex-start;
            }
        }

        &.persistant-collector {
            @media (min-width: 750px) {
                justify-content: flex-end;
            }
        }

    }

    .paylines {
        max-width: 80%;
    }

}

.centralized {
    #settings-info {

        .persistant-payer,
        .persistant-sniper,
        .persistant-collector {
            justify-content: center;

            &.persistant-payer {
                @media (min-width: 780px) {
                    justify-content: flex-start;
                }
            }

            &.persistant-collector {
                @media (min-width: 780px) {
                    justify-content: flex-end;
                }
            }


        }

    }
}

.paylines.flex-container {
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;

    .flex-container {
        display: flex;
        flex-flow: row wrap;
        margin: 0.7em;
    }

    .square {
        border: 1px solid black;
        border-width: 1px 1px 0px 0px;
    }
}