@charset "UTF-8";
.v-ripple__container {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    z-index: 0;
    contain: strict
}

.v-ripple__animation, .v-ripple__container {
    color: inherit;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    pointer-events: none
}

.v-ripple__animation {
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    will-change: transform, opacity
}

.v-ripple__animation--enter {
    transition: none
}

.v-ripple__animation--in {
    transition: transform .25s cubic-bezier(.4, 0, .2, 1), opacity .1s cubic-bezier(.4, 0, .2, 1);
}

.v-ripple__animation--out {
    transition: opacity .3s cubic-bezier(.4, 0, .2, 1)
}

.theme--light.v-btn {
    color: #333
}

.theme--light.v-btn.v-btn--disabled, .theme--light.v-btn.v-btn--disabled .v-btn__loading, .theme--light.v-btn.v-btn--disabled .v-icon {
    color: rgba(0, 0, 0, .26) !important
}

.theme--light.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) {
    background-color: rgba(0, 0, 0, .12) !important
}

.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat) {
    background-color: #f5f5f5
}

.theme--dark.v-btn {
    color: #fff
}

.theme--dark.v-btn.v-btn--disabled, .theme--dark.v-btn.v-btn--disabled .v-btn__loading, .theme--dark.v-btn.v-btn--disabled .v-icon {
    color: hsla(0, 0%, 100%, .3) !important
}

.theme--dark.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) {
    background-color: hsla(0, 0%, 100%, .12) !important
}

.theme--dark.v-btn:not(.v-btn--icon):not(.v-btn--flat) {
    background-color: #212121
}

.v-btn {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    height: 36px;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    margin: 6px 8px;
    min-width: 88px;
    outline: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s cubic-bezier(.25, .8, .5, 1), color 1ms;
    position: relative;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.v-btn:before {
    border-radius: inherit;
    color: inherit;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    opacity: .12;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
    width: 100%
}

.v-btn {
    padding: 0 16px
}

.v-btn--active, .v-btn:focus, .v-btn:hover {
    position: relative
}

.v-btn--active:before, .v-btn:focus:before, .v-btn:hover:before {
    background-color: currentColor
}

@media (hover: none) {
    .v-btn:hover:before {
        background-color: transparent
    }
}

.v-btn__content {
    align-items: center;
    border-radius: inherit;
    color: inherit;
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
    white-space: nowrap;
    width: inherit
}

.v-btn--small {
    font-size: 13px;
    height: 28px;
    padding: 0 8px
}

.v-btn--large {
    font-size: 15px;
    height: 44px;
    padding: 0 32px
}

.v-btn .v-btn__content .v-icon {
    color: inherit
}

.v-btn:not(.v-btn--depressed):not(.v-btn--flat) {
    will-change: box-shadow;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.v-btn:not(.v-btn--depressed):not(.v-btn--flat):active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12)
}

.v-btn--icon {
    background: transparent;
    box-shadow: none !important;
    border-radius: 50%;
    justify-content: center;
    min-width: 0;
    width: 36px
}

.v-btn--icon.v-btn--small {
    width: 28px
}

.v-btn--icon.v-btn--large {
    width: 44px
}

.v-btn--floating, .v-btn--icon:before {
    border-radius: 50%
}

.v-btn--floating {
    min-width: 0;
    height: 56px;
    width: 56px;
    padding: 0
}

.v-btn--floating.v-btn--absolute, .v-btn--floating.v-btn--fixed {
    z-index: 4
}

.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat) {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12)
}

.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat):active {
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 12px 17px 2px rgba(0, 0, 0, .14), 0 5px 22px 4px rgba(0, 0, 0, .12)
}

.v-btn--floating .v-btn__content {
    flex: 1 1 auto;
    margin: 0;
    height: 100%
}

.v-btn--floating:after {
    border-radius: 50%
}

.v-btn--floating .v-btn__content > :not(:only-child) {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.v-btn--floating .v-btn__content > :not(:only-child):first-child {
    opacity: 1
}

.v-btn--floating .v-btn__content > :not(:only-child):last-child {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.v-btn--floating .v-btn__content > :not(:only-child):first-child, .v-btn--floating .v-btn__content > :not(:only-child):last-child {
    -webkit-backface-visibility: hidden;
    position: absolute;
    left: 0;
    top: 0
}

.v-btn--floating.v-btn--active .v-btn__content > :not(:only-child):first-child {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.v-btn--floating.v-btn--active .v-btn__content > :not(:only-child):last-child {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.v-btn--floating .v-icon {
    height: inherit;
    width: inherit
}

.v-btn--floating.v-btn--small {
    height: 40px;
    width: 40px
}

.v-btn--floating.v-btn--small .v-icon {
    font-size: 18px
}

.v-btn--floating.v-btn--large {
    height: 72px;
    width: 72px
}

.v-btn--floating.v-btn--large .v-icon {
    font-size: 30px
}

.v-btn--reverse .v-btn__content {
    flex-direction: row-reverse
}

.v-btn--reverse.v-btn--column .v-btn__content {
    flex-direction: column-reverse
}

.v-btn--absolute, .v-btn--fixed {
    margin: 0
}

.v-btn.v-btn--absolute {
    position: absolute
}

.v-btn.v-btn--fixed {
    position: fixed
}

.v-btn--top:not(.v-btn--absolute) {
    top: 16px
}

.v-btn--top.v-btn--absolute {
    top: -28px
}

.v-btn--top.v-btn--absolute.v-btn--small {
    top: -20px
}

.v-btn--top.v-btn--absolute.v-btn--large {
    top: -36px
}

.v-btn--bottom:not(.v-btn--absolute) {
    bottom: 16px
}

.v-btn--bottom.v-btn--absolute {
    bottom: -28px
}

.v-btn--bottom.v-btn--absolute.v-btn--small {
    bottom: -20px
}

.v-btn--bottom.v-btn--absolute.v-btn--large {
    bottom: -36px
}

.v-btn--left {
    left: 16px
}

.v-btn--right {
    right: 16px
}

.v-btn.v-btn--disabled {
    box-shadow: none !important;
    pointer-events: none
}

.v-btn:not(.v-btn--disabled):not(.v-btn--floating):not(.v-btn--icon) .v-btn__content .v-icon {
    transition: none
}

.v-btn--icon {
    padding: 0
}

.v-btn--loader {
    pointer-events: none
}

.v-btn--loader .v-btn__content {
    opacity: 0
}

.v-btn__loading {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.v-btn__loading .v-icon--left {
    margin-right: 1rem;
    line-height: inherit
}

.v-btn__loading .v-icon--right {
    margin-left: 1rem;
    line-height: inherit
}

.v-btn.v-btn--outline {
    border: 1px solid;
    background: transparent !important;
    box-shadow: none
}

.v-btn.v-btn--outline:hover {
    box-shadow: none
}

.v-btn--block {
    display: flex;
    flex: 1;
    margin: 6px 0;
    width: 100%
}

.v-btn--round, .v-btn--round:after {
    border-radius: 28px
}

.v-btn:not(.v-btn--outline).accent, .v-btn:not(.v-btn--outline).error, .v-btn:not(.v-btn--outline).info, .v-btn:not(.v-btn--outline).primary, .v-btn:not(.v-btn--outline).secondary, .v-btn:not(.v-btn--outline).success, .v-btn:not(.v-btn--outline).warning {
    color: #fff
}

.v-progress-circular {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

.v-progress-circular svg {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0
}

.v-progress-circular--indeterminate svg {
    -webkit-animation: progress-circular-rotate 1.4s linear infinite;
    animation: progress-circular-rotate 1.4s linear infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    transition: all .2s ease-in-out
}

.v-progress-circular--indeterminate .v-progress-circular__overlay {
    -webkit-animation: progress-circular-dash 1.4s ease-in-out infinite;
    animation: progress-circular-dash 1.4s ease-in-out infinite;
    stroke-linecap: round;
    stroke-dasharray: 80, 200;
    stroke-dashoffset: 0
}

.v-progress-circular__underlay {
    stroke: rgba(0, 0, 0, .1);
    z-index: 1
}

.v-progress-circular__overlay {
    stroke: currentColor;
    z-index: 2;
    transition: all .6s ease-in-out
}

.v-progress-circular__info {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@-webkit-keyframes progress-circular-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 100, 200;
        stroke-dashoffset: -15px
    }
    to {
        stroke-dasharray: 100, 200;
        stroke-dashoffset: -125px
    }
}

@keyframes progress-circular-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 100, 200;
        stroke-dashoffset: -15px
    }
    to {
        stroke-dasharray: 100, 200;
        stroke-dashoffset: -125px
    }
}

@-webkit-keyframes progress-circular-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes progress-circular-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.container {
    flex: 1 1 100%;
    margin: auto;
    padding: 24px;
    width: 100%
}

@media only screen and (min-width: 960px) {
    .container {
        max-width: 900px
    }
}

@media only screen and (min-width: 1264px) {
    .container {
        max-width: 1185px
    }
}

@media only screen and (max-width: 959px) {
    .container {
        padding: 16px
    }
}

.container.fluid {
    max-width: 100%
}

.container.fill-height {
    align-items: center;
    display: flex
}

.container.fill-height > .layout {
    height: 100%;
    flex: 1 1 auto
}

.container.grid-list-xs .layout .flex {
    padding: 1px
}

.container.grid-list-xs .layout:only-child {
    margin: -1px
}

.container.grid-list-xs .layout:not(:only-child) {
    margin: auto -1px
}

.container.grid-list-xs :not(:only-child) .layout:first-child {
    margin-top: -1px
}

.container.grid-list-xs :not(:only-child) .layout:last-child {
    margin-bottom: -1px
}

.container.grid-list-sm .layout .flex {
    padding: 2px
}

.container.grid-list-sm .layout:only-child {
    margin: -2px
}

.container.grid-list-sm .layout:not(:only-child) {
    margin: auto -2px
}

.container.grid-list-sm :not(:only-child) .layout:first-child {
    margin-top: -2px
}

.container.grid-list-sm :not(:only-child) .layout:last-child {
    margin-bottom: -2px
}

.container.grid-list-md .layout .flex {
    padding: 4px
}

.container.grid-list-md .layout:only-child {
    margin: -4px
}

.container.grid-list-md .layout:not(:only-child) {
    margin: auto -4px
}

.container.grid-list-md :not(:only-child) .layout:first-child {
    margin-top: -4px
}

.container.grid-list-md :not(:only-child) .layout:last-child {
    margin-bottom: -4px
}

.container.grid-list-lg .layout .flex {
    padding: 8px
}

.container.grid-list-lg .layout:only-child {
    margin: -8px
}

.container.grid-list-lg .layout:not(:only-child) {
    margin: auto -8px
}

.container.grid-list-lg :not(:only-child) .layout:first-child {
    margin-top: -8px
}

.container.grid-list-lg :not(:only-child) .layout:last-child {
    margin-bottom: -8px
}

.container.grid-list-xl .layout .flex {
    padding: 12px
}

.container.grid-list-xl .layout:only-child {
    margin: -12px
}

.container.grid-list-xl .layout:not(:only-child) {
    margin: auto -12px
}

.container.grid-list-xl :not(:only-child) .layout:first-child {
    margin-top: -12px
}

.container.grid-list-xl :not(:only-child) .layout:last-child {
    margin-bottom: -12px
}

.layout {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    min-width: 0
}

.layout.row {
    flex-direction: row
}

.layout.row.reverse {
    flex-direction: row-reverse
}

.layout.column {
    flex-direction: column
}

.layout.column.reverse {
    flex-direction: column-reverse
}

.layout.column > .flex {
    max-width: 100%
}

.layout.wrap {
    flex-wrap: wrap
}

@media (min-width: 0) {
    .flex.xs1 {
        flex-basis: 8.333333333333332%;
        flex-grow: 0;
        max-width: 8.333333333333332%
    }

    .flex.order-xs1 {
        order: 1
    }

    .flex.xs2 {
        flex-basis: 16.666666666666664%;
        flex-grow: 0;
        max-width: 16.666666666666664%
    }

    .flex.order-xs2 {
        order: 2
    }

    .flex.xs3 {
        flex-basis: 25%;
        flex-grow: 0;
        max-width: 25%
    }

    .flex.order-xs3 {
        order: 3
    }

    .flex.xs4 {
        flex-basis: 33.33333333333333%;
        flex-grow: 0;
        max-width: 33.33333333333333%
    }

    .flex.order-xs4 {
        order: 4
    }

    .flex.xs5 {
        flex-basis: 41.66666666666667%;
        flex-grow: 0;
        max-width: 41.66666666666667%
    }

    .flex.order-xs5 {
        order: 5
    }

    .flex.xs6 {
        flex-basis: 50%;
        flex-grow: 0;
        max-width: 50%
    }

    .flex.order-xs6 {
        order: 6
    }

    .flex.xs7 {
        flex-basis: 58.333333333333336%;
        flex-grow: 0;
        max-width: 58.333333333333336%
    }

    .flex.order-xs7 {
        order: 7
    }

    .flex.xs8 {
        flex-basis: 66.66666666666666%;
        flex-grow: 0;
        max-width: 66.66666666666666%
    }

    .flex.order-xs8 {
        order: 8
    }

    .flex.xs9 {
        flex-basis: 75%;
        flex-grow: 0;
        max-width: 75%
    }

    .flex.order-xs9 {
        order: 9
    }

    .flex.xs10 {
        flex-basis: 83.33333333333334%;
        flex-grow: 0;
        max-width: 83.33333333333334%
    }

    .flex.order-xs10 {
        order: 10
    }

    .flex.xs11 {
        flex-basis: 91.66666666666666%;
        flex-grow: 0;
        max-width: 91.66666666666666%
    }

    .flex.order-xs11 {
        order: 11
    }

    .flex.xs12 {
        flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%
    }

    .flex.order-xs12 {
        order: 12
    }

    .flex.offset-xs0 {
        margin-left: 0
    }

    .flex.offset-xs1 {
        margin-left: 8.333333333333332%
    }

    .flex.offset-xs2 {
        margin-left: 16.666666666666664%
    }

    .flex.offset-xs3 {
        margin-left: 25%
    }

    .flex.offset-xs4 {
        margin-left: 33.33333333333333%
    }

    .flex.offset-xs5 {
        margin-left: 41.66666666666667%
    }

    .flex.offset-xs6 {
        margin-left: 50%
    }

    .flex.offset-xs7 {
        margin-left: 58.333333333333336%
    }

    .flex.offset-xs8 {
        margin-left: 66.66666666666666%
    }

    .flex.offset-xs9 {
        margin-left: 75%
    }

    .flex.offset-xs10 {
        margin-left: 83.33333333333334%
    }

    .flex.offset-xs11 {
        margin-left: 91.66666666666666%
    }

    .flex.offset-xs12 {
        margin-left: 100%
    }
}

@media (min-width: 600px) {
    .flex.sm1 {
        flex-basis: 8.333333333333332%;
        flex-grow: 0;
        max-width: 8.333333333333332%
    }

    .flex.order-sm1 {
        order: 1
    }

    .flex.sm2 {
        flex-basis: 16.666666666666664%;
        flex-grow: 0;
        max-width: 16.666666666666664%
    }

    .flex.order-sm2 {
        order: 2
    }

    .flex.sm3 {
        flex-basis: 25%;
        flex-grow: 0;
        max-width: 25%
    }

    .flex.order-sm3 {
        order: 3
    }

    .flex.sm4 {
        flex-basis: 33.33333333333333%;
        flex-grow: 0;
        max-width: 33.33333333333333%
    }

    .flex.order-sm4 {
        order: 4
    }

    .flex.sm5 {
        flex-basis: 41.66666666666667%;
        flex-grow: 0;
        max-width: 41.66666666666667%
    }

    .flex.order-sm5 {
        order: 5
    }

    .flex.sm6 {
        flex-basis: 50%;
        flex-grow: 0;
        max-width: 50%
    }

    .flex.order-sm6 {
        order: 6
    }

    .flex.sm7 {
        flex-basis: 58.333333333333336%;
        flex-grow: 0;
        max-width: 58.333333333333336%
    }

    .flex.order-sm7 {
        order: 7
    }

    .flex.sm8 {
        flex-basis: 66.66666666666666%;
        flex-grow: 0;
        max-width: 66.66666666666666%
    }

    .flex.order-sm8 {
        order: 8
    }

    .flex.sm9 {
        flex-basis: 75%;
        flex-grow: 0;
        max-width: 75%
    }

    .flex.order-sm9 {
        order: 9
    }

    .flex.sm10 {
        flex-basis: 83.33333333333334%;
        flex-grow: 0;
        max-width: 83.33333333333334%
    }

    .flex.order-sm10 {
        order: 10
    }

    .flex.sm11 {
        flex-basis: 91.66666666666666%;
        flex-grow: 0;
        max-width: 91.66666666666666%
    }

    .flex.order-sm11 {
        order: 11
    }

    .flex.sm12 {
        flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%
    }

    .flex.order-sm12 {
        order: 12
    }

    .flex.offset-sm0 {
        margin-left: 0
    }

    .flex.offset-sm1 {
        margin-left: 8.333333333333332%
    }

    .flex.offset-sm2 {
        margin-left: 16.666666666666664%
    }

    .flex.offset-sm3 {
        margin-left: 25%
    }

    .flex.offset-sm4 {
        margin-left: 33.33333333333333%
    }

    .flex.offset-sm5 {
        margin-left: 41.66666666666667%
    }

    .flex.offset-sm6 {
        margin-left: 50%
    }

    .flex.offset-sm7 {
        margin-left: 58.333333333333336%
    }

    .flex.offset-sm8 {
        margin-left: 66.66666666666666%
    }

    .flex.offset-sm9 {
        margin-left: 75%
    }

    .flex.offset-sm10 {
        margin-left: 83.33333333333334%
    }

    .flex.offset-sm11 {
        margin-left: 91.66666666666666%
    }

    .flex.offset-sm12 {
        margin-left: 100%
    }
}

@media (min-width: 960px) {
    .flex.md1 {
        flex-basis: 8.333333333333332%;
        flex-grow: 0;
        max-width: 8.333333333333332%
    }

    .flex.order-md1 {
        order: 1
    }

    .flex.md2 {
        flex-basis: 16.666666666666664%;
        flex-grow: 0;
        max-width: 16.666666666666664%
    }

    .flex.order-md2 {
        order: 2
    }

    .flex.md3 {
        flex-basis: 25%;
        flex-grow: 0;
        max-width: 25%
    }

    .flex.order-md3 {
        order: 3
    }

    .flex.md4 {
        flex-basis: 33.33333333333333%;
        flex-grow: 0;
        max-width: 33.33333333333333%
    }

    .flex.order-md4 {
        order: 4
    }

    .flex.md5 {
        flex-basis: 41.66666666666667%;
        flex-grow: 0;
        max-width: 41.66666666666667%
    }

    .flex.order-md5 {
        order: 5
    }

    .flex.md6 {
        flex-basis: 50%;
        flex-grow: 0;
        max-width: 50%
    }

    .flex.order-md6 {
        order: 6
    }

    .flex.md7 {
        flex-basis: 58.333333333333336%;
        flex-grow: 0;
        max-width: 58.333333333333336%
    }

    .flex.order-md7 {
        order: 7
    }

    .flex.md8 {
        flex-basis: 66.66666666666666%;
        flex-grow: 0;
        max-width: 66.66666666666666%
    }

    .flex.order-md8 {
        order: 8
    }

    .flex.md9 {
        flex-basis: 75%;
        flex-grow: 0;
        max-width: 75%
    }

    .flex.order-md9 {
        order: 9
    }

    .flex.md10 {
        flex-basis: 83.33333333333334%;
        flex-grow: 0;
        max-width: 83.33333333333334%
    }

    .flex.order-md10 {
        order: 10
    }

    .flex.md11 {
        flex-basis: 91.66666666666666%;
        flex-grow: 0;
        max-width: 91.66666666666666%
    }

    .flex.order-md11 {
        order: 11
    }

    .flex.md12 {
        flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%
    }

    .flex.order-md12 {
        order: 12
    }

    .flex.offset-md0 {
        margin-left: 0
    }

    .flex.offset-md1 {
        margin-left: 8.333333333333332%
    }

    .flex.offset-md2 {
        margin-left: 16.666666666666664%
    }

    .flex.offset-md3 {
        margin-left: 25%
    }

    .flex.offset-md4 {
        margin-left: 33.33333333333333%
    }

    .flex.offset-md5 {
        margin-left: 41.66666666666667%
    }

    .flex.offset-md6 {
        margin-left: 50%
    }

    .flex.offset-md7 {
        margin-left: 58.333333333333336%
    }

    .flex.offset-md8 {
        margin-left: 66.66666666666666%
    }

    .flex.offset-md9 {
        margin-left: 75%
    }

    .flex.offset-md10 {
        margin-left: 83.33333333333334%
    }

    .flex.offset-md11 {
        margin-left: 91.66666666666666%
    }

    .flex.offset-md12 {
        margin-left: 100%
    }
}

@media (min-width: 1264px) {
    .flex.lg1 {
        flex-basis: 8.333333333333332%;
        flex-grow: 0;
        max-width: 8.333333333333332%
    }

    .flex.order-lg1 {
        order: 1
    }

    .flex.lg2 {
        flex-basis: 16.666666666666664%;
        flex-grow: 0;
        max-width: 16.666666666666664%
    }

    .flex.order-lg2 {
        order: 2
    }

    .flex.lg3 {
        flex-basis: 25%;
        flex-grow: 0;
        max-width: 25%
    }

    .flex.order-lg3 {
        order: 3
    }

    .flex.lg4 {
        flex-basis: 33.33333333333333%;
        flex-grow: 0;
        max-width: 33.33333333333333%
    }

    .flex.order-lg4 {
        order: 4
    }

    .flex.lg5 {
        flex-basis: 41.66666666666667%;
        flex-grow: 0;
        max-width: 41.66666666666667%
    }

    .flex.order-lg5 {
        order: 5
    }

    .flex.lg6 {
        flex-basis: 50%;
        flex-grow: 0;
        max-width: 50%
    }

    .flex.order-lg6 {
        order: 6
    }

    .flex.lg7 {
        flex-basis: 58.333333333333336%;
        flex-grow: 0;
        max-width: 58.333333333333336%
    }

    .flex.order-lg7 {
        order: 7
    }

    .flex.lg8 {
        flex-basis: 66.66666666666666%;
        flex-grow: 0;
        max-width: 66.66666666666666%
    }

    .flex.order-lg8 {
        order: 8
    }

    .flex.lg9 {
        flex-basis: 75%;
        flex-grow: 0;
        max-width: 75%
    }

    .flex.order-lg9 {
        order: 9
    }

    .flex.lg10 {
        flex-basis: 83.33333333333334%;
        flex-grow: 0;
        max-width: 83.33333333333334%
    }

    .flex.order-lg10 {
        order: 10
    }

    .flex.lg11 {
        flex-basis: 91.66666666666666%;
        flex-grow: 0;
        max-width: 91.66666666666666%
    }

    .flex.order-lg11 {
        order: 11
    }

    .flex.lg12 {
        flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%
    }

    .flex.order-lg12 {
        order: 12
    }

    .flex.offset-lg0 {
        margin-left: 0
    }

    .flex.offset-lg1 {
        margin-left: 8.333333333333332%
    }

    .flex.offset-lg2 {
        margin-left: 16.666666666666664%
    }

    .flex.offset-lg3 {
        margin-left: 25%
    }

    .flex.offset-lg4 {
        margin-left: 33.33333333333333%
    }

    .flex.offset-lg5 {
        margin-left: 41.66666666666667%
    }

    .flex.offset-lg6 {
        margin-left: 50%
    }

    .flex.offset-lg7 {
        margin-left: 58.333333333333336%
    }

    .flex.offset-lg8 {
        margin-left: 66.66666666666666%
    }

    .flex.offset-lg9 {
        margin-left: 75%
    }

    .flex.offset-lg10 {
        margin-left: 83.33333333333334%
    }

    .flex.offset-lg11 {
        margin-left: 91.66666666666666%
    }

    .flex.offset-lg12 {
        margin-left: 100%
    }
}

@media (min-width: 1264px) {
    .flex.xl1 {
        flex-basis: 8.333333333333332%;
        flex-grow: 0;
        max-width: 8.333333333333332%
    }

    .flex.order-xl1 {
        order: 1
    }

    .flex.xl2 {
        flex-basis: 16.666666666666664%;
        flex-grow: 0;
        max-width: 16.666666666666664%
    }

    .flex.order-xl2 {
        order: 2
    }

    .flex.xl3 {
        flex-basis: 25%;
        flex-grow: 0;
        max-width: 25%
    }

    .flex.order-xl3 {
        order: 3
    }

    .flex.xl4 {
        flex-basis: 33.33333333333333%;
        flex-grow: 0;
        max-width: 33.33333333333333%
    }

    .flex.order-xl4 {
        order: 4
    }

    .flex.xl5 {
        flex-basis: 41.66666666666667%;
        flex-grow: 0;
        max-width: 41.66666666666667%
    }

    .flex.order-xl5 {
        order: 5
    }

    .flex.xl6 {
        flex-basis: 50%;
        flex-grow: 0;
        max-width: 50%
    }

    .flex.order-xl6 {
        order: 6
    }

    .flex.xl7 {
        flex-basis: 58.333333333333336%;
        flex-grow: 0;
        max-width: 58.333333333333336%
    }

    .flex.order-xl7 {
        order: 7
    }

    .flex.xl8 {
        flex-basis: 66.66666666666666%;
        flex-grow: 0;
        max-width: 66.66666666666666%
    }

    .flex.order-xl8 {
        order: 8
    }

    .flex.xl9 {
        flex-basis: 75%;
        flex-grow: 0;
        max-width: 75%
    }

    .flex.order-xl9 {
        order: 9
    }

    .flex.xl10 {
        flex-basis: 83.33333333333334%;
        flex-grow: 0;
        max-width: 83.33333333333334%
    }

    .flex.order-xl10 {
        order: 10
    }

    .flex.xl11 {
        flex-basis: 91.66666666666666%;
        flex-grow: 0;
        max-width: 91.66666666666666%
    }

    .flex.order-xl11 {
        order: 11
    }

    .flex.xl12 {
        flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%
    }

    .flex.order-xl12 {
        order: 12
    }

    .flex.offset-xl0 {
        margin-left: 0
    }

    .flex.offset-xl1 {
        margin-left: 8.333333333333332%
    }

    .flex.offset-xl2 {
        margin-left: 16.666666666666664%
    }

    .flex.offset-xl3 {
        margin-left: 25%
    }

    .flex.offset-xl4 {
        margin-left: 33.33333333333333%
    }

    .flex.offset-xl5 {
        margin-left: 41.66666666666667%
    }

    .flex.offset-xl6 {
        margin-left: 50%
    }

    .flex.offset-xl7 {
        margin-left: 58.333333333333336%
    }

    .flex.offset-xl8 {
        margin-left: 66.66666666666666%
    }

    .flex.offset-xl9 {
        margin-left: 75%
    }

    .flex.offset-xl10 {
        margin-left: 83.33333333333334%
    }

    .flex.offset-xl11 {
        margin-left: 91.66666666666666%
    }

    .flex.offset-xl12 {
        margin-left: 100%
    }
}

.child-flex > *, .flex {
    flex: 1 1 auto;
    max-width: 100%
}

.align-start {
    align-items: flex-start
}

.align-end {
    align-items: flex-end
}

.align-center {
    align-items: center
}

.align-baseline {
    align-items: baseline
}

.align-self-start {
    align-self: flex-start
}

.align-self-end {
    align-self: flex-end
}

.align-self-center {
    align-self: center
}

.align-self-baseline {
    align-self: baseline
}

.align-content-start {
    align-content: flex-start
}

.align-content-end {
    align-content: flex-end
}

.align-content-center {
    align-content: center
}

.align-content-space-between {
    align-content: space-between
}

.align-content-space-around {
    align-content: space-around
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-space-around {
    justify-content: space-around
}

.justify-space-between {
    justify-content: space-between
}

.justify-self-start {
    justify-self: flex-start
}

.justify-self-end {
    justify-self: flex-end
}

.justify-self-center {
    justify-self: center
}

.justify-self-baseline {
    justify-self: baseline
}

.grow, .spacer {
    flex-grow: 1 !important
}

.grow {
    flex-shrink: 0 !important
}

.shrink {
    flex-grow: 0 !important;
    flex-shrink: 1 !important
}

.scroll-y {
    overflow-y: auto
}

.fill-height {
    height: 100%
}

.hide-overflow {
    overflow: hidden !important
}

.show-overflow {
    overflow: visible !important
}

.ellipsis, .no-wrap {
    white-space: nowrap
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-flex > *, .d-inline-flex > * {
    flex: 1 1 auto !important
}

.d-block {
    display: block !important
}

.d-inline-block {
    display: inline-block !important
}

.d-inline {
    display: inline !important
}

.d-none {
    display: none !important
}

@-webkit-keyframes shake {
    59% {
        margin-left: 0
    }
    60%, 80% {
        margin-left: 2px
    }
    70%, 90% {
        margin-left: -2px
    }
}

@keyframes shake {
    59% {
        margin-left: 0
    }
    60%, 80% {
        margin-left: 2px
    }
    70%, 90% {
        margin-left: -2px
    }
}

.black {
    background-color: #000 !important;
    border-color: #000 !important
}

.black--text {
    color: #000 !important;
    caret-color: #000 !important
}

.white {
    background-color: #fff !important;
    border-color: #fff !important
}

.white--text {
    color: #fff !important;
    caret-color: #fff !important
}

.transparent {
    background-color: transparent !important;
    border-color: transparent !important
}

.transparent--text {
    color: transparent !important;
    caret-color: transparent !important
}

.shades.black {
    background-color: #000 !important;
    border-color: #000 !important
}

.shades--text.text--black {
    color: #000 !important;
    caret-color: #000 !important
}

.shades.white {
    background-color: #fff !important;
    border-color: #fff !important
}

.shades--text.text--white {
    color: #fff !important;
    caret-color: #fff !important
}

.shades.transparent {
    background-color: transparent !important;
    border-color: transparent !important
}

.shades--text.text--transparent {
    color: transparent !important;
    caret-color: transparent !important
}

.info {
    background-color: #2196f3 !important;
    border-color: #2196f3 !important
}

.info--text {
    color: #2196f3 !important;
    caret-color: #2196f3 !important
}

.info.lighten-4 {
    background-color: #b5ffff !important;
    border-color: #b5ffff !important
}

.info--text.text--lighten-4 {
    color: #b5ffff !important;
    caret-color: #b5ffff !important
}

.info.lighten-3 {
    background-color: #95e8ff !important;
    border-color: #95e8ff !important
}

.info--text.text--lighten-3 {
    color: #95e8ff !important;
    caret-color: #95e8ff !important
}

.info.lighten-2 {
    background-color: #75ccff !important;
    border-color: #75ccff !important
}

.info--text.text--lighten-2 {
    color: #75ccff !important;
    caret-color: #75ccff !important
}

.info.lighten-1 {
    background-color: #51b0ff !important;
    border-color: #51b0ff !important
}

.info--text.text--lighten-1 {
    color: #51b0ff !important;
    caret-color: #51b0ff !important
}

.info.darken-1 {
    background-color: #007cd6 !important;
    border-color: #007cd6 !important
}

.info--text.text--darken-1 {
    color: #007cd6 !important;
    caret-color: #007cd6 !important
}

.info.darken-2 {
    background-color: #0064ba !important;
    border-color: #0064ba !important
}

.info--text.text--darken-2 {
    color: #0064ba !important;
    caret-color: #0064ba !important
}

.info.darken-3 {
    background-color: #004d9f !important;
    border-color: #004d9f !important
}

.info--text.text--darken-3 {
    color: #004d9f !important;
    caret-color: #004d9f !important
}

.info.darken-4 {
    background-color: #003784 !important;
    border-color: #003784 !important
}

.info--text.text--darken-4 {
    color: #003784 !important;
    caret-color: #003784 !important
}

.success {
    background-color: #4caf50 !important;
    border-color: #4caf50 !important
}

.success--text {
    color: #4caf50 !important;
    caret-color: #4caf50 !important
}

.success.lighten-4 {
    background-color: #beffba !important;
    border-color: #beffba !important
}

.success--text.text--lighten-4 {
    color: #beffba !important;
    caret-color: #beffba !important
}

.success.lighten-3 {
    background-color: #a2ff9e !important;
    border-color: #a2ff9e !important
}

.success--text.text--lighten-3 {
    color: #a2ff9e !important;
    caret-color: #a2ff9e !important
}

.success.lighten-2 {
    background-color: #85e783 !important;
    border-color: #85e783 !important
}

.success--text.text--lighten-2 {
    color: #85e783 !important;
    caret-color: #85e783 !important
}

.success.lighten-1 {
    background-color: #69cb69 !important;
    border-color: #69cb69 !important
}

.success--text.text--lighten-1 {
    color: #69cb69 !important;
    caret-color: #69cb69 !important
}

.success.darken-1 {
    background-color: #2d9437 !important;
    border-color: #2d9437 !important
}

.success--text.text--darken-1 {
    color: #2d9437 !important;
    caret-color: #2d9437 !important
}

.success.darken-2 {
    background-color: #00791e !important;
    border-color: #00791e !important
}

.success--text.text--darken-2 {
    color: #00791e !important;
    caret-color: #00791e !important
}

.success.darken-3 {
    background-color: #006000 !important;
    border-color: #006000 !important
}

.success--text.text--darken-3 {
    color: #006000 !important;
    caret-color: #006000 !important
}

.success.darken-4 {
    background-color: #004700 !important;
    border-color: #004700 !important
}

.success--text.text--darken-4 {
    color: #004700 !important;
    caret-color: #004700 !important
}

.warning {
    background-color: #fb8c00 !important;
    border-color: #fb8c00 !important
}

.warning--text {
    color: #fb8c00 !important;
    caret-color: #fb8c00 !important
}

.warning.lighten-4 {
    background-color: #fffb82 !important;
    border-color: #fffb82 !important
}

.warning--text.text--lighten-4 {
    color: #fffb82 !important;
    caret-color: #fffb82 !important
}

.warning.lighten-3 {
    background-color: #ffdf67 !important;
    border-color: #ffdf67 !important
}

.warning--text.text--lighten-3 {
    color: #ffdf67 !important;
    caret-color: #ffdf67 !important
}

.warning.lighten-2 {
    background-color: #ffc24b !important;
    border-color: #ffc24b !important
}

.warning--text.text--lighten-2 {
    color: #ffc24b !important;
    caret-color: #ffc24b !important
}

.warning.lighten-1 {
    background-color: #ffa72d !important;
    border-color: #ffa72d !important
}

.warning--text.text--lighten-1 {
    color: #ffa72d !important;
    caret-color: #ffa72d !important
}

.warning.darken-1 {
    background-color: #db7200 !important;
    border-color: #db7200 !important
}

.warning--text.text--darken-1 {
    color: #db7200 !important;
    caret-color: #db7200 !important
}

.warning.darken-2 {
    background-color: #bb5900 !important;
    border-color: #bb5900 !important
}

.warning--text.text--darken-2 {
    color: #bb5900 !important;
    caret-color: #bb5900 !important
}

.warning.darken-3 {
    background-color: #9d4000 !important;
    border-color: #9d4000 !important
}

.warning--text.text--darken-3 {
    color: #9d4000 !important;
    caret-color: #9d4000 !important
}

.warning.darken-4 {
    background-color: #802700 !important;
    border-color: #802700 !important
}

.warning--text.text--darken-4 {
    color: #802700 !important;
    caret-color: #802700 !important
}

.error {
    background-color: #ff5252 !important;
    border-color: #ff5252 !important
}

.error--text {
    color: #ff5252 !important;
    caret-color: #ff5252 !important
}

.error.lighten-4 {
    background-color: #ffc6b9 !important;
    border-color: #ffc6b9 !important
}

.error--text.text--lighten-4 {
    color: #ffc6b9 !important;
    caret-color: #ffc6b9 !important
}

.error.lighten-3 {
    background-color: #ffa99e !important;
    border-color: #ffa99e !important
}

.error--text.text--lighten-3 {
    color: #ffa99e !important;
    caret-color: #ffa99e !important
}

.error.lighten-2 {
    background-color: #ff8c84 !important;
    border-color: #ff8c84 !important
}

.error--text.text--lighten-2 {
    color: #ff8c84 !important;
    caret-color: #ff8c84 !important
}

.error.lighten-1 {
    background-color: #ff6f6a !important;
    border-color: #ff6f6a !important
}

.error--text.text--lighten-1 {
    color: #ff6f6a !important;
    caret-color: #ff6f6a !important
}

.error.darken-1 {
    background-color: #df323b !important;
    border-color: #df323b !important
}

.error--text.text--darken-1 {
    color: #df323b !important;
    caret-color: #df323b !important
}

.error.darken-2 {
    background-color: #bf0025 !important;
    border-color: #bf0025 !important
}

.error--text.text--darken-2 {
    color: #bf0025 !important;
    caret-color: #bf0025 !important
}

.error.darken-3 {
    background-color: #9f0010 !important;
    border-color: #9f0010 !important
}

.error--text.text--darken-3 {
    color: #9f0010 !important;
    caret-color: #9f0010 !important
}

.error.darken-4 {
    background-color: maroon !important;
    border-color: maroon !important
}

.error--text.text--darken-4 {
    color: maroon !important;
    caret-color: maroon !important
}

.elevation-0 {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12) !important
}

.elevation-1 {
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12) !important
}

.elevation-2 {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12) !important
}

.elevation-3 {
    box-shadow: 0 3px 3px -2px rgba(0, 0, 0, .2), 0 3px 4px 0 rgba(0, 0, 0, .14), 0 1px 8px 0 rgba(0, 0, 0, .12) !important
}

.elevation-4 {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12) !important
}

.elevation-5 {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 5px 8px 0 rgba(0, 0, 0, .14), 0 1px 14px 0 rgba(0, 0, 0, .12) !important
}

.elevation-6 {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12) !important
}

