/**
 * Created by 婵犲嘲鈹�on 2016/4/6.
 */
/*.hairline(@position, @color) when (@position = top) {
    &:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: auto;
        right: auto;
        height: 1px;
        width: 100%;
        background-color: @color;
        display: block;
        z-index: 15;
        transform-origin: 50% 0%;
        @media only screen and (-webkit-min-device-pixel-ratio: 2) {
          transform: scaleY(0.5);
        }
        @media only screen and (-webkit-min-device-pixel-ratio: 3) {
            transform: scaleY(0.33);
        }
    }
}
.hairline(@position, @color) when (@position = left) {
    &:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: auto;
        right: auto;
        width: 1px;
        height: 100%;
        background-color: @color;
        display: block;
        z-index: 15;
        transform-origin: 0% 50%;
        @media only screen and (-webkit-min-device-pixel-ratio: 2) {
            transform: scaleY(0.5);
        }
        @media only screen and (-webkit-min-device-pixel-ratio: 3) {
            transform: scaleY(0.33);
        }
    }
}
.hairline(@position, @color) when (@position = bottom) {
    &:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        right: auto;
        top: auto;
        height: 1px;
        width: 100%;
        background-color: @color;
        display: block;
        z-index: 15;
        transform-origin: 50% 100%;
        @media only screen and (-webkit-min-device-pixel-ratio: 2) {
            transform: scaleY(0.5);
        }
        @media only screen and (-webkit-min-device-pixel-ratio: 3) {
            transform: scaleY(0.33);
        }
    }
}
.hairline(@position, @color) when (@position = right) {
    &:after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        left: auto;
        bottom: auto;
        width: 1px;
        height: 100%;
        background-color: @color;
        display: block;
        z-index: 15;
        transform-origin: 100% 50%;
        @media only screen and (-webkit-min-device-pixel-ratio: 2) {
            transform: scaleY(0.5);
        }
        @media only screen and (-webkit-min-device-pixel-ratio: 3) {
            transform: scaleY(0.33);
        }
    }
}
// For right and bottom
.hairline-remove(@position) when not (@position = left) and not (@position = top) {
    &:after {
        display: none;
    }
}
// For left and top
.hairline-remove(@position) when not (@position = right) and not (@position = bottom) {
    &:before {
        display: none;
    }
}
// For right and bottom
.hairline-color(@position, @color) when not (@position = left) and not (@position = top) {
    &:after {
        background-color: @color;
    }
}
// For left and top
.hairline-color(@position, @color) when not (@position = right) and not (@position = bottom) {
    &:before {
        background-color: @color;
    }
}*/
/*.transition(@d) {
    -webkit-transition-duration: @d;
    transition-duration: @d;
}
.delay(@d) {
    -webkit-transition-delay: @d;
    transition-delay: @d;
}
.transform(@t) {
    -webkit-transform: @t;
    transform: @t;
}
.transform-origin(@to) {
    -webkit-transform-origin: @to;
    transform-origin: @to;
}
.translate3d(@x:0, @y:0, @z:0) {
    -webkit-transform: translate3d(@x,@y,@z);
    transform: translate3d(@x,@y,@z);
}
.animation(@a) {
    -webkit-animation: @a;
    animation: @a;
}
.border-box(){
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.box-shadow(@bs) {
    -webkit-box-shadow: @bs;
    box-shadow: @bs;
}
.animation-name(@name) {
  -webkit-animation-name: @name;
     -moz-animation-name: @name;
          animation-name: @name;
}
.animation-duration(@duration) {
  -webkit-animation-duration: @duration;
     -moz-animation-duration: @duration;
          animation-duration: @duration;
}
.animation-direction(@direction) {
  -webkit-animation-direction: @direction;
     -moz-animation-direction: @direction;
          animation-direction: @direction;
}
*/
html {
    font-size: 20px;
}

@media only screen and (min-width: 400px) {
    html {
        font-size: 21.33333333px !important;
    }
}

@media only screen and (min-width: 414px) {
    html {
        font-size: 22.08px !important;
    }
}

