html {
    visibility: hidden;
}

*, :after, :before {
    box-sizing: border-box
}

:after, :before {
    content: ''
}

body {
    font-size: 100%;
    font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
    color: #4e5359;
    background-color: #f7f7f7
}

    body:after {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(78,83,89,0.8);
        visibility: hidden;
        opacity: 0;
        transition: opacity .3s 0s,visibility 0s .3s
    }

    body.cd-overlay:after {
        visibility: visible;
        opacity: 1;
        transition: opacity .3s 0s,visibility 0s 0s
    }

@media only screen and (min-width:768px) {
    body:after {
        display: none
    }
}

a {
    color: #15a8f5;
    text-decoration: none
}

header {
    position: relative;
    height: 180px;
    line-height: 180px;
    text-align: center;
    background-color: #15a8f5;
    box-shadow: 0px 0px 1px 1px #888888
}

    header h1 {
        color: #ffffff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 20px;
        font-size: 1.25rem
    }

@media only screen and (min-width:1024px) {
    header {
        height: 240px;
        line-height: 240px
    }

        header h1 {
            font-size: 36px;
            font-size: 2.25rem;
            font-weight: 300
        }
}

.cd-faq {
    width: 90%;
    max-width: 1024px;
    margin: 2em auto;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1)
}

    .cd-faq:after {
        content: "";
        display: table;
        clear: both
    }

@media only screen and (min-width:768px) {
    .cd-faq {
        position: relative;
        box-shadow: none
    }
}

.cd-faq-categories a {
    position: relative;
    display: block;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    padding: 0 28px 0 16px;
    background-color: #f7f7f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #9F9EA3;
    white-space: nowrap;
    text-overflow: ellipsis
}

    .cd-faq-categories a:after, .cd-faq-categories a:before {
        position: absolute;
        top: 50%;
        right: 16px;
        display: inline-block;
        height: 1px;
        width: 10px;
        background-color: #f7f7f7
    }

    .cd-faq-categories a:after {
        transform: rotate(90deg)
    }

.cd-faq-categories li:last-child a {
    border-bottom: none
}

@media only screen and (min-width:768px) {
    .cd-faq-categories {
        width: 20%;
        float: left
    }

        .cd-faq-categories a {
            font-size: 13px;
            font-size: 0.8125rem;
            font-weight: 600;
            padding-left: 24px;
            padding: 0 24px;
            transition: background 0.2s,padding 0.2s
        }

            .cd-faq-categories a:after, .cd-faq-categories a:before {
                display: none
            }

    .no-touch .cd-faq-categories a:hover {
        background: #fff
    }

    .no-js .cd-faq-categories {
        width: 100%;
        margin-bottom: 2em
    }
}

@media only screen and (min-width:1024px) {
    .cd-faq-categories {
        position: absolute;
        top: 0;
        left: 0;
        width: 200px;
        z-index: 2
    }

        .cd-faq-categories .selected {
            background: #fff !important
        }

            .cd-faq-categories .selected:before {
                opacity: 1
            }

        .cd-faq-categories.is-fixed {
            position: fixed
        }

    .no-js .cd-faq-categories {
        position: relative
    }
}

.cd-faq-items {
    position: fixed;
    height: 100%;
    width: 90%;
    top: 0;
    right: 0;
    background: #ffffff;
    padding: 0 5% 1em;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0) translateX(100%);
    transition: transform .3s
}

    .cd-faq-items.slide-in {
        transform: translateZ(0) translateX(0%)
    }

.no-js .cd-faq-items {
    position: static;
    height: auto;
    width: 100%;
    transform: translateX(0)
}

@media only screen and (min-width:768px) {
    .cd-faq-items {
        position: static;
        height: auto;
        width: 78%;
        float: right;
        overflow: visible;
        transform: translateZ(0) translateX(0);
        padding: 0;
        background: transparent
    }
}

@media only screen and (min-width:1024px) {
    .cd-faq-items {
        float: none;
        width: 100%;
        padding-left: 220px;
        padding-top: 15px
    }

    .no-js .cd-faq-items {
        padding-left: 0
    }
}

.cd-close-panel {
    position: fixed;
    top: 5px;
    right: -100%;
    display: block;
    height: 40px;
    width: 40px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 2;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: right 0.4s
}

    .cd-close-panel:after, .cd-close-panel:before {
        position: absolute;
        top: 16px;
        left: 12px;
        display: inline-block;
        height: 3px;
        width: 18px;
        background: #6c7d8e
    }

    .cd-close-panel:before {
        transform: rotate(45deg)
    }

    .cd-close-panel:after {
        transform: rotate(-45deg)
    }

    .cd-close-panel.move-left {
        right: 2%
    }

