/*
 *  This is a common file to include common stylings throughout all Pages in Workstation
 */

/** NO FLASH PAGE **/
.instruction-section {
    text-align: center;

    .message {

        &-title {
            padding: 60px 0;

            h4 {
                color: $timberwolf;
            }

        }

        &-body {
            width: 90%;
            margin: 0 auto 70px;
            font-size: 0;

            .section {
                float: none;
                display: inline-block;
                word-wrap: break-word;
                vertical-align: top;
                font-size: 12px;
                padding: 0 40px;
            }

            p {
                color: $gorilla;
                font-size: 14px;
                margin: 5px 0;
            }

        }

        &-footer {
            border-top: 1px solid $koala;
            width: 70%;
            margin: 0 auto;
            padding-top: 20px;

            p {
                color: $timberwolf;
                font-size: 14px;
            }

        }

    }

}

/*
 *  This style is to be used for Legacy Pages of Workstation i.e. Privacy Policy and Terms and Conditions.
 */
.legal {

    &-title {
        margin: 0 0 20px 0;
        padding-top: 50px;
        text-align: center;
    }

    .section-title {
        padding-bottom: 10px;
        text-transform: uppercase;
    }

    .sub-heading {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: medium;
    }

    .address {
        margin: 10px 0px 10px 30px;
    }

    ol {
        list-style: decimal;
        margin-left: 30px;
        padding: 15px 0;

        li {
            line-height: 18px;
            margin-bottom: 9px;
            padding-left: 5px;
        }

    }

    ul {
        list-style: disc;
        margin-left: 30px;
        padding-top: 15px;

        li {
            margin-bottom: 9px;
            padding-left: 5px;
        }

        ul {
            padding: 0;
            list-style: circle;
        }
    }

    .terms-conditions-topic {
        padding: 10px 0 20px 0;

        h4,
        p {
            margin-top: 0;
            padding-top: 15px;
        }

    }

}

