/*
 * Sandalstrap V1.0.0-test
 */
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    height: 100%;
    overflow:hidden
}
*, *::before, *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    outline: 0;
}

body {
    position: relative;
    font-family: "SF Pro Display",Roboto,Noto,Arial,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
    font-size: 14px;
    line-height: 1.57142857;
    background-color: #f5f6f7;
    color: #333;
    overflow:hidden
}

[tabindex="-1"]:focus {
    outline: none !important;
}

textarea {
    resize: vertical;
    overflow: auto;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

    a:active, a:hover {
        outline: 0;
    }

b, strong {
    font-weight: bold;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled], html input[disabled] {
        cursor: not-allowed;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

[hidden] {
    display: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

caption, th, td {
    font-weight: normal;
}

::-webkit-input-placeholder {
    color: #ccc;
}

::-moz-placeholder {
    color: #ccc;
}

:-ms-input-placeholder {
    color: #ccc;
}

:-moz-placeholder {
    color: #ccc;
}

ol, ul {
    list-style: none;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 24px;
}

svg.icon {
    width: 1em;
    height: 1em;
    vertical-align: -.15em;
    fill: currentColor;
    overflow: hidden;
}

    svg.icon.icon-level {
        width: 3em;
        height: 1em;
    }

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.item-tiling > * {
    width: 100%;
}

.btn {
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 0 8px;
    display: inline-block;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    border: none;
    background-color: transparent;
    height: 34px;
    line-height: 32px;
    min-width: 72px;
    cursor: pointer;
}

    .btn.btn-sm {
        margin-top: 6px;
        margin-bottom: 6px;
        height: 30px;
        line-height: 28px;
        min-width: 72px;
    }

.btn-gray {
    color: #f6f6f6 !important;
    border: 1px solid #999 !important;
    background-color: #999 !important;
    -webkit-transition: background-color .1s ease-in-out,border-color .1s ease-in-out;
    transition: background-color .1s ease-in-out,border-color .1s ease-in-out;
}

    .btn-gray[disabled] {
        background-color: #eaeaea !important;
        border-color: #eaeaea !important;
        color: #d6d6d6 !important;
    }

        .btn-gray[disabled]:hover {
            background-color: #eaeaea !important;
            border-color: #eaeaea !important;
            color: #d6d6d6 !important;
        }

        .btn-gray[disabled]:active {
            background-color: #eaeaea !important;
            border-color: #eaeaea !important;
            color: #d6d6d6 !important;
        }

    .btn-gray:hover {
        background-color: #adadad !important;
        border-color: #adadad !important;
    }

    .btn-gray:active {
        background-color: #7a7a7a !important;
        border-color: #7a7a7a !important;
    }

.btn-red {
    color: #fff !important;
    border: 1px solid #ca0c16 !important;
    background-color: #ca0c16 !important;
    -webkit-transition: background-color .1s ease-in-out,border-color .1s ease-in-out;
    transition: background-color .1s ease-in-out,border-color .1s ease-in-out;
}

    .btn-red[disabled] {
        background-color: #e3e3e3 !important;
        border-color: #e3e3e3 !important;
        color: #c1c1c1 !important;
    }

        .btn-red[disabled]:hover {
            background-color: #e3e3e3 !important;
            border-color: #e3e3e3 !important;
            color: #c1c1c1 !important;
        }

        .btn-red[disabled]:active {
            background-color: #e3e3e3 !important;
            border-color: #e3e3e3 !important;
            color: #c1c1c1 !important;
        }

    .btn-red:hover {
        background-color: #f21f2b !important;
        border-color: #f21f2b !important;
    }

    .btn-red:active {
        background-color: #a20a12 !important;
        border-color: #a20a12 !important;
    }

.btn-red-hollow {
    color: #ca0c16 !important;
    border: 1px solid #ca0c16 !important;
    background-color: #fff !important;
    -webkit-transition: background-color .1s ease-in-out;
    transition: background-color .1s ease-in-out;
}

    .btn-red-hollow[disabled] {
        background-color: #e3e3e3 !important;
        border-color: #e3e3e3 !important;
        color: #c1c1c1 !important;
    }

        .btn-red-hollow[disabled]:hover {
            background-color: #e3e3e3 !important;
            border-color: #e3e3e3 !important;
            color: #c1c1c1 !important;
        }

        .btn-red-hollow[disabled]:active {
            background-color: #e3e3e3 !important;
            border-color: #e3e3e3 !important;
            color: #c1c1c1 !important;
        }

    .btn-red-hollow:hover {
        background-color: #fde3e4 !important;
        border-color: #ca0c16 !important;
    }

    .btn-red-hollow:active {
        background-color: #fcc7ca !important;
        border-color: #ca0c16 !important;
    }

.btn-link-blue {
    color: #79a5e5 !important;
}

    .btn-link-blue[disabled] {
        color: #eaeaea !important;
    }

    .btn-link-blue:hover {
        color: #94b7ea !important;
    }

    .btn-link-blue:active {
        color: #3e7eda !important;
    }

.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

.pull-right, .float-right {
    float: right !important;
}

.pull-left, .float-left {
    float: left !important;
}

.pull-none, .float-none {
    float: none !important;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.font-weight-light {
    font-weight: 300 !important ;
}

.font-weight-normal {
    font-weight: normal !important;
}

.font-weight-bold {
    font-weight: bold !important;
}

.font-italic {
    font-style: italic !important;
}

.c-red {
    color: #ca0c16;
}

.c-red-hover:hover {
    color: #cf232c;
}

.c-red-focus:focus {
    color: #b60a13;
}
        .aplayer {
            font-family: Arial,Helvetica,sans-serif;
            margin: 5px;
            -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
            box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
            -webkit-border-radius: 2px;
            border-radius: 2px;
            overflow: hidden;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            clear: left;
            width: 300px;
            margin-top: 20px;
        }
        a{outline:none;background:none;}
        .prefix {
            margin-left: 20px;
        }
            .prefix:hover {
                border-bottom: 1px dotted #ff5e52;
                color: #ff5e52;
            }

        .akslou {
            height: 35px;
            line-height: 35px;
            background: #FAFAFA;
        }