@media only screen and (min-width: 480px) {
    html {
        font-size: 25.6px !important;
    }
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

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;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    height: 0;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid #c0c0c0;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}

* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

body {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-size: .85rem;
    line-height: 1.5;
    color: #3d4145;
    background: #eee;
}

a,
input,
textarea,
select,
button {
    outline: 0;
}

p {
    margin: 1em 0;
}

a {
    color: #0894ec;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:active {
    color: #0a8ddf;
}

.page {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    background: #eee;
}

.content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.bar-nav ~ .content {
    top: 2.2rem;
}

.bar-header-secondary ~ .content {
    top: 4.4rem;
}

.bar-footer ~ .content {
    bottom: 2.2rem;
}

.bar-footer-secondary ~ .content {
    bottom: 4.4rem;
}

.bar-tab ~ .content,
.bar-tab ~ .page .content {
    bottom: 2.5rem;
}

.tabbar-hidden .bar-tab ~ .content,
.tabbar-hidden .bar-tab ~ .page .content {
    bottom: 0;
}

.bar-footer-secondary-tab ~ .content {
    bottom: 4.7rem;
}

.content-padded {
    margin: 0.5rem;
}

.text-center {
    text-align: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* === Content Block === */
.content-block {
    margin: 1.75rem 0;
    padding: 0 0.75rem;
    color: #6d6d72;
}

.content-block-title {
    position: relative;
    margin: 0;
    margin: 1.75rem .75rem .5rem;
    overflow: hidden;
    font-size: .7rem;
    line-height: 1;
    color: #6d6d72;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.content-block-title + .list-block,
.content-block-title + .content-block,
.content-block-title + .card {
    margin-top: 0.5rem;
}

.content-block-inner {
    position: relative;
    width: 100%;
    padding: .5rem .75rem;
    margin-left: -.75rem;
    color: #3d4145;
    background: #fff;
    border-top: 1px solid #c8c7cc;
    border-bottom: 1px solid #c8c7cc;
}

.content-block.inset {
    margin-right: .75rem;
    margin-left: .75rem;
    border-radius: .35rem;
}

.content-block.inset .content-block-inner {
    border-right: 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0.35rem;
}

@media all and (min-width: 768px) {
    .content-block.tablet-inset {
        margin-right: .75rem;
        margin-left: .75rem;
        border-radius: .35rem;
    }

    .content-block.tablet-inset .content-block-inner {
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: .35rem;
    }
}

/* === Grid === */
.row {
    margin-left: -4%;
    overflow: hidden;
}

.row > [class*="col-"],
.row > [class*="tablet-"] {
    float: left;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.row.no-gutter {
    margin-left: 0;
}

.row .col-100 {
    width: 96%;
    margin-left: 4%;
}

.row.no-gutter .col-100 {
    width: 100%;
    margin: 0;
}

.row .col-95 {
    width: 91%;
    margin-left: 4%;
}

.row.no-gutter .col-95 {
    width: 95%;
    margin: 0;
}

.row .col-90 {
    width: 86%;
    margin-left: 4%;
}

.row.no-gutter .col-90 {
    width: 90%;
    margin: 0;
}

.row .col-85 {
    width: 81%;
    margin-left: 4%;
}

.row.no-gutter .col-85 {
    width: 85%;
    margin: 0;
}

.row .col-80 {
    width: 76%;
    margin-left: 4%;
}

.row.no-gutter .col-80 {
    width: 80%;
    margin: 0;
}

.row .col-75 {
    width: 71.00000000000001%;
    margin-left: 4%;
}

.row.no-gutter .col-75 {
    width: 75%;
    margin: 0;
}

.row .col-66 {
    width: 62.66666666666666%;
    margin-left: 4%;
}

.row.no-gutter .col-66 {
    width: 66.66666666666666%;
    margin: 0;
}

.row .col-60 {
    width: 55.99999999999999%;
    margin-left: 4%;
}

.row.no-gutter .col-60 {
    width: 60%;
    margin: 0;
}

.row .col-50 {
    width: 46%;
    margin-left: 4%;
}

.row.no-gutter .col-50 {
    width: 50%;
    margin: 0;
}

.row .col-40 {
    width: 36%;
    margin-left: 4%;
}

.row.no-gutter .col-40 {
    width: 40%;
    margin: 0;
}

.row .col-33 {
    width: 29.333333333333332%;
    margin-left: 4%;
}

.row.no-gutter .col-33 {
    width: 33.333333333333336%;
    margin: 0;
}

.row .col-25 {
    width: 21%;
    margin-left: 4%;
}

.row.no-gutter .col-25 {
    width: 25%;
    margin: 0;
}

.row .col-20 {
    width: 16%;
    margin-left: 4%;
}

.row.no-gutter .col-20 {
    width: 20%;
    margin: 0;
}

.row .col-15 {
    width: 10.999999999999998%;
    margin-left: 4%;
}

.row.no-gutter .col-15 {
    width: 15%;
    margin: 0;
}

.row .col-10 {
    width: 6%;
    margin-left: 4%;
}

.row.no-gutter .col-10 {
    width: 10%;
    margin: 0;
}

.row .col-5 {
    width: 1%;
    margin-left: 4%;
}

.row.no-gutter .col-5 {
    width: 5%;
    margin: 0;
}

@media all and (min-width: 768px) {
    .row {
        margin-left: -2%;
    }

    .row .col-100 {
        width: 98%;
        margin-left: 2%;
    }

    .row.no-gutter .col-100 {
        width: 100%;
        margin: 0;
    }

    .row .col-95 {
        width: 93%;
        margin-left: 2%;
    }

    .row.no-gutter .col-95 {
        width: 95%;
        margin: 0;
    }

    .row .col-90 {
        width: 87.99999999999999%;
        margin-left: 2%;
    }

    .row.no-gutter .col-90 {
        width: 90%;
        margin: 0;
    }

    .row .col-85 {
        width: 82.99999999999999%;
        margin-left: 2%;
    }

    .row.no-gutter .col-85 {
        width: 85%;
        margin: 0;
    }

    .row .col-80 {
        width: 78%;
        margin-left: 2%;
    }

    .row.no-gutter .col-80 {
        width: 80%;
        margin: 0;
    }

    .row .col-75 {
        width: 73%;
        margin-left: 2%;
    }

    .row.no-gutter .col-75 {
        width: 75%;
        margin: 0;
    }

    .row .col-66 {
        width: 64.66666666666666%;
        margin-left: 2%;
    }

    .row.no-gutter .col-66 {
        width: 66.66666666666666%;
        margin: 0;
    }

    .row .col-60 {
        width: 58%;
        margin-left: 2%;
    }

    .row.no-gutter .col-60 {
        width: 60%;
        margin: 0;
    }

    .row .col-50 {
        width: 48%;
        margin-left: 2%;
    }

    .row.no-gutter .col-50 {
        width: 50%;
        margin: 0;
    }

    .row .col-40 {
        width: 38%;
        margin-left: 2%;
    }

    .row.no-gutter .col-40 {
        width: 40%;
        margin: 0;
    }

    .row .col-33 {
        width: 31.333333333333332%;
        margin-left: 2%;
    }

    .row.no-gutter .col-33 {
        width: 33.333333333333336%;
        margin: 0;
    }

    .row .col-25 {
        width: 23%;
        margin-left: 2%;
    }

    .row.no-gutter .col-25 {
        width: 25%;
        margin: 0;
    }

    .row .col-20 {
        width: 18%;
        margin-left: 2%;
    }

    .row.no-gutter .col-20 {
        width: 20%;
        margin: 0;
    }

    .row .col-15 {
        width: 13%;
        margin-left: 2%;
    }

    .row.no-gutter .col-15 {
        width: 15%;
        margin: 0;
    }

    .row .col-10 {
        width: 8%;
        margin-left: 2%;
    }

    .row.no-gutter .col-10 {
        width: 10%;
        margin: 0;
    }

    .row .col-5 {
        width: 3%;
        margin-left: 2%;
    }

    .row.no-gutter .col-5 {
        width: 5%;
        margin: 0;
    }

    .row .tablet-100 {
        width: 98%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-100 {
        width: 100%;
        margin: 0;
    }

    .row .tablet-95 {
        width: 93%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-95 {
        width: 95%;
        margin: 0;
    }

    .row .tablet-90 {
        width: 87.99999999999999%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-90 {
        width: 90%;
        margin: 0;
    }

    .row .tablet-85 {
        width: 82.99999999999999%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-85 {
        width: 85%;
        margin: 0;
    }

    .row .tablet-80 {
        width: 78%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-80 {
        width: 80%;
        margin: 0;
    }

    .row .tablet-75 {
        width: 73%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-75 {
        width: 75%;
        margin: 0;
    }

    .row .tablet-66 {
        width: 64.66666666666666%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-66 {
        width: 66.66666666666666%;
        margin: 0;
    }

    .row .tablet-60 {
        width: 58%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-60 {
        width: 60%;
        margin: 0;
    }

    .row .tablet-50 {
        width: 48%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-50 {
        width: 50%;
        margin: 0;
    }

    .row .tablet-40 {
        width: 38%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-40 {
        width: 40%;
        margin: 0;
    }

    .row .tablet-33 {
        width: 31.333333333333332%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-33 {
        width: 33.333333333333336%;
        margin: 0;
    }

    .row .tablet-25 {
        width: 23%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-25 {
        width: 25%;
        margin: 0;
    }

    .row .tablet-20 {
        width: 18%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-20 {
        width: 20%;
        margin: 0;
    }

    .row .tablet-15 {
        width: 13%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-15 {
        width: 15%;
        margin: 0;
    }

    .row .tablet-10 {
        width: 8%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-10 {
        width: 10%;
        margin: 0;
    }

    .row .tablet-5 {
        width: 3%;
        margin-left: 2%;
    }

    .row.no-gutter .tablet-5 {
        width: 5%;
        margin: 0;
    }
}

/* === Icons === */
i.icon {
    position: relative;
    display: inline-block;
    font-style: normal;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}

i.icon.icon-f7 {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-f7.png");
}

i.icon.icon-form-name {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-name.png");
}

i.icon.icon-form-password {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-password.png");
}

i.icon.icon-form-email {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-email.png");
}

i.icon.icon-form-calendar {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-calendar.png");
}

i.icon.icon-form-tel {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-tel.png");
}

i.icon.icon-form-gender {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-gender.png");
}

i.icon.icon-form-toggle {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-toggle.png");
}

i.icon.icon-form-comment {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-comment.png");
}

i.icon.icon-form-settings {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-settings.png");
}

i.icon.icon-form-url {
    width: 1.45rem;
    height: 1.45rem;
    background-image: url("../img/i-form-url.png");
}

i.icon.icon-vchart {
    width: 2rem;
    height: 2rem;
    background-image: url("../img/icon_vchart.jpg");
}

i.icon.icon-alipay {
    width: 1.4rem;
    height: 1.4rem;
    background-image: url("../img/alipay_icon.png");
}

i.icon.icon-wechat {
    width: 1.4rem;
    height: 1.4rem;
    background-image: url("../img/wechat_pay.png");
}

i.icon.icon-logo {
    width: 3rem;
    height: 3rem;
    background-image: url("../img/icon_logo.jpg");
}

i.icon.icon-next,
i.icon.icon-prev {
    width: .75rem;
    height: .75rem;
}

i.icon.icon-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

i.icon.icon-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

i.icon.icon-plus {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.55rem;
    font-weight: 100;
    line-height: 1rem;
    text-align: center;
}

.color-default {
    color: #3d4145;
}

.color-gray {
    color: #999;
}

.text-center {
    text-align: center;
}

body .bg-primary,
.content .bg-primary,
.list-block .swipeout .bg-primary,
.actions-modal .bg-primary,
.panel .bg-primary {
    color: white;
    background-color: #0894ec;
}

body .bg-primary:active,
.content .bg-primary:active,
.list-block .swipeout .bg-primary:active,
.actions-modal .bg-primary:active,
.panel .bg-primary:active {
    background-color: #0a8ddf;
}

body .bg-danger,
.content .bg-danger,
.list-block .swipeout .bg-danger,
.actions-modal .bg-danger,
.panel .bg-danger {
    color: white;
    background-color: #f6383a;
}

body .bg-danger:active,
.content .bg-danger:active,
.list-block .swipeout .bg-danger:active,
.actions-modal .bg-danger:active,
.panel .bg-danger:active {
    background-color: #f00b0d;
}

body .bg-warning,
.content .bg-warning,
.list-block .swipeout .bg-warning,
.actions-modal .bg-warning,
.panel .bg-warning {
    color: white;
    background-color: #f60;
}

body .bg-warning:active,
.content .bg-warning:active,
.list-block .swipeout .bg-warning:active,
.actions-modal .bg-warning:active,
.panel .bg-warning:active {
    background-color: #cc5200;
}

body .bg-success,
.content .bg-success,
.list-block .swipeout .bg-success,
.actions-modal .bg-success,
.panel .bg-success {
    color: white;
    background-color: #4cd964;
}

body .bg-success:active,
.content .bg-success:active,
.list-block .swipeout .bg-success:active,
.actions-modal .bg-success:active,
.panel .bg-success:active {
    background-color: #2ac845;
}

body .color-primary,
.content .color-primary,
.list-block .swipeout .color-primary,
.actions-modal .color-primary,
.panel .color-primary {
    color: #0894ec;
}

body .color-primary:active,
.content .color-primary:active,
.list-block .swipeout .color-primary:active,
.actions-modal .color-primary:active,
.panel .color-primary:active {
    color: #0a8ddf;
}

body .color-danger,
.content .color-danger,
.list-block .swipeout .color-danger,
.actions-modal .color-danger,
.panel .color-danger {
    color: #f6383a;
}

body .color-danger:active,
.content .color-danger:active,
.list-block .swipeout .color-danger:active,
.actions-modal .color-danger:active,
.panel .color-danger:active {
    color: #f00b0d;
}

body .color-warning,
.content .color-warning,
.list-block .swipeout .color-warning,
.actions-modal .color-warning,
.panel .color-warning {
    color: #f60;
}

body .color-warning:active,
.content .color-warning:active,
.list-block .swipeout .color-warning:active,
.actions-modal .color-warning:active,
.panel .color-warning:active {
    color: #cc5200;
}

body .color-success,
.content .color-success,
.list-block .swipeout .color-success,
.actions-modal .color-success,
.panel .color-success {
    color: #4cd964;
}

body .color-success:active,
.content .color-success:active,
.list-block .swipeout .color-success:active,
.actions-modal .color-success:active,
.panel .color-success:active {
    color: #2ac845;
}

.bar {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 10;
    height: 2.2rem;
    padding-right: .5rem;
    padding-left: .5rem;
    background-color: #f7f7f8;
    border-bottom: 1px solid #e7e7e7;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.bar-header-secondary {
    top: 2.2rem;
}

.bar-footer {
    bottom: 0;
}

.bar-footer-secondary {
    bottom: 2.2rem;
}

.bar-footer-secondary-tab {
    bottom: 2.5rem;
}

.bar-footer,
.bar-footer-secondary,
.bar-footer-secondary-tab {
    border-top: 1px solid #e7e7e7;
    border-left: 0;
    border-bottom: 0;
}

.bar-nav {
    top: 0;
}

.title {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 -0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 2.2rem;
    color: #3d4145;
    text-align: center;
    white-space: nowrap;
}

.title a {
    color: inherit;
}

.bar-tab {
    bottom: 0;
    z-index: 9000;
    width: 100%;
    height: 2.5rem;
    padding: 0;
    table-layout: fixed;
    border-top: 1px solid #e7e7e7;
    border-bottom: 0;
    border-left: 0;
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
}

.bar-tab .tab-item {
    position: relative;
    display: table-cell;
    width: 1%;
    height: 2.5rem;
    color: #929292;
    text-align: center;
    vertical-align: middle;
}

.bar-tab .tab-item.active,
.bar-tab .tab-item:active {
    color: #0894ec;
}

.bar-tab .tab-item .badge {
    position: absolute;
    top: .1rem;
    left: 50%;
    z-index: 100;
    height: .8rem;
    min-width: .8rem;
    padding: 0 .2rem;
    font-size: .6rem;
    line-height: .8rem;
    color: white;
    vertical-align: top;
    background: red;
    border-radius: .5rem;
    margin-left: .1rem;
}

.bar-tab .tab-item .icon {
    top: 0.15rem;
    width: 1.2rem;
    height: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.2rem;
    padding-top: 0;
    padding-bottom: 0;
}

.bar-tab .tab-item .icon ~ .tab-label {
    display: block;
    font-size: 0.55rem;
    position: relative;
    top: 0.15rem;
}

.tabbar-hidden .bar-tab {
    -webkit-transform: translate3d(0, 110%, 0);
    transform: translate3d(0, 110%, 0);
}

.bar .button {
    position: relative;
    top: 0.35rem;
    z-index: 20;
    margin-top: 0;
    font-weight: 400;
}

.bar .button.pull-right {
    margin-left: 0.5rem;
}

.bar .button.pull-left {
    margin-right: 0.5rem;
}

.bar .button-link {
    top: 0;
    padding: 0;
    font-size: 0.8rem;
    line-height: 2.2rem;
    height: 2.2rem;
    color: #0894ec;
    border: 0;
}

.bar .button-link:active,
.bar .button-link.active {
    color: #0675bb;
}

.bar .button-block {
    top: 0.35rem;
    font-size: 0.8rem;
    width: 100%;
}

.bar .button-nav.pull-left {
    margin-left: -0.25rem;
}

.bar .button-nav.pull-left .icon-left-nav {
    margin-right: -0.15rem;
}

.bar .button-nav.pull-right {
    margin-right: -0.25rem;
}

.bar .button-nav.pull-right .icon-right-nav {
    margin-left: -0.15rem;
}

.bar .icon {
    position: relative;
    z-index: 20;
    padding: .5rem .1rem;
    font-size: 1rem;
    line-height: 1.2rem;
}

.bar .button .icon {
    padding: 0;
}

.bar .title .icon {
    padding: 0;
}

.bar .title .icon.icon-caret {
    top: 0.2rem;
    margin-left: -0.25rem;
}

.bar-footer .icon {
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.bar input[type="search"] {
    height: 1.45rem;
    margin: 0.3rem 0;
}

.badge {
    display: inline-block;
    padding: 0.1rem 0.45rem 0.15rem;
    font-size: 0.6rem;
    line-height: 1;
    color: #3d4145;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 5rem;
}

.badge.badge-inverted {
    padding: 0 0.25rem 0 0;
    background-color: transparent;
}

/* === Lists === */
.list-block {
    margin: 0.5rem 0;
    font-size: 0.85rem;
}

.list-block ul {
    background: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.list-block ul ul {
    border-right: 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    padding-left: 2.25rem;
}

.list-block .align-top,
.list-block .align-top .item-content,
.list-block .align-top .item-inner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.list-block.inset {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    border-radius: 0;
}

.list-block.inset .content-block-title {
    margin-left: 0;
    margin-right: 0;
}

.list-block.inset ul {
    border-radius: 0;
    border-right: 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
}

.list-block.inset li:first-child > a {
    border-radius: 0 0 0 0;
}

.list-block.inset li:last-child > a {
    border-radius: 0 0 0 0;
}

.list-block.inset li:first-child:last-child > a {
    border-radius: 0;
}

@media all and (min-width: 768px) {
    .list-block.tablet-inset {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        border-radius: 0;
    }

    .list-block.tablet-inset .content-block-title {
        margin-left: 0;
        margin-right: 0;
    }

    .list-block.tablet-inset ul {
        border-radius: 0;
        border-right: 0;
        border-top: 0;
        border-left: 0;
        border-bottom: 0;
    }

    .list-block.tablet-inset li:first-child > a {
        border-radius: 0 0 0 0;
    }

    .list-block.tablet-inset li:last-child > a {
        border-radius: 0 0 0 0;
    }

    .list-block.tablet-inset li:first-child:last-child > a {
        border-radius: 0;
    }

    .list-block.tablet-inset .content-block-title {
        margin-left: 0;
        margin-right: 0;
    }

    .list-block.tablet-inset ul {
        border-radius: 0;
        border-right: 0;
        border-top: 0;
        border-left: 0;
        border-bottom: 0;
    }

    .list-block.tablet-inset li:first-child > a {
        border-radius: 0 0 0 0;
    }

    .list-block.tablet-inset li:last-child > a {
        border-radius: 0 0 0 0;
    }

    .list-block.tablet-inset li:first-child:last-child > a {
        border-radius: 0;
    }
}

.list-block li {
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.list-block .item-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: .35rem;
    padding-bottom: .4rem;

    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.list-block .item-media i + i {
    margin-left: 0.25rem;
}

.list-block .item-media i + img {
    margin-left: 0.25rem;
}

.list-block .item-media + .item-inner {
    margin-left: 0.75rem;
    width: 90%;
}

.list-block .item-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    min-height: 2.2rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: .6rem;
    padding-right: .75rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid #e7e7e7;

    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.list-block .item-title {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.list-block .item-title.label {
    width: 35%;
    margin: 4px 0;

    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-block .item-input {
    width: 100%;
    margin-top: -0.4rem;
    margin-bottom: -0.35rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    flex-shrink: 1;
}

.list-block .item-after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    max-height: 1.4rem;
    margin-left: .25rem;
    color: #5f646e;
    white-space: nowrap;

    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-block .smart-select .item-after {
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.list-block .item-link {
    display: block;
    color: inherit;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

.list-block .item-link .item-inner {
    padding-right: 1.5rem;
    background-image: url("../img/i-list-chevron-right.png");
    background-size: 0.7rem;
    background-repeat: no-repeat;
    background-position: 97% center;
    background-position: -webkit-calc(100% - .5rem) center;
    background-position: calc(100% - .5rem) center;
}

html:not(.watch-active-state) .list-block .item-link:active,
.list-block .item-link.active-state {
    background-color: #d9d9d9;
    -webkit-transition-duration: 0ms;
    -o-transition-duration: 0ms;
    transition-duration: 0ms;
}

html:not(.watch-active-state) .list-block .item-link:active .item-inner,
.list-block .item-link.active-state .item-inner {
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.list-block .item-link.list-button {
    padding: 0 0.75rem;
    text-align: center;
    color: #0894ec;
    display: block;
    border-bottom: 1px solid #e7e7e7;
    line-height: 2.15rem;
}

.list-block .item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-height: 2.2rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: .75rem;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.list-block .list-block-label {
    margin: 0.5rem 0 1.75rem;
    padding: 0 0.75rem;
    font-size: 0.7rem;
    color: #5f646e;
}

.list-block .swipeout {
    overflow: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.list-block .swipeout.deleting {
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

.list-block .swipeout.deleting .swipeout-content {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

.list-block .swipeout.transitioning .swipeout-content,
.list-block .swipeout.transitioning .swipeout-actions-right a,
.list-block .swipeout.transitioning .swipeout-actions-left a,
.list-block .swipeout.transitioning .swipeout-overswipe {
    -webkit-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.list-block .swipeout-content {
    position: relative;
    z-index: 10;
}

.list-block .swipeout-overswipe {
    -webkit-transition: 200ms left;
    -o-transition: 200ms left;
    transition: 200ms left;
}

.list-block .swipeout-actions-left,
.list-block .swipeout-actions-right {
    position: absolute;
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.list-block .swipeout-actions-left a,
.list-block .swipeout-actions-right a {
    padding: 0 1.5rem;
    color: #fff;
    background: #c7c7cc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    left: 0;
}

.list-block .swipeout-actions-left a:after,
.list-block .swipeout-actions-right a:after {
    content: '';
    position: absolute;
    top: 0;
    width: 600%;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.list-block .swipeout-actions-left a.swipeout-delete,
.list-block .swipeout-actions-right a.swipeout-delete {
    background: #f6383a;
}

.list-block .swipeout-actions-right {
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.list-block .swipeout-actions-right a:after {
    left: 100%;
    margin-left: -1px;
}

.list-block .swipeout-actions-left {
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

.list-block .swipeout-actions-left a:after {
    right: 100%;
    margin-right: -1px;
}

.list-block .item-subtitle {
    font-size: 0.75rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
}

.list-block .item-text {
    font-size: 0.75rem;
    color: #5f646e;
    line-height: 1.05rem;
    position: relative;
    overflow: hidden;
    height: 2.1rem;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.list-block.media-list .item-title,
.list-block li.media-item .item-title {
    font-weight: 500;
}

.list-block.media-list .item-inner,
.list-block li.media-item .item-inner {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 0.45rem;
    -ms-flex-item-align: stretch;
    -webkit-align-self: stretch;
    align-self: stretch;
}

.list-block.media-list .item-media,
.list-block li.media-item .item-media {
    padding-top: 0.45rem;
    padding-bottom: 0.5rem;
}

.list-block.media-list .item-media,
.list-block li.media-item .xx-item-media {
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
    width: 50px;
}

.list-block.media-list .item-media img,
.list-block li.media-item .item-media img {
    display: block;
}

.list-block.media-list .item-title-row,
.list-block li.media-item .item-title-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.list-block .list-group ul:after,
.list-block .list-group ul:before {
    z-index: 11;
}

.list-block .list-group + .list-group ul {
    border-right: 0;
    border-top: 0;
}

.list-block .item-divider,
.list-block .list-group-title {
    background: #f7f7f7;
    border-top: 1px solid #e7e7e7;
    margin-top: -1px;
    padding: 0.2rem 0.75rem;
    white-space: nowrap;
    position: relative;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #e7e7e7;
}

.list-block .list-group-title {
    position: relative;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: sticky;
    top: 0;
    z-index: 20;
    margin-top: 0;
    border-right: 0;
    border-top: 0;
}

.list-block .sortable-handler {
    position: absolute;
    top: 0;
    bottom: 1px;
    z-index: 10;
    background-repeat: no-repeat;
    background-size: 0.9rem 0.6rem;
    background-image: url("../img/i-sortable-handler.png");
    background-position: center;
    width: 1.75rem;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.list-block.sortable .item-inner {
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

.list-block.sortable-opened .sortable-handler {
    visibility: visible;
    opacity: 1;
}

.list-block.sortable-opened .item-inner,
.list-block.sortable-opened .item-link .item-inner {
    padding-right: 1.5rem;
}

.list-block.sortable-opened .item-link .item-inner,
.list-block.sortable-opened .item-link .item-title-row {
    background-image: none;
}

.list-block.sortable-sorting li {
    transition-duration: 300ms;
}

.list-block li.sorting {
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.6);
    transition-duration: 0ms;
}

.list-block li.sorting .item-inner {
    border-left: 0;
    border-bottom: 0;
}

.list-block li:last-child .list-button {
    border-left: 0;
    border-bottom: 0;
}

.list-block li:last-child .item-inner,
.list-block li:last-child li:last-child .item-inner {
    border-left: 0;
    border-bottom: 0;
}

.list-block li li:last-child .item-inner,
.list-block li:last-child li .item-inner {
    border-bottom: 1px solid #e7e7e7;
}

/* === Forms === */
.list-block input[type="text"],
.list-block input[type="password"],
.list-block input[type="search"],
.list-block input[type="email"],
.list-block input[type="tel"],
.list-block input[type="url"],
.list-block input[type="date"],
.list-block input[type="datetime-local"],
.list-block input[type="time"],
.list-block input[type="number"],
.list-block select,
.list-block textarea {
    display: block;
    width: 100%;
    height: 2.15rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    padding: 0 0 0 .25rem;
    margin: 0;
    font-family: inherit;
    font-size: .85rem;
    color: #3d4145;
    background: none;
    border: none;
    border-radius: 0 0 0 0;
    box-shadow: none;

    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.list-block input[type="date"],
.list-block input[type="datetime-local"] {
    line-height: 2.2rem;
}

.list-block select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.list-block .label {
    vertical-align: top;
}

.list-block textarea {
    height: 5rem;
    resize: none;
    line-height: 1.4;
    padding-top: 0.4rem;
    padding-bottom: 0.35rem;
}

.label-switch {
    position: relative;
    display: inline-block;
    width: 2.6rem;
    height: 1.6rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    cursor: pointer;
    border-radius: .8rem;

    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
}

.label-switch .checkbox {
    position: relative;
    z-index: 0;
    width: 2.6rem;
    height: 1.6rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: #e5e5e5;
    border: none;
    border-radius: .8rem;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;

    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.label-switch .checkbox:before {
    position: absolute;
    top: .1rem;
    left: .1rem;
    z-index: 1;
    width: 2.4rem;
    height: 1.4rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    content: ' ';
    background: #fff;
    border-radius: .8rem;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.label-switch .checkbox:after {
    position: absolute;
    top: .1rem;
    left: .1rem;
    z-index: 2;
    width: 1.4rem;
    height: 1.4rem;
    content: ' ';
    background: #fff;
    border-radius: 1.4rem;
    box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .4);
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}

.label-switch input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 2.6rem;
    height: 1.6rem;
    z-index: 1;
}

.label-switch input[type="checkbox"]:checked + .checkbox {
    background: #4cd964;
}

.label-switch input[type="checkbox"]:checked + .checkbox:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.label-switch input[type="checkbox"]:checked + .checkbox:after {
    -webkit-transform: translateX(1.1rem);
    -ms-transform: translateX(1.1rem);
    -o-transform: translateX(1.1rem);
    transform: translateX(1.1rem);
}

html.android .label-switch input[type="checkbox"] + .checkbox {
    -webkit-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
}

html.android .label-switch input[type="checkbox"] + .checkbox:after,
html.android .label-switch input[type="checkbox"] + .checkbox:before {
    -webkit-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
}

.range-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    margin-left: -1px;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
}

.range-slider input[type="range"] {
    position: relative;
    width: 100%;
    height: 1.4rem;
    -webkit-appearance: none;
    margin: .2rem 0 .25rem 0;
    background: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0, #b7b8b7), color-stop(100%, #b7b8b7));
    background: -webkit-linear-gradient(left, #b7b8b7 0, #b7b8b7 100%);
    background: -o-linear-gradient(left, #b7b8b7 0, #b7b8b7 100%);
    background: linear-gradient(to right, #b7b8b7 0, #b7b8b7 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% .1rem;
    outline: 0;

    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.range-slider input[type="range"]:after {
    height: 0.1rem;
    background: #fff;
    content: ' ';
    width: 0.25rem;
    top: 50%;
    margin-top: -1px;
    left: -0.25rem;
    z-index: 1;
    position: absolute;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: none;
    height: 1.4rem;
    width: 1.4rem;
    position: relative;
    background: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb:after {
    height: 1.4rem;
    width: 1.4rem;
    border-radius: 1.4rem;
    background: #fff;
    z-index: 10;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    content: ' ';
}

.range-slider input[type="range"]::-webkit-slider-thumb:before {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 100rem;
    height: 0.1rem;
    margin-top: -1px;
    z-index: 1;
    background: #0894ec;
    content: ' ';
}

label.label-checkbox {
    cursor: pointer;
}

label.label-checkbox i.icon-form-checkbox {
    position: relative;
    width: 1.1rem;
    height: 1.1rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #c7c7cc;
    border-radius: 1.1rem;
}

label.label-checkbox i.icon-form-checkbox:after {
    content: ' ';
    position: absolute;
    left: 50%;
    margin-left: -0.3rem;
    top: 50%;
    margin-top: -0.2rem;
    width: 0.6rem;
    height: 0.45rem;
}

label.label-checkbox input[type="checkbox"],
label.label-checkbox input[type="radio"] {
    display: none;
}

label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
    border: none;
    background-color: #0894ec;
}

label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox:after,
label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox:after {
    background: no-repeat center;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20x%3D'0px'%20y%3D'0px'%20viewBox%3D'0%200%2012%209'%20xml%3Aspace%3D'preserve'%3E%3Cpolygon%20fill%3D'%23ffffff'%20points%3D'12%2C0.7%2011.3%2C0%203.9%2C7.4%200.7%2C4.2%200%2C4.9%203.9%2C8.8%203.9%2C8.8%203.9%2C8.8%20'%2F%3E%3C%2Fsvg%3E");
    -webkit-background-size: 0.6rem 0.45rem;
    background-size: 0.6rem 0.45rem;
}

label.label-checkbox {
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

html:not(.watch-active-state) label.label-checkbox:active,
label.label-checkbox.active-state {
    background-color: #d9d9d9;
    -webkit-transition: 0ms;
    -o-transition: 0ms;
    transition: 0ms;
}

html:not(.watch-active-state) label.label-checkbox:active .item-inner,
label.label-checkbox.active-state .item-inner {
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.smart-select select {
    display: none;
}

/* === Search Bar === */
.searchbar {
    padding: 8px 0;
    height: 2.2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.searchbar .searchbar-cancel {
    float: right;
    width: 2.2rem;
    height: 1.4rem;
    margin-right: -3rem;
    line-height: 1.4rem;
    text-align: center;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.searchbar .search-input {
    margin-right: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.searchbar .search-input input {
    margin: 0;
    height: 1.4rem;
}

.searchbar.searchbar-active .searchbar-cancel {
    margin-right: 0;
    opacity: 1;
}

.searchbar.searchbar-active .searchbar-cancel + .search-input {
    margin-right: 2.5rem;
}

.search-input {
    position: relative;
}

.search-input input {
    display: block;
    width: 100%;
    height: 1.4rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    padding: 0 .5rem;
    font-family: inherit;
    font-size: .7rem;
    font-weight: normal;
    color: #3d4145;
    background-color: #fff;
    border: none;
    border: 1px solid #b4b4b4;
    border-radius: .25rem;

    -moz-appearance: none;
    appearance: none;
}

.search-input input::-webkit-input-placeholder {
    color: #cccccc;
    opacity: 1;
}

.search-input .icon {
    position: absolute;
    top: 50%;
    left: .3rem;
    font-size: .9rem;
    color: #b4b4b4;
    -webkit-transform: translate3D(0, -50%, 0);
    -ms-transform: translate3D(0, -50%, 0);
    -o-transform: translate3D(0, -50%, 0);
    transform: translate3D(0, -50%, 0);
}

.search-input label + input {
    padding-left: 1.4rem;
}

.bar .searchbar {
    margin: 0 -0.5rem;
    padding: 0.4rem 0.5rem;
    background: rgba(0, 0, 0, 0.1);
}

.bar .searchbar .search-input input {
    border: 0;
}

.bar .searchbar .searchbar-cancel {
    color: #5f646e;
}

.button {
    position: relative;
    display: block;
    height: 1.35rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    padding: 0 .5rem;
    margin: 0;
    font-family: inherit;
    font-size: .7rem;
    line-height: 1.25rem;
    color: #0894ec;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: 1px solid #0894ec;
    border-radius: .25rem;

    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

input[type="submit"].button,
input[type="button"].button {
    width: 100%;
}

.button:active {
    color: #0a8ddf;
    border-color: #0a8ddf;
}

.button.button-round {
    border-radius: 1.25rem;
}

.button.active,
.button.active:active {
    color: #0a8ddf;
    border-color: #0a8ddf;
}

.button.button-big {
    font-size: 0.85rem;
    height: 2.4rem;
    line-height: 2.3rem;
}

.button.button-fill {
    color: #fff;
    background: #0894ec;
    border: none;
    line-height: 1.35rem;
}

.button.button-fill.active,
.button.button-fill:active {
    background: #0a8ddf;
}

.button.button-fill.button-big {
    line-height: 2.4rem;
}

.button .button-link {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    color: #0894ec;
    background-color: transparent;
    border: 0;
}

.button i.icon:first-child {
    margin-right: 0.5rem;
}

.button i.icon:last-child {
    margin-left: 0.5rem;
}

.button i.icon:first-child:last-child {
    margin-left: 0;
    margin-right: 0;
}

.button-light {
    border-color: #cccccc;
    color: #cccccc;
    color: #5f646e;
}

.button-light:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.button-light.button-fill {
    color: white;
    background-color: #cccccc;
}

.button-light.button-fill:active {
    background-color: #0a8ddf;
}

.button-dark {
    border-color: #6e727b;
    color: #6e727b;
    color: #5f646e;
}

.button-dark:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.button-dark.button-fill {
    color: white;
    background-color: #6e727b;
}

.button-dark.button-fill:active {
    background-color: #0a8ddf;
}

.button-success {
    border-color: #4cd964;
    color: #4cd964;
}

.button-success:active {
    border-color: #2ac845;
    color: #2ac845;
}

.button-success.button-fill {
    color: white;
    background-color: #4cd964;
}

.button-success.button-fill:active {
    background-color: #2ac845;
}

.button-danger {
    border-color: #f6383a;
    color: #f6383a;
}

.button-danger:active {
    border-color: #f00b0d;
    color: #f00b0d;
}

.button-danger.button-fill {
    color: white;
    background-color: #f6383a;
}

.button-danger.button-fill:active {
    background-color: #f00b0d;
}

.button-warning {
    border-color: #ff6600;
    color: #ff6600;
}

.button-warning:active {
    border-color: #cc5200;
    color: #cc5200;
}

.button-warning.button-fill {
    color: white;
    background-color: #ff6600;
}

.button-warning.button-fill:active {
    background-color: #cc5200;
}

.button.disabled,
.button.button-primary.disabled,
.button.button-success.disabled,
.button.button-danger.disabled,
.button.button-warning.disabled {
    border-color: #c8c9cb;
    color: #c8c9cb;
    cursor: not-allowed;
}

.button.disabled:active,
.button.button-primary.disabled:active,
.button.button-success.disabled:active,
.button.button-danger.disabled:active,
.button.button-warning.disabled:active {
    border-color: #c8c9cb;
    color: #c8c9cb;
}

.button.disabled.button-fill,
.button.button-primary.disabled.button-fill,
.button.button-success.disabled.button-fill,
.button.button-danger.disabled.button-fill,
.button.button-warning.disabled.button-fill {
    color: white;
    background-color: #c8c9cb;
}

.button.disabled.button-fill:active,
.button.button-primary.disabled.button-fill:active,
.button.button-success.disabled.button-fill:active,
.button.button-danger.disabled.button-fill:active,
.button.button-warning.disabled.button-fill:active {
    background-color: #c8c9cb;
}

.buttons-row,
.buttons-tab {
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.buttons-row .button {
    border-radius: 0 0 0 0;
    margin-left: -1px;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    border-color: #0894ec;
    color: #0894ec;
}

.buttons-row .button.active {
    background-color: #0894ec;
    color: white;
    z-index: 100;
}

.buttons-row .button:first-child {
    border-radius: 0.25rem 0 0 0.25rem;
    margin-left: 0;
    border-left-width: 1px;
    border-left-style: solid;
}

.buttons-row .button:last-child {
    border-radius: 0 0.25rem 0.25rem 0;
}

.buttons-row .button.button-round:first-child {
    border-radius: 1.35rem 0 0 1.35rem;
}

.buttons-row .button.button-round:last-child {
    border-radius: 0 1.35rem 1.35rem 0;
}

.buttons-tab {
    background: white;
    position: relative;
    border-bottom: 1px solid #d0d0d0;
}

.buttons-tab .button {
    color: #5f646e;
    font-size: 0.8rem;
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    bottom: -1px;
}

.buttons-tab .button.active {
    color: #0894ec;
    border-color: #0894ec;
    z-index: 100;
}

/* === Tabs === */
.tabs .tab {
    display: none;
}

.tabs .tab.active {
    display: block;
}

.tabs .pull-to-refresh-content {
    top: 0;
    height: 100%;
}

.tabs .pull-to-refresh-content:refreshing {
    top: 2.2rem;
}

.tabs-animated-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.tabs-animated-wrap > .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    -webkit-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.tabs-animated-wrap > .tabs > .tab {
    display: block;
    width: 100%;

    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* === Pages === */
.page {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #efeff4;
}

.page.page-current,
.page.page-from-center-to-left,
.page.page-from-center-to-right,
.page.page-from-right-to-center,
.page.page-from-left-to-center {
    display: block;
}

.page-left {
    opacity: .5;
    -webkit-transform: translate3d(-20%);
    transform: translate3d(-20%);
}

.page-right {
    -webkit-transform: translate3d(100%);
    transform: translate3d(100%);
}

.page-transitioning,
.page-transitioning .swipeback-page-shadow {
    -webkit-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms;
}

.page-from-right-to-center {
    z-index: 2002;
    -webkit-animation: pageFromRightToCenter 400ms forwards;
    -o-animation: pageFromRightToCenter 400ms forwards;
    animation: pageFromRightToCenter 400ms forwards;
}

.page-from-center-to-right {
    z-index: 2002;
    -webkit-animation: pageFromCenterToRight 400ms forwards;
    -o-animation: pageFromCenterToRight 400ms forwards;
    animation: pageFromCenterToRight 400ms forwards;
}

@-webkit-keyframes pageFromRightToCenter {
    from {
        opacity: .9;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-o-keyframes pageFromRightToCenter {
    from {
        opacity: .9;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pageFromRightToCenter {
    from {
        opacity: .9;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes pageFromCenterToRight {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: .9;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@-o-keyframes pageFromCenterToRight {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: .9;
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes pageFromCenterToRight {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: .9;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.page-from-center-to-left {
    -webkit-animation: pageFromCenterToLeft 400ms forwards;
    -o-animation: pageFromCenterToLeft 400ms forwards;
    animation: pageFromCenterToLeft 400ms forwards;
}

.page-from-left-to-center {
    -webkit-animation: pageFromLeftToCenter 400ms forwards;
    -o-animation: pageFromLeftToCenter 400ms forwards;
    animation: pageFromLeftToCenter 400ms forwards;
}

@-webkit-keyframes pageFromCenterToLeft {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: .5;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }
}

@-o-keyframes pageFromCenterToLeft {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: .5;
        transform: translate3d(-20%, 0, 0);
    }
}

@keyframes pageFromCenterToLeft {
    from {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: .5;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }
}

@-webkit-keyframes pageFromLeftToCenter {
    from {
        opacity: .5;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-o-keyframes pageFromLeftToCenter {
    from {
        opacity: .5;
        transform: translate3d(-20%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pageFromLeftToCenter {
    from {
        opacity: .5;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.content-inner {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: .5rem;
    margin-top: -1px;
    border-top: 1px solid transparent;
}

.javascript-scroll {
    overflow: hidden;
}

/* === Pull To Refresh === */
.pull-to-refresh-layer {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 2.2rem;
}

.pull-to-refresh-layer .preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
    visibility: hidden;
}

.pull-to-refresh-layer .pull-to-refresh-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: .65rem;
    height: 1rem;
    margin-top: -.5rem;
    margin-left: -.15rem;
    background: no-repeat center;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2026%2040'%3E%3Cpolygon%20points%3D'9%2C22%209%2C0%2017%2C0%2017%2C22%2026%2C22%2013.5%2C40%200%2C22'%20fill%3D'%238c8c8c'%2F%3E%3C%2Fsvg%3E");
    background-size: .65rem 1rem;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
    transform: rotate(0deg) translate3d(0, 0, 0);
}

.pull-to-refresh-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
}

.pull-to-refresh-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pull-to-refresh-content.content {
    position: absolute;
}

.pull-to-refresh-content.transitioning,
.pull-to-refresh-content.refreshing {
    -webkit-transition: -webkit-transform 400ms;
    -o-transition: -o-transform 400ms;
    transition: transform 400ms;
}

.pull-to-refresh-content:not(.refreshing) .pull-to-refresh-layer .preloader {
    -webkit-animation: none;
    -o-animation: none;
    animation: none;
}

.pull-to-refresh-content.refreshing .pull-to-refresh-arrow {
    visibility: hidden;
    -webkit-transition-duration: 0ms;
    -o-transition-duration: 0ms;
    transition-duration: 0ms;
}

.pull-to-refresh-content.refreshing .preloader {
    visibility: visible;
}

.pull-to-refresh-content.pull-up .pull-to-refresh-arrow {
    -webkit-transform: rotate(180deg) translate3d(0, 0, 0);
    transform: rotate(180deg) translate3d(0, 0, 0);
}

.pull-to-refresh-content {
    top: -2.2rem;
}

.pull-to-refresh-content.refreshing {
    -webkit-transform: translate3d(0, 2.2rem, 0);
    transform: translate3d(0, 2.2rem, 0);
}

.bar-nav ~ .pull-to-refresh-content,
.bar-footer ~ .pull-to-refresh-content,
.bar-tab ~ .pull-to-refresh-content {
    top: 0;
}

.bar-nav ~ .pull-to-refresh-content.refreshing,
.bar-footer ~ .pull-to-refresh-content.refreshing,
.bar-tab ~ .pull-to-refresh-content.refreshing {
    -webkit-transform: translate3d(0, 2.2rem, 0);
    transform: translate3d(0, 2.2rem, 0);
}

.bar-header-secondary ~ .pull-to-refresh-content,
.bar-footer-secondary ~ .pull-to-refresh-content {
    top: 2.2rem;
}

.infinite-scroll-preloader {
    margin: 0.5rem;
    text-align: center;
}

.infinite-scroll-preloader .preloader {
    width: 1.5rem;
    height: 1.5rem;
}

.index-list-bar {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 100;
    padding: .5rem 0;
    margin: 0;
    font-size: .6rem;
    color: #0894ec;
    text-align: right;
    list-style: none;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.index-list-bar li {
    display: block;
    width: 2.5rem;
    text-align: right;
}

.index-list-bar strong {
    display: inline-block;
    width: 1rem;
    text-align: center;
}

/* === Modals === */
.modal-overlay,
.preloader-indicator-overlay,
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10600;
    width: 100%;
    height: 100%;
    visibility: hidden;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
}

.modal-overlay.modal-overlay-visible,
.preloader-indicator-overlay.modal-overlay-visible,
.popup-overlay.modal-overlay-visible {
    visibility: visible;
    opacity: 1;
}

.popup-overlay {
    z-index: 10200;
}

.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 11000;
    display: none;
    width: 13.5rem;
    margin-top: 0;
    margin-left: -6.75rem;
    color: #3d4145;
    text-align: center;
    border-radius: .35rem;
    opacity: 0;
    -webkit-transition-property: -webkit-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: translate3d(0, 0, 0) scale(1.185);
    transform: translate3d(0, 0, 0) scale(1.185);
}

.modal.modal-in {
    opacity: 1;
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

.modal.modal-out {
    z-index: 10999;
    opacity: 0;
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: translate3d(0, 0, 0) scale(.815);
    transform: translate3d(0, 0, 0) scale(.815);
}

.modal-inner {
    position: relative;
    padding: .75rem;
    background: #e8e8e8;
    border-bottom: 1px solid #b5b5b5;
    border-radius: .35rem .35rem 0 0;
}

.modal-title {
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

.modal-title + .modal-text {
    margin-top: 0.25rem;
}

.modal-buttons {
    height: 2.2rem;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.modal-buttons.modal-buttons-vertical {
    display: block;
    height: auto;
}

.modal-button {
    position: relative;
    display: block;
    width: 100%;
    height: 2.2rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 .25rem;
    overflow: hidden;
    font-size: .85rem;
    line-height: 2.2rem;
    color: #0894ec;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    background: #e8e8e8;
    border-right: 1px solid #b5b5b5;

    -webkit-box-flex: 1;
    -ms-flex: 1;
}

.modal-button:first-child {
    border-radius: 0 0 0 0.35rem;
}

.modal-button:last-child {
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 0 0.35rem 0;
}

.modal-button:first-child:last-child {
    border-radius: 0 0 0.35rem 0.35rem;
}

.modal-button.modal-button-bold {
    font-weight: 500;
}

html:not(.watch-active-state) .modal-button:active,
.modal-button.active-state {
    background: #d4d4d4;
}

.modal-buttons-vertical .modal-button {
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #b5b5b5;
    border-radius: 0;
}

.modal-buttons-vertical .modal-button:last-child {
    border-radius: 0 0 0.35rem 0.35rem;
    border-left: 0;
    border-bottom: 0;
}

.modal-no-buttons .modal-inner {
    border-radius: 0.35rem;
    border-left: 0;
    border-bottom: 0;
}

.modal-no-buttons .modal-buttons {
    display: none;
}

.actions-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 11000;
    width: 100%;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.actions-modal.modal-in {
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.actions-modal.modal-out {
    z-index: 10999;
    transition-duration: 300ms;
    transform: translate3d(0, 100%, 0);
}

.actions-modal-group {
    margin: 0.4rem;
}

.actions-modal-button,
.actions-modal-label {
    position: relative;
    display: block;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    font-weight: normal;
    text-align: center;
    background: rgba(243, 243, 243, .95);
    border-bottom: 1px solid #d2d2d6;
}

.actions-modal-button a,
.actions-modal-label a {
    text-decoration: none;
    color: inherit;
}

.actions-modal-button b,
.actions-modal-label b {
    font-weight: 500;
}

.actions-modal-button.actions-modal-button-bold,
.actions-modal-label.actions-modal-button-bold {
    font-weight: 500;
}

.actions-modal-button.actions-modal-button-danger,
.actions-modal-label.actions-modal-button-danger {
    color: #f6383a;
}

.actions-modal-button.color-danger,
.actions-modal-label.color-danger {
    color: #f6383a;
}

.actions-modal-button.bg-danger,
.actions-modal-label.bg-danger {
    background: #f6383a;
    color: white;
}

.actions-modal-button.bg-danger:active,
.actions-modal-label.bg-danger:active {
    background: #f00b0d;
}

.actions-modal-button:first-child,
.actions-modal-label:first-child {
    border-radius: 0.2rem 0.2rem 0 0;
}

.actions-modal-button:last-child,
.actions-modal-label:last-child {
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 0 0.2rem 0.2rem;
}

.actions-modal-button:first-child:last-child,
.actions-modal-label:first-child:last-child {
    border-radius: 0.2rem;
}

.actions-modal-button.disabled,
.actions-modal-label.disabled {
    opacity: 0.95;
    color: #8e8e93;
}

.actions-modal-button {
    cursor: pointer;
    line-height: 2.15rem;
    font-size: 1rem;
    color: #0894ec;
}

.actions-modal-button:active,
.actions-modal-button.active-state {
    background: #dcdcdc;
}

.actions-modal-label {
    font-size: 0.7rem;
    line-height: 1.3;
    min-height: 2.2rem;
    padding: 0.4rem 0.5rem;
    color: #5f646e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

input.modal-text-input {
    display: block;
    width: 100%;
    height: 1.5rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    padding: 0 .25rem;
    margin: 0;
    margin-top: .75rem;
    font-family: inherit;
    font-size: .7rem;
    background: #fff;
    border: 1px solid #a0a0a0;
    border-radius: .25rem;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);

    -moz-appearance: none;
    appearance: none;
}

input.modal-text-input + input.modal-text-input {
    margin-top: 0.25rem;
}

input.modal-text-input.modal-text-input-double {
    border-radius: 0.25rem 0.25rem 0 0;
}

input.modal-text-input.modal-text-input-double + input.modal-text-input {
    margin-top: 0;
    border-top: 0;
    border-radius: 0 0 0.25rem 0.25rem;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11000;
    display: none;
    min-width: 8rem;
    margin: 0;
    background: rgba(255, 255, 255, .95);
    border-radius: .35rem;
    opacity: 0;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.popover.modal-in {
    opacity: 1;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

.popover .list-block {
    margin: 0;
}

.popover .list-block ul {
    background: none;
}

.popover .list-block:first-child ul {
    border-right: 0;
    border-top: 0;
    border-radius: 0.35rem 0.35rem 0 0;
}

.popover .list-block:first-child li:first-child a {
    border-radius: 0.35rem 0.35rem 0 0;
}

.popover .list-block:last-child ul {
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 0 0.35rem 0.35rem;
}

.popover .list-block:last-child li:last-child a {
    border-radius: 0 0 0.35rem 0.35rem;
}

.popover .list-block:first-child:last-child li:first-child:last-child a,
.popover .list-block:first-child:last-child ul:first-child:last-child {
    border-radius: 0.35rem;
}

.popover .list-block + .list-block {
    margin-top: 1.75rem;
}

.popover-angle {
    width: 1.3rem;
    height: 1.3rem;
    position: absolute;
    left: -1.3rem;
    top: 0;
    z-index: 100;
    overflow: hidden;
}

.popover-angle:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.3rem;
    height: 1.3rem;
    content: ' ';
    background: rgba(255, 255, 255, .95);
    border-radius: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.popover-angle.on-left {
    left: -1.3rem;
}

.popover-angle.on-left:after {
    left: 0.95rem;
    top: 0;
}

.popover-angle.on-right {
    left: 100%;
}

.popover-angle.on-right:after {
    left: -0.95rem;
    top: 0;
}

.popover-angle.on-top {
    left: 0;
    top: -1.3rem;
}

.popover-angle.on-top:after {
    left: 0;
    top: 0.95rem;
}

.popover-angle.on-bottom {
    left: 0;
    top: 100%;
}

.popover-angle.on-bottom:after {
    left: 0;
    top: -0.95rem;
}

.popover-inner {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.actions-popover .list-block + .list-block {
    margin-top: 1rem;
}

.actions-popover .list-block ul {
    background: #fff;
}

.actions-popover-label {
    padding: 0.4rem 0.5rem;
    color: #5f646e;
    font-size: 0.65rem;
    line-height: 1.3;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #d2d2d6;
}

.actions-popover-label:last-child {
    border-left: 0;
    border-bottom: 0;
}

.popup,
.login-screen {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10400;
    display: none;
    width: 100%;
    height: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.popup.modal-in,
.login-screen.modal-in,
.popup.modal-out,
.login-screen.modal-out {
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
}

.popup.modal-in,
.login-screen.modal-in {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.popup.modal-out,
.login-screen.modal-out {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.login-screen.modal-in,
.login-screen.modal-out {
    display: block;
}

html.with-statusbar-overlay .popup {
    top: 1rem;
    height: -webkit-calc(100% - 1rem);
    height: -webkit-calc(100% - 1rem);
    height: calc(100% - 1rem);
}

html.with-statusbar-overlay .popup-overlay {
    z-index: 9800;
}

@media all and (max-width: 629px), (max-height: 629px) {
    html.with-statusbar-overlay .popup {
        height: -webkit-calc(100% - 1rem);
        height: calc(100% - 1rem);
        top: 1rem;
    }

    html.with-statusbar-overlay .popup-overlay {
        z-index: 9800;
    }
}

html.with-statusbar-overlay .login-screen,
html.with-statusbar-overlay .popup.tablet-fullscreen {
    height: -webkit-calc(100% - 1rem);
    height: calc(100% - 1rem);
    top: 1rem;
}

.modal .preloader {
    width: 1.7rem;
    height: 1.7rem;
}

.preloader-indicator-overlay {
    visibility: visible;
    opacity: 0;
    background: none;
}

.preloader-indicator-modal {
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 0.4rem;
    margin-left: -1.25rem;
    margin-top: -1.25rem;
    background: rgba(0, 0, 0, 0.8);
    z-index: 11000;
    border-radius: 0.25rem;
}

.preloader-indicator-modal .preloader {
    display: block;
    width: 1.7rem;
    height: 1.7rem;
}

.picker-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 11500;
    display: none;
    width: 100%;
    height: 13rem;
    background: #cfd5da;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.picker-modal.modal-in,
.picker-modal.modal-out {
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
}

.picker-modal.modal-in {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.picker-modal.modal-out {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.picker-modal .picker-modal-inner {
    height: 100%;
    position: relative;
}

.picker-modal .toolbar {
    border-top: 1px solid #999999;
    position: relative;
    width: 100%;
}

.picker-modal .toolbar + .picker-modal-inner {
    height: -webkit-calc(100% - 2.2rem);
    height: -moz-calc(100% - 2.2rem);
    height: calc(100% - 2.2rem);
}

.picker-modal.picker-modal-inline,
.popover .picker-modal {
    position: relative;
    z-index: inherit;
    display: block;
    background: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.picker-modal.picker-modal-inline .toolbar,
.popover .picker-modal .toolbar {
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #999999;
}

.popover .picker-modal {
    width: auto;
}

.popover .picker-modal .toolbar {
    background: none;
}

.toast {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 1rem;
    color: white;
    padding: 0 .8rem;
    height: 2rem;
    line-height: 2rem;
    font-size: 0.8rem;
    width: auto;
}

/* === Preloader === */
.preloader {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    -o-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: preloader-spin 1s steps(12, end) infinite;
    -o-animation: preloader-spin 1s steps(12, end) infinite;
    animation: preloader-spin 1s steps(12, end) infinite;
}

.preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-o-keyframes preloader-spin {
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* === Swiper === */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
    /* Fix of Webkit flickering */
    z-index: 1;
    border: 1px solid #d4d4d4;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-fles-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

/* Pagination Styles */
.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical > .swiper-pagination {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    -moz-transform: translate3d(0px, -50%, 0);
    -o-transform: translate(0px, -50%);
    -ms-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
    margin: 5px 0;
    display: block;
}

.swiper-container-horizontal > .swiper-pagination {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
}

/* 3D Container */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    /* Safari 4+, Chrome */
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 3.6-15 */
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    /* Safari 4+, Chrome */
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 3.6-15 */
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    /* Safari 4+, Chrome */
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 3.6-15 */
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    /* Safari 4+, Chrome */
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 3.6-15 */
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active {
    pointer-events: auto;
}

/* Cube */
.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
    height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
}

.swiper-container-cube.swiper-container-vertical .swiper-cube-shadow {
    z-index: 0;
}

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

/* Preloader */
.swiper-slide .preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
}

.swiper-slide img {
    display: block;
}

/* === Cards === */
.cards-list ul,
.card .list-block ul {
    background: none;
}

.cards-list > ul,
.card .list-block > ul {
    border-right: 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
}

.card {
    background: #fff;
    box-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.3);
    margin: 0.5rem;
    position: relative;
    border-radius: 0.1rem;
    font-size: 0.7rem;
}

.card .list-block,
.card .content-block {
    margin: 0;
}

.row:not(.no-gutter) .col > .card {
    margin-left: 0;
    margin-right: 0;
}

.card-content {
    position: relative;
}

.card-content-inner {
    padding: 0.75rem;
    position: relative;
}

.card-content-inner > p:first-child {
    margin-top: 0;
}

.card-content-inner > p:last-child {
    margin-bottom: 0;
}

.card-content-inner > .list-block,
.card-content-inner > .content-block {
    margin: -0.75rem;
}

.card-header,
.card-footer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-height: 2.2rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: .5rem .75rem;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.card-header[valign="top"],
.card-footer[valign="top"] {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.card-header[valign="bottom"],
.card-footer[valign="bottom"] {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.card-header a.link,
.card-footer a.link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 2.2rem;
    margin-top: -.5rem;
    margin-bottom: -.5rem;
    line-height: 2.2rem;
    text-decoration: none;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

html:not(.watch-active-state) .card-header a.link:active,
html:not(.watch-active-state) .card-footer a.link:active,
.card-header a.link.active-state,
.card-footer a.link.active-state {
    opacity: 0.3;
    transition-duration: 0ms;
}

.card-header a.link i + span,
.card-footer a.link i + span,
.card-header a.link i + i,
.card-footer a.link i + i,
.card-header a.link span + i,
.card-footer a.link span + i,
.card-header a.link span + span,
.card-footer a.link span + span {
    margin-left: 0.35rem;
}

.card-header a.link i.icon,
.card-footer a.link i.icon {
    display: block;
}

.card-header a.icon-only,
.card-footer a.icon-only {
    min-width: 2.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0;
}

.card-header {
    border-radius: 0.1rem 0.1rem 0 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #e1e1e1;
}

.card-header .card-cover {
    width: 100%;
    display: block;
}

.card-header.no-border {
    border-left: 0;
    border-bottom: 0;
}

.card-header.no-padding {
    padding: 0;
}

.card-footer {
    border-radius: 0 0 0.1rem 0.1rem;
    color: #5f646e;
    border-top: 1px solid #e1e1e1;
}

.card-footer.no-border {
    border-right: 0;
    border-top: 0;
}

.facebook-card .card-header {
    display: block;
    padding: 0.5rem;
}

.facebook-card .facebook-avatar {
    float: left;
}

.facebook-card .facebook-name {
    margin-left: 2.2rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.facebook-card .facebook-date {
    margin-left: 2.2rem;
    font-size: 0.65rem;
    color: #5f646e;
}

.facebook-card .card-footer {
    background: #fafafa;
}

.facebook-card .card-footer a {
    color: #5f646e;
    font-weight: 500;
}

.facebook-card .card-content img {
    display: block;
}

.facebook-card .card-content-inner {
    padding: 0.75rem 0.5rem;
}

/* === Panels === */
html {
    width: 100%;
    overflow-x: hidden;
}

.panel-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    z-index: 5999;
    display: none;
}

.panel {
    position: absolute;
    top: 0;
    z-index: 1000;
    display: none;
    width: 12rem;
    height: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    color: white;
    background: #111;
    -webkit-transition: -webkit-transform 400ms;
    -o-transition: -o-transform 400ms;
    transition: transform 400ms;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.panel.panel-left.panel-cover {
    z-index: 6000;
    left: -12rem;
}

.panel.panel-left.panel-reveal {
    left: 0;
}

.panel.panel-right.panel-cover {
    z-index: 6000;
    right: -12rem;
}

.panel.panel-right.panel-reveal {
    right: 0;
}

body.with-panel-left-cover .page,
body.with-panel-right-cover .page {
    -webkit-transition: -webkit-transform 400ms;
    -o-transition: -o-transform 400ms;
    transition: transform 400ms;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

body.with-panel-left-cover .panel-overlay,
body.with-panel-right-cover .panel-overlay {
    display: block;
}

body.with-panel-left-reveal .page,
body.with-panel-right-reveal .page {
    -webkit-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
}

body.with-panel-left-reveal .panel-overlay,
body.with-panel-right-reveal .panel-overlay {
    display: block;
}

body.with-panel-left-reveal .page {
    -webkit-transform: translate3d(12rem, 0, 0);
    transform: translate3d(12rem, 0, 0);
}

body.with-panel-left-reveal .panel-overlay {
    margin-left: 12rem;
}

body.with-panel-left-cover .panel-left {
    -webkit-transform: translate3d(12rem, 0, 0);
    transform: translate3d(12rem, 0, 0);
}

body.with-panel-right-reveal .page {
    -webkit-transform: translate3d(-12rem, 0, 0);
    transform: translate3d(-12rem, 0, 0);
}

body.with-panel-right-reveal .panel-overlay {
    margin-left: -12rem;
}

body.with-panel-right-cover .panel-right {
    -webkit-transform: translate3d(-12rem, 0, 0);
    transform: translate3d(-12rem, 0, 0);
}

body.panel-closing .page {
    -webkit-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
}

/* === Calendar === */
.picker-calendar {
    background: #fff;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

@media (orientation: landscape) and (max-height: 415px) {
    .picker-calendar:not(.picker-modal-inline) {
        height: 220px;
    }
}

.picker-calendar .picker-modal-inner {
    overflow: hidden;
}

.popover.popover-picker-calendar {
    width: 320px;
}

.picker-calendar-week-days {
    height: 18px;
    background: #f7f7f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-bottom: 1px solid #c4c4c4;
    font-size: 11px;
    box-sizing: border-box;
    position: relative;
}

.picker-calendar-week-days .picker-calendar-week-day {
    width: 14.28571429%;
    width: -webkit-calc(100% / 7);
    width: calc(100% / 7);
    line-height: 17px;
    text-align: center;

    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.picker-calendar-week-days + .picker-calendar-months {
    height: -webkit-calc(100% - 18px);
    height: -moz-calc(100% - 18px);
    height: calc(100% - 18px);
}

.picker-calendar-months {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.picker-calendar-months-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.picker-calendar-month {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.picker-calendar-row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 16.66666667%;
    height: -webkit-calc(100% / 6);
    height: calc(100% / 6);
    border-bottom: 1px solid #ccc;

    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.picker-calendar-row:last-child {
    border-left: 0;
    border-bottom: 0;
}

.picker-calendar-day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 14.28571429%;
    width: -webkit-calc(100% / 7);
    width: calc(100% / 7);
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    color: #3d4145;
    text-align: center;
    cursor: pointer;

    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.picker-calendar-day.picker-calendar-day-prev,
.picker-calendar-day.picker-calendar-day-next {
    color: #cccccc;
}

.picker-calendar-day.picker-calendar-day-disabled {
    color: #d4d4d4;
    cursor: auto;
}

.picker-calendar-day.picker-calendar-day-today span {
    background: #e3e3e3;
}

.picker-calendar-day.picker-calendar-day-selected span {
    background: #0894ec;
    color: #fff;
}

.picker-calendar-day span {
    display: inline-block;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.picker-calendar-month-picker,
.picker-calendar-year-picker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 50%;
    max-width: 200px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-shrink: 10;
    -ms-flex: 0 10 auto;
    -webkit-flex-shrink: 10;
    -ms-flex-negative: 10;
    flex-shrink: 10;
}

.picker-calendar-month-picker a.icon-only,
.picker-calendar-year-picker a.icon-only {
    min-width: 36px;
}

.picker-calendar-month-picker span,
.picker-calendar-year-picker span {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;

    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.popover .picker-calendar .picker-calendar-week-days,
.picker-calendar.picker-modal-inline .picker-calendar-week-days {
    background: none;
}

.popover .picker-calendar .toolbar,
.picker-calendar.picker-modal-inline .toolbar,
.popover .picker-calendar .picker-calendar-week-days,
.picker-calendar.picker-modal-inline .picker-calendar-week-days {
    border-right: 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
}

.popover .picker-calendar .toolbar ~ .picker-modal-inner .picker-calendar-months,
.picker-calendar.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months,
.popover .picker-calendar .picker-calendar-week-days ~ .picker-calendar-months,
.picker-calendar.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months {
    border-top: 1px solid #c4c4c4;
}

.picker-modal .toolbar-inner {
    height: 2.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    text-align: center;
}

.picker-calendar-month-picker,
.picker-calendar-year-picker {
    display: block;
    line-height: 2.2rem;
}

.picker-calendar-month-picker a.icon-only,
.picker-calendar-year-picker a.icon-only {
    float: left;
    width: 25%;
    height: 2.2rem;
    line-height: 2rem;
}

.picker-calendar-month-picker .current-month-value,
.picker-calendar-year-picker .current-month-value,
.picker-calendar-month-picker .current-year-value,
.picker-calendar-year-picker .current-year-value {
    float: left;
    width: 50%;
    height: 2.2rem;
}

/* === Columns Picker === */
.picker-columns {
    width: 100%;
    height: 13rem;
    z-index: 11500;
}

.picker-columns.picker-modal-inline,
.popover .picker-columns {
    height: 10rem;
}

@media (orientation: landscape) and (max-height: 415px) {
    .picker-columns:not(.picker-modal-inline) {
        height: 10rem;
    }
}

.popover.popover-picker-columns {
    width: 14rem;
}

.picker-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    text-align: right;
    font-size: 1.2rem;
    -webkit-mask-box-image: -webkit-linear-gradient(bottom, transparent, transparent 5%, white 20%, white 80%, transparent 95%, transparent);
    -webkit-mask-box-image: linear-gradient(to top, transparent, transparent 5%, white 20%, white 80%, transparent 95%, transparent);
}

.bar + .picker-items {
    height: 10.8rem;
}

.picker-items-col {
    overflow: hidden;
    position: relative;
    max-height: 100%;
}

.picker-items-col.picker-items-col-left {
    text-align: left;
}

.picker-items-col.picker-items-col-center {
    text-align: center;
}

.picker-items-col.picker-items-col-right {
    text-align: right;
}

.picker-items-col.picker-items-col-divider {
    color: #3d4145;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.picker-items-col-wrapper {
    -webkit-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.picker-item {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    overflow: hidden;
    line-height: 36px;
    color: #999;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.picker-items-col-absolute .picker-item {
    position: absolute;
}

.picker-item.picker-item-far {
    pointer-events: none;
}

.picker-item.picker-selected {
    color: #3d4145;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transform: rotateX(0deg);
    transform: translate3d(0, 0, 0);
    transform: rotateX(0deg);
}

.picker-center-highlight {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 36px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -18px;
    pointer-events: none;
    border-top: 1px solid #a8abb0;
    border-bottom: 1px solid #a8abb0;
}

.picker-3d .picker-items {
    overflow: hidden;
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.picker-3d .picker-items-col,
.picker-3d .picker-items-col-wrapper,
.picker-3d .picker-item {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.picker-3d .picker-items-col {
    overflow: visible;
}

.picker-3d .picker-item {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transform-origin: center center -110px;
    -ms-transform-origin: center center -110px;
    -o-transform-origin: center center -110px;
    transform-origin: center center -110px;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.picker-modal .bar {
    position: relative;
    top: 0;
    border-top: 1px solid #a8abb0;
    border-bottom: 1px solid #a8abb0;
}

.picker-modal .bar .title {
    color: #5f646e;
    font-weight: normal;
}

.city-picker .col-province {
    width: 5rem;
}

.city-picker .col-city {
    width: 6rem;
}

.city-picker .col-district {
    width: 5rem;
}

.notification {
    position: absolute;
    top: -2rem;
    right: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    min-height: 4rem;
    padding-top: 2rem;
    font-size: .65rem;
    color: white;
    background-color: rgba(0, 0, 0, .85);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.notification.notification-in {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.notification.touching {
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

.notification .notification-inner {
    padding: .3rem .6rem 1rem .6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.notification .notification-content {
    width: 100%;
    margin: 0rem .4rem;
}

.notification .notification-title {
    font-weight: bold;
}

.notification .notification-text {
    line-height: 1;
}

.notification .notification-media {
    height: 1rem;
    width: 1rem;
}

.notification .notification-media img {
    width: 100%;
}

.notification .notification-handle-bar {
    position: absolute;
    bottom: .2rem;
    left: 50%;
    width: 2rem;
    height: .3rem;
    background: white;
    border-radius: .15rem;
    opacity: .5;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

/***字体**/
@font-face {
    font-family: 'icomoon';
    src:  url('/wap/resources/fonts/icomoon.eot');
    src:  url('/wap/resources/fonts/icomoon.eot') format('embedded-opentype'),
    url('/wap/resources/fonts/icomoon.ttf') format('truetype'),
    url('/wap/resources/fonts/icomoon.woff') format('woff'),
    url('/wap/resources/fonts/icomoon.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-email-new:before {
    content: "\e90c";
}
.icon-discover:before {
    content: "\e90b";
}
.icon-yx_law:before {
    content: "\e90d";
}
.icon-assurance:before {
    content: "\e90a";
}
.icon-joy:before {
    content: "\e90f";
}
.icon-me:before {
    content: "\e906";
}
.icon-funnel:before {
    content: "\e905";
}
.icon-edit:before {
    content: "\e903";
}
.icon-download:before {
    content: "\e904";
}
.icon-contract:before {
    content: "\e900";
}
.icon-legal:before {
    content: "\e901";
}
.icon-certificate:before {
    content: "\e902";
}
.icon-alarm:before {
    content: "\e855";
}
.icon-add:before {
    content: "\e145";
}
.icon-alarm_add:before {
    content: "\e856";
}
.icon-add_box:before {
    content: "\e146";
}
.icon-add_circle:before {
    content: "\e147";
}
.icon-control_point:before {
    content: "\e3ba";
}
.icon-apps:before {
    content: "\e5c3";
}
.icon-arrow_back:before {
    content: "\e5c4";
}
.icon-arrow_downward:before {
    content: "\e5db";
}
.icon-arrow_drop_down:before {
    content: "\e5c5";
}
.icon-arrow_drop_down_circle:before {
    content: "\e5c6";
}
.icon-arrow_drop_up:before {
    content: "\e5c7";
}
.icon-arrow_forward:before {
    content: "\e5c8";
}
.icon-arrow_upward:before {
    content: "\e5d8";
}
.icon-cancel:before {
    content: "\e5c9";
}
.icon-check:before {
    content: "\e5ca";
}
.icon-check_box:before {
    content: "\e834";
}
.icon-check_box_outline_blank:before {
    content: "\e835";
}
.icon-check_circle:before {
    content: "\e86c";
}
.icon-close:before {
    content: "\e5cd";
}
.icon-wb_cloudy:before {
    content: "\e42d";
}
.icon-cloud_circle:before {
    content: "\e2be";
}
.icon-cloud_done:before {
    content: "\e2bf";
}
.icon-cloud_download:before {
    content: "\e2c0";
}
.icon-comment:before {
    content: "\e0b9";
}
.icon-mode_edit:before {
    content: "\e254";
}
.icon-create_new_folder:before {
    content: "\e2cc";
}
.icon-date_range:before {
    content: "\e916";
}
.icon-dehaze:before {
    content: "\e3c7";
}
.icon-description:before {
    content: "\e873";
}
.icon-donut_large:before {
    content: "\e917";
}
.icon-markunread:before {
    content: "\e159";
}
.icon-error:before {
    content: "\e000";
}
.icon-error_outline:before {
    content: "\e001";
}
.icon-exit_to_app:before {
    content: "\e879";
}
.icon-favorite:before {
    content: "\e87d";
}
.icon-favorite_border:before {
    content: "\e87e";
}
.icon-filter_drama:before {
    content: "\e3dd";
}
.icon-folder:before {
    content: "\e2c7";
}
.icon-folder_open:before {
    content: "\e2c8";
}
.icon-star:before {
    content: "\e838";
}
.icon-headset_mic:before {
    content: "\e311";
}
.icon-help:before {
    content: "\e887";
}
.icon-help_outline:before {
    content: "\e8fd";
}
.icon-highlight_off:before {
    content: "\e888";
}
.icon-restore:before {
    content: "\e8b3";
}
.icon-home:before {
    content: "\e88a";
}
.icon-import_export:before {
    content: "\e0c3";
}
.icon-inbox:before {
    content: "\e156";
}
.icon-indeterminate_check_box:before {
    content: "\e909";
}
.icon-info:before {
    content: "\e88e";
}
.icon-info_outline:before {
    content: "\e88f";
}
.icon-insert_comment:before {
    content: "\e24c";
}
.icon-insert_drive_file:before {
    content: "\e24d";
}
.icon-keyboard_arrow_down:before {
    content: "\e313";
}
.icon-keyboard_arrow_left:before {
    content: "\e314";
}
.icon-keyboard_arrow_right:before {
    content: "\e315";
}
.icon-keyboard_arrow_up:before {
    content: "\e316";
}
.icon-keyboard_capslock:before {
    content: "\e318";
}
.icon-laptop_chromebook:before {
    content: "\e31f";
}
.icon-laptop_mac:before {
    content: "\e320";
}
.icon-open_in_new:before {
    content: "\e89e";
}
.icon-room:before {
    content: "\e8b4";
}
.icon-lock_open:before {
    content: "\e898";
}
.icon-lock_outline:before {
    content: "\e899";
}
.icon-sync:before {
    content: "\e627";
}
.icon-mail_outline:before {
    content: "\e0e1";
}
.icon-menu:before {
    content: "\e5d2";
}
.icon-more_horiz:before {
    content: "\e5d3";
}
.icon-personal_video:before {
    content: "\e63b";
}
.icon-play_arrow:before {
    content: "\e037";
}
.icon-play_circle_filled:before {
    content: "\e038";
}
.icon-play_circle_outline:before {
    content: "\e039";
}
.icon-portrait:before {
    content: "\e416";
}
.icon-power_settings_new:before {
    content: "\e8ac";
}
.icon-present_to_all:before {
    content: "\e0df";
}
.icon-refresh:before {
    content: "\e5d5";
}
.icon-replay:before {
    content: "\e042";
}
.icon-rss_feed:before {
    content: "\e0e5";
}
.icon-screen_rotation:before {
    content: "\e1c1";
}
.icon-search:before {
    content: "\e8b6";
}
.icon-settings:before {
    content: "\e8b8";
}
.icon-share:before {
    content: "\e80d";
}
.icon-slideshow:before {
    content: "\e41b";
}
.icon-slow_motion_video:before {
    content: "\e068";
}
.icon-stay_primary_portrait:before {
    content: "\e0d6";
}
.icon-textsms:before {
    content: "\e0d8";
}
.icon-star_border:before {
    content: "\e83a";
}
.icon-supervisor_account:before {
    content: "\e8d3";
}
.icon-system_update_alt:before {
    content: "\e8d7";
}
.icon-tab:before {
    content: "\e8d8";
}
.icon-tablet_mac:before {
    content: "\e331";
}
.icon-tv:before {
    content: "\e333";
}
.icon-undo:before {
    content: "\e166";
}
.icon-vertical_align_bottom:before {
    content: "\e258";
}
.icon-watch_later:before {
    content: "\e924";
}
.icon-legal1-(1):before {
                    content: "\e907";
                }
.icon-eye:before {
    content: "\e908";
}



/**字体结束**/
/*==========================
Framework7 Layouts Themes
==========================*/
/* === Dark layout === */
.theme-dark {
    background-color: #222426;
}

.theme-dark .bar,
.bar.theme-dark {
    border-right-color: #333333;
    border-bottom-color: #333333;
    background-color: #131313;
    color: #ffffff;
}

.theme-dark .title {
    color: #ffffff;
}

.theme-dark .bar-nav,
.theme-dark .bar-tab,
.bar-nav.theme-dark,
.bar-tab.theme-dark {
    border-left-color: #333333;
    border-top-color: #333333;
    background-color: #131313;
    color: #ffffff;
}

.theme-dark .tab-item {
    color: #ffffff;
}

.theme-dark .tab-item.active {
    color: #0894ec;
}

.theme-dark .picker-calendar-week-days {
    color: #fff;
    background-color: #131313;
}

.theme-dark .popover .picker-modal .picker-center-highlight,
.theme-dark .picker-modal.picker-modal-inline .picker-center-highlight {
    border-left-color: #333333;
    border-top-color: #333333;
    border-right-color: #333333;
    border-bottom-color: #333333;
}

.theme-dark .popover .picker-modal .picker-item.picker-selected,
.theme-dark .picker-modal.picker-modal-inline .picker-item.picker-selected {
    color: #fff;
}

.theme-dark .popover .picker-modal .picker-calendar-week-days,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-week-days {
    color: #fff;
}

.theme-dark .popover .picker-modal .picker-calendar-day,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-day {
    color: #fff;
}

.theme-dark .popover .picker-modal .picker-calendar-day.picker-calendar-day-prev,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-day.picker-calendar-day-prev,
.theme-dark .popover .picker-modal .picker-calendar-day.picker-calendar-day-next,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-day.picker-calendar-day-next {
    color: #777;
}

.theme-dark .popover .picker-modal .picker-calendar-day.picker-calendar-day-disabled,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-day.picker-calendar-day-disabled {
    color: #555;
}

.theme-dark .popover .picker-modal .picker-calendar-day.picker-calendar-day-today span,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-day.picker-calendar-day-today span {
    background: #444;
}

.theme-dark .popover .picker-modal .picker-calendar-week-days,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-week-days,
.theme-dark .popover .picker-modal .picker-calendar-row,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-row {
    border-right-color: #333333;
    border-bottom-color: #333333;
}

.theme-dark .popover .picker-modal .toolbar ~ .picker-modal-inner .picker-calendar-months,
.theme-dark .picker-modal.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months,
.theme-dark .popover .picker-modal .picker-calendar-week-days ~ .picker-calendar-months,
.theme-dark .picker-modal.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months {
    border-left-color: #333333;
    border-top-color: #333333;
}

.theme-dark .popover .picker-modal .toolbar {
    border-right-color: #333333;
    border-bottom-color: #333333;
}

.theme-dark .photo-browser .navbar,
.photo-browser.theme-dark .navbar,
.theme-dark .view[data-page="photo-browser-slides"] .navbar,
.view[data-page="photo-browser-slides"].theme-dark .navbar,
.theme-dark .photo-browser .toolbar,
.photo-browser.theme-dark .toolbar,
.theme-dark .view[data-page="photo-browser-slides"] .toolbar,
.view[data-page="photo-browser-slides"].theme-dark .toolbar {
    background: rgba(19, 19, 19, 0.95);
}

.theme-dark .tabbar a:not(.active) {
    color: #ffffff;
}

.theme-dark .page,
.theme-dark .login-screen-content,
.page.theme-dark,
.theme-dark .panel,
.panel.theme-dark,
.theme-dark .content {
    background-color: #222426;
    color: #dddddd;
}

.theme-dark .content-block-title {
    color: #ffffff;
}

.theme-dark .content-block,
.content-block.theme-dark {
    color: #bbbbbb;
}

.theme-dark .content-block-inner {
    background: #1c1d1f;
    color: #dddddd;
    border-left-color: #393939;
    border-top-color: #393939;
    border-right-color: #393939;
    border-bottom-color: #393939;
}

.theme-dark .list-block ul,
.list-block.theme-dark ul {
    background: #1c1d1f;
    border-left-color: #393939;
    border-top-color: #393939;
    border-right-color: #393939;
    border-bottom-color: #393939;
}

.theme-dark .list-block.inset ul,
.list-block.theme-dark.inset ul {
    background: #1c1d1f;
}

.theme-dark .list-block.notifications > ul,
.list-block.theme-dark.notifications > ul {
    background: none;
}

.theme-dark .list-block .item-title,
.list-block.theme-dark .item-title,
.theme-dark .list-block .item-subtitle,
.list-block.theme-dark .item-subtitle {
    color: #bbbbbb;
}

.theme-dark .card {
    background: #1c1d1f;
}

.theme-dark .card-header {
    border-right-color: #393939;
    border-bottom-color: #393939;
}

.theme-dark .card-footer {
    border-left-color: #393939;
    border-top-color: #393939;
    color: #bbbbbb;
}

.theme-dark .popover,
.popover.theme-dark {
    background: rgba(0, 0, 0, 0.8);
}

.theme-dark .popover .popover-angle:after,
.popover.theme-dark .popover-angle:after {
    background: rgba(0, 0, 0, 0.8);
}

.theme-dark .popover .list-block ul,
.popover.theme-dark .list-block ul {
    background: none;
}

.theme-dark .actions-popover .list-block ul {
    border-left-color: #393939;
    border-top-color: #393939;
    border-right-color: #393939;
    border-bottom-color: #393939;
}

.theme-dark .actions-popover .actions-popover-label {
    border-right-color: #393939;
    border-bottom-color: #393939;
}

.theme-dark li.sorting {
    background-color: #29292f;
}

.theme-dark .swipeout-actions-left a,
.theme-dark .swipeout-actions-right a {
    background-color: #444444;
}

.theme-dark .item-inner,
.theme-dark .list-block ul ul li:last-child .item-inner {
    border-right-color: #393939;
    border-bottom-color: #393939;
}

.theme-dark .item-after {
    color: #bbbbbb;
}

html:not(.watch-active-state) .theme-dark .item-link:active,
html:not(.watch-active-state) .theme-dark label.label-checkbox:active,
html:not(.watch-active-state) .theme-dark label.label-radio:active,
.theme-dark .item-link.active-state,
.theme-dark label.label-checkbox.active-state,
.theme-dark label.label-radio.active-state {
    background-color: #29292f;
}

.theme-dark .item-link.list-button {
    border-right-color: #393939;
    border-bottom-color: #393939;
}

.theme-dark .list-block-label {
    color: #bbbbbb;
}

.theme-dark .item-divider,
.theme-dark .list-group-title {
    background: #1a1a1a;
    color: #bbbbbb;
    border-left-color: #393939;
    border-top-color: #393939;
}

.theme-dark .searchbar {
    background: #333333;
    border-right-color: #333333;
    border-bottom-color: #333333;
}

.theme-dark .list-block input[type="text"],
.list-block.theme-dark input[type="text"],
.theme-dark .list-block input[type="password"],
.list-block.theme-dark input[type="password"],
.theme-dark .list-block input[type="email"],
.list-block.theme-dark input[type="email"],
.theme-dark .list-block input[type="tel"],
.list-block.theme-dark input[type="tel"],
.theme-dark .list-block input[type="url"],
.list-block.theme-dark input[type="url"],
.theme-dark .list-block input[type="date"],
.list-block.theme-dark input[type="date"],
.theme-dark .list-block input[type="datetime-local"],
.list-block.theme-dark input[type="datetime-local"],
.theme-dark .list-block input[type="number"],
.list-block.theme-dark input[type="number"],
.theme-dark .list-block select,
.list-block.theme-dark select,
.theme-dark .list-block textarea,
.list-block.theme-dark textarea {
    color: #ffffff;
}

.theme-dark .label-switch .checkbox {
    background-color: #393939;
}

.theme-dark .label-switch .checkbox:before {
    background-color: #1c1d1f;
}

.theme-dark .range-slider input[type="range"]:after {
    background: #1c1d1f;
}

.theme-dark .buttons-tab {
    background: #131313;
}

.theme-dark .buttons-tab .tab-link:not(.active) {
    color: #dddddd;
}

.theme-dark .popup,
.theme-dark.popup {
    background: #222426;
}

/* === White layout === */
.theme-white .navbar,
.navbar.theme-white,
.theme-white .subnavbar,
.subnavbar.theme-white {
    border-right-color: #dddddd;
    border-bottom-color: #dddddd;
    background-color: #ffffff;
    color: #000000;
}

.theme-white .toolbar,
.toolbar.theme-white {
    border-left-color: #dddddd;
    border-top-color: #dddddd;
    background-color: #ffffff;
    color: #000000;
}

.theme-white .popover .picker-modal .picker-center-highlight,
.theme-white .picker-modal.picker-modal-inline .picker-center-highlight {
    border-left-color: #dddddd;
    border-top-color: #dddddd;
    border-right-color: #dddddd;
    border-bottom-color: #dddddd;
}

.theme-white .popover .picker-modal .picker-calendar-week-days,
.theme-white .picker-modal.picker-modal-inline .picker-calendar-week-days,
.theme-white .popover .picker-modal .picker-calendar-row,
.theme-white .picker-modal.picker-modal-inline .picker-calendar-row {
    border-right-color: #dddddd;
    border-bottom-color: #dddddd;
}

.theme-white .popover .picker-modal .toolbar ~ .picker-modal-inner .picker-calendar-months,
.theme-white .picker-modal.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months,
.theme-white .popover .picker-modal .picker-calendar-week-days ~ .picker-calendar-months,
.theme-white .picker-modal.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months {
    border-left-color: #dddddd;
    border-top-color: #dddddd;
}

.theme-white .popover .picker-modal .toolbar {
    border-right-color: #dddddd;
    border-bottom-color: #dddddd;
}

.theme-white .photo-browser .navbar,
.photo-browser.theme-white .navbar,
.theme-white .view[data-page="photo-browser-slides"] .navbar,
.view[data-page="photo-browser-slides"].theme-white .navbar,
.theme-white .photo-browser .toolbar,
.photo-browser.theme-white .toolbar,
.theme-white .view[data-page="photo-browser-slides"] .toolbar,
.view[data-page="photo-browser-slides"].theme-white .toolbar {
    background: rgba(255, 255, 255, 0.95);
}

.theme-white .tabbar a:not(.active) {
    color: #777777;
}

.theme-white .page,
.theme-white .login-screen-content,
.page.theme-white,
.theme-white .panel,
.panel.theme-white {
    background-color: #ffffff;
    color: #000000;
}

.theme-white .content-block-title {
    color: #777777;
}

.theme-white .content-block,
.content-block.theme-white {
    color: #777777;
}

.theme-white .content-block-inner {
    background: #fafafa;
    color: #000000;
    border-right-color: #dddddd;
    border-bottom-color: #dddddd;
    border-left-color: #dddddd;
    border-top-color: #dddddd;
}

.theme-white .list-block ul,
.list-block.theme-white ul {
    background: #ffffff;
    border-right-color: #dddddd;
    border-bottom-color: #dddddd;
    border-left-color: #dddddd;
    border-top-color: #dddddd;
}

.theme-white .list-block.inset ul,
.list-block.theme-white.inset ul {
    background: #fafafa;
}

.theme-white .list-block.notifications > ul,
.list-block.theme-white.notifications > ul {
    background: none;
}

.theme-white .popover-inner > .list-block ul {
    background: none;
}

.theme-white li.sorting {
    background-color: #eeeeee;
}

.theme-white .swipeout-actions-left a,
.theme-white .swipeout-actions-right a {
    background-color: #c7c7cc;
}

.theme-white .item-inner,
.theme-white .list-block ul ul li:last-child .item-inner {
    border-color: #dddddd;
    border-right-color: #dddddd;
    border-bottom-color: #dddddd;
}

.theme-white .item-after {
    color: #8e8e93;
}

html:not(.watch-active-state) .theme-white .item-link:active,
html:not(.watch-active-state) .theme-white label.label-checkbox:active,
html:not(.watch-active-state) .theme-white label.label-radio:active,
.theme-white .item-link.active-state,
.theme-white label.label-checkbox.active-state,
.theme-white label.label-radio.active-state {
    background-color: #eeeeee;
}

.theme-white .item-link.list-button {
    border-right-color: #dddddd;
    border-bottom-color: #dddddd;
}

.theme-white .list-block-label {
    color: #777777;
}

.theme-white .item-divider,
.theme-white .list-group-title {
    background: #f7f7f7;
    color: #777777;
    border-left-color: #dddddd;
    border-top-color: #dddddd;
}

.theme-white .searchbar {
    background: #c9c9ce;
    border-right-color: #b4b4b4;
    border-bottom-color: #b4b4b4;
}

.theme-white .list-block input[type="text"],
.list-block.theme-white input[type="text"],
.theme-white .list-block input[type="password"],
.list-block.theme-white input[type="password"],
.theme-white .list-block input[type="email"],
.list-block.theme-white input[type="email"],
.theme-white .list-block input[type="tel"],
.list-block.theme-white input[type="tel"],
.theme-white .list-block input[type="url"],
.list-block.theme-white input[type="url"],
.theme-white .list-block input[type="date"],
.list-block.theme-white input[type="date"],
.theme-white .list-block input[type="datetime-local"],
.list-block.theme-white input[type="datetime-local"],
.theme-white .list-block input[type="number"],
.list-block.theme-white input[type="number"],
.theme-white .list-block select,
.list-block.theme-white select,
.theme-white .list-block textarea,
.list-block.theme-white textarea {
    color: #777777;
}

.theme-white .label-switch .checkbox {
    background-color: #e5e5e5;
}

.theme-white .label-switch .checkbox:before {
    background-color: #ffffff;
}

.theme-white .range-slider input[type="range"]:after {
    background: #ffffff;
}

/* === Color Themes === */
.theme-green .button:not(.button-fill) {
    border-color: #3cac46;
    color: #3cac46;
}

.theme-green .button:not(.button-fill):active {
    background-color: rgba(60, 172, 70, 0.15);
}

.theme-green .button:not(.button-fill).active {
    background-color: #3cac46;
    color: #fff;
}

.theme-green .button:not(.button-fill).button-light {
    border-color: #cccccc;
    color: #cccccc;
    color: #5f646e;
}

.theme-green .button:not(.button-fill).button-light:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-green .button:not(.button-fill).button-light.button-fill {
    color: white;
    background-color: #cccccc;
}

.theme-green .button:not(.button-fill).button-light.button-fill:active {
    background-color: #0a8ddf;
}

.theme-green .button:not(.button-fill).button-dark {
    border-color: #6e727b;
    color: #6e727b;
    color: #5f646e;
}

.theme-green .button:not(.button-fill).button-dark:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-green .button:not(.button-fill).button-dark.button-fill {
    color: white;
    background-color: #6e727b;
}

.theme-green .button:not(.button-fill).button-dark.button-fill:active {
    background-color: #0a8ddf;
}

.theme-green .button:not(.button-fill).button-success {
    border-color: #4cd964;
    color: #4cd964;
}

.theme-green .button:not(.button-fill).button-success:active {
    border-color: #2ac845;
    color: #2ac845;
}

.theme-green .button:not(.button-fill).button-success.button-fill {
    color: white;
    background-color: #4cd964;
}

.theme-green .button:not(.button-fill).button-success.button-fill:active {
    background-color: #2ac845;
}

.theme-green .button:not(.button-fill).button-danger {
    border-color: #f6383a;
    color: #f6383a;
}

.theme-green .button:not(.button-fill).button-danger:active {
    border-color: #f00b0d;
    color: #f00b0d;
}

.theme-green .button:not(.button-fill).button-danger.button-fill {
    color: white;
    background-color: #f6383a;
}

.theme-green .button:not(.button-fill).button-danger.button-fill:active {
    background-color: #f00b0d;
}

.theme-green .button:not(.button-fill).button-warning {
    border-color: #ff6600;
    color: #ff6600;
}

.theme-green .button:not(.button-fill).button-warning:active {
    border-color: #cc5200;
    color: #cc5200;
}

.theme-green .button:not(.button-fill).button-warning.button-fill {
    color: white;
    background-color: #ff6600;
}

.theme-green .button:not(.button-fill).button-warning.button-fill:active {
    background-color: #cc5200;
}

.theme-green .button.button-fill {
    background: #3cac46;
    color: #fff;
}

.theme-green .button.button-fill.button-light {
    border-color: #cccccc;
    color: #cccccc;
    color: #5f646e;
}

.theme-green .button.button-fill.button-light:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-green .button.button-fill.button-light.button-fill {
    color: white;
    background-color: #cccccc;
}

.theme-green .button.button-fill.button-light.button-fill:active {
    background-color: #0a8ddf;
}

.theme-green .button.button-fill.button-dark {
    border-color: #6e727b;
    color: #6e727b;
    color: #5f646e;
}

.theme-green .button.button-fill.button-dark:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-green .button.button-fill.button-dark.button-fill {
    color: white;
    background-color: #6e727b;
}

.theme-green .button.button-fill.button-dark.button-fill:active {
    background-color: #0a8ddf;
}

.theme-green .button.button-fill.button-success {
    border-color: #4cd964;
    color: #4cd964;
}

.theme-green .button.button-fill.button-success:active {
    border-color: #2ac845;
    color: #2ac845;
}

.theme-green .button.button-fill.button-success.button-fill {
    color: white;
    background-color: #4cd964;
}

.theme-green .button.button-fill.button-success.button-fill:active {
    background-color: #2ac845;
}

.theme-green .button.button-fill.button-danger {
    border-color: #f6383a;
    color: #f6383a;
}

.theme-green .button.button-fill.button-danger:active {
    border-color: #f00b0d;
    color: #f00b0d;
}

.theme-green .button.button-fill.button-danger.button-fill {
    color: white;
    background-color: #f6383a;
}

.theme-green .button.button-fill.button-danger.button-fill:active {
    background-color: #f00b0d;
}

.theme-green .button.button-fill.button-warning {
    border-color: #ff6600;
    color: #ff6600;
}

.theme-green .button.button-fill.button-warning:active {
    border-color: #cc5200;
    color: #cc5200;
}

.theme-green .button.button-fill.button-warning.button-fill {
    color: white;
    background-color: #ff6600;
}

.theme-green .button.button-fill.button-warning.button-fill:active {
    background-color: #cc5200;
}

.theme-green i.icon,
i.icon.theme-green {
    color: #3cac46;
}

.theme-green a,
.theme-green .item-link.list-button {
    color: #3cac46;
}

.bar.theme-green a,
.bar.theme-green a i {
    color: inherit;
}

.bar.theme-green a.active,
.bar.theme-green a.active i {
    color: #3cac46;
}

.theme-green .tab-item.active {
    color: #3cac46;
}

.theme-green .range-slider input[type="range"]::-webkit-slider-thumb:before,
.range-slider.theme-green input[type="range"]::-webkit-slider-thumb:before {
    background-color: #3cac46;
}

.theme-green .picker-calendar-day.picker-calendar-day-selected span {
    background-color: #3cac46 !important;
}

.theme-green .buttons-tab:after {
    background: #3cac46;
}

.theme-green .modal-button {
    color: #3cac46;
}

.theme-green .actions-modal-button:not(.color-danger):not(.bg-danger) {
    color: #3cac46;
}

.theme-green .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #3cac46;
}

.theme-green .swiper-button-next,
.theme-green .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%233cac46'%2F%3E%3C%2Fsvg%3E");
}

.theme-green .swiper-button-prev,
.theme-green .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%233cac46'%2F%3E%3C%2Fsvg%3E");
}

.theme-pink .button:not(.button-fill) {
    border-color: #d94b73;
    color: #d94b73;
}

.theme-pink .button:not(.button-fill):active {
    background-color: rgba(217, 75, 115, 0.15);
}

.theme-pink .button:not(.button-fill).active {
    background-color: #d94b73;
    color: #fff;
}

.theme-pink .button:not(.button-fill).button-light {
    border-color: #cccccc;
    color: #cccccc;
    color: #5f646e;
}

.theme-pink .button:not(.button-fill).button-light:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-pink .button:not(.button-fill).button-light.button-fill {
    color: white;
    background-color: #cccccc;
}

.theme-pink .button:not(.button-fill).button-light.button-fill:active {
    background-color: #0a8ddf;
}

.theme-pink .button:not(.button-fill).button-dark {
    border-color: #6e727b;
    color: #6e727b;
    color: #5f646e;
}

.theme-pink .button:not(.button-fill).button-dark:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-pink .button:not(.button-fill).button-dark.button-fill {
    color: white;
    background-color: #6e727b;
}

.theme-pink .button:not(.button-fill).button-dark.button-fill:active {
    background-color: #0a8ddf;
}

.theme-pink .button:not(.button-fill).button-success {
    border-color: #4cd964;
    color: #4cd964;
}

.theme-pink .button:not(.button-fill).button-success:active {
    border-color: #2ac845;
    color: #2ac845;
}

.theme-pink .button:not(.button-fill).button-success.button-fill {
    color: white;
    background-color: #4cd964;
}

.theme-pink .button:not(.button-fill).button-success.button-fill:active {
    background-color: #2ac845;
}

.theme-pink .button:not(.button-fill).button-danger {
    border-color: #f6383a;
    color: #f6383a;
}

.theme-pink .button:not(.button-fill).button-danger:active {
    border-color: #f00b0d;
    color: #f00b0d;
}

.theme-pink .button:not(.button-fill).button-danger.button-fill {
    color: white;
    background-color: #f6383a;
}

.theme-pink .button:not(.button-fill).button-danger.button-fill:active {
    background-color: #f00b0d;
}

.theme-pink .button:not(.button-fill).button-warning {
    border-color: #ff6600;
    color: #ff6600;
}

.theme-pink .button:not(.button-fill).button-warning:active {
    border-color: #cc5200;
    color: #cc5200;
}

.theme-pink .button:not(.button-fill).button-warning.button-fill {
    color: white;
    background-color: #ff6600;
}

.theme-pink .button:not(.button-fill).button-warning.button-fill:active {
    background-color: #cc5200;
}

.theme-pink .button.button-fill {
    background: #d94b73;
    color: #fff;
}

.theme-pink .button.button-fill.button-light {
    border-color: #cccccc;
    color: #cccccc;
    color: #5f646e;
}

.theme-pink .button.button-fill.button-light:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-pink .button.button-fill.button-light.button-fill {
    color: white;
    background-color: #cccccc;
}

.theme-pink .button.button-fill.button-light.button-fill:active {
    background-color: #0a8ddf;
}

.theme-pink .button.button-fill.button-dark {
    border-color: #6e727b;
    color: #6e727b;
    color: #5f646e;
}

.theme-pink .button.button-fill.button-dark:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-pink .button.button-fill.button-dark.button-fill {
    color: white;
    background-color: #6e727b;
}

.theme-pink .button.button-fill.button-dark.button-fill:active {
    background-color: #0a8ddf;
}

.theme-pink .button.button-fill.button-success {
    border-color: #4cd964;
    color: #4cd964;
}

.theme-pink .button.button-fill.button-success:active {
    border-color: #2ac845;
    color: #2ac845;
}

.theme-pink .button.button-fill.button-success.button-fill {
    color: white;
    background-color: #4cd964;
}

.theme-pink .button.button-fill.button-success.button-fill:active {
    background-color: #2ac845;
}

.theme-pink .button.button-fill.button-danger {
    border-color: #f6383a;
    color: #f6383a;
}

.theme-pink .button.button-fill.button-danger:active {
    border-color: #f00b0d;
    color: #f00b0d;
}

.theme-pink .button.button-fill.button-danger.button-fill {
    color: white;
    background-color: #f6383a;
}

.theme-pink .button.button-fill.button-danger.button-fill:active {
    background-color: #f00b0d;
}

.theme-pink .button.button-fill.button-warning {
    border-color: #ff6600;
    color: #ff6600;
}

.theme-pink .button.button-fill.button-warning:active {
    border-color: #cc5200;
    color: #cc5200;
}

.theme-pink .button.button-fill.button-warning.button-fill {
    color: white;
    background-color: #ff6600;
}

.theme-pink .button.button-fill.button-warning.button-fill:active {
    background-color: #cc5200;
}

.theme-pink i.icon,
i.icon.theme-pink {
    color: #d94b73;
}

.theme-pink a,
.theme-pink .item-link.list-button {
    color: #d94b73;
}

.bar.theme-pink a,
.bar.theme-pink a i {
    color: inherit;
}

.bar.theme-pink a.active,
.bar.theme-pink a.active i {
    color: #d94b73;
}

.theme-pink .tab-item.active {
    color: #d94b73;
}

.theme-pink .range-slider input[type="range"]::-webkit-slider-thumb:before,
.range-slider.theme-pink input[type="range"]::-webkit-slider-thumb:before {
    background-color: #d94b73;
}

.theme-pink .picker-calendar-day.picker-calendar-day-selected span {
    background-color: #d94b73 !important;
}

.theme-pink .buttons-tab:after {
    background: #d94b73;
}

.theme-pink .modal-button {
    color: #d94b73;
}

.theme-pink .actions-modal-button:not(.color-danger):not(.bg-danger) {
    color: #d94b73;
}

.theme-pink .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d94b73;
}

.theme-pink .swiper-button-next,
.theme-pink .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d94b73'%2F%3E%3C%2Fsvg%3E");
}

.theme-pink .swiper-button-prev,
.theme-pink .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d94b73'%2F%3E%3C%2Fsvg%3E");
}

.theme-yellow .button:not(.button-fill) {
    border-color: #efb51e;
    color: #efb51e;
}

.theme-yellow .button:not(.button-fill):active {
    background-color: rgba(239, 181, 30, 0.15);
}

.theme-yellow .button:not(.button-fill).active {
    background-color: #efb51e;
    color: #fff;
}

.theme-yellow .button:not(.button-fill).button-light {
    border-color: #cccccc;
    color: #cccccc;
    color: #5f646e;
}

.theme-yellow .button:not(.button-fill).button-light:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-yellow .button:not(.button-fill).button-light.button-fill {
    color: white;
    background-color: #cccccc;
}

.theme-yellow .button:not(.button-fill).button-light.button-fill:active {
    background-color: #0a8ddf;
}

.theme-yellow .button:not(.button-fill).button-dark {
    border-color: #6e727b;
    color: #6e727b;
    color: #5f646e;
}

.theme-yellow .button:not(.button-fill).button-dark:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-yellow .button:not(.button-fill).button-dark.button-fill {
    color: white;
    background-color: #6e727b;
}

.theme-yellow .button:not(.button-fill).button-dark.button-fill:active {
    background-color: #0a8ddf;
}

.theme-yellow .button:not(.button-fill).button-success {
    border-color: #4cd964;
    color: #4cd964;
}

.theme-yellow .button:not(.button-fill).button-success:active {
    border-color: #2ac845;
    color: #2ac845;
}

.theme-yellow .button:not(.button-fill).button-success.button-fill {
    color: white;
    background-color: #4cd964;
}

.theme-yellow .button:not(.button-fill).button-success.button-fill:active {
    background-color: #2ac845;
}

.theme-yellow .button:not(.button-fill).button-danger {
    border-color: #f6383a;
    color: #f6383a;
}

.theme-yellow .button:not(.button-fill).button-danger:active {
    border-color: #f00b0d;
    color: #f00b0d;
}

.theme-yellow .button:not(.button-fill).button-danger.button-fill {
    color: white;
    background-color: #f6383a;
}

.theme-yellow .button:not(.button-fill).button-danger.button-fill:active {
    background-color: #f00b0d;
}

.theme-yellow .button:not(.button-fill).button-warning {
    border-color: #ff6600;
    color: #ff6600;
}

.theme-yellow .button:not(.button-fill).button-warning:active {
    border-color: #cc5200;
    color: #cc5200;
}

.theme-yellow .button:not(.button-fill).button-warning.button-fill {
    color: white;
    background-color: #ff6600;
}

.theme-yellow .button:not(.button-fill).button-warning.button-fill:active {
    background-color: #cc5200;
}

.theme-yellow .button.button-fill {
    background: #efb51e;
    color: #fff;
}

.theme-yellow .button.button-fill.button-light {
    border-color: #cccccc;
    color: #cccccc;
    color: #5f646e;
}

.theme-yellow .button.button-fill.button-light:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-yellow .button.button-fill.button-light.button-fill {
    color: white;
    background-color: #cccccc;
}

.theme-yellow .button.button-fill.button-light.button-fill:active {
    background-color: #0a8ddf;
}

.theme-yellow .button.button-fill.button-dark {
    border-color: #6e727b;
    color: #6e727b;
    color: #5f646e;
}

.theme-yellow .button.button-fill.button-dark:active {
    border-color: #0a8ddf;
    color: #0a8ddf;
}

.theme-yellow .button.button-fill.button-dark.button-fill {
    color: white;
    background-color: #6e727b;
}

.theme-yellow .button.button-fill.button-dark.button-fill:active {
    background-color: #0a8ddf;
}

.theme-yellow .button.button-fill.button-success {
    border-color: #4cd964;
    color: #4cd964;
}

.theme-yellow .button.button-fill.button-success:active {
    border-color: #2ac845;
    color: #2ac845;
}

.theme-yellow .button.button-fill.button-success.button-fill {
    color: white;
    background-color: #4cd964;
}

.theme-yellow .button.button-fill.button-success.button-fill:active {
    background-color: #2ac845;
}

.theme-yellow .button.button-fill.button-danger {
    border-color: #f6383a;
    color: #f6383a;
}

.theme-yellow .button.button-fill.button-danger:active {
    border-color: #f00b0d;
    color: #f00b0d;
}

.theme-yellow .button.button-fill.button-danger.button-fill {
    color: white;
    background-color: #f6383a;
}

.theme-yellow .button.button-fill.button-danger.button-fill:active {
    background-color: #f00b0d;
}

.theme-yellow .button.button-fill.button-warning {
    border-color: #ff6600;
    color: #ff6600;
}

.theme-yellow .button.button-fill.button-warning:active {
    border-color: #cc5200;
    color: #cc5200;
}

.theme-yellow .button.button-fill.button-warning.button-fill {
    color: white;
    background-color: #ff6600;
}

.theme-yellow .button.button-fill.button-warning.button-fill:active {
    background-color: #cc5200;
}

.theme-yellow i.icon,
i.icon.theme-yellow {
    color: #efb51e;
}

.theme-yellow a,
.theme-yellow .item-link.list-button {
    color: #efb51e;
}

.bar.theme-yellow a,
.bar.theme-yellow a i {
    color: inherit;
}

.bar.theme-yellow a.active,
.bar.theme-yellow a.active i {
    color: #efb51e;
}

.theme-yellow .tab-item.active {
    color: #efb51e;
}

.theme-yellow .range-slider input[type="range"]::-webkit-slider-thumb:before,
.range-slider.theme-yellow input[type="range"]::-webkit-slider-thumb:before {
    background-color: #efb51e;
}

.theme-yellow .picker-calendar-day.picker-calendar-day-selected span {
    background-color: #efb51e !important;
}

.theme-yellow .buttons-tab:after {
    background: #efb51e;
}

.theme-yellow .modal-button {
    color: #efb51e;
}

.theme-yellow .actions-modal-button:not(.color-danger):not(.bg-danger) {
    color: #efb51e;
}

.theme-yellow .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #efb51e;
}

.theme-yellow .swiper-button-next,
.theme-yellow .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23efb51e'%2F%3E%3C%2Fsvg%3E");
}

.theme-yellow .swiper-button-prev,
.theme-yellow .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23efb51e'%2F%3E%3C%2Fsvg%3E");
}

/* === Photo Browser === */
.photo-browser {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10500;
}

.photo-browser .bar-tab .tab-item .icon {
    width: 14px;
    height: 14px;
    margin-top: -5px;
}

.photo-browser .bar-tab ~ .photo-browser-captions {
    bottom: 52px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.photo-browser.photo-browser-in {
    display: block;
    animation: photoBrowserIn 400ms forwards;
}

.photo-browser.photo-browser-out {
    display: block;
    animation: photoBrowserOut 400ms forwards;
}

html.with-statusbar-overlay .photo-browser {
    height: -webkit-calc(100% - 1rem);
    height: calc(100% - 1rem);
    top: 1rem;
}

.popup > .photo-browser .navbar,
body > .photo-browser .navbar,
.popup > .photo-browser .toolbar,
body > .photo-browser .toolbar {
    transform: translate3d(0, 0, 0);
}

.photo-browser .page[data-page="photo-browser-slides"] {
    background: none;
}

.photo-browser .page {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #efeff4;
}

.photo-browser .view {
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5000;
}

.page[data-page="photo-browser-slides"] .toolbar a {
    color: #4cd964;
}

.photo-browser-popup {
    background: none;
}

.photo-browser .navbar,
.view[data-page="photo-browser-slides"] .navbar,
.photo-browser .toolbar,
.view[data-page="photo-browser-slides"] .toolbar {
    background: rgba(247, 247, 247, 0.95);
    transition: 400ms;
}

.view[data-page="photo-browser-slides"] .page[data-page="photo-browser-slides"] .navbar,
.view[data-page="photo-browser-slides"] .page[data-page="photo-browser-slides"] .toolbar {
    transform: translate3d(0, 0, 0);
}

.photo-browser-exposed .navbar,
.photo-browser-exposed .toolbar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.photo-browser-exposed .photo-browser-swiper-container {
    background: #000;
}

.photo-browser-of {
    margin: 0 0.25rem;
}

.photo-browser-captions {
    pointer-events: none;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 10;
    opacity: 1;
    transition: 400ms;
}

.photo-browser-captions.photo-browser-captions-exposed {
    opacity: 0;
}

.toolbar ~ .photo-browser-captions {
    bottom: 2.2rem;
    transform: translate3d(0, 0rem, 0);
}

.photo-browser-exposed .toolbar ~ .photo-browser-captions {
    transform: translate3d(0, 2.2rem, 0);
}

.toolbar ~ .photo-browser-captions.photo-browser-captions-exposed {
    transformt: ranslate3d(0, 0rem, 0);
}

.photo-browser-caption {
    box-sizing: border-box;
    transition: 300ms;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    padding: 0.2rem 0.25px;
    width: 100%;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
}

.photo-browser-caption:empty {
    display: none;
}

.photo-browser-caption.photo-browser-caption-active {
    opacity: 1;
}

.photo-browser-captions-light .photo-browser-caption {
    background: rgba(255, 255, 255, 0.8);
    color: #3d4145;
}

.photo-browser-exposed .photo-browser-caption {
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
}

.photo-browser-swiper-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    transition: 400ms;
}

.photo-browser-swiper-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
}

.photo-browser-link-inactive {
    opacity: 0.3;
}

.photo-browser-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.photo-browser-slide.transitioning {
    transition: 400ms;
}

.photo-browser-slide span.photo-browser-zoom-container {
    width: 100%;
    text-align: center;
    display: none;
}

.photo-browser-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: none;
}

.photo-browser-slide.swiper-slide-active span.photo-browser-zoom-container,
.photo-browser-slide.swiper-slide-next span.photo-browser-zoom-container,
.photo-browser-slide.swiper-slide-prev span.photo-browser-zoom-container {
    display: block;
}

.photo-browser-slide.swiper-slide-active img,
.photo-browser-slide.swiper-slide-next img,
.photo-browser-slide.swiper-slide-prev img {
    display: inline;
}

.photo-browser-slide.swiper-slide-active.photo-browser-slide-lazy .preloader,
.photo-browser-slide.swiper-slide-next.photo-browser-slide-lazy .preloader,
.photo-browser-slide.swiper-slide-prev.photo-browser-slide-lazy .preloader {
    display: block;
}

.photo-browser-slide iframe {
    width: 100%;
    height: 100%;
}

.photo-browser-slide .preloader {
    display: none;
    position: absolute;
    width: 2.1rem;
    height: 2.1rem;
    margin-left: -2.1rem;
    margin-top: -2.1rem;
    left: 50%;
    top: 50%;
}

.photo-browser-dark .navbar,
.photo-browser-dark .toolbar {
    background: rgba(30, 30, 30, 0.8);
    color: #fff;
}

.photo-browser-dark .navbar:before,
.photo-browser-dark .toolbar:before {
    display: none;
}

.photo-browser-dark .navbar:after,
.photo-browser-dark .toolbar:after {
    display: none;
}

.photo-browser-dark .navbar a,
.photo-browser-dark .toolbar a {
    color: #fff;
}

.photo-browser-dark .photo-browser-swiper-container {
    background: #000;
}

@keyframes photoBrowserIn {
    0% {
        transform: translate3d(0, 0, 0) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes photoBrowserOut {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0) scale(0.5);
        opacity: 0;
    }
}

/**
 * Created by 濠峰┓ on 2016/4/6.
 */
.block-logo {
    padding: 40px 0 20px 0;
}

.block-logo img {
    width: 90%;
}

.block-forgot {
    margin: 6px 0;
}

.block-forgot a {
    color: #999999 !important;
    font-size: 0.6rem;
}

.block-otheraccount .oa-title {
    border-top: 1px solid #cccccc;
}

.block-otheraccount .oa-title span {
    position: relative;
    top: -14px;
    padding: 0 6px;
    color: #999999;
    font-size: 18px;
    background: #eeeeee;
}

.block-otheraccount img {
    margin-top: 12px;
    max-width: 25px;
    max-height: 25px;
}

.list-block img {
    margin: 0 auto;
    max-width: 3rem;
    max-height: 3rem;
}

.xx-item-media img {
    margin: 0 auto;
    max-width: 50px;
    max-height: 50px;
}

.list-block .list-block-label {
    margin: 0.5rem 0 1.75rem !important;
}

.list-block span {
    margin-left: 8px;
    color: #999999;
}

.img-show img {
    max-width: 100%;
}

.img-middle {
    margin: 40px 0;
}

.img-middle img {
    max-width: 90%;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.content-block-title-nohidden {
    position: relative;
    margin: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    line-height: 1.5;
    color: #6d6d72;
    margin: 1.75rem 0.75rem 0.5rem;
}

.content-read {
    margin: 1.75rem 0.75rem 0.5rem;
}

.content-read img {
    width: 100%;
    margin-bottom: 0.5rem;
}

.waterfall ul {
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
}

.waterfall ul li {
    position: relative;
    list-style: none;
    margin-bottom: 0.5rem;
}

.waterfall ul li div {
    /*max-height: 15rem;*/
    overflow: hidden;
}

.waterfall ul li div img {
    vertical-align: bottom;
    width: 100%;
}

/* .waterfall ul li div span {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 100%;
    padding: 0.2rem;
    background: rgba(0, 0, 0, 0.4);
} */
.waterfall ul li div span a {
    margin-right: 0.1rem;
    color: #fff;
    font-size: 0.6rem;
}

.waterfall ul li div span a i {
    margin-right: 0.1rem;
}

.waterfall .ul-left {
    padding-right: 0.25rem;
}

.waterfall .ul-right {
    padding-left: 0.25rem;
}

.figure-list {
    margin: 0 auto;
    padding: 0;
}

.figure-list li {
    list-style: none;
    float: left;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
}

.figure-list li:last-child {
    margin-right: 0;
}

.figure-list figure {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding-bottom: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.figure-list figure a {
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
}

.figure-list:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.list-upload {
    width: 100%;
}

.list-upload .tab-item {
    display: table-cell;
    width: 1%;
    text-align: center;
    vertical-align: middle;
}

.list-upload .tab-item img {
    vertical-align: middle;
}

.list-upload .tab-item .item-file {
    position: relative;
}

.list-upload .tab-item input[type='file'] {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.title-bottom-small {
    font-weight: normal;
    margin: 0 0 0.2rem !important;
    padding: 0 !important;
}

.title-top-clean {
    font-weight: normal;
    margin-top: 0.2rem !important;
}

.img-full {
    max-width: 100% !important;
}

.box-max-height {
    max-height: 120px;
    overflow: scroll;
}

.margin-center {
    margin: 0 auto;
}

.list-lg {
    line-height: 200%;
    font-size: 0.8rem;
    color: #5f646e;
}

.list-lg > .button {
    margin: 10px 0;
}

.list-lg span {
    padding-right: 0.5rem;
    color: #999999;
}

.list-lg small {
    color: #999999;
}

.list-lg h1,
.list-lg h2,
.list-lg h3,
.list-lg h4,
.list-lg h5,
.list-lg h6 {
    padding: 0;
    margin: 0.1rem;
    color: #5f646e;
}

.card-midline {
    padding: 0.1rem 0.75rem;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.table-border {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.table-border td {
    border: 1px solid #cccccc;
    line-height: 150%;
}

.button-full {
    width: 100% !important;
}

.button-s {
    display: inline-block;
    font-size: 0.6rem;
}

.bar-header-still {
    padding-top: 10px;
    padding-bottom: 10px;
    top: 2.2rem;
    height: auto !important;
    border: none;
}

.bar-header-still-margin {
    margin-top: 60px;
}

.bar-input {
    bottom: 0;
    width: 100%;
    height: 2.5rem;
    padding: 0;
    table-layout: fixed;
    border-top: 1px solid #e7e7e7;
    border-left: 0;
    border-bottom: 0;
}

.bar-input .wrap {
    width: 100%;
    display: -moz-box;
    display: -webkit-box;
    display: box;
}

.bar-input .wrap .input-item {
    display: -webkit-box;
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    box-flex: 1;
    height: 2.5rem;
    padding-left: 0.5rem;
    color: #929292;
    text-align: left;
    vertical-align: middle;
    border: 0;
}

.bar-input .wrap .button-item {
    display: box;
    width: 4rem;
    top: 0;
    height: 2.5rem;
    border-radius: 0;
}

.tip {
    font-size: 0.6rem;
}

.item-check .item-inner {
    padding-right: 1.5rem;
    background-image: url("../img/chk_uncheck.png");
    background-size: 1rem;
    background-repeat: no-repeat;
    background-position: 97% center;
}

.item-check .active {
    background-image: url("../img/chk_check.png");
}

.chapter {
    position: relative;
}

.chapter-ebaoquan {
    display: block;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 1000;
}

.chapter-ebaoquan img {
    width: 5rem;
}

.item-check .item-inner {
    padding-right: 1.5rem;
    background-image: url("../img/chk_uncheck.png");
    background-size: 1rem;
    background-repeat: no-repeat;
    background-position: 97% center;
}

.item-check .active {
    background-image: url("../img/chk_check.png");
}

.demo-msg {
    position: absolute;
    bottom: 0;
    text-align: center;
}

.demo-msg img {
    width: 70%;
}

/**
 * Created by 鍚戞伜闇�on 2016/4/12.
 */
.indent {
    text-indent: 2em;
}

.text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.middle {
    vertical-align: middle;
}

.color-white {
    color: #ffffff;
}


.bg-color-blue {
    background-color: #2692D5;
}

.icon-funnel:before {
    content: "\e905";
}

.div-logo {
    display: inline-block;
    margin-top: 0.3rem !important;
}

.div-logo img {
    height: 1.6rem;
}

span.unhappyMessage {
    margin-left: 15px;
    color: #f6383a;
}

.block-up {
    display: inline-block;
    height: 80px;
    width: 80px;
    padding: 16px 10px 10px 10px;
    border-radius: 50%;
    border: 2px solid #989898;
    color: #989898;
    font-size: 14px;
    font-weight: bold;
}

.block-up-active {
    display: inline-block;
    height: 80px;
    width: 80px;
    padding: 16px 10px 10px 10px;
    cursor: pointer;
    border-radius: 50%;
    background: #10a0e9;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

header.bar .button-nav.pull-left {
    margin-left: 0.2rem;
}

header span.icon-menu {
    margin-right: 0.1rem;
}

.y-uploadbtn {
    height: 100%;
    background-color: #10a0e9;
    border: none;
    color: #fff;
    padding: 0 5px;
    width: 60px;
}

/*20170207*/
.grzxgb-tx {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.zfddjf {
    margin-bottom: 20px;
    padding: 10px 20px;
    border: 1px solid #b3b3b3;
    text-align: left;
}

.zfddjf >p, .zfddjf > span, .zfddjf > div{
    display: inline-block;
    vertical-align: top;
}
.zfddjf >p{
    padding-right: 8px;
}
.zfddjf > span {
    font-size: 12px;
    color:#666666;
}
.zfddjf > div{
    margin-top: 9px;
}
.zfddjf .zfdd-title {
    width:100px;
    font-weight: 600;
}
.zfddjf .color-price {
    display: inline-block;
    width:50px;
    font-weight: bold;
    color: #dd4719;
}
.zfddjf .gift {
    display: block;
    margin-left: 4px;
    font-size: 10px;
    color:#858585;
}
.zfddjf-con .col-50 {
    padding: 10px 5px;
}

.zfddjf-con .col-50 p span {
    padding: 15px 0;
}
.zfddjf-con .huadiaoprice {
    font-size: .2px;
}
.huadiaoprice {
    color: #858585;
    text-decoration: line-through;
}

.zfddjfclick {
    border: 1px solid #169fe9;
    background: url("../img/p_check.jpg") no-repeat right bottom;
    -webkit-background-size: 10%;
    background-size: 10%;
}

.email-red-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    top: 30%;
    right: 8%;
}
.insurance-red-point{
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: red;
    position: absolute;
    top: 0;
    right: 2px;
}

.yapiskan{
    color:white;
    text-align:center;
    transition:top .5s;
   visibility: visible;
    margin-top:50px;
    display: block;
    position: relative;
}

.price {
    text-align: center;
    background: #FFFFFF;
    padding: 1px .75rem;
}
.price .pr-title {
    font-size: 1.4rem;
    color: #666;
    margin: 0;
    padding: .8rem 0;
}
.price .pr-total {
    margin: 0;
    font-size: 2rem;
    line-height: 2rem;
    /*font-weight: bolder;*/
    color: #333;
    padding-bottom: 1.4rem;
    text-indent: -2rem;
    border-bottom: 2px dashed #eee;
}
.integration {
    padding: 1rem 0;
    background: #fff;
    text-align: center;
    font-size: 1rem;
    color: #009999;
}
/****** 付款方式 *********/
.check-method {
    background: #FFFFFF;
    margin-top: .8rem;
    padding: 0 .5rem;
}
.check-method .item-content {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
.check-method .item-media>img {
    max-height: 1.5rem;
    max-width: 1.5rem;
}
.check-method input[type=radio] {
    width: 17.5rem;
    height: 1.5rem;
    position: absolute;
    right: .8rem;
    top: .5rem;
    opacity: 0;
}
.check-method input[type=radio]+span{
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid #666666;
    border-radius: 50%;
}
.check-method input[type=radio]:checked+span {
    border: 0;
    background: #1296db;
    background: url("../img/syt-m-checked.png") no-repeat;
    background-size: 100% 100%;
}
/******** 确认支付 ********/
.color-white.button-danger:active {
    color: white;
}

.check-method input[type=radio]:disabled+span {
    background: url("../img/disabled.png") no-repeat;
    background-size: 100% 100%;
    border: none;
}