.elevation-7 {
    box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12) !important
}

.elevation-8 {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12) !important
}

.elevation-9 {
    box-shadow: 0 5px 6px -3px rgba(0, 0, 0, .2), 0 9px 12px 1px rgba(0, 0, 0, .14), 0 3px 16px 2px rgba(0, 0, 0, .12) !important
}

.elevation-10 {
    box-shadow: 0 6px 6px -3px rgba(0, 0, 0, .2), 0 10px 14px 1px rgba(0, 0, 0, .14), 0 4px 18px 3px rgba(0, 0, 0, .12) !important
}

.elevation-11 {
    box-shadow: 0 6px 7px -4px rgba(0, 0, 0, .2), 0 11px 15px 1px rgba(0, 0, 0, .14), 0 4px 20px 3px rgba(0, 0, 0, .12) !important
}

.elevation-12 {
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 12px 17px 2px rgba(0, 0, 0, .14), 0 5px 22px 4px rgba(0, 0, 0, .12) !important
}

.elevation-13 {
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 13px 19px 2px rgba(0, 0, 0, .14), 0 5px 24px 4px rgba(0, 0, 0, .12) !important
}

.elevation-14 {
    box-shadow: 0 7px 9px -4px rgba(0, 0, 0, .2), 0 14px 21px 2px rgba(0, 0, 0, .14), 0 5px 26px 4px rgba(0, 0, 0, .12) !important
}

.elevation-15 {
    box-shadow: 0 8px 9px -5px rgba(0, 0, 0, .2), 0 15px 22px 2px rgba(0, 0, 0, .14), 0 6px 28px 5px rgba(0, 0, 0, .12) !important
}

.elevation-16 {
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12) !important
}

.elevation-17 {
    box-shadow: 0 8px 11px -5px rgba(0, 0, 0, .2), 0 17px 26px 2px rgba(0, 0, 0, .14), 0 6px 32px 5px rgba(0, 0, 0, .12) !important
}

.elevation-18 {
    box-shadow: 0 9px 11px -5px rgba(0, 0, 0, .2), 0 18px 28px 2px rgba(0, 0, 0, .14), 0 7px 34px 6px rgba(0, 0, 0, .12) !important
}

.elevation-19 {
    box-shadow: 0 9px 12px -6px rgba(0, 0, 0, .2), 0 19px 29px 2px rgba(0, 0, 0, .14), 0 7px 36px 6px rgba(0, 0, 0, .12) !important
}

.elevation-20 {
    box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2), 0 20px 31px 3px rgba(0, 0, 0, .14), 0 8px 38px 7px rgba(0, 0, 0, .12) !important
}

.elevation-21 {
    box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2), 0 21px 33px 3px rgba(0, 0, 0, .14), 0 8px 40px 7px rgba(0, 0, 0, .12) !important
}

.elevation-22 {
    box-shadow: 0 10px 14px -6px rgba(0, 0, 0, .2), 0 22px 35px 3px rgba(0, 0, 0, .14), 0 8px 42px 7px rgba(0, 0, 0, .12) !important
}

.elevation-23 {
    box-shadow: 0 11px 14px -7px rgba(0, 0, 0, .2), 0 23px 36px 3px rgba(0, 0, 0, .14), 0 9px 44px 8px rgba(0, 0, 0, .12) !important
}

.elevation-24 {
    box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12) !important
}

html {
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%
}

*, :after, :before {
    box-sizing: inherit
}

:after, :before {
    text-decoration: inherit;
    vertical-align: inherit
}

* {
    background-repeat: no-repeat;
    padding: 0;
    margin: 0
}

audio:not([controls]) {
    display: none;
    height: 0
}

hr {
    overflow: visible
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block
}

summary {
    display: list-item
}

small {
    font-size: 80%
}

[hidden], template {
    display: none
}

abbr[title] {
    border-bottom: 1px dotted;
    text-decoration: none
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active, a:hover {
    outline-width: 0
}

code, kbd, pre, samp {
    font-family: monospace, monospace
}

b, strong {
    font-weight: bolder
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

input {
    border-radius: 0
}

[role=button], [type=button], [type=reset], [type=submit], button {
    cursor: pointer
}

[disabled] {
    cursor: default
}

[type=number] {
    width: auto
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button, input, optgroup, select, textarea {
    font: inherit
}

optgroup {
    font-weight: 700
}

button {
    overflow: visible
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
    outline: 0;
    border: 0
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button
}

button, select {
    text-transform: none
}

button, input, select, textarea {
    background-color: transparent;
    border-style: none;
    color: inherit
}

select {
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentColor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

img {
    border-style: none
}

progress {
    vertical-align: baseline
}

svg:not(:root) {
    overflow: hidden
}

audio, canvas, progress, video {
    display: inline-block
}

@media screen {
    [hidden~=screen] {
        display: inherit
    }

    [hidden~=screen]:not(:active):not(:focus):not(:target) {
        position: absolute !important;
        clip: rect(0 0 0 0) !important
    }
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled] {
    cursor: default
}

::-moz-selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none
}

::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none
}

.bottom-sheet-transition-enter, .bottom-sheet-transition-leave-to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.carousel-transition-enter {
    -webkit-transform: translate(100%);
    transform: translate(100%)
}

.carousel-transition-leave, .carousel-transition-leave-to {
    position: absolute;
    top: 0
}

.carousel-reverse-transition-enter, .carousel-transition-leave, .carousel-transition-leave-to {
    -webkit-transform: translate(-100%);
    transform: translate(-100%)
}

.carousel-reverse-transition-leave, .carousel-reverse-transition-leave-to {
    position: absolute;
    top: 0;
    -webkit-transform: translate(100%);
    transform: translate(100%)
}

.dialog-transition-enter, .dialog-transition-leave-to {
    -webkit-transform: scale(.5);
    transform: scale(.5);
    opacity: 0
}

.dialog-transition-enter-to, .dialog-transition-leave {
    opacity: 1
}

.dialog-bottom-transition-enter, .dialog-bottom-transition-leave-to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.picker-reverse-transition-enter-active, .picker-reverse-transition-leave-active, .picker-transition-enter-active, .picker-transition-leave-active {
    transition: .3s cubic-bezier(0, 0, .2, 1)
}

.picker-reverse-transition-enter, .picker-reverse-transition-leave-to, .picker-transition-enter, .picker-transition-leave-to {
    opacity: 0
}

.picker-reverse-transition-leave, .picker-reverse-transition-leave-active, .picker-reverse-transition-leave-to, .picker-transition-leave, .picker-transition-leave-active, .picker-transition-leave-to {
    position: absolute !important
}

.picker-transition-enter {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.picker-reverse-transition-enter, .picker-transition-leave-to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.picker-reverse-transition-leave-to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.picker-title-transition-enter-to, .picker-title-transition-leave {
    -webkit-transform: translate(0);
    transform: translate(0)
}

.picker-title-transition-enter {
    -webkit-transform: translate(-100%);
    transform: translate(-100%)
}

.picker-title-transition-leave-to {
    opacity: 0;
    -webkit-transform: translate(100%);
    transform: translate(100%)
}

.picker-title-transition-leave, .picker-title-transition-leave-active, .picker-title-transition-leave-to {
    position: absolute !important
}

.tab-transition-enter {
    -webkit-transform: translate(100%);
    transform: translate(100%)
}

.tab-transition-leave, .tab-transition-leave-active {
    position: absolute;
    top: 0
}

.tab-transition-leave-to {
    position: absolute
}

.tab-reverse-transition-enter, .tab-transition-leave-to {
    -webkit-transform: translate(-100%);
    transform: translate(-100%)
}

.tab-reverse-transition-leave, .tab-reverse-transition-leave-to {
    top: 0;
    position: absolute;
    -webkit-transform: translate(100%);
    transform: translate(100%)
}

.expand-transition-enter-active, .expand-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.expand-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.expand-x-transition-enter-active, .expand-x-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.expand-x-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.scale-transition-enter-active, .scale-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.scale-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.scale-transition-enter, .scale-transition-leave, .scale-transition-leave-to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.message-transition-enter-active, .message-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.message-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.message-transition-enter, .message-transition-leave-to {
    opacity: 0;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
}

.message-transition-leave, .message-transition-leave-active {
    position: absolute
}

.slide-y-transition-enter-active, .slide-y-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.slide-y-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.slide-y-transition-enter, .slide-y-transition-leave-to {
    opacity: 0;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
}

.slide-y-reverse-transition-enter-active, .slide-y-reverse-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.slide-y-reverse-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.slide-y-reverse-transition-enter, .slide-y-reverse-transition-leave-to {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px)
}

.scroll-y-transition-enter-active, .scroll-y-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.scroll-y-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.scroll-y-transition-enter, .scroll-y-transition-leave-to {
    opacity: 0
}

.scroll-y-transition-enter {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
}

.scroll-y-transition-leave-to {
    -webkit-transform: translateY(15px);
    transform: translateY(15px)
}

.scroll-y-reverse-transition-enter-active, .scroll-y-reverse-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.scroll-y-reverse-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.scroll-y-reverse-transition-enter, .scroll-y-reverse-transition-leave-to {
    opacity: 0
}

.scroll-y-reverse-transition-enter {
    -webkit-transform: translateY(15px);
    transform: translateY(15px)
}

.scroll-y-reverse-transition-leave-to {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
}

.scroll-x-transition-enter-active, .scroll-x-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.scroll-x-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.scroll-x-transition-enter, .scroll-x-transition-leave-to {
    opacity: 0
}

.scroll-x-transition-enter {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px)
}

.scroll-x-transition-leave-to {
    -webkit-transform: translateX(15px);
    transform: translateX(15px)
}

.scroll-x-reverse-transition-enter-active, .scroll-x-reverse-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.scroll-x-reverse-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.scroll-x-reverse-transition-enter, .scroll-x-reverse-transition-leave-to {
    opacity: 0
}

.scroll-x-reverse-transition-enter {
    -webkit-transform: translateX(15px);
    transform: translateX(15px)
}

.scroll-x-reverse-transition-leave-to {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px)
}

.slide-x-transition-enter-active, .slide-x-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.slide-x-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.slide-x-transition-enter, .slide-x-transition-leave-to {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px)
}

.slide-x-reverse-transition-enter-active, .slide-x-reverse-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.slide-x-reverse-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.slide-x-reverse-transition-enter, .slide-x-reverse-transition-leave-to {
    opacity: 0;
    -webkit-transform: translateX(15px);
    transform: translateX(15px)
}

.fade-transition-enter-active, .fade-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.fade-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.fade-transition-enter, .fade-transition-leave-to {
    opacity: 0
}

.fab-transition-enter-active, .fab-transition-leave-active {
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.fab-transition-move {
    transition: -webkit-transform .6s;
    transition: transform .6s;
}

.fab-transition-enter, .fab-transition-leave-to {
    -webkit-transform: scale(0) rotate(-45deg);
    transform: scale(0) rotate(-45deg)
}

.blockquote {
    padding: 16px 0 16px 24px;
    font-size: 18px;
    font-weight: 300
}

code, kbd {
    display: inline-block;
    border-radius: 3px;
    white-space: pre-wrap;
    font-size: 85%;
    font-weight: 900
}

code:after, code:before, kbd:after, kbd:before {
    content: "\00a0";
    letter-spacing: -1px
}

code {
    background-color: #f5f5f5;
    color: #bd4147;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12)
}

kbd {
    background: #616161;
    color: #fff
}

html {
    font-size: 14px;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.application {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5
}

::-ms-clear, ::-ms-reveal {
    display: none
}

ol, ul {
    padding-left: 24px
}

.display-4 {
    font-size: 2.7143rem !important;
    font-weight: 700;
    line-height: 3.0714rem !important;
    letter-spacing: normal !important;
    font-family: Arial, Helvetica, sans-serif !important
}

.display-3 {
    font-size: 1.5714rem !important
}

.display-2, .display-3 {
    font-weight: 700;
    line-height: 1.7143rem !important;
    letter-spacing: normal !important;
    font-family: Arial, Helvetica, sans-serif !important
}

.display-2 {
    font-size: 1.2857rem !important
}

.display-1 {
    font-size: 2.4286rem !important;
    line-height: 2.8571rem !important
}

.display-1, .headline {
    font-weight: 400;
    letter-spacing: normal !important;
    font-family: Arial, Helvetica, sans-serif !important
}

.headline {
    font-size: 1.7143rem !important;
    line-height: 2.2857rem !important
}

.title {
    font-size: 1rem !important;
    font-weight: 400;
    line-height: 1.2857rem !important;
    letter-spacing: normal !important;
    font-family: Arial, Helvetica, sans-serif !important
}

.subheading {
    font-size: 1.1429rem !important;
    font-weight: 400
}

.body-1, .body-2 {
    font-size: 1rem !important;
    font-weight: 400
}

.caption {
    font-size: .8571rem !important;
    font-weight: 400
}

p {
    margin-bottom: 16px
}

@media only print {
    .hidden-print-only {
        display: none !important
    }
}

@media only screen {
    .hidden-screen-only {
        display: none !important
    }
}

@media only screen and (max-width: 599px) {
    .hidden-xs-only {
        display: none !important
    }
}

@media only screen and (min-width: 600px) and (max-width: 959px) {
    .hidden-sm-only {
        display: none !important
    }
}

@media only screen and (max-width: 959px) {
    .hidden-sm-and-down {
        display: none !important
    }
}

@media only screen and (min-width: 600px) {
    .hidden-sm-and-up {
        display: none !important
    }
}

@media only screen and (min-width: 960px) and (max-width: 1263px) {
    .hidden-md-only {
        display: none !important
    }
}

@media only screen and (max-width: 1263px) {
    .hidden-md-and-down {
        display: none !important
    }
}

@media only screen and (min-width: 960px) {
    .hidden-md-and-up {
        display: none !important
    }
}

@media only screen and (min-width: 1264px) and (max-width: 1263px) {
    .hidden-lg-only {
        display: none !important
    }
}

@media only screen and (max-width: 1263px) {
    .hidden-lg-and-down {
        display: none !important
    }
}

@media only screen and (min-width: 1264px) {
    .hidden-lg-and-up, .hidden-xl-only {
        display: none !important
    }
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-hidden {
    overflow-x: hidden
}

.overflow-y-hidden {
    overflow-y: hidden
}

.right {
    float: right !important
}

.left {
    float: left !important
}

.ma-auto {
    margin: auto !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.mt-auto {
    margin-top: auto !important
}

.mr-auto {
    margin-right: auto !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ml-auto {
    margin-left: auto !important
}

.ma-0 {
    margin: 0 !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.mt-0 {
    margin-top: 0 !important
}

.mr-0 {
    margin-right: 0 !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.ml-0 {
    margin-left: 0 !important
}

.pa-0 {
    padding: 0 !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.pt-0 {
    padding-top: 0 !important
}

.pr-0 {
    padding-right: 0 !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pl-0 {
    padding-left: 0 !important
}

.ma-1 {
    margin: 4px !important
}

.my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important
}

.mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important
}

.mt-1 {
    margin-top: 4px !important
}

.mr-1 {
    margin-right: 4px !important
}

.mb-1 {
    margin-bottom: 4px !important
}

.ml-1 {
    margin-left: 4px !important
}

.pa-1 {
    padding: 4px !important
}

.py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important
}

.px-1 {
    padding-left: 4px !important;
    padding-right: 4px !important
}

.pt-1 {
    padding-top: 4px !important
}

.pr-1 {
    padding-right: 4px !important
}

.pb-1 {
    padding-bottom: 4px !important
}

.pl-1 {
    padding-left: 4px !important
}

.ma-2 {
    margin: 8px !important
}

.my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important
}

.mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important
}

.mt-2 {
    margin-top: 8px !important
}

.mr-2 {
    margin-right: 8px !important
}

.mb-2 {
    margin-bottom: 8px !important
}

.ml-2 {
    margin-left: 8px !important
}

.pa-2 {
    padding: 8px !important
}

.py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important
}

.px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important
}

.pt-2 {
    padding-top: 8px !important
}

.pr-2 {
    padding-right: 8px !important
}

.pb-2 {
    padding-bottom: 8px !important
}

.pl-2 {
    padding-left: 8px !important
}

.ma-3 {
    margin: 16px !important
}

.my-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important
}

.mx-3 {
    margin-left: 16px !important;
    margin-right: 16px !important
}

.mt-3 {
    margin-top: 16px !important
}

.mr-3 {
    margin-right: 16px !important
}

.mb-3 {
    margin-bottom: 16px !important
}

.ml-3 {
    margin-left: 16px !important
}

.pa-3 {
    padding: 16px !important
}

.py-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important
}

.px-3 {
    padding-left: 16px !important;
    padding-right: 16px !important
}

.pt-3 {
    padding-top: 16px !important
}

.pr-3 {
    padding-right: 16px !important
}

.pb-3 {
    padding-bottom: 16px !important
}

.pl-3 {
    padding-left: 16px !important
}

.ma-4 {
    margin: 24px !important
}

.my-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important
}

.mx-4 {
    margin-left: 24px !important;
    margin-right: 24px !important
}

.mt-4 {
    margin-top: 24px !important
}

.mr-4 {
    margin-right: 24px !important
}

.mb-4 {
    margin-bottom: 24px !important
}

.ml-4 {
    margin-left: 24px !important
}

.pa-4 {
    padding: 24px !important
}

.py-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important
}

.px-4 {
    padding-left: 24px !important;
    padding-right: 24px !important
}

.pt-4 {
    padding-top: 24px !important
}

