﻿@import url(colors_style.css);

.static-page {
    background-color: #f6f9fc
}

    .static-page .page-inner {
        padding: 40px;
        border-radius: 6px;
        border: 1px solid #eee;
        background-color: #fff
    }

    .static-page .page-details-body h6 {
        font-size: 20px
    }

    .static-page .page-details-body p {
        margin: 20px 0;
        line-height: 26px
    }

    .static-page .page-details-body ul {
        margin-left: 10px
    }

        .static-page .page-details-body ul li {
            display: block;
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px
        }

            .static-page .page-details-body ul li::before {
                position: absolute;
                content: "";
                left: 0;
                top: 8px;
                height: 6px;
                width: 6px;
                display: block;
                border-radius: 50%;
                background-color: var(--main-blue-color);
            }

            .static-page .page-details-body ul li:last-child {
                margin-bottom: 0
            }