@media only screen and (min-width:768px) {
    .cd-close-panel {
        display: none
    }
}

.cd-faq-group {
    display: none
}

    .cd-faq-group.selected {
        display: block
    }

    .cd-faq-group .cd-faq-title {
        background: transparent;
        box-shadow: none;
        margin: 1em 0
    }

.no-touch .cd-faq-group .cd-faq-title:hover {
    box-shadow: none
}

.cd-faq-group .cd-faq-title h2 {
    text-transform: uppercase;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #bbbbc7
}

.no-js .cd-faq-group {
    display: block
}

@media only screen and (min-width:768px) {
    .cd-faq-group {
        display: block
    }

        .cd-faq-group > li {
            background: #ffffff;
            margin-bottom: 6px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.08);
            transition: box-shadow 0.2s
        }

    .no-touch .cd-faq-group > li:hover {
        box-shadow: 0 1px 10px rgba(108,125,142,0.3)
    }

    .cd-faq-group .cd-faq-title {
        margin: 2em 0 1em
    }

    .cd-faq-group:first-child .cd-faq-title {
        margin-top: 0
    }
}

.cd-faq-trigger {
    position: relative;
    display: block;
    margin: 1.6em 0 .4em;
    line-height: 1.2
}

@media only screen and (min-width:768px) {
    .cd-faq-trigger {
        font-size: 24px;
        font-size: 1.5rem;
        font-weight: 400;
        margin: 0;
        padding: 24px 72px 24px 24px
    }
}

.cd-faq-content p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #6c7d8e
}

@media only screen and (min-width:768px) {
    .cd-faq-content {
        display: none;
        padding: 0 24px 30px
    }

        .cd-faq-content p {
            line-height: 1.6
        }

        .cd-faq-content h5 {
            line-height: 1.6
        }

    .no-js .cd-faq-content {
        display: block
    }
}

.image-header-help-center {
    position: relative;
    top: 30px
}

.ap-link-position {
    position: absolute;
    top: 200px;
    left: 0;
    width: 200px;
    z-index: 2
}

    .ap-link-position a {
        position: relative;
        display: block;
        overflow: hidden;
        height: 50px;
        line-height: 50px;
        padding: 0px 28px 0 24px;
        background-color: #f7f7f7;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #9F9EA3;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: 600;
    }

        .ap-link-position a:hover {
            background-color: #fff;
            color: #15a8f5;
        }

        .ap-link-position a .nav-icon {
            width: 22px;
            height: 22px;
            margin: auto;
            vertical-align: middle;
            fill: #9F9EA3;
        }

        .ap-link-position a:hover .nav-icon {
            fill: #15a8f5;
        }

.column-gif-position {
    width: 100%;
    height: 350px
}

.column-text-position {
    width: 100%;
    padding-top: 10px;
    height: auto
}

.column-gif-position {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.mark-text {
    color: #15a8f5
}

.sidebar-footer {
    position: absolute;
    top: 290px;
    left: 0;
    width: 200px;
    z-index: 2
}

    .sidebar-footer ul {
        line-height: 18px
    }

        .sidebar-footer ul li {
            float: left;
            padding-right: 8px;
            color: #9A9A9A;
            font-size: 12px
        }

            .sidebar-footer ul li a {
                color: #9A9A9A
            }

                .sidebar-footer ul li a:hover {
                    -webkit-text-decoration-line: underline;
                    text-decoration-line: underline;
                    -webkit-text-decoration-style: solid;
                    text-decoration-style: solid
                }

#sidebar-hr {
    width: 200px;
    float: left;
    height: 2px;
    background: #ccc;
    position: absolute;
    top: 260px;
    border: 0;
    border-top: 1px solid #eee
}

.user-agreement-to-appparties-button {
    background-color: #15a8f5;
    color: #fff;
    padding: 10px 10px 15px 10px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    min-width: 140px;
    outline: 0;
    cursor: pointer;
    border-radius: 4px
}

.user-agreement-to-appparties-button-icon {
    font-size: 24px;
    padding-right: 3px;
    top: 4px;
    position: relative
}

.user-agreement-to-appparties-button:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
}

.user-agreement-to-appparties-button:hover {
    text-decoration: none;
    background-color: #307edf;
    color: #fff;
}

.user-agreement-to-appparties-button > .fa-download {
    position: relative;
    margin: 5px
}

.download-agreement-icon {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    margin: auto;
    vertical-align: inherit;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}