.pr-4 {
    padding-right: 24px !important
}

.pb-4 {
    padding-bottom: 24px !important
}

.pl-4 {
    padding-left: 24px !important
}

.ma-5 {
    margin: 48px !important
}

.my-5 {
    margin-top: 48px !important;
    margin-bottom: 48px !important
}

.mx-5 {
    margin-left: 48px !important;
    margin-right: 48px !important
}

.mt-5 {
    margin-top: 48px !important
}

.mr-5 {
    margin-right: 48px !important
}

.mb-5 {
    margin-bottom: 48px !important
}

.ml-5 {
    margin-left: 48px !important
}

.pa-5 {
    padding: 48px !important
}

.py-5 {
    padding-top: 48px !important;
    padding-bottom: 48px !important
}

.px-5 {
    padding-left: 48px !important;
    padding-right: 48px !important
}

.pt-5 {
    padding-top: 48px !important
}

.pr-5 {
    padding-right: 48px !important
}

.pb-5 {
    padding-bottom: 48px !important
}

.pl-5 {
    padding-left: 48px !important
}

@media (min-width: 0) {
    .text-xs-left {
        text-align: left !important
    }

    .text-xs-center {
        text-align: center !important
    }

    .text-xs-right {
        text-align: right !important
    }

    .text-xs-justify {
        text-align: justify !important
    }
}

@media (min-width: 600px) {
    .text-sm-left {
        text-align: left !important
    }

    .text-sm-center {
        text-align: center !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-justify {
        text-align: justify !important
    }
}

@media (min-width: 960px) {
    .text-md-left {
        text-align: left !important
    }

    .text-md-center {
        text-align: center !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-justify {
        text-align: justify !important
    }
}

@media (min-width: 1264px) {
    .text-lg-left {
        text-align: left !important
    }

    .text-lg-center {
        text-align: center !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-justify {
        text-align: justify !important
    }
}

@media (min-width: 1264px) {
    .text-xl-left {
        text-align: left !important
    }

    .text-xl-center {
        text-align: center !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-justify {
        text-align: justify !important
    }
}

.font-weight-thin {
    font-weight: 100 !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-regular {
    font-weight: 400 !important
}

.font-weight-medium {
    font-weight: 500 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-weight-black {
    font-weight: 900 !important
}

.font-italic {
    font-style: italic !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-none {
    text-transform: none !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-no-wrap, .text-truncate {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.1 !important
}

.transition-fast-out-slow-in {
    transition: .3s cubic-bezier(.4, 0, .2, 1) !important
}

.transition-linear-out-slow-in {
    transition: .3s cubic-bezier(0, 0, .2, 1) !important
}

.transition-fast-out-linear-in {
    transition: .3s cubic-bezier(.4, 0, 1, 1) !important
}

.transition-ease-in-out {
    transition: .3s cubic-bezier(.4, 0, .6, 1) !important
}

.transition-fast-in-fast-out {
    transition: .3s cubic-bezier(.25, .8, .25, 1) !important
}

.transition-swing {
    transition: .3s cubic-bezier(.25, .8, .5, 1) !important
}

.display-1, .display-2, .display-3, .display-4, h1, h2, h3, h4, h5 {
    color: #333;
    display: block
}

.display-1.inline, .display-2.inline, .display-3.inline, .display-4.inline, h1.inline, h2.inline, h3.inline, h4.inline, h5.inline {
    display: inline-block
}

.body-2 {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.2857rem
}

.text-columns {
    grid-column-gap: 24px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2
}

.text-columns.text-columns-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3
}

.text-columns.text-columns-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4
}

@media only screen and (max-width: 959px) {
    .text-columns {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }
}

a {
    color: #555
}

a:hover {
    color: #c9c9c9
}

.v-carousel__next .v-btn, .v-carousel__prev .v-btn {
    color: #fff
}

.v-carousel__controls {
    background: rgba(0, 0, 0, .5)
}

.v-carousel__controls__item {
    color: #fff !important
}

.v-btn--floating .v-btn__content {
    height: auto !important
}

.container {
    padding: 8px
}

@media only screen and (max-width: 959px) {
    .container {
        padding: 16px
    }
}

.no-shadow {
    box-shadow: none !important
}

.elevation-light {
    box-shadow: 0 1px 2px 0 rgba(70, 85, 95, .15) !important
}

.theme--light.v-icon {
    color: rgba(0, 0, 0, .54)
}

.theme--light.v-icon.v-icon--disabled {
    color: rgba(0, 0, 0, .38) !important
}

.theme--dark.v-icon {
    color: #fff
}

.theme--dark.v-icon.v-icon--disabled {
    color: hsla(0, 0%, 100%, .5) !important
}

.v-icon {
    align-items: center;
    display: inline-flex;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    font-size: 24px;
    justify-content: center;
    line-height: 1;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
    vertical-align: text-bottom
}

.v-icon--right {
    margin-left: 16px
}

.v-icon--left {
    margin-right: 16px
}

.v-icon.v-icon.v-icon--link {
    cursor: pointer
}

.v-icon--disabled {
    pointer-events: none;
    opacity: .6
}

.v-icon--is-component {
    height: 24px
}

.v-content {
    transition: none;
    display: flex;
    flex: 1 0 auto;
    max-width: 100%
}

.v-content[data-booted=true] {
    transition: .2s cubic-bezier(.4, 0, .2, 1)
}

.v-content__wrap {
    flex: 1 1 auto;
    max-width: 100%;
    position: relative
}

@-moz-document url-prefix() {
    @media print {
        .v-content {
            display: block
        }
    }
}

.theme--light.v-toolbar {
    background-color: #f5f5f5;
    color: #333
}

.theme--dark.v-toolbar {
    background-color: #212121;
    color: #fff
}

.application--is-rtl .v-toolbar__title:not(:first-child) {
    margin-left: 0;
    margin-right: 20px
}

.v-toolbar {
    transition: none;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    position: relative;
    width: 100%;
    will-change: padding-left, padding-right
}

.v-toolbar[data-booted=true] {
    transition: .2s cubic-bezier(.4, 0, .2, 1)
}

.v-toolbar .v-text-field--box, .v-toolbar .v-text-field--enclosed {
    margin: 0
}

.v-toolbar .v-text-field--box .v-text-field__details, .v-toolbar .v-text-field--enclosed .v-text-field__details {
    display: none
}

.v-toolbar .v-tabs {
    width: 100%
}

.v-toolbar__title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.v-toolbar__title:not(:first-child) {
    margin-left: 20px
}

.v-toolbar__content, .v-toolbar__extension {
    align-items: center;
    display: flex;
    padding: 0 24px
}

@media only screen and (max-width: 959px) {
    .v-toolbar__content, .v-toolbar__extension {
        padding: 0 16px
    }
}

.v-toolbar__content .v-btn--icon, .v-toolbar__extension .v-btn--icon {
    margin: 6px
}

.v-toolbar__content > :first-child, .v-toolbar__extension > :first-child {
    margin-left: 0
}

.v-toolbar__content > :first-child.v-btn--icon, .v-toolbar__extension > :first-child.v-btn--icon {
    margin-left: -6px
}

.v-toolbar__content > :first-child.v-menu .v-menu__activator .v-btn, .v-toolbar__content > :first-child.v-tooltip span .v-btn, .v-toolbar__extension > :first-child.v-menu .v-menu__activator .v-btn, .v-toolbar__extension > :first-child.v-tooltip span .v-btn {
    margin-left: 0
}

.v-toolbar__content > :first-child.v-menu .v-menu__activator .v-btn--icon, .v-toolbar__content > :first-child.v-tooltip span .v-btn--icon, .v-toolbar__extension > :first-child.v-menu .v-menu__activator .v-btn--icon, .v-toolbar__extension > :first-child.v-tooltip span .v-btn--icon {
    margin-left: -6px
}

.v-toolbar__content > :last-child, .v-toolbar__extension > :last-child {
    margin-right: 0
}

.v-toolbar__content > :last-child.v-btn--icon, .v-toolbar__extension > :last-child.v-btn--icon {
    margin-right: -6px
}

.v-toolbar__content > :last-child.v-menu .v-menu__activator .v-btn, .v-toolbar__content > :last-child.v-tooltip span .v-btn, .v-toolbar__extension > :last-child.v-menu .v-menu__activator .v-btn, .v-toolbar__extension > :last-child.v-tooltip span .v-btn {
    margin-right: 0
}

.v-toolbar__content > :last-child.v-menu .v-menu__activator .v-btn--icon, .v-toolbar__content > :last-child.v-tooltip span .v-btn--icon, .v-toolbar__extension > :last-child.v-menu .v-menu__activator .v-btn--icon, .v-toolbar__extension > :last-child.v-tooltip span .v-btn--icon {
    margin-right: -6px
}

.v-toolbar__content > .v-list, .v-toolbar__extension > .v-list {
    flex: 1 1 auto;
    max-height: 100%
}

.v-toolbar__content > .v-list:first-child, .v-toolbar__extension > .v-list:first-child {
    margin-left: -24px
}

@media only screen and (max-width: 959px) {
    .v-toolbar__content > .v-list:first-child, .v-toolbar__extension > .v-list:first-child {
        margin-left: -16px
    }
}

.v-toolbar__content > .v-list:last-child, .v-toolbar__extension > .v-list:last-child {
    margin-right: -24px
}

@media only screen and (max-width: 959px) {
    .v-toolbar__content > .v-list:last-child, .v-toolbar__extension > .v-list:last-child {
        margin-right: -16px
    }
}

.v-toolbar__extension > .v-toolbar__title {
    margin-left: 72px
}

.v-toolbar__items {
    display: flex;
    height: inherit;
    max-width: 100%;
    padding: 0
}

.v-toolbar__items .v-btn {
    align-items: center;
    align-self: center
}

.v-toolbar__items .v-tooltip, .v-toolbar__items .v-tooltip > span {
    height: inherit
}

.v-toolbar__items .v-btn:not(.v-btn--floating):not(.v-btn--icon), .v-toolbar__items .v-menu, .v-toolbar__items .v-menu__activator {
    height: inherit;
    margin: 0
}

.v-toolbar .v-btn-toggle, .v-toolbar .v-overflow-btn {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12)
}

.v-toolbar .v-input {
    margin: 0
}

.v-toolbar .v-overflow-btn .v-input__control:before, .v-toolbar .v-overflow-btn .v-input__slot:before {
    display: none
}

.v-toolbar--card {
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12)
}

.v-toolbar--fixed {
    position: fixed;
    z-index: 2
}

.v-toolbar--absolute, .v-toolbar--fixed {
    top: 0;
    left: 0
}

.v-toolbar--absolute {
    position: absolute;
    z-index: 2
}

.v-toolbar--floating {
    display: inline-flex;
    margin: 16px;
    width: auto
}

.v-toolbar--clipped {
    z-index: 3
}

.v-autocomplete.v-input > .v-input__control > .v-input__slot {
    cursor: text
}

.v-autocomplete input {
    align-self: center
}

.v-autocomplete--is-selecting-index input {
    opacity: 0
}

.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo):not(.v-text-field--single-line) .v-select__slot > input {
    margin-top: 24px
}

.v-autocomplete:not(.v-input--is-disabled).v-select.v-text-field input {
    pointer-events: inherit
}

.v-autocomplete__content.v-menu__content, .v-autocomplete__content.v-menu__content .v-card {
    border-radius: 0
}

.theme--light.v-text-field > .v-input__control > .v-input__slot:before {
    border-color: rgba(0, 0, 0, .42)
}

.theme--light.v-text-field:not(.v-input--has-state) > .v-input__control > .v-input__slot:hover:before {
    border-color: #333
}

.theme--light.v-text-field.v-input--is-disabled > .v-input__control > .v-input__slot:before {
    -o-border-image: repeating-linear-gradient(90deg, #333 0, #333 2px, transparent 0, transparent 4px) 1 repeat;
}

.theme--light.v-text-field.v-input--is-disabled > .v-input__control > .v-input__slot:before .v-text-field__prefix, .theme--light.v-text-field.v-input--is-disabled > .v-input__control > .v-input__slot:before .v-text-field__suffix, .theme--light.v-text-field__prefix, .theme--light.v-text-field__suffix {
    color: #333
}

.theme--light.v-text-field--solo > .v-input__control > .v-input__slot {
    border-radius: 2px;
    background: #fff
}

.theme--light.v-text-field--solo-inverted.v-text-field--solo > .v-input__control > .v-input__slot {
    background: rgba(0, 0, 0, .16)
}

.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused > .v-input__control > .v-input__slot {
    background: #424242
}

.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused > .v-input__control > .v-input__slot .v-label, .theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused > .v-input__control > .v-input__slot input {
    color: #fff
}

.theme--light.v-text-field--box > .v-input__control > .v-input__slot {
    background: rgba(0, 0, 0, .06)
}

.theme--light.v-text-field--box .v-text-field__prefix {
    max-height: 32px;
    margin-top: 22px
}

.theme--light.v-text-field--box.v-input--is-dirty .v-text-field__prefix, .theme--light.v-text-field--box.v-input--is-focused .v-text-field__prefix, .theme--light.v-text-field--box.v-text-field--placeholder .v-text-field__prefix {
    margin-top: 22px;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.theme--light.v-text-field--box:not(.v-input--is-focused) > .v-input__control > .v-input__slot:hover {
    background: rgba(0, 0, 0, .12)
}

.theme--light.v-text-field--outline:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot:hover, .theme--light.v-text-field--outline > .v-input__control > .v-input__slot {
    border: 2px solid #333
}

.theme--dark.v-text-field > .v-input__control > .v-input__slot:before {
    border-color: hsla(0, 0%, 100%, .7)
}

.theme--dark.v-text-field:not(.v-input--has-state) > .v-input__control > .v-input__slot:hover:before {
    border-color: #fff
}

.theme--dark.v-text-field.v-input--is-disabled > .v-input__control > .v-input__slot:before {
    border-image: repeating-linear-gradient(90deg, hsla(0, 0%, 100%, .5) 0, hsla(0, 0%, 100%, .5) 2px, transparent 0, transparent 4px) 1 repeat;
}

.theme--dark.v-text-field.v-input--is-disabled > .v-input__control > .v-input__slot:before .v-text-field__prefix, .theme--dark.v-text-field.v-input--is-disabled > .v-input__control > .v-input__slot:before .v-text-field__suffix {
    color: hsla(0, 0%, 100%, .5)
}

.theme--dark.v-text-field__prefix, .theme--dark.v-text-field__suffix {
    color: hsla(0, 0%, 100%, .7)
}

.theme--dark.v-text-field--solo > .v-input__control > .v-input__slot {
    border-radius: 2px;
    background: #424242
}

.theme--dark.v-text-field--solo-inverted.v-text-field--solo > .v-input__control > .v-input__slot {
    background: hsla(0, 0%, 100%, .16)
}

.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused > .v-input__control > .v-input__slot {
    background: #fff
}

.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused > .v-input__control > .v-input__slot .v-label, .theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused > .v-input__control > .v-input__slot input {
    color: rgba(0, 0, 0, .87)
}

.theme--dark.v-text-field--box > .v-input__control > .v-input__slot {
    background: rgba(0, 0, 0, .1)
}

.theme--dark.v-text-field--box .v-text-field__prefix {
    max-height: 32px;
    margin-top: 22px
}

.theme--dark.v-text-field--box.v-input--is-dirty .v-text-field__prefix, .theme--dark.v-text-field--box.v-input--is-focused .v-text-field__prefix, .theme--dark.v-text-field--box.v-text-field--placeholder .v-text-field__prefix {
    margin-top: 22px;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.theme--dark.v-text-field--box:not(.v-input--is-focused) > .v-input__control > .v-input__slot:hover {
    background: rgba(0, 0, 0, .2)
}

.theme--dark.v-text-field--outline > .v-input__control > .v-input__slot {
    border: 2px solid hsla(0, 0%, 100%, .7)
}

.theme--dark.v-text-field--outline:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot:hover {
    border: 2px solid #fff
}

.application--is-rtl .v-text-field .v-label {
    -webkit-transform-origin: top right;
    transform-origin: top right
}

.application--is-rtl .v-text-field .v-counter {
    margin-left: 0;
    margin-right: 8px
}

.application--is-rtl .v-text-field--enclosed .v-input__append-outer {
    margin-left: 0;
    margin-right: 16px
}

.application--is-rtl .v-text-field--enclosed .v-input__prepend-outer {
    margin-left: 16px;
    margin-right: 0
}

.application--is-rtl .v-text-field--reverse input {
    text-align: left
}

.application--is-rtl .v-text-field--reverse .v-label {
    -webkit-transform-origin: top left;
    transform-origin: top left
}

.application--is-rtl .v-text-field__prefix {
    text-align: left;
    padding-right: 0;
    padding-left: 4px
}

.application--is-rtl .v-text-field__suffix {
    padding-left: 0;
    padding-right: 4px
}

.application--is-rtl .v-text-field--reverse .v-text-field__prefix {
    text-align: right;
    padding-left: 0;
    padding-right: 4px
}

.application--is-rtl .v-text-field--reverse .v-text-field__suffix {
    padding-left: 0;
    padding-right: 4px
}

.v-text-field {
    padding-top: 12px;
    margin-top: 4px
}

.v-text-field input {
    flex: 1 1 auto;
    line-height: 20px;
    padding: 8px 0;
    max-width: 100%;
    min-width: 0;
    width: 100%
}

.v-text-field .v-input__append-inner, .v-text-field .v-input__prepend-inner {
    align-self: flex-start;
    display: inline-flex;
    margin-top: 4px;
    line-height: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.v-text-field .v-input__prepend-inner {
    margin-right: auto;
    padding-right: 4px
}

.v-text-field .v-input__append-inner {
    margin-left: auto;
    padding-left: 4px
}

.v-text-field .v-counter {
    margin-left: 8px;
    white-space: nowrap
}

.v-text-field .v-label {
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    top: 6px;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    white-space: nowrap;
    pointer-events: none
}

.v-text-field .v-label--active {
    max-width: 133%;
    -webkit-transform: translateY(-18px) scale(.75);
    transform: translateY(-18px) scale(.75)
}

.v-text-field > .v-input__control > .v-input__slot {
    cursor: text;
    transition: background .3s cubic-bezier(.25, .8, .5, 1)
}

.v-text-field > .v-input__control > .v-input__slot:after, .v-text-field > .v-input__control > .v-input__slot:before {
    bottom: -1px;
    content: "";
    left: 0;
    position: absolute;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
    width: 100%
}

.v-text-field > .v-input__control > .v-input__slot:before {
    border-style: solid;
    border-width: thin 0 0
}

.v-text-field > .v-input__control > .v-input__slot:after {
    border-color: currentcolor;
    border-style: solid;
    border-width: thin 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0)
}

.v-text-field__details {
    display: flex;
    flex: 1 0 auto;
    max-width: 100%;
    overflow: hidden
}

.v-text-field__prefix, .v-text-field__suffix {
    align-self: center;
    cursor: default
}

.v-text-field__prefix {
    text-align: right;
    padding-right: 4px
}

.v-text-field__suffix {
    padding-left: 4px;
    white-space: nowrap
}

.v-text-field--reverse .v-text-field__prefix {
    text-align: left;
    padding-right: 0;
    padding-left: 4px
}

.v-text-field--reverse .v-text-field__suffix {
    padding-left: 0;
    padding-right: 4px
}

.v-text-field > .v-input__control > .v-input__slot > .v-text-field__slot {
    display: flex;
    flex: 1 1 auto;
    position: relative
}

.v-text-field--box, .v-text-field--full-width, .v-text-field--outline {
    position: relative
}

.v-text-field--box > .v-input__control > .v-input__slot, .v-text-field--full-width > .v-input__control > .v-input__slot, .v-text-field--outline > .v-input__control > .v-input__slot {
    align-items: stretch;
    min-height: 56px
}

.v-text-field--box input, .v-text-field--full-width input, .v-text-field--outline input {
    margin-top: 22px
}

.v-text-field--box.v-text-field--single-line input, .v-text-field--full-width.v-text-field--single-line input, .v-text-field--outline.v-text-field--single-line input {
    margin-top: 12px
}

.v-text-field--box .v-label, .v-text-field--full-width .v-label, .v-text-field--outline .v-label {
    top: 18px
}

.v-text-field--box .v-label--active, .v-text-field--full-width .v-label--active, .v-text-field--outline .v-label--active {
    -webkit-transform: translateY(-6px) scale(.75);
    transform: translateY(-6px) scale(.75)
}

.v-text-field--box > .v-input__control > .v-input__slot {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.v-text-field--box > .v-input__control > .v-input__slot:before {
    border-style: solid;
    border-width: thin 0
}

.v-text-field.v-text-field--enclosed {
    margin: 0;
    padding: 0
}

.v-text-field.v-text-field--enclosed:not(.v-text-field--box) .v-progress-linear__background {
    display: none
}

.v-text-field.v-text-field--enclosed .v-input__append-inner, .v-text-field.v-text-field--enclosed .v-input__append-outer, .v-text-field.v-text-field--enclosed .v-input__prepend-inner, .v-text-field.v-text-field--enclosed .v-input__prepend-outer {
    margin-top: 16px
}

.v-text-field.v-text-field--enclosed .v-text-field__details, .v-text-field.v-text-field--enclosed > .v-input__control > .v-input__slot {
    padding: 0 12px
}

.v-text-field.v-text-field--enclosed .v-text-field__details {
    margin-bottom: 8px
}

.v-text-field--reverse input {
    text-align: right
}

.v-text-field--reverse .v-label {
    -webkit-transform-origin: top right;
    transform-origin: top right
}

.v-text-field--reverse .v-text-field__slot, .v-text-field--reverse > .v-input__control > .v-input__slot {
    flex-direction: row-reverse
}

.v-text-field--full-width > .v-input__control > .v-input__slot:after, .v-text-field--full-width > .v-input__control > .v-input__slot:before, .v-text-field--outline > .v-input__control > .v-input__slot:after, .v-text-field--outline > .v-input__control > .v-input__slot:before, .v-text-field--solo > .v-input__control > .v-input__slot:after, .v-text-field--solo > .v-input__control > .v-input__slot:before {
    display: none
}

.v-text-field--outline {
    margin-bottom: 16px;
    transition: border .3s cubic-bezier(.25, .8, .5, 1)
}

.v-text-field--outline > .v-input__control > .v-input__slot {
    background: transparent !important;
    border-radius: 4px
}

.v-text-field--outline .v-text-field__prefix {
    margin-top: 22px;
    max-height: 32px
}

.v-text-field--outline .v-input__append-outer, .v-text-field--outline .v-input__prepend-outer {
    margin-top: 18px
}

.v-text-field--outline.v-input--is-dirty .v-text-field__prefix, .v-text-field--outline.v-input--is-focused .v-text-field__prefix, .v-text-field--outline.v-text-field--placeholder .v-text-field__prefix {
    margin-top: 22px;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.v-text-field--outline.v-input--has-state > .v-input__control > .v-input__slot, .v-text-field--outline.v-input--is-focused > .v-input__control > .v-input__slot {
    border: 2px solid;
    transition: border .3s cubic-bezier(.25, .8, .5, 1)
}

.v-text-field.v-text-field--solo .v-label {
    top: calc(50% - 10px)
}

.v-text-field.v-text-field--solo .v-input__control {
    min-height: 48px;
    padding: 0
}

.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat) > .v-input__control > .v-input__slot {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.v-text-field.v-text-field--solo .v-text-field__slot {
    align-items: center
}

.v-text-field.v-text-field--solo .v-input__append-inner, .v-text-field.v-text-field--solo .v-input__prepend-inner {
    align-self: center;
    margin-top: 0
}

.v-text-field.v-text-field--solo .v-input__append-outer, .v-text-field.v-text-field--solo .v-input__prepend-outer {
    margin-top: 12px
}

.v-text-field.v-input--is-focused > .v-input__control > .v-input__slot:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.v-text-field.v-input--has-state > .v-input__control > .v-input__slot:before {
    border-color: currentColor
}

.theme--light.v-select .v-chip--disabled, .theme--light.v-select.v-input--is-disabled .v-select__selections, .theme--light.v-select .v-select__selection--disabled, .theme--light.v-select .v-select__selections {
    color: #333
}

.theme--dark.v-select .v-select__selections, .theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections {
    color: #fff
}

.theme--dark.v-select .v-chip--disabled, .theme--dark.v-select.v-input--is-disabled .v-select__selections, .theme--dark.v-select .v-select__selection--disabled {
    color: hsla(0, 0%, 100%, .5)
}

.theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections {
    color: rgba(0, 0, 0, .87)
}

.v-select {
    position: relative
}

.v-select > .v-input__control > .v-input__slot {
    cursor: pointer
}

.v-select .v-chip {
    flex: 0 1 auto
}

.v-select .fade-transition-leave-active {
    position: absolute;
    left: 0
}

.v-select.v-input--is-dirty ::-webkit-input-placeholder {
    color: transparent !important
}

.v-select.v-input--is-dirty ::-moz-placeholder {
    color: transparent !important
}

.v-select.v-input--is-dirty :-ms-input-placeholder {
    color: transparent !important
}

.v-select.v-input--is-dirty ::-ms-input-placeholder {
    color: transparent !important
}

.v-select.v-input--is-dirty ::placeholder {
    color: transparent !important
}

.v-select:not(.v-input--is-dirty):not(.v-input--is-focused) .v-text-field__prefix {
    line-height: 20px;
    position: absolute;
    top: 7px;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.v-select.v-text-field--enclosed:not(.v-text-field--single-line) .v-select__selections {
    padding-top: 24px
}

.v-select.v-text-field input {
    flex: 1 1;
    margin-top: 0;
    min-width: 0;
    pointer-events: none;
    position: relative
}

.v-select.v-select--is-menu-active .v-input__icon--append .v-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.v-select.v-select--chips input {
    margin: 0
}

.v-select.v-select--chips .v-select__selections {
    min-height: 42px
}

.v-select.v-select--chips.v-select--chips--small .v-select__selections {
    min-height: 32px
}

.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections, .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections {
    min-height: 68px
}

.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections, .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections {
    min-height: 56px
}

.v-select.v-text-field--reverse .v-select__selections, .v-select.v-text-field--reverse .v-select__slot {
    flex-direction: row-reverse
}

.v-select__selections {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    line-height: 18px
}

.v-select__selection {
    max-width: 90%
}

.v-select__selection--comma {
    align-items: center;
    display: inline-flex;
    margin: 7px 4px 7px 0
}

.v-select__slot {
    position: relative;
    align-items: center;
    display: flex;
    width: 100%
}

.v-select:not(.v-text-field--single-line) .v-select__slot > input {
    align-self: flex-end
}

.theme--light.v-chip {
    background: #e0e0e0;
    color: rgba(0, 0, 0, .87)
}

.theme--light.v-chip--disabled {
    color: #333
}

.theme--dark.v-chip {
    background: #555;
    color: #fff
}

.theme--dark.v-chip--disabled {
    color: hsla(0, 0%, 100%, .5)
}

.application--is-rtl .v-chip__close {
    margin: 0 8px 0 2px
}

.application--is-rtl .v-chip--removable .v-chip__content {
    padding: 0 12px 0 4px
}

.application--is-rtl .v-chip--select-multi {
    margin: 4px 0 4px 4px
}

.application--is-rtl .v-chip .v-avatar {
    margin-right: -12px;
    margin-left: 8px
}

.application--is-rtl .v-chip .v-icon--right {
    margin-right: 12px;
    margin-left: -8px
}

.application--is-rtl .v-chip .v-icon--left {
    margin-right: -8px;
    margin-left: 12px
}

.v-chip {
    font-size: 13px;
    margin: 4px;
    outline: none;
    position: relative;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.v-chip, .v-chip .v-chip__content {
    align-items: center;
    border-radius: 28px;
    display: inline-flex;
    vertical-align: middle
}

.v-chip .v-chip__content {
    cursor: default;
    height: 32px;
    justify-content: space-between;
    padding: 0 12px;
    white-space: nowrap;
    z-index: 1
}

.v-chip--removable .v-chip__content {
    padding: 0 4px 0 12px
}

.v-chip .v-avatar {
    height: 32px !important;
    margin-left: -12px;
    margin-right: 8px;
    min-width: 32px;
    width: 32px !important
}

.v-chip .v-avatar img {
    height: 100%;
    width: 100%
}

.v-chip--active, .v-chip--selected, .v-chip:focus:not(.v-chip--disabled) {
    border-color: rgba(0, 0, 0, .13);
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.v-chip--active:after, .v-chip--selected:after, .v-chip:focus:not(.v-chip--disabled):after {
    background: currentColor;
    border-radius: inherit;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: inherit;
    width: 100%;
    pointer-events: none;
    opacity: .13
}

.v-chip--label, .v-chip--label .v-chip__content {
    border-radius: 2px
}

.v-chip.v-chip.v-chip--outline {
    background: transparent !important;
    border: 1px solid;
    color: #9e9e9e;
    height: 32px
}

.v-chip.v-chip.v-chip--outline .v-avatar {
    margin-left: -13px
}

.v-chip--small {
    height: 24px !important
}

.v-chip--small .v-avatar {
    height: 24px !important;
    min-width: 24px;
    width: 24px !important
}

.v-chip--small .v-icon {
    font-size: 20px
}

.v-chip__close {
    align-items: center;
    color: inherit;
    display: flex;
    font-size: 20px;
    margin: 0 2px 0 8px;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.v-chip__close > .v-icon {
    color: inherit !important;
    font-size: 20px;
    cursor: pointer;
    opacity: .5
}

.v-chip__close > .v-icon:hover {
    opacity: 1
}

.v-chip--disabled .v-chip__close {
    pointer-events: none
}

.v-chip--select-multi {
    margin: 4px 4px 4px 0
}

.v-chip .v-icon {
    color: inherit
}

.v-chip .v-icon--right {
    margin-left: 12px;
    margin-right: -8px
}

.v-chip .v-icon--left {
    margin-left: -8px;
    margin-right: 12px
}

.v-menu {
    display: block;
    vertical-align: middle
}

.v-menu--inline {
    display: inline-block
}

.v-menu__activator {
    align-items: center;
    cursor: pointer;
    display: flex
}

.v-menu__activator * {
    cursor: pointer
}

.v-menu__content {
    position: absolute;
    display: inline-block;
    border-radius: 2px;
    max-width: 80%;
    overflow-y: auto;
    overflow-x: hidden;
    contain: content;
    will-change: transform;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12)
}

.v-menu__content--active {
    pointer-events: none
}

.v-menu__content--fixed {
    position: fixed
}

.v-menu__content > .card {
    contain: content;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.v-menu > .v-menu__content {
    max-width: none
}

.v-menu-transition-enter .v-list__tile {
    min-width: 0;
    pointer-events: none
}

.v-menu-transition-enter-to .v-list__tile {
    pointer-events: auto;
    transition-delay: .1s
}

.v-menu-transition-leave-active, .v-menu-transition-leave-to {
    pointer-events: none
}

.v-menu-transition-enter, .v-menu-transition-leave-to {
    opacity: 0
}

.v-menu-transition-enter-active, .v-menu-transition-leave-active {
    transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.v-menu-transition-enter.v-menu__content--auto {
    transition: none !important
}

.v-menu-transition-enter.v-menu__content--auto .v-list__tile {
    opacity: 0;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
}

.v-menu-transition-enter.v-menu__content--auto .v-list__tile--active {
    opacity: 1;
    -webkit-transform: none !important;
    transform: none !important;
    pointer-events: auto
}

.theme--light.v-card {
    background-color: #fff;
    border-color: #fff;
    color: #333
}

.theme--dark.v-card {
    background-color: #424242;
    border-color: #424242;
    color: #fff
}

.v-card {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    text-decoration: none
}

.v-card > :first-child:not(.v-btn):not(.v-chip) {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.v-card > :last-child:not(.v-btn):not(.v-chip) {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit
}

.v-card--flat {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12)
}

.v-card--hover {
    cursor: pointer;
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
    transition-property: box-shadow
}

.v-card--hover:hover {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12)
}

.v-card__title {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding: 16px
}

.v-card__title--primary {
    padding-top: 24px
}

.v-card__text {
    padding: 16px;
    width: 100%
}

.v-card__actions {
    align-items: center;
    display: flex;
    padding: 8px
}

.v-card__actions .v-btn, .v-card__actions > * {
    margin: 0
}

.v-card__actions .v-btn + .v-btn {
    margin-left: 8px
}

.theme--light.v-input--selection-controls.v-input--is-disabled .v-icon {
    color: rgba(0, 0, 0, .26) !important
}

.theme--dark.v-input--selection-controls.v-input--is-disabled .v-icon {
    color: hsla(0, 0%, 100%, .3) !important
}

.application--is-rtl .v-input--selection-controls .v-input--selection-controls__input {
    margin-right: 0;
    margin-left: 8px
}

.v-input--selection-controls {
    margin-top: 16px;
    padding-top: 4px
}

.v-input--selection-controls .v-input__append-outer, .v-input--selection-controls .v-input__prepend-outer {
    margin-top: 0;
    margin-bottom: 0
}

.v-input--selection-controls .v-input__control {
    flex-grow: 0;
    width: auto
}

.v-input--selection-controls:not(.v-input--hide-details) .v-input__slot {
    margin-bottom: 12px
}

.v-input--selection-controls__input {
    color: inherit;
    display: inline-flex;
    flex: 0 0 auto;
    height: 24px;
    position: relative;
    margin-right: 8px;
    transition: .3s cubic-bezier(.25, .8, .25, 1);
    transition-property: color, transform;
    width: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.v-input--selection-controls__input input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%
}

.v-input--selection-controls__input + .v-label, .v-input--selection-controls__input input {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.v-input--selection-controls__ripple {
    border-radius: 50%;
    cursor: pointer;
    height: 34px;
    position: absolute;
    transition: inherit;
    width: 34px;
    left: -12px;
    top: calc(50% - 24px);
    margin: 7px
}

.v-input--selection-controls__ripple:before {
    border-radius: inherit;
    bottom: 0;
    content: "";
    position: absolute;
    opacity: .2;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: scale(.2);
    transform: scale(.2);
    transition: inherit
}

.v-input--selection-controls__ripple .v-ripple__container {
    -webkit-transform: scale(1.4);
    transform: scale(1.4)
}

.v-input--selection-controls.v-input .v-label {
    align-items: center;
    display: inline-flex;
    top: 0;
    height: auto
}

.v-input--selection-controls.v-input--is-focused .v-input--selection-controls__ripple:before, .v-input--selection-controls .v-radio--is-focused .v-input--selection-controls__ripple:before {
    background: currentColor;
    -webkit-transform: scale(.8);
    transform: scale(.8)
}

.theme--light.v-input:not(.v-input--is-disabled) input, .theme--light.v-input:not(.v-input--is-disabled) textarea {
    color: #333
}

.theme--light.v-input input::-webkit-input-placeholder, .theme--light.v-input textarea::-webkit-input-placeholder {
    color: #333
}

.theme--light.v-input input::-moz-placeholder, .theme--light.v-input textarea::-moz-placeholder {
    color: #333
}

.theme--light.v-input input:-ms-input-placeholder, .theme--light.v-input textarea:-ms-input-placeholder {
    color: #333
}

.theme--light.v-input input::-ms-input-placeholder, .theme--light.v-input textarea::-ms-input-placeholder {
    color: #333
}

.theme--light.v-input input::placeholder, .theme--light.v-input textarea::placeholder {
    color: #333
}

.theme--light.v-input--is-disabled .v-label, .theme--light.v-input--is-disabled input, .theme--light.v-input--is-disabled textarea {
    color: #333
}

.theme--dark.v-input:not(.v-input--is-disabled) input, .theme--dark.v-input:not(.v-input--is-disabled) textarea {
    color: #fff
}

.theme--dark.v-input input::-webkit-input-placeholder, .theme--dark.v-input textarea::-webkit-input-placeholder {
    color: hsla(0, 0%, 100%, .5)
}

.theme--dark.v-input input::-moz-placeholder, .theme--dark.v-input textarea::-moz-placeholder {
    color: hsla(0, 0%, 100%, .5)
}

.theme--dark.v-input input:-ms-input-placeholder, .theme--dark.v-input textarea:-ms-input-placeholder {
    color: hsla(0, 0%, 100%, .5)
}

.theme--dark.v-input input::-ms-input-placeholder, .theme--dark.v-input textarea::-ms-input-placeholder {
    color: hsla(0, 0%, 100%, .5)
}

.theme--dark.v-input input::placeholder, .theme--dark.v-input textarea::placeholder {
    color: hsla(0, 0%, 100%, .5)
}

.theme--dark.v-input--is-disabled .v-label, .theme--dark.v-input--is-disabled input, .theme--dark.v-input--is-disabled textarea {
    color: hsla(0, 0%, 100%, .5)
}

.v-input {
    align-items: flex-start;
    display: flex;
    flex: 1 1 auto;
    font-size: 16px;
    text-align: left
}

.v-input .v-progress-linear {
    top: calc(100% - 1px);
    left: 0;
    margin: 0;
    position: absolute
}

.v-input input {
    max-height: 32px
}

.v-input input:invalid, .v-input textarea:invalid {
    box-shadow: none
}

.v-input input:active, .v-input input:focus, .v-input textarea:active, .v-input textarea:focus {
    outline: none
}

.v-input .v-label {
    height: 20px;
    line-height: 20px
}

.v-input__append-outer, .v-input__prepend-outer {
    display: inline-flex;
    margin-bottom: 4px;
    margin-top: 4px;
    line-height: 1
}

.v-input__append-outer .v-icon, .v-input__prepend-outer .v-icon {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.v-input__append-outer {
    margin-left: 9px
}

.v-input__prepend-outer {
    margin-right: 9px
}

.v-input__control {
    display: flex;
    flex-direction: column;
    height: auto;
    flex-grow: 1;
    flex-wrap: wrap;
    width: 100%
}

.v-input__icon {
    align-items: center;
    display: inline-flex;
    height: 24px;
    flex: 1 0 auto;
    justify-content: center;
    min-width: 24px;
    width: 24px
}

.v-input__icon--clear {
    border-radius: 50%
}

.v-input__slot {
    align-items: center;
    color: inherit;
    display: flex;
    margin-bottom: 8px;
    min-height: inherit;
    position: relative;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
    width: 100%
}

.v-input--is-disabled:not(.v-input--is-readonly) {
    pointer-events: none
}

.v-input--is-loading > .v-input__control > .v-input__slot:after, .v-input--is-loading > .v-input__control > .v-input__slot:before {
    display: none
}

.v-input--hide-details > .v-input__control > .v-input__slot {
    margin-bottom: 0
}

.v-input--has-state.error--text .v-label {
    -webkit-animation: shake .6s cubic-bezier(.25, .8, .5, 1);
    animation: shake .6s cubic-bezier(.25, .8, .5, 1)
}

.theme--light.v-label, .theme--light.v-label--is-disabled {
    color: #333
}

.theme--dark.v-label {
    color: hsla(0, 0%, 100%, .7)
}

.theme--dark.v-label--is-disabled {
    color: hsla(0, 0%, 100%, .5)
}

.v-label {
    font-size: 16px;
    line-height: 1;
    min-height: 8px;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.theme--light.v-messages {
    color: #333
}

.theme--dark.v-messages {
    color: hsla(0, 0%, 100%, .7)
}

.application--is-rtl .v-messages {
    text-align: right
}

.v-messages {
    flex: 1 1 auto;
    font-size: 12px;
    min-height: 12px;
    min-width: 1px;
    position: relative
}

.v-messages__message {
    line-height: normal;
    word-break: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

.theme--light.v-divider {
    border-color: rgba(0, 0, 0, .12)
}

.theme--dark.v-divider {
    border-color: hsla(0, 0%, 100%, .12)
}

.v-divider {
    display: block;
    flex: 1 1 0;
    max-width: 100%;
    height: 0;
    max-height: 0;
    border: solid;
    border-width: thin 0 0;
    transition: inherit
}

.v-divider--inset:not(.v-divider--vertical) {
    margin-left: 72px;
    max-width: calc(100% - 72px)
}

.v-divider--vertical {
    align-self: stretch;
    border: solid;
    border-width: 0 thin 0 0;
    display: inline-flex;
    height: inherit;
    min-height: 100%;
    max-height: 100%;
    max-width: 0;
    width: 0;
    vertical-align: text-bottom
}

.v-divider--vertical.v-divider--inset {
    margin-top: 8px;
    min-height: 0;
    max-height: calc(100% - 16px)
}

.theme--light.v-subheader {
    color: #333
}

.theme--dark.v-subheader {
    color: hsla(0, 0%, 100%, .7)
}

.v-subheader {
    align-items: center;
    display: flex;
    height: 48px;
    font-size: 1rem;
    font-weight: 400;
    padding: 0 16px
}

.v-subheader--inset {
    margin-left: 56px
}

.theme--light.v-list {
    background: #fff;
    color: #333
}

.theme--light.v-list .v-list--disabled, .theme--light.v-list .v-list__tile__sub-title {
    color: #333
}

.theme--light.v-list .v-list__tile__mask {
    color: #333;
    background: #eee
}

.theme--light.v-list .v-list__group__header:hover, .theme--light.v-list .v-list__tile--highlighted, .theme--light.v-list .v-list__tile--link:hover {
    background: rgba(0, 0, 0, .04)
}

.theme--light.v-list .v-list__group--active:after, .theme--light.v-list .v-list__group--active:before {
    background: rgba(0, 0, 0, .12)
}

.theme--light.v-list .v-list__group--disabled .v-list__tile {
    color: #333 !important
}

.theme--light.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon {
    color: rgba(0, 0, 0, .38) !important
}

.theme--dark.v-list {
    background: #424242;
    color: #fff
}

.theme--dark.v-list .v-list--disabled {
    color: hsla(0, 0%, 100%, .5)
}

.theme--dark.v-list .v-list__tile__sub-title {
    color: hsla(0, 0%, 100%, .7)
}

.theme--dark.v-list .v-list__tile__mask {
    color: hsla(0, 0%, 100%, .5);
    background: #494949
}

.theme--dark.v-list .v-list__group__header:hover, .theme--dark.v-list .v-list__tile--highlighted, .theme--dark.v-list .v-list__tile--link:hover {
    background: hsla(0, 0%, 100%, .08)
}

.theme--dark.v-list .v-list__group--active:after, .theme--dark.v-list .v-list__group--active:before {
    background: hsla(0, 0%, 100%, .12)
}

.theme--dark.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon, .theme--dark.v-list .v-list__group--disabled .v-list__tile {
    color: hsla(0, 0%, 100%, .5) !important
}

.application--is-rtl .v-list__tile__content, .application--is-rtl .v-list__tile__title {
    text-align: right
}

.v-list {
    list-style-type: none;
    padding: 8px 0;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.v-list > div {
    transition: inherit
}

.v-list__tile {
    align-items: center;
    color: inherit;
    display: flex;
    font-size: 1.1429rem;
    font-weight: 400;
    height: 48px;
    margin: 0;
    padding: 0 16px;
    position: relative;
    text-decoration: none;
    transition: background .3s cubic-bezier(.25, .8, .5, 1)
}

.v-list__tile--link {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.v-list__tile__action, .v-list__tile__content {
    height: 100%
}

.v-list__tile__sub-title, .v-list__tile__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
    width: 100%
}

.v-list__tile__title {
    height: 24px;
    line-height: 24px;
    position: relative;
    text-align: left
}

.v-list__tile__sub-title {
    font-size: .8571rem
}

.v-list__tile__action, .v-list__tile__avatar {
    display: flex;
    justify-content: flex-start;
    min-width: 56px
}

.v-list__tile__action {
    align-items: center
}

.v-list__tile__action .v-btn {
    padding: 0;
    margin: 0
}

.v-list__tile__action .v-btn--icon {
    margin: -6px
}

.v-list__tile__action .v-radio.v-radio {
    margin: 0
}

.v-list__tile__action .v-input--selection-controls {
    padding: 0;
    margin: 0
}

.v-list__tile__action .v-input--selection-controls .v-messages {
    display: none
}

.v-list__tile__action .v-input--selection-controls .v-input__slot {
    margin: 0
}

.v-list__tile__action-text {
    color: #9e9e9e;
    font-size: 12px
}

.v-list__tile__action--stack {
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
    flex-direction: column
}

.v-list__tile__content {
    text-align: left;
    flex: 1 1 auto;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column
}

.v-list__tile__content ~ .v-list__tile__action:not(.v-list__tile__action--stack), .v-list__tile__content ~ .v-list__tile__avatar {
    justify-content: flex-end
}

.v-list__tile--active .v-list__tile__action:first-of-type .v-icon {
    color: inherit
}

.v-list__tile--avatar {
    height: 56px
}

.v-list--dense {
    padding-top: 4px;
    padding-bottom: 4px
}

.v-list--dense .v-subheader {
    font-size: 1.8571rem;
    height: 40px
}

.v-list--dense .v-list__group .v-subheader {
    height: 40px
}

.v-list--dense .v-list__tile {
    font-size: 1.8571rem
}

.v-list--dense .v-list__tile--avatar {
    height: 48px
}

.v-list--dense .v-list__tile:not(.v-list__tile--avatar) {
    height: 40px
}

.v-list--dense .v-list__tile .v-icon {
    font-size: 22px
}

.v-list--dense .v-list__tile__sub-title {
    font-size: 1.8571rem
}

.v-list--disabled {
    pointer-events: none
}

.v-list--two-line .v-list__tile {
    height: 72px
}

.v-list--two-line.v-list--dense .v-list__tile {
    height: 60px
}

.v-list--three-line .v-list__tile {
    height: 88px
}

.v-list--three-line .v-list__tile__avatar {
    margin-top: -18px
}

.v-list--three-line .v-list__tile__sub-title {
    white-space: normal;
    -webkit-line-clamp: 2;
    display: -webkit-box
}

.v-list--three-line.v-list--dense .v-list__tile {
    height: 76px
}

.v-list > .v-list__group:before {
    top: 0
}

.v-list > .v-list__group:before .v-list__tile__avatar {
    margin-top: -14px
}

.v-list__group {
    padding: 0;
    position: relative;
    transition: inherit
}

.v-list__group:after, .v-list__group:before {
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
    width: 100%
}

.v-list__group--active ~ .v-list__group:before {
    display: none
}

.v-list__group__header {
    align-items: center;
    cursor: pointer;
    display: flex;
    list-style-type: none
}

.v-list__group__header > div:not(.v-list__group__header__prepend-icon):not(.v-list__group__header__append-icon) {
    flex: 1 1 auto;
    overflow: hidden
}

.v-list__group__header .v-list__group__header__append-icon, .v-list__group__header .v-list__group__header__prepend-icon {
    padding: 0 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.v-list__group__header--sub-group {
    align-items: center;
    display: flex
}

.v-list__group__header--sub-group div .v-list__tile {
    padding-left: 0
}

.v-list__group__header--sub-group .v-list__group__header__prepend-icon {
    padding: 0 0 0 40px;
    margin-right: 8px
}

.v-list__group__header .v-list__group__header__prepend-icon {
    display: flex;
    justify-content: flex-start;
    min-width: 56px
}

.v-list__group__header--active .v-list__group__header__append-icon .v-icon {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.v-list__group__header--active .v-list__group__header__prepend-icon .v-icon {
    color: inherit
}

.v-list__group__header--active.v-list__group__header--sub-group .v-list__group__header__prepend-icon .v-icon {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.v-list__group__items {
    position: relative;
    padding: 0;
    transition: inherit
}

.v-list__group__items > div {
    display: block
}

.v-list__group__items--no-action .v-list__tile {
    padding-left: 72px
}

.v-list__group--disabled {
    pointer-events: none
}

.v-list--subheader {
    padding-top: 0
}

.v-avatar {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    position: relative;
    text-align: center;
    vertical-align: middle
}

.v-avatar .v-icon, .v-avatar .v-image, .v-avatar img {
    border-radius: 50%;
    display: inline-flex;
    height: inherit;
    width: inherit
}

.v-avatar--tile, .v-avatar--tile .v-icon, .v-avatar--tile .v-image, .v-avatar--tile img {
    border-radius: 0
}

.theme--light.v-counter {
    color: #333
}

.theme--dark.v-counter {
    color: hsla(0, 0%, 100%, .7)
}

.v-counter {
    flex: 0 1 auto;
    font-size: 12px;
    min-height: 12px;
    line-height: 1
}

.v-progress-linear {
    background: transparent;
    margin: 1rem 0;
    overflow: hidden;
    width: 100%;
    position: relative
}

.v-progress-linear__bar {
    width: 100%;
    position: relative;
    z-index: 1
}

.v-progress-linear__bar, .v-progress-linear__bar__determinate {
    height: inherit;
    transition: .2s cubic-bezier(.4, 0, .6, 1)
}

.v-progress-linear__bar__indeterminate .long, .v-progress-linear__bar__indeterminate .short {
    height: inherit;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    will-change: left, right;
    width: auto;
    background-color: inherit
}

.v-progress-linear__bar__indeterminate--active .long {
    -webkit-animation: indeterminate;
    animation: indeterminate;
    -webkit-animation-duration: 2.2s;
    animation-duration: 2.2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.v-progress-linear__bar__indeterminate--active .short {
    -webkit-animation: indeterminate-short;
    animation: indeterminate-short;
    -webkit-animation-duration: 2.2s;
    animation-duration: 2.2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.v-progress-linear__background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    transition: .3s ease-in
}

.v-progress-linear__content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}

.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .long {
    -webkit-animation: query;
    animation: query;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .short {
    -webkit-animation: query-short;
    animation: query-short;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes indeterminate {
    0% {
        left: -90%;
        right: 100%
    }
    60% {
        left: -90%;
        right: 100%
    }
    to {
        left: 100%;
        right: -35%
    }
}

@keyframes indeterminate {
    0% {
        left: -90%;
        right: 100%
    }
    60% {
        left: -90%;
        right: 100%
    }
    to {
        left: 100%;
        right: -35%
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%
    }
    60% {
        left: 107%;
        right: -8%
    }
    to {
        left: 107%;
        right: -8%
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%
    }
    60% {
        left: 107%;
        right: -8%
    }
    to {
        left: 107%;
        right: -8%
    }
}

@-webkit-keyframes query {
    0% {
        right: -90%;
        left: 100%
    }
    60% {
        right: -90%;
        left: 100%
    }
    to {
        right: 100%;
        left: -35%
    }
}

@keyframes query {
    0% {
        right: -90%;
        left: 100%
    }
    60% {
        right: -90%;
        left: 100%
    }
    to {
        right: 100%;
        left: -35%
    }
}

@-webkit-keyframes query-short {
    0% {
        right: -200%;
        left: 100%
    }
    60% {
        right: 107%;
        left: -8%
    }
    to {
        right: 107%;
        left: -8%
    }
}

@keyframes query-short {
    0% {
        right: -200%;
        left: 100%
    }
    60% {
        right: 107%;
        left: -8%
    }
    to {
        right: 107%;
        left: -8%
    }
}

.theme--light.v-navigation-drawer {
    background-color: #fff
}

.theme--light.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border {
    background-color: rgba(0, 0, 0, .12)
}

.theme--light.v-navigation-drawer .v-divider {
    border-color: rgba(0, 0, 0, .12)
}

.theme--dark.v-navigation-drawer {
    background-color: #424242
}

.theme--dark.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border {
    background-color: hsla(0, 0%, 100%, .12)
}

.theme--dark.v-navigation-drawer .v-divider {
    border-color: hsla(0, 0%, 100%, .12)
}

.v-navigation-drawer {
    transition: none;
    display: block;
    left: 0;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: auto;
    top: 0;
    will-change: transform;
    z-index: 3;
    -webkit-overflow-scrolling: touch
}

.v-navigation-drawer[data-booted=true] {
    transition: .2s cubic-bezier(.4, 0, .2, 1);
    transition-property: transform, width;
}

.v-navigation-drawer__border {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px
}

.v-navigation-drawer.v-navigation-drawer--right:after {
    left: 0;
    right: auto
}

.v-navigation-drawer--right {
    left: auto;
    right: 0
}

.v-navigation-drawer--right > .v-navigation-drawer__border {
    right: auto;
    left: 0
}

.v-navigation-drawer--absolute {
    position: absolute
}

.v-navigation-drawer--fixed {
    position: fixed
}

.v-navigation-drawer--floating:after {
    display: none
}

.v-navigation-drawer--mini-variant {
    overflow: hidden
}

.v-navigation-drawer--mini-variant .v-list__group__header__prepend-icon {
    flex: 1 0 auto;
    justify-content: center;
    width: 100%
}

.v-navigation-drawer--mini-variant .v-list__tile__action, .v-navigation-drawer--mini-variant .v-list__tile__avatar {
    justify-content: center;
    min-width: 48px
}

.v-navigation-drawer--mini-variant .v-list__tile:after, .v-navigation-drawer--mini-variant .v-list__tile__content {
    opacity: 0
}

.v-navigation-drawer--mini-variant .v-divider, .v-navigation-drawer--mini-variant .v-list--group, .v-navigation-drawer--mini-variant .v-subheader {
    display: none !important
}

.v-navigation-drawer--is-mobile, .v-navigation-drawer--temporary {
    z-index: 6
}

.v-navigation-drawer--is-mobile:not(.v-navigation-drawer--close), .v-navigation-drawer--temporary:not(.v-navigation-drawer--close) {
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12)
}

.v-navigation-drawer .v-list {
    background: inherit
}

.v-navigation-drawer > .v-list .v-list__tile {
    transition: none;
    font-weight: 500
}

.v-navigation-drawer > .v-list .v-list__tile--active .v-list__tile__title {
    color: inherit
}

.v-navigation-drawer > .v-list .v-list--group .v-list__tile {
    font-weight: 400
}

.v-navigation-drawer > .v-list .v-list--group__header--active:after {
    background: transparent
}

.v-navigation-drawer > .v-list:not(.v-list--dense) .v-list__tile {
    font-size: 14px
}

.v-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
    z-index: 5
}

.v-overlay--absolute {
    position: absolute
}

.v-overlay:before {
    background-color: #212121;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: inherit;
    transition-delay: .15s;
    width: 100%
}

.v-overlay--active {
    pointer-events: auto;
    touch-action: none
}

.v-overlay--active:before {
    opacity: .46
}

.theme--light.v-sheet {
    background-color: #fff;
    border-color: #fff;
    color: #333
}

.theme--dark.v-sheet {
    background-color: #424242;
    border-color: #424242;
    color: #fff
}

.v-sheet {
    display: block;
    border-radius: 5px;
    position: relative;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.v-sheet--tile {
    border-radius: 0
}

.v-dialog {
    box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
    border-radius: 2px;
    margin: 24px;
    overflow-y: auto;
    pointer-events: auto;
    transition: .3s cubic-bezier(.25, .8, .25, 1);
    width: 100%;
    z-index: inherit
}

.v-dialog__content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: .2s cubic-bezier(.25, .8, .25, 1);
    width: 100%;
    z-index: 6;
    outline: none
}

.v-dialog:not(.v-dialog--fullscreen) {
    max-height: 90%
}

.v-dialog__activator, .v-dialog__activator * {
    cursor: pointer
}

.v-dialog__container {
    display: inline-block;
    vertical-align: middle
}

.v-dialog--animated {
    -webkit-animation-duration: .15s;
    animation-duration: .15s;
    -webkit-animation-name: animate-dialog;
    animation-name: animate-dialog;
    -webkit-animation-timing-function: cubic-bezier(.25, .8, .25, 1);
    animation-timing-function: cubic-bezier(.25, .8, .25, 1)
}

.v-dialog--fullscreen {
    border-radius: 0;
    margin: 0;
    height: 100%;
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0
}

.v-dialog--fullscreen > .v-card {
    min-height: 100%;
    min-width: 100%;
    margin: 0 !important;
    padding: 0 !important
}

.v-dialog--scrollable, .v-dialog--scrollable > form {
    display: flex
}

.v-dialog--scrollable > .v-card, .v-dialog--scrollable > form > .v-card {
    display: flex;
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: column
}

.v-dialog--scrollable > .v-card > .v-card__actions, .v-dialog--scrollable > .v-card > .v-card__title, .v-dialog--scrollable > form > .v-card > .v-card__actions, .v-dialog--scrollable > form > .v-card > .v-card__title {
    flex: 1 0 auto
}

.v-dialog--scrollable > .v-card > .v-card__text, .v-dialog--scrollable > form > .v-card > .v-card__text {
    overflow-y: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

@-webkit-keyframes animate-dialog {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes animate-dialog {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.theme--light.v-breadcrumbs .v-breadcrumbs__divider, .theme--light.v-breadcrumbs .v-breadcrumbs__item--disabled {
    color: #333
}

.theme--dark.v-breadcrumbs .v-breadcrumbs__divider, .theme--dark.v-breadcrumbs .v-breadcrumbs__item--disabled {
    color: hsla(0, 0%, 100%, .5)
}

.v-breadcrumbs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    flex: 0 1 auto;
    list-style-type: none;
    margin: 0;
    padding: 18px 12px
}

.v-breadcrumbs li {
    align-items: center;
    display: inline-flex;
    font-size: 14px
}

.v-breadcrumbs li .v-icon {
    font-size: 16px
}

.v-breadcrumbs li:nth-child(2n) {
    padding: 0 12px
}

.v-breadcrumbs--large li, .v-breadcrumbs--large li .v-icon {
    font-size: 16px
}

.v-breadcrumbs__item {
    align-items: center;
    display: inline-flex;
    text-decoration: none;
    transition: .3s cubic-bezier(.25, .8, .5, 1)
}

.v-breadcrumbs__item--disabled {
    pointer-events: none
}

.application--is-rtl .v-snack__content .v-btn {
    margin: 0 24px 0 0
}

.v-snack {
    position: fixed;
    display: flex;
    align-items: center;
    color: #fff;
    pointer-events: none;
    z-index: 1000;
    font-size: 14px;
    left: 0;
    right: 0
}

.v-snack--absolute {
    position: absolute
}

.v-snack--top {
    top: 0
}

.v-snack--bottom {
    bottom: 0
}

.v-snack__wrapper {
    background-color: #323232;
    pointer-events: auto;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12)
}

.v-snack__content, .v-snack__wrapper {
    display: flex;
    align-items: center;
    width: 100%
}

.v-snack__content {
    height: 48px;
    padding: 14px 24px;
    justify-content: space-between;
    overflow: hidden
}

.v-snack__content .v-btn {
    color: #fff;
    flex: 0 0 auto;
    padding: 8px;
    margin: 0 0 0 24px;
    height: auto;
    min-width: auto;
    width: auto
}

.v-snack__content .v-btn__content {
    margin: -2px
}

.v-snack__content .v-btn:before {
    display: none
}

.v-snack--multi-line .v-snack__content {
    height: 80px;
    padding: 24px
}

.v-snack--vertical .v-snack__content {
    height: 112px;
    padding: 24px 24px 14px;
    flex-direction: column;
    align-items: stretch
}

.v-snack--vertical .v-snack__content .v-btn.v-btn {
    justify-content: flex-end;
    padding: 0;
    margin-left: 0;
    margin-top: 24px
}

.v-snack--vertical .v-snack__content .v-btn__content {
    flex: 0 0 auto;
    margin: 0
}

.v-snack--auto-height .v-snack__content {
    height: auto
}

@media only screen and (min-width: 600px) {
    .application--is-rtl .v-snack__content .v-btn:first-of-type {
        margin-left: 0;
        margin-right: 42px
    }
}

@media only screen and (min-width: 600px) {
    .v-snack__wrapper {
        width: auto;
        max-width: 568px;
        min-width: 288px;
        margin: 0 auto;
        border-radius: 2px
    }

    .v-snack--left .v-snack__wrapper {
        margin-left: 0
    }

    .v-snack--right .v-snack__wrapper {
        margin-right: 0
    }

    .v-snack--left, .v-snack--right {
        margin: 0 24px
    }

    .v-snack--left.v-snack--top, .v-snack--right.v-snack--top {
        -webkit-transform: translateY(24px);
        transform: translateY(24px)
    }

    .v-snack--left.v-snack--bottom, .v-snack--right.v-snack--bottom {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px)
    }

    .v-snack__content .v-btn:first-of-type {
        margin-left: 42px
    }
}

.v-snack-transition-enter-active, .v-snack-transition-leave-active {
    transition: -webkit-transform .4s cubic-bezier(.25, .8, .5, 1);
    transition: transform .4s cubic-bezier(.25, .8, .5, 1);
}

.v-snack-transition-enter-active .v-snack__content, .v-snack-transition-leave-active .v-snack__content {
    transition: opacity .3s linear .1s
}

.v-snack-transition-enter .v-snack__content {
    opacity: 0
}

.v-snack-transition-enter-to .v-snack__content, .v-snack-transition-leave .v-snack__content {
    opacity: 1
}

.v-snack-transition-enter.v-snack.v-snack--top, .v-snack-transition-leave-to.v-snack.v-snack--top {
    -webkit-transform: translateY(calc(-100% - 8px));
    transform: translateY(calc(-100% - 8px))
}

.v-snack-transition-enter.v-snack.v-snack--bottom, .v-snack-transition-leave-to.v-snack.v-snack--bottom {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.application {
    display: flex
}

.application a {
    cursor: pointer
}

.application--is-rtl {
    direction: rtl
}

.application--wrap {
    flex: 1 1 auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100%;
    position: relative
}

.theme--light.application {
    background: #f8f8f8;
    color: #333
}

.theme--light.application .text--disabled, .theme--light.application .text--primary, .theme--light.application .text--secondary {
    color: #333 !important
}

.theme--dark.application {
    background: #303030;
    color: #fff
}

.theme--dark.application .text--primary {
    color: #fff !important
}

.theme--dark.application .text--secondary {
    color: hsla(0, 0%, 100%, .7) !important
}

.theme--dark.application .text--disabled {
    color: hsla(0, 0%, 100%, .5) !important
}

@-moz-document url-prefix() {
    @media print {
        .application, .application--wrap {
            display: block
        }
    }
}

@font-face {
    font-family: Material Icons;
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://dai3kl5oj0czm.cloudfront.net/fonts/96c4768.eot);
    src: local("☺"), url(https://dai3kl5oj0czm.cloudfront.net/fonts/0509ab0.woff2) format("woff2"), url(https://dai3kl5oj0czm.cloudfront.net/fonts/29b882f.woff) format("woff"), url(https://dai3kl5oj0czm.cloudfront.net/fonts/da4ea5c.ttf) format("truetype")
}

.material-icons {
    font-family: "Material Icons", Sans-Serif, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.material-icons._10k:before {
    content: "\e951"
}

.material-icons._10mp:before {
    content: "\e952"
}

.material-icons._11mp:before {
    content: "\e953"
}

.material-icons._12mp:before {
    content: "\e954"
}

.material-icons._13mp:before {
    content: "\e955"
}

.material-icons._14mp:before {
    content: "\e956"
}

.material-icons._15mp:before {
    content: "\e957"
}

.material-icons._16mp:before {
    content: "\e958"
}

.material-icons._17mp:before {
    content: "\e959"
}

.material-icons._18mp:before {
    content: "\e95a"
}

.material-icons._19mp:before {
    content: "\e95b"
}

.material-icons._1k:before {
    content: "\e95c"
}

.material-icons._1k_plus:before {
    content: "\e95d"
}

.material-icons._20mp:before {
    content: "\e95e"
}

.material-icons._21mp:before {
    content: "\e95f"
}

.material-icons._22mp:before {
    content: "\e960"
}

.material-icons._23mp:before {
    content: "\e961"
}

.material-icons._24mp:before {
    content: "\e962"
}

.material-icons._2k:before {
    content: "\e963"
}

.material-icons._2k_plus:before {
    content: "\e964"
}

.material-icons._2mp:before {
    content: "\e965"
}

.material-icons._360:before {
    content: "\e577"
}

.material-icons._3d_rotation:before {
    content: "\e84d"
}

.material-icons._3k:before {
    content: "\e966"
}

.material-icons._3k_plus:before {
    content: "\e967"
}

.material-icons._3mp:before {
    content: "\e968"
}

.material-icons._4k:before {
    content: "\e072"
}

.material-icons._4k_plus:before {
    content: "\e969"
}

.material-icons._4mp:before {
    content: "\e96a"
}

.material-icons._5k:before {
    content: "\e96b"
}

.material-icons._5k_plus:before {
    content: "\e96c"
}

.material-icons._5mp:before {
    content: "\e96d"
}

.material-icons._6k:before {
    content: "\e96e"
}

.material-icons._6k_plus:before {
    content: "\e96f"
}

.material-icons._6mp:before {
    content: "\e970"
}

.material-icons._7k:before {
    content: "\e971"
}

.material-icons._7k_plus:before {
    content: "\e972"
}

.material-icons._7mp:before {
    content: "\e973"
}

.material-icons._8k:before {
    content: "\e974"
}

.material-icons._8k_plus:before {
    content: "\e975"
}

.material-icons._8mp:before {
    content: "\e976"
}

.material-icons._9k:before {
    content: "\e977"
}

.material-icons._9k_plus:before {
    content: "\e978"
}

.material-icons._9mp:before {
    content: "\e979"
}

.material-icons.ac_unit:before {
    content: "\eb3b"
}

.material-icons.access_alarm:before {
    content: "\e190"
}

.material-icons.access_alarms:before {
    content: "\e191"
}

.material-icons.access_time:before {
    content: "\e192"
}

.material-icons.accessibility:before {
    content: "\e84e"
}

.material-icons.accessibility_new:before {
    content: "\e92c"
}

.material-icons.accessible:before {
    content: "\e914"
}

.material-icons.accessible_forward:before {
    content: "\e934"
}

.material-icons.account_balance:before {
    content: "\e84f"
}

.material-icons.account_balance_wallet:before {
    content: "\e850"
}

.material-icons.account_box:before {
    content: "\e851"
}

.material-icons.account_circle:before {
    content: "\e853"
}

.material-icons.account_tree:before {
    content: "\e97a"
}

.material-icons.adb:before {
    content: "\e60e"
}

.material-icons.add:before {
    content: "\e145"
}

.material-icons.add_a_photo:before {
    content: "\e439"
}

.material-icons.add_alarm:before {
    content: "\e193"
}

.material-icons.add_alert:before {
    content: "\e003"
}

.material-icons.add_box:before {
    content: "\e146"
}

.material-icons.add_call:before {
    content: "\e0e8"
}

.material-icons.add_chart:before {
    content: "\e97b"
}

.material-icons.add_circle:before {
    content: "\e147"
}

.material-icons.add_circle_outline:before {
    content: "\e148"
}

.material-icons.add_comment:before {
    content: "\e266"
}

.material-icons.add_ic_call:before {
    content: "\e97c"
}

.material-icons.add_link:before {
    content: "\e178"
}

.material-icons.add_location:before {
    content: "\e567"
}

.material-icons.add_moderator:before {
    content: "\e97d"
}

.material-icons.add_photo_alternate:before {
    content: "\e43e"
}

.material-icons.add_shopping_cart:before {
    content: "\e854"
}

.material-icons.add_to_home_screen:before {
    content: "\e1fe"
}

.material-icons.add_to_photos:before {
    content: "\e39d"
}

.material-icons.add_to_queue:before {
    content: "\e05c"
}

.material-icons.adjust:before {
    content: "\e39e"
}

.material-icons.airline_seat_flat:before {
    content: "\e630"
}

.material-icons.airline_seat_flat_angled:before {
    content: "\e631"
}

.material-icons.airline_seat_individual_suite:before {
    content: "\e632"
}

.material-icons.airline_seat_legroom_extra:before {
    content: "\e633"
}

.material-icons.airline_seat_legroom_normal:before {
    content: "\e634"
}

.material-icons.airline_seat_legroom_reduced:before {
    content: "\e635"
}

.material-icons.airline_seat_recline_extra:before {
    content: "\e636"
}

.material-icons.airline_seat_recline_normal:before {
    content: "\e637"
}

.material-icons.airplanemode_active:before {
    content: "\e195"
}

.material-icons.airplanemode_inactive:before, .material-icons.airplanemode_off:before {
    content: "\e194"
}

.material-icons.airplanemode_on:before {
    content: "\e195"
}

.material-icons.airplay:before {
    content: "\e055"
}

.material-icons.airport_shuttle:before {
    content: "\eb3c"
}

.material-icons.alarm:before {
    content: "\e855"
}

.material-icons.alarm_add:before {
    content: "\e856"
}

.material-icons.alarm_off:before {
    content: "\e857"
}

.material-icons.alarm_on:before {
    content: "\e858"
}

.material-icons.album:before {
    content: "\e019"
}

.material-icons.all_inbox:before {
    content: "\e97f"
}

.material-icons.all_inclusive:before {
    content: "\eb3d"
}

.material-icons.all_out:before {
    content: "\e90b"
}

.material-icons.alternate_email:before {
    content: "\e0e6"
}

.material-icons.amp_stories:before {
    content: "\ea13"
}

.material-icons.android:before {
    content: "\e859"
}

.material-icons.announcement:before {
    content: "\e85a"
}

.material-icons.apartment:before {
    content: "\ea40"
}

.material-icons.approval:before {
    content: "\e982"
}

.material-icons.apps:before {
    content: "\e5c3"
}

.material-icons.archive:before {
    content: "\e149"
}

.material-icons.arrow_back:before {
    content: "\e5c4"
}

.material-icons.arrow_back_ios:before {
    content: "\e5e0"
}

.material-icons.arrow_downward:before {
    content: "\e5db"
}

.material-icons.arrow_drop_down:before {
    content: "\e5c5"
}

.material-icons.arrow_drop_down_circle:before {
    content: "\e5c6"
}

.material-icons.arrow_drop_up:before {
    content: "\e5c7"
}

.material-icons.arrow_forward:before {
    content: "\e5c8"
}

.material-icons.arrow_forward_ios:before {
    content: "\e5e1"
}

.material-icons.arrow_left:before {
    content: "\e5de"
}

.material-icons.arrow_right:before {
    content: "\e5df"
}

.material-icons.arrow_right_alt:before {
    content: "\e941"
}

.material-icons.arrow_upward:before {
    content: "\e5d8"
}

.material-icons.art_track:before {
    content: "\e060"
}

.material-icons.aspect_ratio:before {
    content: "\e85b"
}

.material-icons.assessment:before {
    content: "\e85c"
}

.material-icons.assignment:before {
    content: "\e85d"
}

.material-icons.assignment_ind:before {
    content: "\e85e"
}

.material-icons.assignment_late:before {
    content: "\e85f"
}

.material-icons.assignment_return:before {
    content: "\e860"
}

.material-icons.assignment_returned:before {
    content: "\e861"
}

.material-icons.assignment_turned_in:before {
    content: "\e862"
}

.material-icons.assistant:before {
    content: "\e39f"
}

.material-icons.assistant_direction:before {
    content: "\e988"
}

.material-icons.assistant_navigation:before {
    content: "\e989"
}

.material-icons.assistant_photo:before {
    content: "\e3a0"
}

.material-icons.atm:before {
    content: "\e573"
}

.material-icons.attach_file:before {
    content: "\e226"
}

.material-icons.attach_money:before {
    content: "\e227"
}

.material-icons.attachment:before {
    content: "\e2bc"
}

.material-icons.attractions:before {
    content: "\ea52"
}

.material-icons.audiotrack:before {
    content: "\e3a1"
}

.material-icons.autorenew:before {
    content: "\e863"
}

.material-icons.av_timer:before {
    content: "\e01b"
}

.material-icons.backspace:before {
    content: "\e14a"
}

.material-icons.backup:before {
    content: "\e864"
}

.material-icons.badge:before {
    content: "\ea67"
}

.material-icons.bakery_dining:before {
    content: "\ea53"
}

.material-icons.ballot:before {
    content: "\e172"
}

.material-icons.bar_chart:before {
    content: "\e26b"
}

.material-icons.bathtub:before {
    content: "\ea41"
}

.material-icons.battery_alert:before {
    content: "\e19c"
}

.material-icons.battery_charging_full:before {
    content: "\e1a3"
}

.material-icons.battery_full:before {
    content: "\e1a4"
}

.material-icons.battery_std:before {
    content: "\e1a5"
}

.material-icons.battery_unknown:before {
    content: "\e1a6"
}

.material-icons.beach_access:before {
    content: "\eb3e"
}

.material-icons.beenhere:before {
    content: "\e52d"
}

.material-icons.block:before {
    content: "\e14b"
}

.material-icons.bluetooth:before {
    content: "\e1a7"
}

.material-icons.bluetooth_audio:before {
    content: "\e60f"
}

.material-icons.bluetooth_connected:before {
    content: "\e1a8"
}

.material-icons.bluetooth_disabled:before {
    content: "\e1a9"
}

.material-icons.bluetooth_searching:before {
    content: "\e1aa"
}

.material-icons.blur_circular:before {
    content: "\e3a2"
}

.material-icons.blur_linear:before {
    content: "\e3a3"
}

.material-icons.blur_off:before {
    content: "\e3a4"
}

.material-icons.blur_on:before {
    content: "\e3a5"
}

.material-icons.bolt:before {
    content: "\ea0b"
}

.material-icons.book:before {
    content: "\e865"
}

.material-icons.bookmark:before {
    content: "\e866"
}

.material-icons.bookmark_border:before, .material-icons.bookmark_outline:before {
    content: "\e867"
}

.material-icons.bookmarks:before {
    content: "\e98b"
}

.material-icons.border_all:before {
    content: "\e228"
}

.material-icons.border_bottom:before {
    content: "\e229"
}

.material-icons.border_clear:before {
    content: "\e22a"
}

.material-icons.border_color:before {
    content: "\e22b"
}

.material-icons.border_horizontal:before {
    content: "\e22c"
}

.material-icons.border_inner:before {
    content: "\e22d"
}

.material-icons.border_left:before {
    content: "\e22e"
}

.material-icons.border_outer:before {
    content: "\e22f"
}

.material-icons.border_right:before {
    content: "\e230"
}

.material-icons.border_style:before {
    content: "\e231"
}

.material-icons.border_top:before {
    content: "\e232"
}

.material-icons.border_vertical:before {
    content: "\e233"
}

.material-icons.branding_watermark:before {
    content: "\e06b"
}

.material-icons.breakfast_dining:before {
    content: "\ea54"
}

.material-icons.brightness_1:before {
    content: "\e3a6"
}

.material-icons.brightness_2:before {
    content: "\e3a7"
}

.material-icons.brightness_3:before {
    content: "\e3a8"
}

.material-icons.brightness_4:before {
    content: "\e3a9"
}

.material-icons.brightness_5:before {
    content: "\e3aa"
}

.material-icons.brightness_6:before {
    content: "\e3ab"
}

.material-icons.brightness_7:before {
    content: "\e3ac"
}

.material-icons.brightness_auto:before {
    content: "\e1ab"
}

.material-icons.brightness_high:before {
    content: "\e1ac"
}

.material-icons.brightness_low:before {
    content: "\e1ad"
}

.material-icons.brightness_medium:before {
    content: "\e1ae"
}

.material-icons.broken_image:before {
    content: "\e3ad"
}

.material-icons.brunch_dining:before {
    content: "\ea73"
}

.material-icons.brush:before {
    content: "\e3ae"
}

.material-icons.bubble_chart:before {
    content: "\e6dd"
}

.material-icons.bug_report:before {
    content: "\e868"
}

.material-icons.build:before {
    content: "\e869"
}

.material-icons.burst_mode:before {
    content: "\e43c"
}

.material-icons.bus_alert:before {
    content: "\e98f"
}

.material-icons.business:before {
    content: "\e0af"
}

.material-icons.business_center:before {
    content: "\eb3f"
}

.material-icons.cached:before {
    content: "\e86a"
}

.material-icons.cake:before {
    content: "\e7e9"
}

.material-icons.calendar_today:before {
    content: "\e935"
}

.material-icons.calendar_view_day:before {
    content: "\e936"
}

.material-icons.call:before {
    content: "\e0b0"
}

.material-icons.call_end:before {
    content: "\e0b1"
}

.material-icons.call_made:before {
    content: "\e0b2"
}

.material-icons.call_merge:before {
    content: "\e0b3"
}

.material-icons.call_missed:before {
    content: "\e0b4"
}

.material-icons.call_missed_outgoing:before {
    content: "\e0e4"
}

.material-icons.call_received:before {
    content: "\e0b5"
}

.material-icons.call_split:before {
    content: "\e0b6"
}

.material-icons.call_to_action:before {
    content: "\e06c"
}

.material-icons.camera:before {
    content: "\e3af"
}

.material-icons.camera_alt:before {
    content: "\e3b0"
}

.material-icons.camera_enhance:before {
    content: "\e8fc"
}

.material-icons.camera_front:before {
    content: "\e3b1"
}

.material-icons.camera_rear:before {
    content: "\e3b2"
}

.material-icons.camera_roll:before {
    content: "\e3b3"
}

.material-icons.cancel:before {
    content: "\e5c9"
}

.material-icons.cancel_presentation:before {
    content: "\e0e9"
}

.material-icons.cancel_schedule_send:before {
    content: "\ea39"
}

.material-icons.car_rental:before {
    content: "\ea55"
}

.material-icons.car_repair:before {
    content: "\ea56"
}

.material-icons.card_giftcard:before {
    content: "\e8f6"
}

.material-icons.card_membership:before {
    content: "\e8f7"
}

.material-icons.card_travel:before {
    content: "\e8f8"
}

.material-icons.cases:before {
    content: "\e992"
}

.material-icons.casino:before {
    content: "\eb40"
}

.material-icons.cast:before {
    content: "\e307"
}

.material-icons.cast_connected:before {
    content: "\e308"
}

.material-icons.category:before {
    content: "\e574"
}

.material-icons.celebration:before {
    content: "\ea65"
}

.material-icons.cell_wifi:before {
    content: "\e0ec"
}

.material-icons.center_focus_strong:before {
    content: "\e3b4"
}

.material-icons.center_focus_weak:before {
    content: "\e3b5"
}

.material-icons.change_history:before {
    content: "\e86b"
}

.material-icons.chat:before {
    content: "\e0b7"
}

.material-icons.chat_bubble:before {
    content: "\e0ca"
}

.material-icons.chat_bubble_outline:before {
    content: "\e0cb"
}

.material-icons.check:before {
    content: "\e5ca"
}

.material-icons.check_box:before {
    content: "\e834"
}

.material-icons.check_box_outline_blank:before {
    content: "\e835"
}

.material-icons.check_circle:before {
    content: "\e86c"
}

.material-icons.check_circle_outline:before {
    content: "\e92d"
}

.material-icons.chevron_left:before {
    content: "\e5cb"
}

.material-icons.chevron_right:before {
    content: "\e5cc"
}

.material-icons.child_care:before {
    content: "\eb41"
}

.material-icons.child_friendly:before {
    content: "\eb42"
}

.material-icons.chrome_reader_mode:before {
    content: "\e86d"
}

.material-icons.circle_notifications:before {
    content: "\e994"
}

.material-icons.class:before {
    content: "\e86e"
}

.material-icons.clear:before {
    content: "\e14c"
}

.material-icons.clear_all:before {
    content: "\e0b8"
}

.material-icons.close:before {
    content: "\e5cd"
}

.material-icons.closed_caption:before {
    content: "\e01c"
}

.material-icons.closed_caption_off:before {
    content: "\e996"
}

.material-icons.cloud:before {
    content: "\e2bd"
}

.material-icons.cloud_circle:before {
    content: "\e2be"
}

.material-icons.cloud_done:before {
    content: "\e2bf"
}

.material-icons.cloud_download:before {
    content: "\e2c0"
}

.material-icons.cloud_off:before {
    content: "\e2c1"
}

.material-icons.cloud_queue:before {
    content: "\e2c2"
}

.material-icons.cloud_upload:before {
    content: "\e2c3"
}

.material-icons.code:before {
    content: "\e86f"
}

.material-icons.collections:before {
    content: "\e3b6"
}

.material-icons.collections_bookmark:before {
    content: "\e431"
}

.material-icons.color_lens:before {
    content: "\e3b7"
}

.material-icons.colorize:before {
    content: "\e3b8"
}

.material-icons.comment:before {
    content: "\e0b9"
}

.material-icons.commute:before {
    content: "\e940"
}

.material-icons.compare:before {
    content: "\e3b9"
}

.material-icons.compare_arrows:before {
    content: "\e915"
}

.material-icons.compass_calibration:before {
    content: "\e57c"
}

.material-icons.compress:before {
    content: "\e94d"
}

.material-icons.computer:before {
    content: "\e30a"
}

.material-icons.confirmation_num:before, .material-icons.confirmation_number:before {
    content: "\e638"
}

.material-icons.connected_tv:before {
    content: "\e998"
}

.material-icons.contact_mail:before {
    content: "\e0d0"
}

.material-icons.contact_phone:before {
    content: "\e0cf"
}

.material-icons.contact_support:before {
    content: "\e94c"
}

.material-icons.contactless:before {
    content: "\ea71"
}

.material-icons.contacts:before {
    content: "\e0ba"
}

.material-icons.content_copy:before {
    content: "\e14d"
}

.material-icons.content_cut:before {
    content: "\e14e"
}

.material-icons.content_paste:before {
    content: "\e14f"
}

.material-icons.control_camera:before {
    content: "\e074"
}

.material-icons.control_point:before {
    content: "\e3ba"
}

.material-icons.control_point_duplicate:before {
    content: "\e3bb"
}

.material-icons.copyright:before {
    content: "\e90c"
}

.material-icons.create:before {
    content: "\e150"
}

.material-icons.create_new_folder:before {
    content: "\e2cc"
}

.material-icons.credit_card:before {
    content: "\e870"
}

.material-icons.crop:before {
    content: "\e3be"
}

.material-icons.crop_16_9:before {
    content: "\e3bc"
}

.material-icons.crop_3_2:before {
    content: "\e3bd"
}

.material-icons.crop_5_4:before {
    content: "\e3bf"
}

.material-icons.crop_7_5:before {
    content: "\e3c0"
}

.material-icons.crop_din:before {
    content: "\e3c1"
}

.material-icons.crop_free:before {
    content: "\e3c2"
}

.material-icons.crop_landscape:before {
    content: "\e3c3"
}

.material-icons.crop_original:before {
    content: "\e3c4"
}

.material-icons.crop_portrait:before {
    content: "\e3c5"
}

.material-icons.crop_rotate:before {
    content: "\e437"
}

.material-icons.crop_square:before {
    content: "\e3c6"
}

.material-icons.dangerous:before {
    content: "\e99a"
}

.material-icons.dashboard:before {
    content: "\e871"
}

.material-icons.dashboard_customize:before {
    content: "\e99b"
}

.material-icons.data_usage:before {
    content: "\e1af"
}

.material-icons.date_range:before {
    content: "\e916"
}

.material-icons.deck:before {
    content: "\ea42"
}

.material-icons.dehaze:before {
    content: "\e3c7"
}

.material-icons.delete:before {
    content: "\e872"
}

.material-icons.delete_forever:before {
    content: "\e92b"
}

.material-icons.delete_outline:before {
    content: "\e92e"
}

.material-icons.delete_sweep:before {
    content: "\e16c"
}

.material-icons.delivery_dining:before {
    content: "\ea72"
}

.material-icons.departure_board:before {
    content: "\e576"
}

.material-icons.description:before {
    content: "\e873"
}

.material-icons.desktop_access_disabled:before {
    content: "\e99d"
}

.material-icons.desktop_mac:before {
    content: "\e30b"
}

.material-icons.desktop_windows:before {
    content: "\e30c"
}

.material-icons.details:before {
    content: "\e3c8"
}

.material-icons.developer_board:before {
    content: "\e30d"
}

.material-icons.developer_mode:before {
    content: "\e1b0"
}

.material-icons.device_hub:before {
    content: "\e335"
}

.material-icons.device_thermostat:before {
    content: "\e1ff"
}

.material-icons.device_unknown:before {
    content: "\e339"
}

.material-icons.devices:before {
    content: "\e1b1"
}

.material-icons.devices_other:before {
    content: "\e337"
}

.material-icons.dialer_sip:before {
    content: "\e0bb"
}

.material-icons.dialpad:before {
    content: "\e0bc"
}

.material-icons.dinner_dining:before {
    content: "\ea57"
}

.material-icons.directions:before {
    content: "\e52e"
}

.material-icons.directions_bike:before {
    content: "\e52f"
}

.material-icons.directions_boat:before {
    content: "\e532"
}

.material-icons.directions_bus:before {
    content: "\e530"
}

.material-icons.directions_car:before {
    content: "\e531"
}

.material-icons.directions_ferry:before {
    content: "\e532"
}

.material-icons.directions_railway:before {
    content: "\e534"
}

.material-icons.directions_run:before {
    content: "\e566"
}

.material-icons.directions_subway:before {
    content: "\e533"
}

.material-icons.directions_train:before {
    content: "\e534"
}

.material-icons.directions_transit:before {
    content: "\e535"
}

.material-icons.directions_walk:before {
    content: "\e536"
}

.material-icons.disc_full:before {
    content: "\e610"
}

.material-icons.dnd_forwardslash:before {
    content: "\e611"
}

.material-icons.dns:before {
    content: "\e875"
}

.material-icons.do_not_disturb:before {
    content: "\e612"
}

.material-icons.do_not_disturb_alt:before {
    content: "\e611"
}

.material-icons.do_not_disturb_off:before {
    content: "\e643"
}

.material-icons.do_not_disturb_on:before {
    content: "\e644"
}

.material-icons.dock:before {
    content: "\e30e"
}

.material-icons.domain:before {
    content: "\e7ee"
}

.material-icons.domain_disabled:before {
    content: "\e0ef"
}

.material-icons.done:before {
    content: "\e876"
}

.material-icons.done_all:before {
    content: "\e877"
}

.material-icons.done_outline:before {
    content: "\e92f"
}

.material-icons.donut_large:before {
    content: "\e917"
}

.material-icons.donut_small:before {
    content: "\e918"
}

.material-icons.double_arrow:before {
    content: "\ea50"
}

.material-icons.drafts:before {
    content: "\e151"
}

.material-icons.drag_handle:before {
    content: "\e25d"
}

.material-icons.drag_indicator:before {
    content: "\e945"
}

.material-icons.drive_eta:before {
    content: "\e613"
}

.material-icons.drive_file_move_outline:before {
    content: "\e9a1"
}

.material-icons.drive_file_rename_outline:before {
    content: "\e9a2"
}

.material-icons.drive_folder_upload:before {
    content: "\e9a3"
}

.material-icons.dry_cleaning:before {
    content: "\ea58"
}

.material-icons.duo:before {
    content: "\e9a5"
}

.material-icons.dvr:before {
    content: "\e1b2"
}

.material-icons.dynamic_feed:before {
    content: "\ea14"
}

.material-icons.eco:before {
    content: "\ea35"
}

.material-icons.edit:before {
    content: "\e3c9"
}

.material-icons.edit_attributes:before {
    content: "\e578"
}

.material-icons.edit_location:before {
    content: "\e568"
}

.material-icons.edit_off:before {
    content: "\e950"
}

.material-icons.eject:before {
    content: "\e8fb"
}

.material-icons.email:before {
    content: "\e0be"
}

.material-icons.emoji_emotions:before {
    content: "\ea22"
}

.material-icons.emoji_events:before {
    content: "\ea23"
}

.material-icons.emoji_flags:before {
    content: "\ea1a"
}

.material-icons.emoji_food_beverage:before {
    content: "\ea1b"
}

.material-icons.emoji_nature:before {
    content: "\ea1c"
}

.material-icons.emoji_objects:before {
    content: "\ea24"
}

.material-icons.emoji_people:before {
    content: "\ea1d"
}

.material-icons.emoji_symbols:before {
    content: "\ea1e"
}

.material-icons.emoji_transportation:before {
    content: "\ea1f"
}

.material-icons.enhance_photo_translate:before {
    content: "\e8fc"
}

.material-icons.enhanced_encryption:before {
    content: "\e63f"
}

.material-icons.equalizer:before {
    content: "\e01d"
}

.material-icons.error:before {
    content: "\e000"
}

.material-icons.error_outline:before {
    content: "\e001"
}

.material-icons.euro:before {
    content: "\ea15"
}

.material-icons.euro_symbol:before {
    content: "\e926"
}

.material-icons.ev_station:before {
    content: "\e56d"
}

.material-icons.event:before {
    content: "\e878"
}

.material-icons.event_available:before {
    content: "\e614"
}

.material-icons.event_busy:before {
    content: "\e615"
}

.material-icons.event_note:before {
    content: "\e616"
}

.material-icons.event_seat:before {
    content: "\e903"
}

.material-icons.exit_to_app:before {
    content: "\e879"
}

.material-icons.expand:before {
    content: "\e94f"
}

.material-icons.expand_less:before {
    content: "\e5ce"
}

.material-icons.expand_more:before {
    content: "\e5cf"
}

.material-icons.explicit:before {
    content: "\e01e"
}

.material-icons.explore:before {
    content: "\e87a"
}

.material-icons.explore_off:before {
    content: "\e9a8"
}

.material-icons.exposure:before {
    content: "\e3ca"
}

.material-icons.exposure_minus_1:before {
    content: "\e3cb"
}

.material-icons.exposure_minus_2:before {
    content: "\e3cc"
}

.material-icons.exposure_neg_1:before {
    content: "\e3cb"
}

.material-icons.exposure_neg_2:before {
    content: "\e3cc"
}

.material-icons.exposure_plus_1:before {
    content: "\e3cd"
}

.material-icons.exposure_plus_2:before {
    content: "\e3ce"
}

.material-icons.exposure_zero:before {
    content: "\e3cf"
}

.material-icons.extension:before {
    content: "\e87b"
}

.material-icons.face:before {
    content: "\e87c"
}

.material-icons.fast_forward:before {
    content: "\e01f"
}

.material-icons.fast_rewind:before {
    content: "\e020"
}

.material-icons.fastfood:before {
    content: "\e57a"
}

.material-icons.favorite:before {
    content: "\e87d"
}

.material-icons.favorite_border:before, .material-icons.favorite_outline:before {
    content: "\e87e"
}

.material-icons.featured_play_list:before {
    content: "\e06d"
}

.material-icons.featured_video:before {
    content: "\e06e"
}

.material-icons.feedback:before {
    content: "\e87f"
}

.material-icons.festival:before {
    content: "\ea68"
}

.material-icons.fiber_dvr:before {
    content: "\e05d"
}

.material-icons.fiber_manual_record:before {
    content: "\e061"
}

.material-icons.fiber_new:before {
    content: "\e05e"
}

.material-icons.fiber_pin:before {
    content: "\e06a"
}

.material-icons.fiber_smart_record:before {
    content: "\e062"
}

.material-icons.file_copy:before {
    content: "\e173"
}

.material-icons.file_download:before {
    content: "\e2c4"
}

.material-icons.file_download_done:before {
    content: "\e9aa"
}

.material-icons.file_present:before {
    content: "\ea0e"
}

.material-icons.file_upload:before {
    content: "\e2c6"
}

.material-icons.filter:before {
    content: "\e3d3"
}

.material-icons.filter_1:before {
    content: "\e3d0"
}

.material-icons.filter_2:before {
    content: "\e3d1"
}

.material-icons.filter_3:before {
    content: "\e3d2"
}

.material-icons.filter_4:before {
    content: "\e3d4"
}

.material-icons.filter_5:before {
    content: "\e3d5"
}

.material-icons.filter_6:before {
    content: "\e3d6"
}

.material-icons.filter_7:before {
    content: "\e3d7"
}

.material-icons.filter_8:before {
    content: "\e3d8"
}

.material-icons.filter_9:before {
    content: "\e3d9"
}

.material-icons.filter_9_plus:before {
    content: "\e3da"
}

.material-icons.filter_b_and_w:before {
    content: "\e3db"
}

.material-icons.filter_center_focus:before {
    content: "\e3dc"
}

.material-icons.filter_drama:before {
    content: "\e3dd"
}

.material-icons.filter_frames:before {
    content: "\e3de"
}

.material-icons.filter_hdr:before {
    content: "\e3df"
}

.material-icons.filter_list:before {
    content: "\e152"
}

.material-icons.filter_list_alt:before {
    content: "\e94e"
}

.material-icons.filter_none:before {
    content: "\e3e0"
}

.material-icons.filter_tilt_shift:before {
    content: "\e3e2"
}

.material-icons.filter_vintage:before {
    content: "\e3e3"
}

.material-icons.find_in_page:before {
    content: "\e880"
}

.material-icons.find_replace:before {
    content: "\e881"
}

.material-icons.fingerprint:before {
    content: "\e90d"
}

.material-icons.fireplace:before {
    content: "\ea43"
}

.material-icons.first_page:before {
    content: "\e5dc"
}

.material-icons.fit_screen:before {
    content: "\ea10"
}

.material-icons.fitness_center:before {
    content: "\eb43"
}

.material-icons.flag:before {
    content: "\e153"
}

.material-icons.flare:before {
    content: "\e3e4"
}

.material-icons.flash_auto:before {
    content: "\e3e5"
}

.material-icons.flash_off:before {
    content: "\e3e6"
}

.material-icons.flash_on:before {
    content: "\e3e7"
}

.material-icons.flight:before {
    content: "\e539"
}

.material-icons.flight_land:before {
    content: "\e904"
}

.material-icons.flight_takeoff:before {
    content: "\e905"
}

.material-icons.flip:before {
    content: "\e3e8"
}

.material-icons.flip_camera_android:before {
    content: "\ea37"
}

.material-icons.flip_camera_ios:before {
    content: "\ea38"
}

.material-icons.flip_to_back:before {
    content: "\e882"
}

.material-icons.flip_to_front:before {
    content: "\e883"
}

.material-icons.folder:before {
    content: "\e2c7"
}

.material-icons.folder_open:before {
    content: "\e2c8"
}

.material-icons.folder_shared:before {
    content: "\e2c9"
}

.material-icons.folder_special:before {
    content: "\e617"
}

.material-icons.font_download:before {
    content: "\e167"
}

.material-icons.format_align_center:before {
    content: "\e234"
}

.material-icons.format_align_justify:before {
    content: "\e235"
}

.material-icons.format_align_left:before {
    content: "\e236"
}

.material-icons.format_align_right:before {
    content: "\e237"
}

.material-icons.format_bold:before {
    content: "\e238"
}

.material-icons.format_clear:before {
    content: "\e239"
}

.material-icons.format_color_fill:before {
    content: "\e23a"
}

.material-icons.format_color_reset:before {
    content: "\e23b"
}

.material-icons.format_color_text:before {
    content: "\e23c"
}

.material-icons.format_indent_decrease:before {
    content: "\e23d"
}

.material-icons.format_indent_increase:before {
    content: "\e23e"
}

.material-icons.format_italic:before {
    content: "\e23f"
}

.material-icons.format_line_spacing:before {
    content: "\e240"
}

.material-icons.format_list_bulleted:before {
    content: "\e241"
}

.material-icons.format_list_numbered:before {
    content: "\e242"
}

.material-icons.format_list_numbered_rtl:before {
    content: "\e267"
}

.material-icons.format_paint:before {
    content: "\e243"
}

.material-icons.format_quote:before {
    content: "\e244"
}

.material-icons.format_shapes:before {
    content: "\e25e"
}

.material-icons.format_size:before {
    content: "\e245"
}

.material-icons.format_strikethrough:before {
    content: "\e246"
}

.material-icons.format_textdirection_l_to_r:before {
    content: "\e247"
}

.material-icons.format_textdirection_r_to_l:before {
    content: "\e248"
}

.material-icons.format_underline:before, .material-icons.format_underlined:before {
    content: "\e249"
}

.material-icons.forum:before {
    content: "\e0bf"
}

.material-icons.forward:before {
    content: "\e154"
}

.material-icons.forward_10:before {
    content: "\e056"
}

.material-icons.forward_30:before {
    content: "\e057"
}

.material-icons.forward_5:before {
    content: "\e058"
}

.material-icons.free_breakfast:before {
    content: "\eb44"
}

.material-icons.fullscreen:before {
    content: "\e5d0"
}

.material-icons.fullscreen_exit:before {
    content: "\e5d1"
}

.material-icons.functions:before {
    content: "\e24a"
}

.material-icons.g_translate:before {
    content: "\e927"
}

.material-icons.gamepad:before {
    content: "\e30f"
}

.material-icons.games:before {
    content: "\e021"
}

.material-icons.gavel:before {
    content: "\e90e"
}

.material-icons.gesture:before {
    content: "\e155"
}

.material-icons.get_app:before {
    content: "\e884"
}

.material-icons.gif:before {
    content: "\e908"
}

.material-icons.goat:before {
    content: "\dbff"
}

.material-icons.golf_course:before {
    content: "\eb45"
}

.material-icons.gps_fixed:before {
    content: "\e1b3"
}

.material-icons.gps_not_fixed:before {
    content: "\e1b4"
}

.material-icons.gps_off:before {
    content: "\e1b5"
}

.material-icons.grade:before {
    content: "\e885"
}

.material-icons.gradient:before {
    content: "\e3e9"
}

.material-icons.grain:before {
    content: "\e3ea"
}

.material-icons.graphic_eq:before {
    content: "\e1b8"
}

.material-icons.grid_off:before {
    content: "\e3eb"
}

.material-icons.grid_on:before {
    content: "\e3ec"
}

.material-icons.grid_view:before {
    content: "\e9b0"
}

.material-icons.group:before {
    content: "\e7ef"
}

.material-icons.group_add:before {
    content: "\e7f0"
}

.material-icons.group_work:before {
    content: "\e886"
}

.material-icons.hail:before {
    content: "\e9b1"
}

.material-icons.hardware:before {
    content: "\ea59"
}

.material-icons.hd:before {
    content: "\e052"
}

.material-icons.hdr_off:before {
    content: "\e3ed"
}

.material-icons.hdr_on:before {
    content: "\e3ee"
}

.material-icons.hdr_strong:before {
    content: "\e3f1"
}

.material-icons.hdr_weak:before {
    content: "\e3f2"
}

.material-icons.headset:before {
    content: "\e310"
}

.material-icons.headset_mic:before {
    content: "\e311"
}

.material-icons.headset_off:before {
    content: "\e33a"
}

.material-icons.healing:before {
    content: "\e3f3"
}

.material-icons.hearing:before {
    content: "\e023"
}

.material-icons.height:before {
    content: "\ea16"
}

.material-icons.help:before {
    content: "\e887"
}

.material-icons.help_outline:before {
    content: "\e8fd"
}

.material-icons.high_quality:before {
    content: "\e024"
}

.material-icons.highlight:before {
    content: "\e25f"
}

.material-icons.highlight_off:before, .material-icons.highlight_remove:before {
    content: "\e888"
}

.material-icons.history:before {
    content: "\e889"
}

.material-icons.home:before {
    content: "\e88a"
}

.material-icons.home_filled:before {
    content: "\e9b2"
}

.material-icons.home_work:before {
    content: "\ea09"
}

.material-icons.horizontal_split:before {
    content: "\e947"
}

.material-icons.hot_tub:before {
    content: "\eb46"
}

.material-icons.hotel:before {
    content: "\e53a"
}

.material-icons.hourglass_empty:before {
    content: "\e88b"
}

.material-icons.hourglass_full:before {
    content: "\e88c"
}

.material-icons.house:before {
    content: "\ea44"
}

.material-icons.how_to_reg:before {
    content: "\e174"
}

.material-icons.how_to_vote:before {
    content: "\e175"
}

.material-icons.http:before {
    content: "\e902"
}

.material-icons.https:before {
    content: "\e88d"
}

.material-icons.icecream:before {
    content: "\ea69"
}

.material-icons.image:before {
    content: "\e3f4"
}

.material-icons.image_aspect_ratio:before {
    content: "\e3f5"
}

.material-icons.image_search:before {
    content: "\e43f"
}

.material-icons.imagesearch_roller:before {
    content: "\e9b4"
}

.material-icons.import_contacts:before {
    content: "\e0e0"
}

.material-icons.import_export:before {
    content: "\e0c3"
}

.material-icons.important_devices:before {
    content: "\e912"
}

.material-icons.inbox:before {
    content: "\e156"
}

.material-icons.indeterminate_check_box:before {
    content: "\e909"
}

.material-icons.info:before {
    content: "\e88e"
}

.material-icons.info_outline:before {
    content: "\e88f"
}

.material-icons.input:before {
    content: "\e890"
}

.material-icons.insert_chart:before {
    content: "\e24b"
}

.material-icons.insert_chart_outlined:before {
    content: "\e26a"
}

.material-icons.insert_comment:before {
    content: "\e24c"
}

.material-icons.insert_drive_file:before {
    content: "\e24d"
}

.material-icons.insert_emoticon:before {
    content: "\e24e"
}

.material-icons.insert_invitation:before {
    content: "\e24f"
}

.material-icons.insert_link:before {
    content: "\e250"
}

.material-icons.insert_photo:before {
    content: "\e251"
}

.material-icons.inventory:before {
    content: "\e179"
}

.material-icons.invert_colors:before {
    content: "\e891"
}

.material-icons.invert_colors_off:before {
    content: "\e0c4"
}

.material-icons.invert_colors_on:before {
    content: "\e891"
}

.material-icons.iso:before {
    content: "\e3f6"
}

.material-icons.keyboard:before {
    content: "\e312"
}

.material-icons.keyboard_arrow_down:before {
    content: "\e313"
}

.material-icons.keyboard_arrow_left:before {
    content: "\e314"
}

.material-icons.keyboard_arrow_right:before {
    content: "\e315"
}

.material-icons.keyboard_arrow_up:before {
    content: "\e316"
}

.material-icons.keyboard_backspace:before {
    content: "\e317"
}

.material-icons.keyboard_capslock:before {
    content: "\e318"
}

.material-icons.keyboard_control:before {
    content: "\e5d3"
}

.material-icons.keyboard_hide:before {
    content: "\e31a"
}

.material-icons.keyboard_return:before {
    content: "\e31b"
}

.material-icons.keyboard_tab:before {
    content: "\e31c"
}

.material-icons.keyboard_voice:before {
    content: "\e31d"
}

.material-icons.king_bed:before {
    content: "\ea45"
}

.material-icons.kitchen:before {
    content: "\eb47"
}

.material-icons.label:before {
    content: "\e892"
}

.material-icons.label_important:before {
    content: "\e937"
}

.material-icons.label_important_outline:before {
    content: "\e948"
}

.material-icons.label_off:before {
    content: "\e9b6"
}

.material-icons.label_outline:before {
    content: "\e893"
}

.material-icons.landscape:before {
    content: "\e3f7"
}

.material-icons.language:before {
    content: "\e894"
}

.material-icons.laptop:before {
    content: "\e31e"
}

.material-icons.laptop_chromebook:before {
    content: "\e31f"
}

.material-icons.laptop_mac:before {
    content: "\e320"
}

.material-icons.laptop_windows:before {
    content: "\e321"
}

.material-icons.last_page:before {
    content: "\e5dd"
}

.material-icons.launch:before {
    content: "\e895"
}

.material-icons.layers:before {
    content: "\e53b"
}

.material-icons.layers_clear:before {
    content: "\e53c"
}

.material-icons.leak_add:before {
    content: "\e3f8"
}

.material-icons.leak_remove:before {
    content: "\e3f9"
}

.material-icons.lens:before {
    content: "\e3fa"
}

.material-icons.library_add:before {
    content: "\e02e"
}

.material-icons.library_add_check:before {
    content: "\e9b7"
}

.material-icons.library_books:before {
    content: "\e02f"
}

.material-icons.library_music:before {
    content: "\e030"
}

.material-icons.lightbulb:before {
    content: "\e0f0"
}

.material-icons.lightbulb_outline:before {
    content: "\e90f"
}

.material-icons.line_style:before {
    content: "\e919"
}

.material-icons.line_weight:before {
    content: "\e91a"
}

.material-icons.linear_scale:before {
    content: "\e260"
}

.material-icons.link:before {
    content: "\e157"
}

.material-icons.link_off:before {
    content: "\e16f"
}

.material-icons.linked_camera:before {
    content: "\e438"
}

.material-icons.liquor:before {
    content: "\ea60"
}

.material-icons.list:before {
    content: "\e896"
}

.material-icons.list_alt:before {
    content: "\e0ee"
}

.material-icons.live_help:before {
    content: "\e0c6"
}

.material-icons.live_tv:before {
    content: "\e639"
}

.material-icons.local_activity:before {
    content: "\e53f"
}

.material-icons.local_airport:before {
    content: "\e53d"
}

.material-icons.local_atm:before {
    content: "\e53e"
}

.material-icons.local_attraction:before {
    content: "\e53f"
}

.material-icons.local_bar:before {
    content: "\e540"
}

.material-icons.local_cafe:before {
    content: "\e541"
}

.material-icons.local_car_wash:before {
    content: "\e542"
}

.material-icons.local_convenience_store:before {
    content: "\e543"
}

.material-icons.local_dining:before {
    content: "\e556"
}

.material-icons.local_drink:before {
    content: "\e544"
}

.material-icons.local_florist:before {
    content: "\e545"
}

.material-icons.local_gas_station:before {
    content: "\e546"
}

.material-icons.local_grocery_store:before {
    content: "\e547"
}

.material-icons.local_hospital:before {
    content: "\e548"
}

.material-icons.local_hotel:before {
    content: "\e549"
}

.material-icons.local_laundry_service:before {
    content: "\e54a"
}

.material-icons.local_library:before {
    content: "\e54b"
}

.material-icons.local_mall:before {
    content: "\e54c"
}

.material-icons.local_movies:before {
    content: "\e54d"
}

.material-icons.local_offer:before {
    content: "\e54e"
}

.material-icons.local_parking:before {
    content: "\e54f"
}

.material-icons.local_pharmacy:before {
    content: "\e550"
}

.material-icons.local_phone:before {
    content: "\e551"
}

.material-icons.local_pizza:before {
    content: "\e552"
}

.material-icons.local_play:before {
    content: "\e553"
}

.material-icons.local_post_office:before {
    content: "\e554"
}

.material-icons.local_print_shop:before, .material-icons.local_printshop:before {
    content: "\e555"
}

.material-icons.local_restaurant:before {
    content: "\e556"
}

.material-icons.local_see:before {
    content: "\e557"
}

.material-icons.local_shipping:before {
    content: "\e558"
}

.material-icons.local_taxi:before {
    content: "\e559"
}

.material-icons.location_city:before {
    content: "\e7f1"
}

.material-icons.location_disabled:before {
    content: "\e1b6"
}

.material-icons.location_history:before {
    content: "\e55a"
}

.material-icons.location_off:before {
    content: "\e0c7"
}

.material-icons.location_on:before {
    content: "\e0c8"
}

.material-icons.location_searching:before {
    content: "\e1b7"
}

.material-icons.lock:before {
    content: "\e897"
}

.material-icons.lock_open:before {
    content: "\e898"
}

.material-icons.lock_outline:before {
    content: "\e899"
}

.material-icons.logout:before {
    content: "\e9ba"
}

.material-icons.looks:before {
    content: "\e3fc"
}

.material-icons.looks_3:before {
    content: "\e3fb"
}

.material-icons.looks_4:before {
    content: "\e3fd"
}

.material-icons.looks_5:before {
    content: "\e3fe"
}

.material-icons.looks_6:before {
    content: "\e3ff"
}

.material-icons.looks_one:before {
    content: "\e400"
}

.material-icons.looks_two:before {
    content: "\e401"
}

.material-icons.loop:before {
    content: "\e028"
}

.material-icons.loupe:before {
    content: "\e402"
}

.material-icons.low_priority:before {
    content: "\e16d"
}

.material-icons.loyalty:before {
    content: "\e89a"
}

.material-icons.lunch_dining:before {
    content: "\ea61"
}

.material-icons.mail:before {
    content: "\e158"
}

.material-icons.mail_outline:before {
    content: "\e0e1"
}

.material-icons.map:before {
    content: "\e55b"
}

.material-icons.margin:before {
    content: "\e9bb"
}

.material-icons.mark_as_unread:before {
    content: "\e9bc"
}

.material-icons.markunread:before {
    content: "\e159"
}

.material-icons.markunread_mailbox:before {
    content: "\e89b"
}

.material-icons.maximize:before {
    content: "\e930"
}

.material-icons.meeting_room:before {
    content: "\eb4f"
}

.material-icons.memory:before {
    content: "\e322"
}

.material-icons.menu:before {
    content: "\e5d2"
}

.material-icons.menu_book:before {
    content: "\ea19"
}

.material-icons.menu_open:before {
    content: "\e9bd"
}

.material-icons.merge_type:before {
    content: "\e252"
}

.material-icons.message:before {
    content: "\e0c9"
}

.material-icons.messenger:before {
    content: "\e0ca"
}

.material-icons.messenger_outline:before {
    content: "\e0cb"
}

.material-icons.mic:before {
    content: "\e029"
}

.material-icons.mic_none:before {
    content: "\e02a"
}

.material-icons.mic_off:before {
    content: "\e02b"
}

.material-icons.minimize:before {
    content: "\e931"
}

.material-icons.missed_video_call:before {
    content: "\e073"
}

.material-icons.mms:before {
    content: "\e618"
}

.material-icons.mobile_friendly:before {
    content: "\e200"
}

.material-icons.mobile_off:before {
    content: "\e201"
}

.material-icons.mobile_screen_share:before {
    content: "\e0e7"
}

.material-icons.mode_comment:before {
    content: "\e253"
}

.material-icons.mode_edit:before {
    content: "\e254"
}

.material-icons.monetization_on:before {
    content: "\e263"
}

.material-icons.money:before {
    content: "\e57d"
}

.material-icons.money_off:before {
    content: "\e25c"
}

.material-icons.monochrome_photos:before {
    content: "\e403"
}

.material-icons.mood:before {
    content: "\e7f2"
}

.material-icons.mood_bad:before {
    content: "\e7f3"
}

.material-icons.more:before {
    content: "\e619"
}

.material-icons.more_horiz:before {
    content: "\e5d3"
}

.material-icons.more_vert:before {
    content: "\e5d4"
}

.material-icons.motorcycle:before {
    content: "\e91b"
}

.material-icons.mouse:before {
    content: "\e323"
}

.material-icons.move_to_inbox:before {
    content: "\e168"
}

.material-icons.movie:before {
    content: "\e02c"
}

.material-icons.movie_creation:before {
    content: "\e404"
}

.material-icons.movie_filter:before {
    content: "\e43a"
}

.material-icons.mp:before {
    content: "\e9c3"
}

.material-icons.multiline_chart:before {
    content: "\e6df"
}

.material-icons.multitrack_audio:before {
    content: "\e1b8"
}

.material-icons.museum:before {
    content: "\ea36"
}

.material-icons.music_note:before {
    content: "\e405"
}

.material-icons.music_off:before {
    content: "\e440"
}

.material-icons.music_video:before {
    content: "\e063"
}

.material-icons.my_library_add:before {
    content: "\e02e"
}

.material-icons.my_library_books:before {
    content: "\e02f"
}

.material-icons.my_library_music:before {
    content: "\e030"
}

.material-icons.my_location:before {
    content: "\e55c"
}

.material-icons.nature:before {
    content: "\e406"
}

.material-icons.nature_people:before {
    content: "\e407"
}

.material-icons.navigate_before:before {
    content: "\e408"
}

.material-icons.navigate_next:before {
    content: "\e409"
}

.material-icons.navigation:before {
    content: "\e55d"
}

.material-icons.near_me:before {
    content: "\e569"
}

.material-icons.network_cell:before {
    content: "\e1b9"
}

.material-icons.network_check:before {
    content: "\e640"
}

.material-icons.network_locked:before {
    content: "\e61a"
}

.material-icons.network_wifi:before {
    content: "\e1ba"
}

.material-icons.new_releases:before {
    content: "\e031"
}

.material-icons.next_week:before {
    content: "\e16a"
}

.material-icons.nfc:before {
    content: "\e1bb"
}

.material-icons.nightlife:before {
    content: "\ea62"
}

.material-icons.nights_stay:before {
    content: "\ea46"
}

.material-icons.no_encryption:before {
    content: "\e641"
}

.material-icons.no_meeting_room:before {
    content: "\eb4e"
}

.material-icons.no_sim:before {
    content: "\e0cc"
}

.material-icons.not_interested:before {
    content: "\e033"
}

.material-icons.not_listed_location:before {
    content: "\e575"
}

.material-icons.note:before {
    content: "\e06f"
}

.material-icons.note_add:before {
    content: "\e89c"
}

.material-icons.notes:before {
    content: "\e26c"
}

.material-icons.notification_important:before {
    content: "\e004"
}

.material-icons.notifications:before {
    content: "\e7f4"
}

.material-icons.notifications_active:before {
    content: "\e7f7"
}

.material-icons.notifications_none:before {
    content: "\e7f5"
}

.material-icons.notifications_off:before {
    content: "\e7f6"
}

.material-icons.notifications_on:before {
    content: "\e7f7"
}

.material-icons.notifications_paused:before {
    content: "\e7f8"
}

.material-icons.now_wallpaper:before {
    content: "\e1bc"
}

.material-icons.now_widgets:before {
    content: "\e1bd"
}

.material-icons.offline_bolt:before {
    content: "\e932"
}

.material-icons.offline_pin:before {
    content: "\e90a"
}

.material-icons.offline_share:before {
    content: "\e9c5"
}

.material-icons.ondemand_video:before {
    content: "\e63a"
}

.material-icons.opacity:before {
    content: "\e91c"
}

.material-icons.open_in_browser:before {
    content: "\e89d"
}

.material-icons.open_in_new:before {
    content: "\e89e"
}

.material-icons.open_with:before {
    content: "\e89f"
}

.material-icons.outdoor_grill:before {
    content: "\ea47"
}

.material-icons.outlined_flag:before {
    content: "\e16e"
}

.material-icons.padding:before {
    content: "\e9c8"
}

.material-icons.pages:before {
    content: "\e7f9"
}

.material-icons.pageview:before {
    content: "\e8a0"
}

.material-icons.palette:before {
    content: "\e40a"
}

.material-icons.pan_tool:before {
    content: "\e925"
}

.material-icons.panorama:before {
    content: "\e40b"
}

.material-icons.panorama_fish_eye:before, .material-icons.panorama_fisheye:before {
    content: "\e40c"
}

.material-icons.panorama_horizontal:before {
    content: "\e40d"
}

.material-icons.panorama_photosphere:before {
    content: "\e9c9"
}

.material-icons.panorama_photosphere_select:before {
    content: "\e9ca"
}

.material-icons.panorama_vertical:before {
    content: "\e40e"
}

.material-icons.panorama_wide_angle:before {
    content: "\e40f"
}

.material-icons.park:before {
    content: "\ea63"
}

.material-icons.party_mode:before {
    content: "\e7fa"
}

.material-icons.pause:before {
    content: "\e034"
}

.material-icons.pause_circle_filled:before {
    content: "\e035"
}

.material-icons.pause_circle_outline:before {
    content: "\e036"
}

.material-icons.pause_presentation:before {
    content: "\e0ea"
}

.material-icons.payment:before {
    content: "\e8a1"
}

.material-icons.people:before {
    content: "\e7fb"
}

.material-icons.people_alt:before {
    content: "\ea21"
}

.material-icons.people_outline:before {
    content: "\e7fc"
}

.material-icons.perm_camera_mic:before {
    content: "\e8a2"
}

.material-icons.perm_contact_cal:before, .material-icons.perm_contact_calendar:before {
    content: "\e8a3"
}

.material-icons.perm_data_setting:before {
    content: "\e8a4"
}

.material-icons.perm_device_info:before, .material-icons.perm_device_information:before {
    content: "\e8a5"
}

.material-icons.perm_identity:before {
    content: "\e8a6"
}

.material-icons.perm_media:before {
    content: "\e8a7"
}

.material-icons.perm_phone_msg:before {
    content: "\e8a8"
}

.material-icons.perm_scan_wifi:before {
    content: "\e8a9"
}

.material-icons.person:before {
    content: "\e7fd"
}

.material-icons.person_add:before {
    content: "\e7fe"
}

.material-icons.person_add_disabled:before {
    content: "\e9cb"
}

.material-icons.person_outline:before {
    content: "\e7ff"
}

.material-icons.person_pin:before {
    content: "\e55a"
}

.material-icons.person_pin_circle:before {
    content: "\e56a"
}

.material-icons.personal_video:before {
    content: "\e63b"
}

.material-icons.pets:before {
    content: "\e91d"
}

.material-icons.phone:before {
    content: "\e0cd"
}

.material-icons.phone_android:before {
    content: "\e324"
}

.material-icons.phone_bluetooth_speaker:before {
    content: "\e61b"
}

.material-icons.phone_callback:before {
    content: "\e649"
}

.material-icons.phone_disabled:before {
    content: "\e9cc"
}

.material-icons.phone_enabled:before {
    content: "\e9cd"
}

.material-icons.phone_forwarded:before {
    content: "\e61c"
}

.material-icons.phone_in_talk:before {
    content: "\e61d"
}

.material-icons.phone_iphone:before {
    content: "\e325"
}

.material-icons.phone_locked:before {
    content: "\e61e"
}

.material-icons.phone_missed:before {
    content: "\e61f"
}

.material-icons.phone_paused:before {
    content: "\e620"
}

.material-icons.phonelink:before {
    content: "\e326"
}

.material-icons.phonelink_erase:before {
    content: "\e0db"
}

.material-icons.phonelink_lock:before {
    content: "\e0dc"
}

.material-icons.phonelink_off:before {
    content: "\e327"
}

.material-icons.phonelink_ring:before {
    content: "\e0dd"
}

.material-icons.phonelink_setup:before {
    content: "\e0de"
}

.material-icons.photo:before {
    content: "\e410"
}

.material-icons.photo_album:before {
    content: "\e411"
}

.material-icons.photo_camera:before {
    content: "\e412"
}

.material-icons.photo_filter:before {
    content: "\e43b"
}

.material-icons.photo_library:before {
    content: "\e413"
}

.material-icons.photo_size_select_actual:before {
    content: "\e432"
}

.material-icons.photo_size_select_large:before {
    content: "\e433"
}

.material-icons.photo_size_select_small:before {
    content: "\e434"
}

.material-icons.picture_as_pdf:before {
    content: "\e415"
}

.material-icons.picture_in_picture:before {
    content: "\e8aa"
}

.material-icons.picture_in_picture_alt:before {
    content: "\e911"
}

.material-icons.pie_chart:before {
    content: "\e6c4"
}

.material-icons.pie_chart_outlined:before {
    content: "\e6c5"
}

.material-icons.pin_drop:before {
    content: "\e55e"
}

.material-icons.pivot_table_chart:before {
    content: "\e9ce"
}

.material-icons.place:before {
    content: "\e55f"
}

.material-icons.play_arrow:before {
    content: "\e037"
}

.material-icons.play_circle_fill:before, .material-icons.play_circle_filled:before {
    content: "\e038"
}

.material-icons.play_circle_outline:before {
    content: "\e039"
}

.material-icons.play_for_work:before {
    content: "\e906"
}

.material-icons.playlist_add:before {
    content: "\e03b"
}

.material-icons.playlist_add_check:before {
    content: "\e065"
}

.material-icons.playlist_play:before {
    content: "\e05f"
}

.material-icons.plus_one:before {
    content: "\e800"
}

.material-icons.policy:before {
    content: "\ea17"
}

.material-icons.poll:before {
    content: "\e801"
}

.material-icons.polymer:before {
    content: "\e8ab"
}

.material-icons.pool:before {
    content: "\eb48"
}

.material-icons.portable_wifi_off:before {
    content: "\e0ce"
}

.material-icons.portrait:before {
    content: "\e416"
}

.material-icons.post_add:before {
    content: "\ea20"
}

.material-icons.power:before {
    content: "\e63c"
}

.material-icons.power_input:before {
    content: "\e336"
}

.material-icons.power_off:before {
    content: "\e646"
}

.material-icons.power_settings_new:before {
    content: "\e8ac"
}

.material-icons.pregnant_woman:before {
    content: "\e91e"
}

.material-icons.present_to_all:before {
    content: "\e0df"
}

.material-icons.print:before {
    content: "\e8ad"
}

.material-icons.print_disabled:before {
    content: "\e9cf"
}

.material-icons.priority_high:before {
    content: "\e645"
}

.material-icons.public:before {
    content: "\e80b"
}

.material-icons.publish:before {
    content: "\e255"
}

.material-icons.query_builder:before {
    content: "\e8ae"
}

.material-icons.question_answer:before {
    content: "\e8af"
}

.material-icons.queue:before {
    content: "\e03c"
}

.material-icons.queue_music:before {
    content: "\e03d"
}

.material-icons.queue_play_next:before {
    content: "\e066"
}

.material-icons.quick_contacts_dialer:before {
    content: "\e0cf"
}

.material-icons.quick_contacts_mail:before {
    content: "\e0d0"
}

.material-icons.radio:before {
    content: "\e03e"
}

.material-icons.radio_button_checked:before {
    content: "\e837"
}

.material-icons.radio_button_off:before {
    content: "\e836"
}

.material-icons.radio_button_on:before {
    content: "\e837"
}

.material-icons.radio_button_unchecked:before {
    content: "\e836"
}

.material-icons.railway_alert:before {
    content: "\e9d1"
}

.material-icons.ramen_dining:before {
    content: "\ea64"
}

.material-icons.rate_review:before {
    content: "\e560"
}

.material-icons.receipt:before {
    content: "\e8b0"
}

.material-icons.recent_actors:before {
    content: "\e03f"
}

.material-icons.recommend:before {
    content: "\e9d2"
}

.material-icons.record_voice_over:before {
    content: "\e91f"
}

.material-icons.redeem:before {
    content: "\e8b1"
}

.material-icons.redo:before {
    content: "\e15a"
}

.material-icons.refresh:before {
    content: "\e5d5"
}

.material-icons.remove:before {
    content: "\e15b"
}

.material-icons.remove_circle:before {
    content: "\e15c"
}

.material-icons.remove_circle_outline:before {
    content: "\e15d"
}

.material-icons.remove_done:before {
    content: "\e9d3"
}

.material-icons.remove_from_queue:before {
    content: "\e067"
}

.material-icons.remove_moderator:before {
    content: "\e9d4"
}

.material-icons.remove_red_eye:before {
    content: "\e417"
}

.material-icons.remove_shopping_cart:before {
    content: "\e928"
}

.material-icons.reorder:before {
    content: "\e8fe"
}

.material-icons.repeat:before {
    content: "\e040"
}

.material-icons.repeat_on:before {
    content: "\e9d6"
}

.material-icons.repeat_one:before {
    content: "\e041"
}

.material-icons.repeat_one_on:before {
    content: "\e9d7"
}

.material-icons.replay:before {
    content: "\e042"
}

.material-icons.replay_10:before {
    content: "\e059"
}

.material-icons.replay_30:before {
    content: "\e05a"
}

.material-icons.replay_5:before {
    content: "\e05b"
}

.material-icons.replay_circle_filled:before {
    content: "\e9d8"
}

.material-icons.reply:before {
    content: "\e15e"
}

.material-icons.reply_all:before {
    content: "\e15f"
}

.material-icons.report:before {
    content: "\e160"
}

.material-icons.report_off:before {
    content: "\e170"
}

.material-icons.report_problem:before {
    content: "\e8b2"
}

.material-icons.reset_tv:before {
    content: "\e9d9"
}

.material-icons.restaurant:before {
    content: "\e56c"
}

.material-icons.restaurant_menu:before {
    content: "\e561"
}

.material-icons.restore:before {
    content: "\e8b3"
}

.material-icons.restore_from_trash:before {
    content: "\e938"
}

.material-icons.restore_page:before {
    content: "\e929"
}

.material-icons.ring_volume:before {
    content: "\e0d1"
}

.material-icons.room:before {
    content: "\e8b4"
}

.material-icons.room_service:before {
    content: "\eb49"
}

.material-icons.rotate_90_degrees_ccw:before {
    content: "\e418"
}

.material-icons.rotate_left:before {
    content: "\e419"
}

.material-icons.rotate_right:before {
    content: "\e41a"
}

.material-icons.rounded_corner:before {
    content: "\e920"
}

.material-icons.router:before {
    content: "\e328"
}

.material-icons.rowing:before {
    content: "\e921"
}

.material-icons.rss_feed:before {
    content: "\e0e5"
}

.material-icons.rtt:before {
    content: "\e9ad"
}

.material-icons.rv_hookup:before {
    content: "\e642"
}

.material-icons.satellite:before {
    content: "\e562"
}

.material-icons.save:before {
    content: "\e161"
}

.material-icons.save_alt:before {
    content: "\e171"
}

.material-icons.saved_search:before {
    content: "\ea11"
}

.material-icons.scanner:before {
    content: "\e329"
}

.material-icons.scatter_plot:before {
    content: "\e268"
}

.material-icons.schedule:before {
    content: "\e8b5"
}

.material-icons.schedule_send:before {
    content: "\ea0a"
}

.material-icons.school:before {
    content: "\e80c"
}

.material-icons.score:before {
    content: "\e269"
}

.material-icons.screen_lock_landscape:before {
    content: "\e1be"
}

.material-icons.screen_lock_portrait:before {
    content: "\e1bf"
}

.material-icons.screen_lock_rotation:before {
    content: "\e1c0"
}

.material-icons.screen_rotation:before {
    content: "\e1c1"
}

.material-icons.screen_share:before {
    content: "\e0e2"
}

.material-icons.sd:before {
    content: "\e9dd"
}

.material-icons.sd_card:before {
    content: "\e623"
}

.material-icons.sd_storage:before {
    content: "\e1c2"
}

.material-icons.search:before {
    content: "\e8b6"
}

.material-icons.security:before {
    content: "\e32a"
}

.material-icons.segment:before {
    content: "\e94b"
}

.material-icons.select_all:before {
    content: "\e162"
}

.material-icons.send:before {
    content: "\e163"
}

.material-icons.send_and_archive:before {
    content: "\ea0c"
}

.material-icons.sentiment_dissatisfied:before {
    content: "\e811"
}

.material-icons.sentiment_neutral:before {
    content: "\e812"
}

.material-icons.sentiment_satisfied:before {
    content: "\e813"
}

.material-icons.sentiment_satisfied_alt:before {
    content: "\e0ed"
}

.material-icons.sentiment_very_dissatisfied:before {
    content: "\e814"
}

.material-icons.sentiment_very_satisfied:before {
    content: "\e815"
}

.material-icons.settings:before {
    content: "\e8b8"
}

.material-icons.settings_applications:before {
    content: "\e8b9"
}

.material-icons.settings_backup_restore:before {
    content: "\e8ba"
}

.material-icons.settings_bluetooth:before {
    content: "\e8bb"
}

.material-icons.settings_brightness:before {
    content: "\e8bd"
}

.material-icons.settings_cell:before {
    content: "\e8bc"
}

.material-icons.settings_display:before {
    content: "\e8bd"
}

.material-icons.settings_ethernet:before {
    content: "\e8be"
}

.material-icons.settings_input_antenna:before {
    content: "\e8bf"
}

.material-icons.settings_input_component:before {
    content: "\e8c0"
}

.material-icons.settings_input_composite:before {
    content: "\e8c1"
}

.material-icons.settings_input_hdmi:before {
    content: "\e8c2"
}

.material-icons.settings_input_svideo:before {
    content: "\e8c3"
}

.material-icons.settings_overscan:before {
    content: "\e8c4"
}

.material-icons.settings_phone:before {
    content: "\e8c5"
}

.material-icons.settings_power:before {
    content: "\e8c6"
}

.material-icons.settings_remote:before {
    content: "\e8c7"
}

.material-icons.settings_system_daydream:before {
    content: "\e1c3"
}

.material-icons.settings_voice:before {
    content: "\e8c8"
}

.material-icons.share:before {
    content: "\e80d"
}

.material-icons.shield:before {
    content: "\e9e0"
}

.material-icons.shop:before {
    content: "\e8c9"
}

.material-icons.shop_two:before {
    content: "\e8ca"
}

.material-icons.shopping_basket:before {
    content: "\e8cb"
}

.material-icons.shopping_cart:before {
    content: "\e8cc"
}

.material-icons.short_text:before {
    content: "\e261"
}

.material-icons.show_chart:before {
    content: "\e6e1"
}

.material-icons.shuffle:before {
    content: "\e043"
}

.material-icons.shuffle_on:before {
    content: "\e9e1"
}

.material-icons.shutter_speed:before {
    content: "\e43d"
}

.material-icons.signal_cellular_4_bar:before {
    content: "\e1c8"
}

.material-icons.signal_cellular_alt:before {
    content: "\e202"
}

.material-icons.signal_cellular_connected_no_internet_4_bar:before {
    content: "\e1cd"
}

.material-icons.signal_cellular_no_sim:before {
    content: "\e1ce"
}

.material-icons.signal_cellular_null:before {
    content: "\e1cf"
}

.material-icons.signal_cellular_off:before {
    content: "\e1d0"
}

.material-icons.signal_wifi_4_bar:before {
    content: "\e1d8"
}

.material-icons.signal_wifi_4_bar_lock:before {
    content: "\e1d9"
}

.material-icons.signal_wifi_off:before {
    content: "\e1da"
}

.material-icons.sim_card:before {
    content: "\e32b"
}

.material-icons.sim_card_alert:before {
    content: "\e624"
}

.material-icons.single_bed:before {
    content: "\ea48"
}

.material-icons.skip_next:before {
    content: "\e044"
}

.material-icons.skip_previous:before {
    content: "\e045"
}

.material-icons.slideshow:before {
    content: "\e41b"
}

.material-icons.slow_motion_video:before {
    content: "\e068"
}

.material-icons.smartphone:before {
    content: "\e32c"
}

.material-icons.smoke_free:before {
    content: "\eb4a"
}

.material-icons.smoking_rooms:before {
    content: "\eb4b"
}

.material-icons.sms:before {
    content: "\e625"
}

.material-icons.sms_failed:before {
    content: "\e626"
}

.material-icons.snooze:before {
    content: "\e046"
}

.material-icons.sort:before {
    content: "\e164"
}

.material-icons.sort_by_alpha:before {
    content: "\e053"
}

.material-icons.spa:before {
    content: "\eb4c"
}

.material-icons.space_bar:before {
    content: "\e256"
}

.material-icons.speaker:before {
    content: "\e32d"
}

.material-icons.speaker_group:before {
    content: "\e32e"
}

.material-icons.speaker_notes:before {
    content: "\e8cd"
}

.material-icons.speaker_notes_off:before {
    content: "\e92a"
}

.material-icons.speaker_phone:before {
    content: "\e0d2"
}

.material-icons.speed:before {
    content: "\e9e4"
}

.material-icons.spellcheck:before {
    content: "\e8ce"
}

.material-icons.sports:before {
    content: "\ea30"
}

.material-icons.sports_baseball:before {
    content: "\ea51"
}

.material-icons.sports_basketball:before {
    content: "\ea26"
}

.material-icons.sports_cricket:before {
    content: "\ea27"
}

.material-icons.sports_esports:before {
    content: "\ea28"
}

.material-icons.sports_football:before {
    content: "\ea29"
}

.material-icons.sports_golf:before {
    content: "\ea2a"
}

.material-icons.sports_handball:before {
    content: "\ea33"
}

.material-icons.sports_hockey:before {
    content: "\ea2b"
}

.material-icons.sports_kabaddi:before {
    content: "\ea34"
}

.material-icons.sports_mma:before {
    content: "\ea2c"
}

.material-icons.sports_motorsports:before {
    content: "\ea2d"
}

.material-icons.sports_rugby:before {
    content: "\ea2e"
}

.material-icons.sports_soccer:before {
    content: "\ea2f"
}

.material-icons.sports_tennis:before {
    content: "\ea32"
}

.material-icons.sports_volleyball:before {
    content: "\ea31"
}

.material-icons.square_foot:before {
    content: "\ea49"
}

.material-icons.stacked_bar_chart:before {
    content: "\e9e6"
}

.material-icons.star:before {
    content: "\e838"
}

.material-icons.star_border:before {
    content: "\e83a"
}

.material-icons.star_half:before {
    content: "\e839"
}

.material-icons.star_outline:before {
    content: "\e83a"
}

.material-icons.stars:before {
    content: "\e8d0"
}

.material-icons.stay_current_landscape:before {
    content: "\e0d3"
}

.material-icons.stay_current_portrait:before {
    content: "\e0d4"
}

.material-icons.stay_primary_landscape:before {
    content: "\e0d5"
}

.material-icons.stay_primary_portrait:before {
    content: "\e0d6"
}

.material-icons.stop:before {
    content: "\e047"
}

.material-icons.stop_screen_share:before {
    content: "\e0e3"
}

.material-icons.storage:before {
    content: "\e1db"
}

.material-icons.store:before {
    content: "\e8d1"
}

.material-icons.store_mall_directory:before {
    content: "\e563"
}

.material-icons.storefront:before {
    content: "\ea12"
}

.material-icons.straighten:before {
    content: "\e41c"
}

.material-icons.stream:before {
    content: "\e9e9"
}

.material-icons.streetview:before {
    content: "\e56e"
}

.material-icons.strikethrough_s:before {
    content: "\e257"
}

.material-icons.style:before {
    content: "\e41d"
}

.material-icons.subdirectory_arrow_left:before {
    content: "\e5d9"
}

.material-icons.subdirectory_arrow_right:before {
    content: "\e5da"
}

.material-icons.subject:before {
    content: "\e8d2"
}

.material-icons.subscriptions:before {
    content: "\e064"
}

.material-icons.subtitles:before {
    content: "\e048"
}

.material-icons.subway:before {
    content: "\e56f"
}

.material-icons.supervised_user_circle:before {
    content: "\e939"
}

.material-icons.supervisor_account:before {
    content: "\e8d3"
}

.material-icons.surround_sound:before {
    content: "\e049"
}

.material-icons.swap_calls:before {
    content: "\e0d7"
}

.material-icons.swap_horiz:before {
    content: "\e8d4"
}

.material-icons.swap_horizontal_circle:before {
    content: "\e933"
}

.material-icons.swap_vert:before {
    content: "\e8d5"
}

.material-icons.swap_vert_circle:before, .material-icons.swap_vertical_circle:before {
    content: "\e8d6"
}

.material-icons.swipe:before {
    content: "\e9ec"
}

.material-icons.switch_account:before {
    content: "\e9ed"
}

.material-icons.switch_camera:before {
    content: "\e41e"
}

.material-icons.switch_video:before {
    content: "\e41f"
}

.material-icons.sync:before {
    content: "\e627"
}

.material-icons.sync_alt:before {
    content: "\ea18"
}

.material-icons.sync_disabled:before {
    content: "\e628"
}

.material-icons.sync_problem:before {
    content: "\e629"
}

.material-icons.system_update:before {
    content: "\e62a"
}

.material-icons.system_update_alt:before, .material-icons.system_update_tv:before {
    content: "\e8d7"
}

.material-icons.tab:before {
    content: "\e8d8"
}

.material-icons.tab_unselected:before {
    content: "\e8d9"
}

.material-icons.table_chart:before {
    content: "\e265"
}

.material-icons.tablet:before {
    content: "\e32f"
}

.material-icons.tablet_android:before {
    content: "\e330"
}

.material-icons.tablet_mac:before {
    content: "\e331"
}

.material-icons.tag:before {
    content: "\e9ef"
}

.material-icons.tag_faces:before {
    content: "\e420"
}

.material-icons.takeout_dining:before {
    content: "\ea74"
}

.material-icons.tap_and_play:before {
    content: "\e62b"
}

.material-icons.terrain:before {
    content: "\e564"
}

.material-icons.text_fields:before {
    content: "\e262"
}

.material-icons.text_format:before {
    content: "\e165"
}

.material-icons.text_rotate_up:before {
    content: "\e93a"
}

.material-icons.text_rotate_vertical:before {
    content: "\e93b"
}

.material-icons.text_rotation_angledown:before {
    content: "\e93c"
}

.material-icons.text_rotation_angleup:before {
    content: "\e93d"
}

.material-icons.text_rotation_down:before {
    content: "\e93e"
}

.material-icons.text_rotation_none:before {
    content: "\e93f"
}

.material-icons.textsms:before {
    content: "\e0d8"
}

.material-icons.texture:before {
    content: "\e421"
}

.material-icons.theater_comedy:before {
    content: "\ea66"
}

.material-icons.theaters:before {
    content: "\e8da"
}

.material-icons.thumb_down:before {
    content: "\e8db"
}

.material-icons.thumb_down_alt:before {
    content: "\e816"
}

.material-icons.thumb_down_off_alt:before {
    content: "\e9f2"
}

.material-icons.thumb_up:before {
    content: "\e8dc"
}

.material-icons.thumb_up_alt:before {
    content: "\e817"
}

.material-icons.thumb_up_off_alt:before {
    content: "\e9f3"
}

.material-icons.thumbs_up_down:before {
    content: "\e8dd"
}

.material-icons.time_to_leave:before {
    content: "\e62c"
}

.material-icons.timelapse:before {
    content: "\e422"
}

.material-icons.timeline:before {
    content: "\e922"
}

.material-icons.timer:before {
    content: "\e425"
}

.material-icons.timer_10:before {
    content: "\e423"
}

.material-icons.timer_3:before {
    content: "\e424"
}

.material-icons.timer_off:before {
    content: "\e426"
}

.material-icons.title:before {
    content: "\e264"
}

.material-icons.toc:before {
    content: "\e8de"
}

.material-icons.today:before {
    content: "\e8df"
}

.material-icons.toggle_off:before {
    content: "\e9f5"
}

.material-icons.toggle_on:before {
    content: "\e9f6"
}

.material-icons.toll:before {
    content: "\e8e0"
}

.material-icons.tonality:before {
    content: "\e427"
}

.material-icons.touch_app:before {
    content: "\e913"
}

.material-icons.toys:before {
    content: "\e332"
}

.material-icons.track_changes:before {
    content: "\e8e1"
}

.material-icons.traffic:before {
    content: "\e565"
}

.material-icons.train:before {
    content: "\e570"
}

.material-icons.tram:before {
    content: "\e571"
}

.material-icons.transfer_within_a_station:before {
    content: "\e572"
}

.material-icons.transform:before {
    content: "\e428"
}

.material-icons.transit_enterexit:before {
    content: "\e579"
}

.material-icons.translate:before {
    content: "\e8e2"
}

.material-icons.trending_down:before {
    content: "\e8e3"
}

.material-icons.trending_flat:before, .material-icons.trending_neutral:before {
    content: "\e8e4"
}

.material-icons.trending_up:before {
    content: "\e8e5"
}

.material-icons.trip_origin:before {
    content: "\e57b"
}

.material-icons.tune:before {
    content: "\e429"
}

.material-icons.turned_in:before {
    content: "\e8e6"
}

.material-icons.turned_in_not:before {
    content: "\e8e7"
}

.material-icons.tv:before {
    content: "\e333"
}

.material-icons.tv_off:before {
    content: "\e647"
}

.material-icons.two_wheeler:before {
    content: "\e9f9"
}

.material-icons.unarchive:before {
    content: "\e169"
}

.material-icons.undo:before {
    content: "\e166"
}

.material-icons.unfold_less:before {
    content: "\e5d6"
}

.material-icons.unfold_more:before {
    content: "\e5d7"
}

.material-icons.unsubscribe:before {
    content: "\e0eb"
}

.material-icons.update:before {
    content: "\e923"
}

.material-icons.upload_file:before {
    content: "\e9fc"
}

.material-icons.usb:before {
    content: "\e1e0"
}

.material-icons.verified_user:before {
    content: "\e8e8"
}

.material-icons.vertical_align_bottom:before {
    content: "\e258"
}

.material-icons.vertical_align_center:before {
    content: "\e259"
}

.material-icons.vertical_align_top:before {
    content: "\e25a"
}

.material-icons.vertical_split:before {
    content: "\e949"
}

.material-icons.vibration:before {
    content: "\e62d"
}

.material-icons.video_call:before {
    content: "\e070"
}

.material-icons.video_collection:before {
    content: "\e04a"
}

.material-icons.video_label:before {
    content: "\e071"
}

.material-icons.video_library:before {
    content: "\e04a"
}

.material-icons.videocam:before {
    content: "\e04b"
}

.material-icons.videocam_off:before {
    content: "\e04c"
}

.material-icons.videogame_asset:before {
    content: "\e338"
}

.material-icons.view_agenda:before {
    content: "\e8e9"
}

.material-icons.view_array:before {
    content: "\e8ea"
}

.material-icons.view_carousel:before {
    content: "\e8eb"
}

.material-icons.view_column:before {
    content: "\e8ec"
}

.material-icons.view_comfortable:before, .material-icons.view_comfy:before {
    content: "\e42a"
}

.material-icons.view_compact:before {
    content: "\e42b"
}

.material-icons.view_day:before {
    content: "\e8ed"
}

.material-icons.view_headline:before {
    content: "\e8ee"
}

.material-icons.view_in_ar:before {
    content: "\e9fe"
}

.material-icons.view_list:before {
    content: "\e8ef"
}

.material-icons.view_module:before {
    content: "\e8f0"
}

.material-icons.view_quilt:before {
    content: "\e8f1"
}

.material-icons.view_stream:before {
    content: "\e8f2"
}

.material-icons.view_week:before {
    content: "\e8f3"
}

.material-icons.vignette:before {
    content: "\e435"
}

.material-icons.visibility:before {
    content: "\e8f4"
}

.material-icons.visibility_off:before {
    content: "\e8f5"
}

.material-icons.voice_chat:before {
    content: "\e62e"
}

.material-icons.voice_over_off:before {
    content: "\e94a"
}

.material-icons.voicemail:before {
    content: "\e0d9"
}

.material-icons.volume_down:before {
    content: "\e04d"
}

.material-icons.volume_mute:before {
    content: "\e04e"
}

.material-icons.volume_off:before {
    content: "\e04f"
}

.material-icons.volume_up:before {
    content: "\e050"
}

.material-icons.volunteer_activism:before {
    content: "\ea70"
}

.material-icons.vpn_key:before {
    content: "\e0da"
}

.material-icons.vpn_lock:before {
    content: "\e62f"
}

.material-icons.wallet_giftcard:before {
    content: "\e8f6"
}

.material-icons.wallet_membership:before {
    content: "\e8f7"
}

.material-icons.wallet_travel:before {
    content: "\e8f8"
}

.material-icons.wallpaper:before {
    content: "\e1bc"
}

.material-icons.warning:before {
    content: "\e002"
}

.material-icons.watch:before {
    content: "\e334"
}

.material-icons.watch_later:before {
    content: "\e924"
}

.material-icons.waterfall_chart:before {
    content: "\ea00"
}

.material-icons.waves:before {
    content: "\e176"
}

.material-icons.wb_auto:before {
    content: "\e42c"
}

.material-icons.wb_cloudy:before {
    content: "\e42d"
}

.material-icons.wb_incandescent:before {
    content: "\e42e"
}

.material-icons.wb_iridescent:before {
    content: "\e436"
}

.material-icons.wb_shade:before {
    content: "\ea01"
}

.material-icons.wb_sunny:before {
    content: "\e430"
}

.material-icons.wb_twighlight:before {
    content: "\ea02"
}

.material-icons.wc:before {
    content: "\e63d"
}

.material-icons.web:before {
    content: "\e051"
}

.material-icons.web_asset:before {
    content: "\e069"
}

.material-icons.weekend:before {
    content: "\e16b"
}

.material-icons.whatshot:before {
    content: "\e80e"
}

.material-icons.where_to_vote:before {
    content: "\e177"
}

.material-icons.widgets:before {
    content: "\e1bd"
}

.material-icons.wifi:before {
    content: "\e63e"
}

.material-icons.wifi_lock:before {
    content: "\e1e1"
}

.material-icons.wifi_off:before {
    content: "\e648"
}

.material-icons.wifi_tethering:before {
    content: "\e1e2"
}

.material-icons.work:before {
    content: "\e8f9"
}

.material-icons.work_off:before {
    content: "\e942"
}

.material-icons.work_outline:before {
    content: "\e943"
}

.material-icons.workspaces_filled:before {
    content: "\ea0d"
}

.material-icons.workspaces_outline:before {
    content: "\ea0f"
}

.material-icons.wrap_text:before {
    content: "\e25b"
}

.material-icons.youtube_searched_for:before {
    content: "\e8fa"
}

.material-icons.zoom_in:before {
    content: "\e8ff"
}

.material-icons.zoom_out:before {
    content: "\e900"
}

.material-icons.zoom_out_map:before {
    content: "\e56b"
}

.nuxt-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    width: 0;
    opacity: 1;
    transition: width .1s, opacity .4s;
    background-color: #044ca0;
    z-index: 999999
}

.nuxt-progress.nuxt-progress-notransition {
    transition: none
}

.nuxt-progress-failed {
    background-color: red
}

.container.grid-list-xl .layout .sparwelt-logo {
    padding: 0
}

.view-is-on-top-helper {
    display: block;
    height: 1px;
    position: absolute;
    width: 100%
}

@media {
    .navigation-container {
        padding: 0
    }
}

@media only screen and (min-width: 960px) {
    .navigation-container {
        padding: 20px 20px 0
    }
}

.partner-nav, .site-header {
    position: relative
}

.partner-nav {
    height: 100%;
    z-index: 9
}

.site-header {
    height: 60px;
    padding: 5px 0;
    width: 100%;
    background: #333;
    background: linear-gradient(180deg, #333 0, transparent)
}

@media only screen and (min-width: 960px) {
    .site-header {
        align-content: center;
        border-radius: 10px;
        display: grid;
        height: 115px;
        padding: 10px 0;
        background: #e9e9e9;
        background: linear-gradient(180deg, #e9e9e9 0, #cdcdcd);
        box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .35)
    }

    .site-header .partner-nav, .site-header .partner-nav:after, .site-header .partner-nav:before {
        height: 31px;
        background: #505050;
        background: linear-gradient(180deg, #505050 0, #2f2f2f)
    }

    .site-header .partner-nav:after, .site-header .partner-nav:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        width: 12px
    }

    .site-header .partner-nav:before {
        border-bottom-left-radius: 1px;
        left: -12px
    }

    .site-header .partner-nav:after {
        border-bottom-right-radius: 1px;
        right: -12px
    }
}

.site-header__icon {
    background: #505050;
    border-radius: 50%;
    color: #f8f8f8 !important;
    font-size: 18px !important;
    padding: 4px
}

.site-header__icon:hover {
    background: #fff !important
}

.site-header img, .site-header nav {
    width: 100%
}

.site-header nav {
    display: block
}

@media only screen and (max-width: 959px) {
    .site-header nav {
        position: relative
    }
}

.site-header nav .partner-navigation {
    background: transparent
}

@media only screen and (min-width: 960px) {
    .site-header nav .partner-navigation:after, .site-header nav .partner-navigation:before {
        background: transparent;
        border-bottom: 11px solid transparent;
        bottom: -11px;
        content: "";
        display: block;
        height: 0;
        position: absolute;
        width: 0
    }

    .site-header nav .partner-navigation:before {
        border-right: 12px solid #505050;
        left: -12px
    }

    .site-header nav .partner-navigation:after {
        border-left: 12px solid #505050;
        right: -12px
    }
}

.navigation-container-wrap {
    position: relative;
    z-index: 6
}

.navigation-container-wrap .navigation-container {
    padding: 0
}

@media only screen and (min-width: 960px) {
    .navigation-container-wrap .navigation-container {
        padding: 20px 20px 0
    }
}

.navigation-off-canvas {
    background-color: #253f86 !important;
    z-index: 9
}

.navigation-off-canvas.v-navigation-drawer--open {
    width: 100% !important
}

.navigation-off-canvas__item {
    border-bottom: 1px solid #4d739e;
    font-family: neue-aachen-pro, sans-serif
}

.navigation-off-canvas__item--indent {
    padding-left: 16px
}

.navigation-off-canvas__item:hover {
    background-color: #2d4c9f
}

.navigation-off-canvas__item a {
    color: #fff;
    font-weight: 700 !important
}

.mobile-nav-toolbar {
    background: #333;
    background: linear-gradient(180deg, #333 0, transparent)
}

.mobile-nav-toolbar .v-btn, .mobile-nav-toolbar .v-icon {
    color: #fff
}

.partner-logo {
    height: 100%;
    width: 40px
}

@media only screen and (min-width: 960px) {
    .partner-logo {
        margin: -36px 0 0 5px;
        width: 76px
    }
}

.partner-navigation .v-toolbar__title {
    font-family: neue-aachen-pro, sans-serif;
    font-size: 1.7857rem;
    font-weight: 700;
    margin: 10px 0 0 10px
}

.partner-navigation .v-toolbar__content {
    padding: 0 10px
}

@media {
    .partner-navigation .v-toolbar__content {
        height: 31px !important
    }
}

.partner-navigation .icon-close {
    margin-top: 15px
}

.partner-navigation .v-btn--icon {
    margin: 10px 0 0
}

.partner-navigation .v-btn--icon .v-icon {
    font-size: 2.4286rem
}

@media only screen and (min-width: 960px) {
    .partner-navigation {
        background: #505050;
        background: linear-gradient(180deg, #505050 0, #2f2f2f)
    }

    .partner-navigation .v-toolbar__content {
        box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, .35)
    }
}

.partner-navigation .partner-navigation-link {
    color: #fff;
    font-size: .9286rem;
    font-weight: 700;
    line-height: 31px;
    padding: 0 6px;
    text-decoration: none
}

@media only screen and (min-width: 1264px) {
    .partner-navigation .partner-navigation-link {
        padding: 0 8px
    }
}

.partner-navigation .partner-navigation-link:hover {
    background-color: #5f5f5f;
    color: #fff
}

.partner-navigation .partner-navigation-link .partner-navigation-link-label {
    display: block;
    height: 100%
}

.partner-navigation .partner-navigation-link:last-of-type :before {
    content: "\2630";
    font-weight: 500;
    margin-right: 4px
}

.navigation-off-canvas .navigation-off-canvas-item a {
    font-family: neue-aachen-pro, sans-serif;
    font-size: 1.2857rem
}

.site-header .internal-navigation .v-toolbar__content {
    padding: 0 4px
}

@media only screen and (max-width: 959px) {
    .site-header .internal-navigation .v-toolbar__content {
        height: 64px !important
    }
}

@media only screen and (min-width: 960px) {
    .site-header .internal-navigation {
        background-color: transparent;
        top: 78px
    }

    .site-header .internal-navigation .v-toolbar__content {
        padding-right: 5px
    }
}

.site-header .internal-navigation .internal-navigation-links {
    margin-left: 87px
}

.site-header .internal-navigation .internal-navigation-links .internal-navigation-link {
    border-radius: 0;
    margin-left: -1px;
    text-transform: none
}

.site-header .internal-navigation .internal-navigation-links .internal-navigation-link:hover {
    color: #555
}

.site-header .internal-navigation .internal-navigation-links .internal-navigation-link:before {
    color: transparent
}

.internal-navigation-search {
    width: 100%;
    z-index: 100000;
}

@media only screen and (min-width: 960px) {
    .internal-navigation-search {
        max-width: 245px
    }
}

@media only screen and (min-width: 1264px) {
    .internal-navigation-search {
        max-width: 475px
    }
}

.v-autocomplete {
    align-self: center
}

.v-autocomplete__content.v-menu__content {
    box-shadow: none
}

.v-autocomplete__content .v-list {
    color: #c9c9c9;
    padding: 0
}

.v-autocomplete__content .v-list__tile {
    background: #555;
    height: 2.8571rem;
    padding: 0 .7143rem
}

.v-autocomplete__content .v-list__tile:before {
    content: "watch_later";
    font-family: "Material Icons", Sans-Serif, serif;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    font-size: 1.2857rem;
    margin-right: 5px
}

.v-autocomplete__content .v-list__tile--highlighted, .v-autocomplete__content .v-list__tile:hover {
    background: #333 !important
}

.v-autocomplete__content .v-list__tile--link {
    border-bottom: 1px solid #c9c9c9
}

.v-autocomplete__content .v-list__tile--link:hover {
    color: #c9c9c9
}

.v-autocomplete .v-text-field__details {
    display: none
}

.v-autocomplete .v-input__slot {
    background: #fff;
    flex-direction: row-reverse;
    margin-bottom: 0;
    padding: 0 .25rem 0 .5rem
}

.v-autocomplete .v-input__slot:after, .v-autocomplete .v-input__slot:before {
    display: none
}

.v-autocomplete .v-input__icon i {
    color: #c9c9c9
}

.v-autocomplete .v-select__slot input, .v-autocomplete .v-select__slot input::-webkit-input-placeholder {
    color: #c9c9c9;
    font-size: 1rem
}

.v-autocomplete .v-select__slot input, .v-autocomplete .v-select__slot input::-moz-placeholder {
    color: #c9c9c9;
    font-size: 1rem
}

.v-autocomplete .v-select__slot input, .v-autocomplete .v-select__slot input:-ms-input-placeholder {
    color: #c9c9c9;
    font-size: 1rem
}

.v-autocomplete .v-select__slot input, .v-autocomplete .v-select__slot input::-ms-input-placeholder {
    color: #c9c9c9;
    font-size: 1rem
}

.v-autocomplete .v-select__slot input, .v-autocomplete .v-select__slot input::placeholder {
    color: #c9c9c9;
    font-size: 1rem
}

.v-input.search-input.v-autocomplete input {
    color: #333;
    font-size: 1.1429rem
}

@media only screen and (max-width: 959px) {
    #disclaimer-sw-logo {
        margin: 4px 0 0;
        padding: 0
    }
}

#disclaimer-sw-logo img {
    max-width: 70px;
    position: relative;
    top: -1px
}

#disclaimer-sw-logo span {
    color: #555;
    vertical-align: text-bottom
}

.promotion-carousel__image {
    height: 100%;
    width: 100%
}

@media only screen and (min-width: 960px) and (max-width: 1263px) {
    .promotion-carousel__image {
        height: 393px;
        width: 884px
    }
}

@media only screen and (min-width: 1264px) {
    .promotion-carousel__image {
        height: 520px;
        width: 1169px
    }
}

@media only screen and (max-width: 959px) {
    .promotion-carousel__image {
        height: calc(45vw - 8px)
    }
}

.promotion-carousel .v-responsive__content {
    line-height: 0
}

.promotion-carousel .v-carousel__controls {
    height: 34px
}

.promotion-carousel .v-btn--icon.v-btn--small {
    width: 15px
}

.promotion-carousel .v-carousel__controls__item {
    margin: 0 5px !important
}

.promotion-carousel .v-btn--active .v-btn__content i {
    opacity: 1
}

.promotion-carousel .v-btn:before {
    background: transparent
}

@media only screen and (max-width: 959px) {
    .promotion-carousel-wrapper {
        padding: 0 0 16px !important
    }
}

@media only screen and (min-width: 600px) {
    .padding-sm-and-up {
        padding-top: 48px
    }
}

.layout-image {
    width: 100%
}

.promotion-teaser.v-card {
    background-color: #fff;
    display: flex;
    flex-direction: column
}

.promotion-teaser__image {
    height: 100%;
    width: 100%
}

@media only screen and (min-width: 960px) and (max-width: 1263px) {
    .promotion-teaser__image {
        height: 157px;
        width: 279px
    }
}

@media only screen and (min-width: 1264px) {
    .promotion-teaser__image {
        height: 210px;
        width: 374px
    }
}

@media only screen and (max-width: 959px) {
    .promotion-teaser__image {
        height: auto
    }
}

.promotion-teaser__title {
    color: #333;
    font-size: 1.1429rem !important
}

.promotion-teaser .v-card__text {
    margin-top: -32px
}

.promotion-teaser .v-card__actions {
    display: block;
    text-align: right
}

.promotion-teaser .v-card__actions .v-btn {
    color: #555
}

.v-card__title--primary {
    padding: 16px
}

.v-card__title--primary .promotion-teaser__super-title {
    color: #044ca0;
    width: 100%
}

@media only screen and (min-width: 600px) {
    .v-card__title--primary {
        padding: 16px 16px 24px
    }
}

.element-list__more.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) {
    background-color: #044ca0;
    color: #fff
}

.element-list__more.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) .v-btn__content {
    color: #fff
}

.element-list__more.theme--light.v-btn.v-btn--flat {
    color: #044ca0
}

.element-list__more.theme--light.v-btn.v-btn--outline {
    background-color: transparent;
    color: #044ca0
}

.element-list__item {
    border-bottom: 1px solid #e4e4e4;
    cursor: pointer;
    display: flex;
    padding: 1.4286rem 0;
    text-decoration: none
}

.element-list__item .element-list__icon {
    display: flex;
    margin-right: 2.7143rem;
    min-width: 4.2857rem
}

.element-list__item .element-list__icon i {
    color: #555
}

.element-list__item .element-list__icon img {
    height: 30px;
    width: 60px
}

.element-list__item .element-list__content {
    color: #555;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center
}

.element-list__item .element-list__content-subtitle {
    color: #044ca0
}

.element-list__item .element-list__action {
    display: flex;
    font-size: 1.4286rem
}

.element-list__item .element-list__action i:first-child {
    color: #555;
    font-size: 1.1429rem
}

.element-list__item .element-list__action i:last-child {
    color: #555;
    font-size: 1.3571rem
}

.element-list__item .element-list__title {
    color: #333
}

.element-list__item .element-list__link.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) {
    background-color: #555;
    color: #fff
}

.element-list__item .element-list__link.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) .v-btn__content {
    color: #fff
}

.element-list__item .element-list__link.theme--light.v-btn.v-btn--flat {
    color: #555
}

.element-list__item .element-list__link.theme--light.v-btn.v-btn--outline {
    background-color: transparent;
    color: #555
}

@media only screen and (max-width: 959px) {
    .element-list__item .element-list__icon {
        margin-right: 2.1429rem
    }
}

@media only screen and (max-width: 599px) {
    .list {
        padding: 1.8571rem 0 !important
    }

    .element-list__item .element-list__link {
        font-size: 1.1429rem
    }

    .element-list__item .element-list__icon {
        min-width: 4.2857rem
    }

    .element-list-column:first-child {
        padding-bottom: 0 !important
    }

    .element-list-column:nth-child(2) {
        padding-top: 0 !important
    }
}

.newsletter {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    color: #fff;
    background: #333 linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .6));
    margin: auto -8px !important
}

@media only screen and (max-width: 959px) {
    .newsletter {
        padding: 0 !important;
        margin: auto -16px !important
    }
}

.newsletter__text {
    color: #fff
}

.newsletter .icon {
    text-align: center
}

@media only screen and (max-width: 599px) {
    .newsletter .icon {
        display: none
    }
}

.newsletter .v-form a {
    color: #fff;
    text-decoration: none
}

@media only screen and (max-width: 959px) {
    .newsletter .v-form .flex .xs7 {
        padding-right: 0
    }
}

.newsletter .v-form .flex .v-input {
    padding: 0
}

.newsletter .v-form .flex .v-input input {
    background: #fff;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px #044ca0;
    color: #044ca0;
    font-size: 14px;
    height: 36px;
    max-height: 36px;
    padding: 0 0 0 1rem
}

.newsletter .v-form .flex .v-label {
    color: #044ca0;
    font-size: 14px;
    padding: 0 0 0 .7143rem;
    top: .5714rem
}

.newsletter .v-form .flex .v-label--active {
    -webkit-transform: translateY(-9px) scale(.75);
    transform: translateY(-9px) scale(.75)
}

.newsletter .v-form .flex .v-label.error--text {
    color: #cf063e !important
}

.newsletter .v-form .flex .v-btn {
    height: 36px;
    margin: .2857rem 0 0;
    max-width: 235px;
    text-transform: none;
    width: 100%
}

.newsletter .v-form .flex .v-btn.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) {
    background-color: #044ca0;
    color: #fff
}

.newsletter .v-form .flex .v-btn.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) .v-btn__content {
    color: #fff
}

.newsletter .v-form .flex .v-btn.theme--light.v-btn.v-btn--flat {
    color: #044ca0
}

.newsletter .v-form .flex .v-btn.theme--light.v-btn.v-btn--outline {
    background-color: transparent;
    color: #044ca0
}

.newsletter .v-form .v-messages__wrapper .v-messages__message {
    color: #cf063e
}

.newsletter .v-form__content.xs12 .flex {
    padding-bottom: 0
}

.newsletter .v-form p {
    padding: 0 12px
}

.newsletter .v-form p.subtitle {
    color: #fff;
    font-size: 1.7143rem;
    line-height: 30px
}

.newsletter--light {
    background: #f8f8f8;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .15);
    margin: 16px auto 0 !important
}

.newsletter--light .newsletter__text {
    color: #333
}

.newsletter--light .v-form .flex .v-btn.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) {
    background: transparent;
    border: 1px solid #044ca0;
    box-shadow: none
}

.newsletter--light .v-form .flex .v-btn.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline):hover {
    background: #044ca0
}

.newsletter--light .v-form .flex .v-btn.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline):hover .v-btn__content {
    color: #fff
}

.newsletter--light .v-form .flex .v-btn.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) .v-btn__content {
    color: #044ca0
}

.newsletter--light .v-form .flex a {
    color: #333
}

.newsletter--light .v-form .flex p {
    padding: 0
}

.newsletter--light .v-form .flex p.subtitle {
    color: #333;
    margin: 8px 0 !important
}

@media only screen and (max-width: 599px) {
    .newsletter--light .v-form .flex p.subtitle {
        font-size: 1.5714rem
    }
}

.newsletter--light .v-form .flex .v-label {
    color: #333
}

.newsletter--light .v-form .flex .v-input {
    margin-right: 10px
}

.newsletter--light .v-form .flex .v-input input {
    box-shadow: inset 0 0 0 1px #333;
    color: #333
}

.newsletter--light .v-input__slot:before {
    border: none !important
}

.shop-collection .v-carousel__next .v-btn, .shop-collection .v-carousel__prev .v-btn {
    background: #555
}

.shop-collection .v-icon {
    font-size: 2.1429rem !important
}

.shop-collection__more.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) {
    background-color: #044ca0;
    color: #fff
}

.shop-collection__more.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) .v-btn__content {
    color: #fff
}

.shop-collection__more.theme--light.v-btn.v-btn--flat {
    color: #044ca0
}

.shop-collection__more.theme--light.v-btn.v-btn--outline {
    background-color: transparent;
    color: #044ca0
}

.teaser-shop {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #333;
    min-height: 100%
}

.teaser-shop .logo {
    height: 100%;
    width: 100%
}

@media only screen and (min-width: 960px) and (max-width: 1263px) {
    .teaser-shop .logo {
        height: 64px;
        width: 127px
    }
}

@media only screen and (min-width: 1264px) {
    .teaser-shop .logo {
        height: 87px;
        width: 175px
    }
}

.teaser-shop__divider {
    border-color: #c9c9c9 !important
}

.layout-footer__caption {
    color: #555
}

.layout-footer__link {
    color: #555;
    font-weight: 700;
    text-decoration: none;
    border-left: 2px solid #555
}

.layout-footer__link:hover {
    color: #c9c9c9
}

.layout-footer__link:first-of-type {
    border: none
}

.layout-footer__divider {
    border-color: #e4e4e4 !important
}

.to-top-button.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) {
    background-color: #fff;
    color: rgba(0, 0, 0, .87)
}

.to-top-button.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat):not(.v-btn--outline) .v-btn__content {
    color: rgba(0, 0, 0, .87)
}

.to-top-button.theme--light.v-btn.v-btn--flat {
    color: #fff
}

.to-top-button.theme--light.v-btn.v-btn--outline {
    background-color: transparent;
    color: #fff
}

.cookie .v-snack__content {
    background: #fff;
    color: #333 !important
}

.cookie .v-snack__content .success {
    background: #044ca0 !important;
    color: #fff !important
}

.cookie .v-snack__content .more {
    border: 1px solid #044ca0 !important;
    color: #044ca0 !important
}
#s20min .row {
    max-width: 1185px!important;
}
#s20min .search-input {
    max-width: 100%!important;
}

.archive > div > div > h1, .section-title, .single h1, .single h2, .widget-title, article > h1 {
    border-color: #044ca0!important;
}

.archive > div > div > h1:after, .section-title:after, .single h1:after, .widget-title:after, article > h1:after {
    background: #044ca0!important;
}

.search-tooltip-fulltext {
    z-index: 100000;
}
body.tooltip-opened::after {
    background: none;
    z-index: -100000000000000;
}

.search-tooltip-fulltext {
    display: none;
}

body.tooltip-opened .search-tooltip-fulltext {
    display: block;
}

.vgl-button {
    font-weight: normal;
    border-width: 1px;
}
.vgl-button.red {
    color: #044ca0!important;
    background-color: transparent;
    border-color: #044ca0!important;
}

.medium.primary.btn.metro.rounded:not(.blue) > a {
    color: #044ca0!important;
}
.medium.primary.btn.metro.rounded:not(.blue) {
    background-color: transparent;
    border-color: #044ca0!important;
}

.ss-btn a {
    border: none;
    background: none;
}

.show_all_prod_btn,.btn.jump-to-results {
    background: transparent none;
    color: #044ca0!important;
    border: 1px solid #044ca0;
}
.btn.jump-to-results:hover {
    border-color: #044ca0!important;
}

.orange-button, .comment-list .comment-reply-link, .form-submit input[type="submit"], .sidebar input[type="submit"], .tooltip .button, .merchant-button {
    color: #044ca0!important;
    background: transparent!important;
    border-color: #044ca0!important;
}

.tabs__caption li.active {
    border-color: #044ca0!important;
}