@charset "UTF-8";
.is-noscroll {
    position: fixed;
    overflow-y: hidden;
    width: 100%;
    bottom: 0
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 150ms ease-out
}

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

.zoom-in-enter-active,
.zoom-in-leave-active {
    transition: opacity 150ms ease-out
}

.zoom-in-enter-active .animation-content,
.zoom-in-leave-active .animation-content {
    transition: transform 150ms ease-out
}

.zoom-in-enter,
.zoom-in-leave-active {
    opacity: 0
}

.zoom-in-enter .animation-content,
.zoom-in-leave-active .animation-content {
    transform: scale(.95)
}

.zoom-out-enter-active,
.zoom-out-leave-active {
    transition: opacity 150ms ease-out
}

.zoom-out-enter-active .animation-content,
.zoom-out-leave-active .animation-content {
    transition: transform 150ms ease-out
}

.zoom-out-enter,
.zoom-out-leave-active {
    opacity: 0
}

.zoom-out-enter .animation-content,
.zoom-out-leave-active .animation-content {
    transform: scale(1.05)
}

.slide-next-enter-active,
.slide-next-leave-active,
.slide-prev-enter-active,
.slide-prev-leave-active {
    transition: transform 250ms cubic-bezier(.785, .135, .15, .86)
}

.slide-next-enter,
.slide-prev-leave-to {
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    width: 100%
}

.slide-next-leave-to,
.slide-prev-enter {
    transform: translate3d(100%, 0, 0);
    position: absolute;
    width: 100%
}

@keyframes spinAround {
    from {
        transform: rotate(0)
    }
    to {
        transform: rotate(359deg)
    }
}

.b-checkbox.checkbox,
.b-radio.radio,
.breadcrumb,
.button,
.delete,
.file,
.icon,
.is-unselectable,
.modal-close,
.pagination-ellipsis,
.pagination-link,
.pagination-next,
.pagination-previous,
.tabs {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.select:not(.is-multiple):not(.is-loading)::after {
    border: 3px solid transparent;
    border-radius: 2px;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: .625em;
    margin-top: -.4375em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg);
    transform-origin: center;
    width: .625em
}

.block:not(:last-child),
.box:not(:last-child),
.breadcrumb:not(:last-child),
.content:not(:last-child),
.highlight:not(:last-child),
.level:not(:last-child),
.message:not(:last-child),
.notification:not(:last-child),
.progress:not(:last-child),
.subtitle:not(:last-child),
.table-container:not(:last-child),
.table:not(:last-child),
.tabs:not(:last-child),
.title:not(:last-child) {
    margin-bottom: 1.5rem
}

.delete,
.modal-close {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10, 10, 10, .2);
    border: none;
    border-radius: 290486px;
    cursor: pointer;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: 0;
    position: relative;
    vertical-align: top;
    width: 20px
}

.delete::after,
.delete::before,
.modal-close::after,
.modal-close::before {
    background-color: #fff;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center
}

.delete::before,
.modal-close::before {
    height: 2px;
    width: 50%
}

.delete::after,
.modal-close::after {
    height: 50%;
    width: 2px
}

.delete:focus,
.delete:hover,
.modal-close:focus,
.modal-close:hover {
    background-color: rgba(10, 10, 10, .3)
}

.delete:active,
.modal-close:active {
    background-color: rgba(10, 10, 10, .4)
}

.is-small.delete,
.is-small.modal-close {
    height: 16px;
    max-height: 16px;
    max-width: 16px;
    min-height: 16px;
    min-width: 16px;
    width: 16px
}

.is-medium.delete,
.is-medium.modal-close {
    height: 24px;
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
    width: 24px
}

.is-large.delete,
.is-large.modal-close {
    height: 32px;
    max-height: 32px;
    max-width: 32px;
    min-height: 32px;
    min-width: 32px;
    width: 32px
}

.b-table.is-loading:after,
.button.is-loading::after,
.control.is-loading::after,
.loader,
.loading-overlay .loading-icon:after,
.select.is-loading::after,
.upload .upload-draggable.is-loading:after {
    animation: spinAround .5s infinite linear;
    border: 2px solid #dbdbdb;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em
}

.dropdown .background,
.image.is-16by9 img,
.image.is-1by1 img,
.image.is-1by2 img,
.image.is-1by3 img,
.image.is-2by1 img,
.image.is-2by3 img,
.image.is-3by1 img,
.image.is-3by2 img,
.image.is-3by4 img,
.image.is-3by5 img,
.image.is-4by3 img,
.image.is-4by5 img,
.image.is-5by3 img,
.image.is-5by4 img,
.image.is-9by16 img,
.image.is-square img,
.is-overlay,
.loading-overlay,
.loading-overlay .loading-background,
.modal,
.modal-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.button,
.file-cta,
.file-name,
.input,
.pagination-ellipsis,
.pagination-link,
.pagination-next,
.pagination-previous,
.select select,
.taginput .taginput-container.is-focusable,
.textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(.375em - 1px);
    padding-left: calc(.625em - 1px);
    padding-right: calc(.625em - 1px);
    padding-top: calc(.375em - 1px);
    position: relative;
    vertical-align: top
}

.button:active,
.button:focus,
.file-cta:active,
.file-cta:focus,
.file-name:active,
.file-name:focus,
.input:active,
.input:focus,
.is-active.button,
.is-active.file-cta,
.is-active.file-name,
.is-active.input,
.is-active.pagination-ellipsis,
.is-active.pagination-link,
.is-active.pagination-next,
.is-active.pagination-previous,
.is-active.textarea,
.is-focused.button,
.is-focused.file-cta,
.is-focused.file-name,
.is-focused.input,
.is-focused.pagination-ellipsis,
.is-focused.pagination-link,
.is-focused.pagination-next,
.is-focused.pagination-previous,
.is-focused.textarea,
.pagination-ellipsis:active,
.pagination-ellipsis:focus,
.pagination-link:active,
.pagination-link:focus,
.pagination-next:active,
.pagination-next:focus,
.pagination-previous:active,
.pagination-previous:focus,
.select select.is-active,
.select select.is-focused,
.select select:active,
.select select:focus,
.taginput .is-active.taginput-container.is-focusable,
.taginput .is-focused.taginput-container.is-focusable,
.taginput .taginput-container.is-focusable:active,
.taginput .taginput-container.is-focusable:focus,
.textarea:active,
.textarea:focus {
    outline: 0
}

.select select[disabled],
.taginput [disabled].taginput-container.is-focusable,
[disabled].button,
[disabled].file-cta,
[disabled].file-name,
[disabled].input,
[disabled].pagination-ellipsis,
[disabled].pagination-link,
[disabled].pagination-next,
[disabled].pagination-previous,
[disabled].textarea {
    cursor: not-allowed
}


/*! bulma.io v0.7.1 | MIT License | github.com/jgthms/bulma */

@keyframes spinAround {
    from {
        transform: rotate(0)
    }
    to {
        transform: rotate(359deg)
    }
}

.b-checkbox.checkbox,
.b-radio.radio,
.breadcrumb,
.button,
.delete,
.file,
.icon,
.is-unselectable,
.modal-close,
.pagination-ellipsis,
.pagination-link,
.pagination-next,
.pagination-previous,
.tabs {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.select:not(.is-multiple):not(.is-loading)::after {
    border: 3px solid transparent;
    border-radius: 2px;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: .625em;
    margin-top: -.4375em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg);
    transform-origin: center;
    width: .625em
}

.block:not(:last-child),
.box:not(:last-child),
.breadcrumb:not(:last-child),
.content:not(:last-child),
.highlight:not(:last-child),
.level:not(:last-child),
.message:not(:last-child),
.notification:not(:last-child),
.progress:not(:last-child),
.subtitle:not(:last-child),
.table-container:not(:last-child),
.table:not(:last-child),
.tabs:not(:last-child),
.title:not(:last-child) {
    margin-bottom: 1.5rem
}

.delete,
.modal-close {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10, 10, 10, .2);
    border: none;
    border-radius: 290486px;
    cursor: pointer;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: 0;
    position: relative;
    vertical-align: top;
    width: 20px
}

.delete::after,
.delete::before,
.modal-close::after,
.modal-close::before {
    background-color: #fff;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center
}

.delete::before,
.modal-close::before {
    height: 2px;
    width: 50%
}

.delete::after,
.modal-close::after {
    height: 50%;
    width: 2px
}

.delete:focus,
.delete:hover,
.modal-close:focus,
.modal-close:hover {
    background-color: rgba(10, 10, 10, .3)
}

.delete:active,
.modal-close:active {
    background-color: rgba(10, 10, 10, .4)
}

.is-small.delete,
.is-small.modal-close {
    height: 16px;
    max-height: 16px;
    max-width: 16px;
    min-height: 16px;
    min-width: 16px;
    width: 16px
}

.is-medium.delete,
.is-medium.modal-close {
    height: 24px;
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
    width: 24px
}

.is-large.delete,
.is-large.modal-close {
    height: 32px;
    max-height: 32px;
    max-width: 32px;
    min-height: 32px;
    min-width: 32px;
    width: 32px
}

.b-table.is-loading:after,
.button.is-loading::after,
.control.is-loading::after,
.loader,
.loading-overlay .loading-icon:after,
.select.is-loading::after,
.upload .upload-draggable.is-loading:after {
    animation: spinAround .5s infinite linear;
    border: 2px solid #e5e5e5;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em
}

.dropdown .background,
.image.is-16by9 img,
.image.is-1by1 img,
.image.is-1by2 img,
.image.is-1by3 img,
.image.is-2by1 img,
.image.is-2by3 img,
.image.is-3by1 img,
.image.is-3by2 img,
.image.is-3by4 img,
.image.is-3by5 img,
.image.is-4by3 img,
.image.is-4by5 img,
.image.is-5by3 img,
.image.is-5by4 img,
.image.is-9by16 img,
.image.is-square img,
.is-overlay,
.loading-overlay,
.loading-overlay .loading-background,
.modal,
.modal-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.button,
.file-cta,
.file-name,
.input,
.pagination-ellipsis,
.pagination-link,
.pagination-next,
.pagination-previous,
.select select,
.taginput .taginput-container.is-focusable,
.textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(.375em - 1px);
    padding-left: calc(.625em - 1px);
    padding-right: calc(.625em - 1px);
    padding-top: calc(.375em - 1px);
    position: relative;
    vertical-align: top
}

.button:active,
.button:focus,
.file-cta:active,
.file-cta:focus,
.file-name:active,
.file-name:focus,
.input:active,
.input:focus,
.is-active.button,
.is-active.file-cta,
.is-active.file-name,
.is-active.input,
.is-active.pagination-ellipsis,
.is-active.pagination-link,
.is-active.pagination-next,
.is-active.pagination-previous,
.is-active.textarea,
.is-focused.button,
.is-focused.file-cta,
.is-focused.file-name,
.is-focused.input,
.is-focused.pagination-ellipsis,
.is-focused.pagination-link,
.is-focused.pagination-next,
.is-focused.pagination-previous,
.is-focused.textarea,
.pagination-ellipsis:active,
.pagination-ellipsis:focus,
.pagination-link:active,
.pagination-link:focus,
.pagination-next:active,
.pagination-next:focus,
.pagination-previous:active,
.pagination-previous:focus,
.select select.is-active,
.select select.is-focused,
.select select:active,
.select select:focus,
.taginput .is-active.taginput-container.is-focusable,
.taginput .is-focused.taginput-container.is-focusable,
.taginput .taginput-container.is-focusable:active,
.taginput .taginput-container.is-focusable:focus,
.textarea:active,
.textarea:focus {
    outline: 0
}

.select select[disabled],
.taginput [disabled].taginput-container.is-focusable,
[disabled].button,
[disabled].file-cta,
[disabled].file-name,
[disabled].input,
[disabled].pagination-ellipsis,
[disabled].pagination-link,
[disabled].pagination-next,
[disabled].pagination-previous,
[disabled].textarea {
    cursor: not-allowed
}


/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */

blockquote,
body,
dd,
dl,
dt,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
legend,
li,
ol,
p,
pre,
textarea,
ul {
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 400
}

ul {
    list-style: none
}

button,
input,
select,
textarea {
    margin: 0
}

html {
    box-sizing: border-box
}

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

audio,
img,
video {
    height: auto;
    max-width: 100%
}

iframe {
    border: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0;
    text-align: left
}

html {
    background-color: #fff;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
    display: block
}

body,
button,
input,
select,
textarea {
    font-family: Roboto, Helvetica, Arial
}

code,
pre {
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: auto;
    font-family: monospace
}

body {
    color: #4a4a4a;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

a {
    color: #0383de;
    cursor: pointer;
    text-decoration: none
}

a strong {
    color: currentColor
}

a:hover {
    color: #363636
}

code {
    background-color: #f5f5f5;
    color: #ff3860;
    font-size: .875em;
    font-weight: 400;
    padding: .25em .5em .25em
}

hr {
    background-color: #f5f5f5;
    border: none;
    display: block;
    height: 2px;
    margin: 1.5rem 0
}

img {
    height: auto;
    max-width: 100%
}

input[type=checkbox],
input[type=radio] {
    vertical-align: baseline
}

small {
    font-size: .875em
}

span {
    font-style: inherit;
    font-weight: inherit
}

strong {
    color: #363636;
    font-weight: 700
}

pre {
    -webkit-overflow-scrolling: touch;
    background-color: #f5f5f5;
    color: #4a4a4a;
    font-size: .875em;
    overflow-x: auto;
    padding: 1.25rem 1.5rem;
    white-space: pre;
    word-wrap: normal
}

pre code {
    background-color: transparent;
    color: currentColor;
    font-size: 1em;
    padding: 0
}

table td,
table th {
    text-align: left;
    vertical-align: top
}

table th {
    color: #363636
}

.is-clearfix::after {
    clear: both;
    content: " ";
    display: table
}

.is-pulled-left {
    float: left!important
}

.is-pulled-right {
    float: right!important
}

.is-clipped {
    overflow: hidden!important
}

.is-size-1 {
    font-size: 3rem!important
}

.is-size-2 {
    font-size: 2.5rem!important
}

.is-size-3 {
    font-size: 2rem!important
}

.is-size-4 {
    font-size: 1.5rem!important
}

.is-size-5 {
    font-size: 1.25rem!important
}

.is-size-6 {
    font-size: 1rem!important
}

.is-size-7 {
    font-size: .75rem!important
}

@media screen and (max-width:768px) {
    .is-size-1-mobile {
        font-size: 3rem!important
    }
    .is-size-2-mobile {
        font-size: 2.5rem!important
    }
    .is-size-3-mobile {
        font-size: 2rem!important
    }
    .is-size-4-mobile {
        font-size: 1.5rem!important
    }
    .is-size-5-mobile {
        font-size: 1.25rem!important
    }
    .is-size-6-mobile {
        font-size: 1rem!important
    }
    .is-size-7-mobile {
        font-size: .75rem!important
    }
}

@media screen and (min-width:769px),
print {
    .is-size-1-tablet {
        font-size: 3rem!important
    }
    .is-size-2-tablet {
        font-size: 2.5rem!important
    }
    .is-size-3-tablet {
        font-size: 2rem!important
    }
    .is-size-4-tablet {
        font-size: 1.5rem!important
    }
    .is-size-5-tablet {
        font-size: 1.25rem!important
    }
    .is-size-6-tablet {
        font-size: 1rem!important
    }
    .is-size-7-tablet {
        font-size: .75rem!important
    }
}

@media screen and (max-width:1087px) {
    .is-size-1-touch {
        font-size: 3rem!important
    }
    .is-size-2-touch {
        font-size: 2.5rem!important
    }
    .is-size-3-touch {
        font-size: 2rem!important
    }
    .is-size-4-touch {
        font-size: 1.5rem!important
    }
    .is-size-5-touch {
        font-size: 1.25rem!important
    }
    .is-size-6-touch {
        font-size: 1rem!important
    }
    .is-size-7-touch {
        font-size: .75rem!important
    }
}

@media screen and (min-width:1088px) {
    .is-size-1-desktop {
        font-size: 3rem!important
    }
    .is-size-2-desktop {
        font-size: 2.5rem!important
    }
    .is-size-3-desktop {
        font-size: 2rem!important
    }
    .is-size-4-desktop {
        font-size: 1.5rem!important
    }
    .is-size-5-desktop {
        font-size: 1.25rem!important
    }
    .is-size-6-desktop {
        font-size: 1rem!important
    }
    .is-size-7-desktop {
        font-size: .75rem!important
    }
}

@media screen and (min-width:1280px) {
    .is-size-1-widescreen {
        font-size: 3rem!important
    }
    .is-size-2-widescreen {
        font-size: 2.5rem!important
    }
    .is-size-3-widescreen {
        font-size: 2rem!important
    }
    .is-size-4-widescreen {
        font-size: 1.5rem!important
    }
    .is-size-5-widescreen {
        font-size: 1.25rem!important
    }
    .is-size-6-widescreen {
        font-size: 1rem!important
    }
    .is-size-7-widescreen {
        font-size: .75rem!important
    }
}

.has-text-centered {
    text-align: center!important
}

.has-text-justified {
    text-align: justify!important
}

.has-text-left {
    text-align: left!important
}

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

@media screen and (max-width:768px) {
    .has-text-centered-mobile {
        text-align: center!important
    }
}

@media screen and (min-width:769px),
print {
    .has-text-centered-tablet {
        text-align: center!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .has-text-centered-tablet-only {
        text-align: center!important
    }
}

@media screen and (max-width:1087px) {
    .has-text-centered-touch {
        text-align: center!important
    }
}

@media screen and (min-width:1088px) {
    .has-text-centered-desktop {
        text-align: center!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .has-text-centered-desktop-only {
        text-align: center!important
    }
}

@media screen and (min-width:1280px) {
    .has-text-centered-widescreen {
        text-align: center!important
    }
}

@media screen and (max-width:768px) {
    .has-text-justified-mobile {
        text-align: justify!important
    }
}

@media screen and (min-width:769px),
print {
    .has-text-justified-tablet {
        text-align: justify!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .has-text-justified-tablet-only {
        text-align: justify!important
    }
}

@media screen and (max-width:1087px) {
    .has-text-justified-touch {
        text-align: justify!important
    }
}

@media screen and (min-width:1088px) {
    .has-text-justified-desktop {
        text-align: justify!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .has-text-justified-desktop-only {
        text-align: justify!important
    }
}

@media screen and (min-width:1280px) {
    .has-text-justified-widescreen {
        text-align: justify!important
    }
}

@media screen and (max-width:768px) {
    .has-text-left-mobile {
        text-align: left!important
    }
}

@media screen and (min-width:769px),
print {
    .has-text-left-tablet {
        text-align: left!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .has-text-left-tablet-only {
        text-align: left!important
    }
}

@media screen and (max-width:1087px) {
    .has-text-left-touch {
        text-align: left!important
    }
}

@media screen and (min-width:1088px) {
    .has-text-left-desktop {
        text-align: left!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .has-text-left-desktop-only {
        text-align: left!important
    }
}

@media screen and (min-width:1280px) {
    .has-text-left-widescreen {
        text-align: left!important
    }
}

@media screen and (max-width:768px) {
    .has-text-right-mobile {
        text-align: right!important
    }
}

@media screen and (min-width:769px),
print {
    .has-text-right-tablet {
        text-align: right!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .has-text-right-tablet-only {
        text-align: right!important
    }
}

@media screen and (max-width:1087px) {
    .has-text-right-touch {
        text-align: right!important
    }
}

@media screen and (min-width:1088px) {
    .has-text-right-desktop {
        text-align: right!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .has-text-right-desktop-only {
        text-align: right!important
    }
}

@media screen and (min-width:1280px) {
    .has-text-right-widescreen {
        text-align: right!important
    }
}

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

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

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

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

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

a.has-text-white:focus,
a.has-text-white:hover {
    color: #e6e6e6!important
}

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

.has-text-black {
    color: #0a0a0a!important
}

a.has-text-black:focus,
a.has-text-black:hover {
    color: #000!important
}

.has-background-black {
    background-color: #0a0a0a!important
}

.has-text-light {
    color: #eee!important
}

a.has-text-light:focus,
a.has-text-light:hover {
    color: #d5d5d5!important
}

.has-background-light {
    background-color: #eee!important
}

.has-text-dark {
    color: #90a2ab!important
}

a.has-text-dark:focus,
a.has-text-dark:hover {
    color: #738a95!important
}

.has-background-dark {
    background-color: #90a2ab!important
}

.has-text-primary {
    color: #1fb6ff!important
}

a.has-text-primary:focus,
a.has-text-primary:hover {
    color: #009eeb!important
}

.has-background-primary {
    background-color: #1fb6ff!important
}

.has-text-info {
    color: #5bc0de!important
}

a.has-text-info:focus,
a.has-text-info:hover {
    color: #31b0d5!important
}

.has-background-info {
    background-color: #5bc0de!important
}

.has-text-success {
    color: #5cb85c!important
}

a.has-text-success:focus,
a.has-text-success:hover {
    color: #449d44!important
}

.has-background-success {
    background-color: #5cb85c!important
}

.has-text-warning {
    color: #f0ad4e!important
}

a.has-text-warning:focus,
a.has-text-warning:hover {
    color: #ec971f!important
}

.has-background-warning {
    background-color: #f0ad4e!important
}

.has-text-danger {
    color: #f15e48!important
}

a.has-text-danger:focus,
a.has-text-danger:hover {
    color: #ed3419!important
}

.has-background-danger {
    background-color: #f15e48!important
}

.has-text-yellow {
    color: #fbc139!important
}

a.has-text-yellow:focus,
a.has-text-yellow:hover {
    color: #fab107!important
}

.has-background-yellow {
    background-color: #fbc139!important
}

.has-text-black-bis {
    color: #121212!important
}

.has-background-black-bis {
    background-color: #121212!important
}

.has-text-black-ter {
    color: #242424!important
}

.has-background-black-ter {
    background-color: #242424!important
}

.has-text-grey-darker {
    color: #363636!important
}

.has-background-grey-darker {
    background-color: #363636!important
}

.has-text-grey-dark {
    color: #4a4a4a!important
}

.has-background-grey-dark {
    background-color: #4a4a4a!important
}

.has-text-grey {
    color: #7a7a7a!important
}

.has-background-grey {
    background-color: #7a7a7a!important
}

.has-text-grey-light {
    color: #b5b5b5!important
}

.has-background-grey-light {
    background-color: #b5b5b5!important
}

.has-text-grey-lighter {
    color: #dbdbdb!important
}

.has-background-grey-lighter {
    background-color: #dbdbdb!important
}

.has-text-white-ter {
    color: #f5f5f5!important
}

.has-background-white-ter {
    background-color: #f5f5f5!important
}

.has-text-white-bis {
    color: #fafafa!important
}

.has-background-white-bis {
    background-color: #fafafa!important
}

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

.has-text-weight-normal {
    font-weight: 400!important
}

.has-text-weight-semibold {
    font-weight: 600!important
}

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

.is-block {
    display: block!important
}

@media screen and (max-width:768px) {
    .is-block-mobile {
        display: block!important
    }
}

@media screen and (min-width:769px),
print {
    .is-block-tablet {
        display: block!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-block-tablet-only {
        display: block!important
    }
}

@media screen and (max-width:1087px) {
    .is-block-touch {
        display: block!important
    }
}

@media screen and (min-width:1088px) {
    .is-block-desktop {
        display: block!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-block-desktop-only {
        display: block!important
    }
}

@media screen and (min-width:1280px) {
    .is-block-widescreen {
        display: block!important
    }
}

.is-flex {
    display: flex!important
}

@media screen and (max-width:768px) {
    .is-flex-mobile {
        display: flex!important
    }
}

@media screen and (min-width:769px),
print {
    .is-flex-tablet {
        display: flex!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-flex-tablet-only {
        display: flex!important
    }
}

@media screen and (max-width:1087px) {
    .is-flex-touch {
        display: flex!important
    }
}

@media screen and (min-width:1088px) {
    .is-flex-desktop {
        display: flex!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-flex-desktop-only {
        display: flex!important
    }
}

@media screen and (min-width:1280px) {
    .is-flex-widescreen {
        display: flex!important
    }
}

.is-inline {
    display: inline!important
}

@media screen and (max-width:768px) {
    .is-inline-mobile {
        display: inline!important
    }
}

@media screen and (min-width:769px),
print {
    .is-inline-tablet {
        display: inline!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-inline-tablet-only {
        display: inline!important
    }
}

@media screen and (max-width:1087px) {
    .is-inline-touch {
        display: inline!important
    }
}

@media screen and (min-width:1088px) {
    .is-inline-desktop {
        display: inline!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-inline-desktop-only {
        display: inline!important
    }
}

@media screen and (min-width:1280px) {
    .is-inline-widescreen {
        display: inline!important
    }
}

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

@media screen and (max-width:768px) {
    .is-inline-block-mobile {
        display: inline-block!important
    }
}

@media screen and (min-width:769px),
print {
    .is-inline-block-tablet {
        display: inline-block!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-inline-block-tablet-only {
        display: inline-block!important
    }
}

@media screen and (max-width:1087px) {
    .is-inline-block-touch {
        display: inline-block!important
    }
}

@media screen and (min-width:1088px) {
    .is-inline-block-desktop {
        display: inline-block!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-inline-block-desktop-only {
        display: inline-block!important
    }
}

@media screen and (min-width:1280px) {
    .is-inline-block-widescreen {
        display: inline-block!important
    }
}

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

@media screen and (max-width:768px) {
    .is-inline-flex-mobile {
        display: inline-flex!important
    }
}

@media screen and (min-width:769px),
print {
    .is-inline-flex-tablet {
        display: inline-flex!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-inline-flex-tablet-only {
        display: inline-flex!important
    }
}

@media screen and (max-width:1087px) {
    .is-inline-flex-touch {
        display: inline-flex!important
    }
}

@media screen and (min-width:1088px) {
    .is-inline-flex-desktop {
        display: inline-flex!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-inline-flex-desktop-only {
        display: inline-flex!important
    }
}

@media screen and (min-width:1280px) {
    .is-inline-flex-widescreen {
        display: inline-flex!important
    }
}

.is-hidden {
    display: none!important
}

@media screen and (max-width:768px) {
    .is-hidden-mobile {
        display: none!important
    }
}

@media screen and (min-width:769px),
print {
    .is-hidden-tablet {
        display: none!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-hidden-tablet-only {
        display: none!important
    }
}

@media screen and (max-width:1087px) {
    .is-hidden-touch {
        display: none!important
    }
}

@media screen and (min-width:1088px) {
    .is-hidden-desktop {
        display: none!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-hidden-desktop-only {
        display: none!important
    }
}

@media screen and (min-width:1280px) {
    .is-hidden-widescreen {
        display: none!important
    }
}

.is-invisible {
    visibility: hidden!important
}

@media screen and (max-width:768px) {
    .is-invisible-mobile {
        visibility: hidden!important
    }
}

@media screen and (min-width:769px),
print {
    .is-invisible-tablet {
        visibility: hidden!important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-invisible-tablet-only {
        visibility: hidden!important
    }
}

@media screen and (max-width:1087px) {
    .is-invisible-touch {
        visibility: hidden!important
    }
}

@media screen and (min-width:1088px) {
    .is-invisible-desktop {
        visibility: hidden!important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-invisible-desktop-only {
        visibility: hidden!important
    }
}

@media screen and (min-width:1280px) {
    .is-invisible-widescreen {
        visibility: hidden!important
    }
}

.is-marginless {
    margin: 0!important
}

.is-paddingless {
    padding: 0!important
}

.is-radiusless {
    border-radius: 0!important
}

.is-shadowless {
    box-shadow: none!important
}

.box {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .1);
    color: #4a4a4a;
    display: block;
    padding: 1.25rem
}

a.box:focus,
a.box:hover {
    box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px #0383de
}

a.box:active {
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, .2), 0 0 0 1px #0383de
}

.button {
    background-color: #fff;
    border-color: #dbdbdb;
    border-width: 1px;
    color: #363636;
    cursor: pointer;
    justify-content: center;
    padding-bottom: calc(.375em - 1px);
    padding-left: .75em;
    padding-right: .75em;
    padding-top: calc(.375em - 1px);
    text-align: center;
    white-space: nowrap
}

.button strong {
    color: inherit
}

.button .icon,
.button .icon.is-large,
.button .icon.is-medium,
.button .icon.is-small {
    height: 1.5em;
    width: 1.5em
}

.button .icon:first-child:not(:last-child) {
    margin-left: calc( - .375em - 1px);
    margin-right: .1875em
}

.button .icon:last-child:not(:first-child) {
    margin-left: .1875em;
    margin-right: calc( - .375em - 1px)
}

.button .icon:first-child:last-child {
    margin-left: calc( - .375em - 1px);
    margin-right: calc( - .375em - 1px)
}

.button.is-hovered,
.button:hover {
    border-color: none;
    color: #363636
}

.button.is-focused,
.button:focus {
    border-color: none;
    color: #363636
}

.button.is-focused:not(:active),
.button:focus:not(:active) {
    box-shadow: 0 rgba(3, 131, 222, .25)
}

.button.is-active,
.button:active {
    border-color: none;
    color: #363636
}

.button.is-text {
    background-color: transparent;
    border-color: transparent;
    color: #4a4a4a;
    text-decoration: underline
}

.button.is-text.is-focused,
.button.is-text.is-hovered,
.button.is-text:focus,
.button.is-text:hover {
    background-color: #f5f5f5;
    color: #363636
}

.button.is-text.is-active,
.button.is-text:active {
    background-color: #e8e8e8;
    color: #363636
}

.button.is-text[disabled] {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none
}

.button.is-white {
    background-color: #fff;
    border-color: transparent;
    color: #0a0a0a
}

.button.is-white.is-hovered,
.button.is-white:hover {
    background-color: #f9f9f9;
    border-color: transparent;
    color: #0a0a0a
}

.button.is-white.is-focused,
.button.is-white:focus {
    border-color: transparent;
    color: #0a0a0a
}

.button.is-white.is-focused:not(:active),
.button.is-white:focus:not(:active) {
    box-shadow: 0 rgba(255, 255, 255, .25)
}

.button.is-white.is-active,
.button.is-white:active {
    background-color: #f2f2f2;
    border-color: transparent;
    color: #0a0a0a
}

.button.is-white[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none
}

.button.is-white.is-inverted {
    background-color: #0a0a0a;
    color: #fff
}

.button.is-white.is-inverted:hover {
    background-color: #000
}

.button.is-white.is-inverted[disabled] {
    background-color: #0a0a0a;
    border-color: transparent;
    box-shadow: none;
    color: #fff
}

.button.is-white.is-loading::after {
    border-color: transparent transparent #0a0a0a #0a0a0a!important
}

.button.is-white.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-white.is-outlined:focus,
.button.is-white.is-outlined:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0a0a0a
}

.button.is-white.is-outlined.is-loading::after {
    border-color: transparent transparent #fff #fff!important
}

.button.is-white.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-white.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #0a0a0a;
    color: #0a0a0a
}

.button.is-white.is-inverted.is-outlined:focus,
.button.is-white.is-inverted.is-outlined:hover {
    background-color: #0a0a0a;
    color: #fff
}

.button.is-white.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #0a0a0a;
    box-shadow: none;
    color: #0a0a0a
}

.button.is-black {
    background-color: #0a0a0a;
    border-color: transparent;
    color: #fff
}

.button.is-black.is-hovered,
.button.is-black:hover {
    background-color: #040404;
    border-color: transparent;
    color: #fff
}

.button.is-black.is-focused,
.button.is-black:focus {
    border-color: transparent;
    color: #fff
}

.button.is-black.is-focused:not(:active),
.button.is-black:focus:not(:active) {
    box-shadow: 0 rgba(10, 10, 10, .25)
}

.button.is-black.is-active,
.button.is-black:active {
    background-color: #000;
    border-color: transparent;
    color: #fff
}

.button.is-black[disabled] {
    background-color: #0a0a0a;
    border-color: transparent;
    box-shadow: none
}

.button.is-black.is-inverted {
    background-color: #fff;
    color: #0a0a0a
}

.button.is-black.is-inverted:hover {
    background-color: #f2f2f2
}

.button.is-black.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #0a0a0a
}

.button.is-black.is-loading::after {
    border-color: transparent transparent #fff #fff!important
}

.button.is-black.is-outlined {
    background-color: transparent;
    border-color: #0a0a0a;
    color: #0a0a0a
}

.button.is-black.is-outlined:focus,
.button.is-black.is-outlined:hover {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff
}

.button.is-black.is-outlined.is-loading::after {
    border-color: transparent transparent #0a0a0a #0a0a0a!important
}

.button.is-black.is-outlined[disabled] {
    background-color: transparent;
    border-color: #0a0a0a;
    box-shadow: none;
    color: #0a0a0a
}

.button.is-black.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-black.is-inverted.is-outlined:focus,
.button.is-black.is-inverted.is-outlined:hover {
    background-color: #fff;
    color: #0a0a0a
}

.button.is-black.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-light {
    background-color: #eee;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.button.is-light.is-hovered,
.button.is-light:hover {
    background-color: #e8e8e8;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.button.is-light.is-focused,
.button.is-light:focus {
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.button.is-light.is-focused:not(:active),
.button.is-light:focus:not(:active) {
    box-shadow: 0 rgba(238, 238, 238, .25)
}

.button.is-light.is-active,
.button.is-light:active {
    background-color: #e1e1e1;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.button.is-light[disabled] {
    background-color: #eee;
    border-color: transparent;
    box-shadow: none
}

.button.is-light.is-inverted {
    background-color: rgba(0, 0, 0, .7);
    color: #eee
}

.button.is-light.is-inverted:hover {
    background-color: rgba(0, 0, 0, .7)
}

.button.is-light.is-inverted[disabled] {
    background-color: rgba(0, 0, 0, .7);
    border-color: transparent;
    box-shadow: none;
    color: #eee
}

.button.is-light.is-loading::after {
    border-color: transparent transparent rgba(0, 0, 0, .7) rgba(0, 0, 0, .7)!important
}

.button.is-light.is-outlined {
    background-color: transparent;
    border-color: #eee;
    color: #eee
}

.button.is-light.is-outlined:focus,
.button.is-light.is-outlined:hover {
    background-color: #eee;
    border-color: #eee;
    color: rgba(0, 0, 0, .7)
}

.button.is-light.is-outlined.is-loading::after {
    border-color: transparent transparent #eee #eee!important
}

.button.is-light.is-outlined[disabled] {
    background-color: transparent;
    border-color: #eee;
    box-shadow: none;
    color: #eee
}

.button.is-light.is-inverted.is-outlined {
    background-color: transparent;
    border-color: rgba(0, 0, 0, .7);
    color: rgba(0, 0, 0, .7)
}

.button.is-light.is-inverted.is-outlined:focus,
.button.is-light.is-inverted.is-outlined:hover {
    background-color: rgba(0, 0, 0, .7);
    color: #eee
}

.button.is-light.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: rgba(0, 0, 0, .7);
    box-shadow: none;
    color: rgba(0, 0, 0, .7)
}

.button.is-dark {
    background-color: #90a2ab;
    border-color: transparent;
    color: #fff
}

.button.is-dark.is-hovered,
.button.is-dark:hover {
    background-color: #899ca6;
    border-color: transparent;
    color: #fff
}

.button.is-dark.is-focused,
.button.is-dark:focus {
    border-color: transparent;
    color: #fff
}

.button.is-dark.is-focused:not(:active),
.button.is-dark:focus:not(:active) {
    box-shadow: 0 rgba(144, 162, 171, .25)
}

.button.is-dark.is-active,
.button.is-dark:active {
    background-color: #8196a0;
    border-color: transparent;
    color: #fff
}

.button.is-dark[disabled] {
    background-color: #90a2ab;
    border-color: transparent;
    box-shadow: none
}

.button.is-dark.is-inverted {
    background-color: #fff;
    color: #90a2ab
}

.button.is-dark.is-inverted:hover {
    background-color: #f2f2f2
}

.button.is-dark.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #90a2ab
}

.button.is-dark.is-loading::after {
    border-color: transparent transparent #fff #fff!important
}

.button.is-dark.is-outlined {
    background-color: transparent;
    border-color: #90a2ab;
    color: #90a2ab
}

.button.is-dark.is-outlined:focus,
.button.is-dark.is-outlined:hover {
    background-color: #90a2ab;
    border-color: #90a2ab;
    color: #fff
}

.button.is-dark.is-outlined.is-loading::after {
    border-color: transparent transparent #90a2ab #90a2ab!important
}

.button.is-dark.is-outlined[disabled] {
    background-color: transparent;
    border-color: #90a2ab;
    box-shadow: none;
    color: #90a2ab
}

.button.is-dark.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-dark.is-inverted.is-outlined:focus,
.button.is-dark.is-inverted.is-outlined:hover {
    background-color: #fff;
    color: #90a2ab
}

.button.is-dark.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-primary {
    background-color: #1fb6ff;
    border-color: transparent;
    color: #fff
}

.button.is-primary.is-hovered,
.button.is-primary:hover {
    background-color: #12b2ff;
    border-color: transparent;
    color: #fff
}

.button.is-primary.is-focused,
.button.is-primary:focus {
    border-color: transparent;
    color: #fff
}

.button.is-primary.is-focused:not(:active),
.button.is-primary:focus:not(:active) {
    box-shadow: 0 rgba(31, 182, 255, .25)
}

.button.is-primary.is-active,
.button.is-primary:active {
    background-color: #06aeff;
    border-color: transparent;
    color: #fff
}

.button.is-primary[disabled] {
    background-color: #1fb6ff;
    border-color: transparent;
    box-shadow: none
}

.button.is-primary.is-inverted {
    background-color: #fff;
    color: #1fb6ff
}

.button.is-primary.is-inverted:hover {
    background-color: #f2f2f2
}

.button.is-primary.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #1fb6ff
}

.button.is-primary.is-loading::after {
    border-color: transparent transparent #fff #fff!important
}

.button.is-primary.is-outlined {
    background-color: transparent;
    border-color: #1fb6ff;
    color: #1fb6ff
}

.button.is-primary.is-outlined:focus,
.button.is-primary.is-outlined:hover {
    background-color: #1fb6ff;
    border-color: #1fb6ff;
    color: #fff
}

.button.is-primary.is-outlined.is-loading::after {
    border-color: transparent transparent #1fb6ff #1fb6ff!important
}

.button.is-primary.is-outlined[disabled] {
    background-color: transparent;
    border-color: #1fb6ff;
    box-shadow: none;
    color: #1fb6ff
}

.button.is-primary.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-primary.is-inverted.is-outlined:focus,
.button.is-primary.is-inverted.is-outlined:hover {
    background-color: #fff;
    color: #1fb6ff
}

.button.is-primary.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-info {
    background-color: #5bc0de;
    border-color: transparent;
    color: #fff
}

.button.is-info.is-hovered,
.button.is-info:hover {
    background-color: #50bcdc;
    border-color: transparent;
    color: #fff
}

.button.is-info.is-focused,
.button.is-info:focus {
    border-color: transparent;
    color: #fff
}

.button.is-info.is-focused:not(:active),
.button.is-info:focus:not(:active) {
    box-shadow: 0 rgba(91, 192, 222, .25)
}

.button.is-info.is-active,
.button.is-info:active {
    background-color: #46b8da;
    border-color: transparent;
    color: #fff
}

.button.is-info[disabled] {
    background-color: #5bc0de;
    border-color: transparent;
    box-shadow: none
}

.button.is-info.is-inverted {
    background-color: #fff;
    color: #5bc0de
}

.button.is-info.is-inverted:hover {
    background-color: #f2f2f2
}

.button.is-info.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #5bc0de
}

.button.is-info.is-loading::after {
    border-color: transparent transparent #fff #fff!important
}

.button.is-info.is-outlined {
    background-color: transparent;
    border-color: #5bc0de;
    color: #5bc0de
}

.button.is-info.is-outlined:focus,
.button.is-info.is-outlined:hover {
    background-color: #5bc0de;
    border-color: #5bc0de;
    color: #fff
}

.button.is-info.is-outlined.is-loading::after {
    border-color: transparent transparent #5bc0de #5bc0de!important
}

.button.is-info.is-outlined[disabled] {
    background-color: transparent;
    border-color: #5bc0de;
    box-shadow: none;
    color: #5bc0de
}

.button.is-info.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-info.is-inverted.is-outlined:focus,
.button.is-info.is-inverted.is-outlined:hover {
    background-color: #fff;
    color: #5bc0de
}

.button.is-info.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-success {
    background-color: #5cb85c;
    border-color: transparent;
    color: #fff
}

.button.is-success.is-hovered,
.button.is-success:hover {
    background-color: #53b453;
    border-color: transparent;
    color: #fff
}

.button.is-success.is-focused,
.button.is-success:focus {
    border-color: transparent;
    color: #fff
}

.button.is-success.is-focused:not(:active),
.button.is-success:focus:not(:active) {
    box-shadow: 0 rgba(92, 184, 92, .25)
}

.button.is-success.is-active,
.button.is-success:active {
    background-color: #4cae4c;
    border-color: transparent;
    color: #fff
}

.button.is-success[disabled] {
    background-color: #5cb85c;
    border-color: transparent;
    box-shadow: none
}

.button.is-success.is-inverted {
    background-color: #fff;
    color: #5cb85c
}

.button.is-success.is-inverted:hover {
    background-color: #f2f2f2
}

.button.is-success.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #5cb85c
}

.button.is-success.is-loading::after {
    border-color: transparent transparent #fff #fff!important
}

.button.is-success.is-outlined {
    background-color: transparent;
    border-color: #5cb85c;
    color: #5cb85c
}

.button.is-success.is-outlined:focus,
.button.is-success.is-outlined:hover {
    background-color: #5cb85c;
    border-color: #5cb85c;
    color: #fff
}

.button.is-success.is-outlined.is-loading::after {
    border-color: transparent transparent #5cb85c #5cb85c!important
}

.button.is-success.is-outlined[disabled] {
    background-color: transparent;
    border-color: #5cb85c;
    box-shadow: none;
    color: #5cb85c
}

.button.is-success.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-success.is-inverted.is-outlined:focus,
.button.is-success.is-inverted.is-outlined:hover {
    background-color: #fff;
    color: #5cb85c
}

.button.is-success.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-warning {
    background-color: #f0ad4e;
    border-color: transparent;
    color: #fff
}

.button.is-warning.is-hovered,
.button.is-warning:hover {
    background-color: #efa842;
    border-color: transparent;
    color: #fff
}

.button.is-warning.is-focused,
.button.is-warning:focus {
    border-color: transparent;
    color: #fff
}

.button.is-warning.is-focused:not(:active),
.button.is-warning:focus:not(:active) {
    box-shadow: 0 rgba(240, 173, 78, .25)
}

.button.is-warning.is-active,
.button.is-warning:active {
    background-color: #eea236;
    border-color: transparent;
    color: #fff
}

.button.is-warning[disabled] {
    background-color: #f0ad4e;
    border-color: transparent;
    box-shadow: none
}

.button.is-warning.is-inverted {
    background-color: #fff;
    color: #f0ad4e
}

.button.is-warning.is-inverted:hover {
    background-color: #f2f2f2
}

.button.is-warning.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #f0ad4e
}

.button.is-warning.is-loading::after {
    border-color: transparent transparent #fff #fff!important
}

.button.is-warning.is-outlined {
    background-color: transparent;
    border-color: #f0ad4e;
    color: #f0ad4e
}

.button.is-warning.is-outlined:focus,
.button.is-warning.is-outlined:hover {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
    color: #fff
}

.button.is-warning.is-outlined.is-loading::after {
    border-color: transparent transparent #f0ad4e #f0ad4e!important
}

.button.is-warning.is-outlined[disabled] {
    background-color: transparent;
    border-color: #f0ad4e;
    box-shadow: none;
    color: #f0ad4e
}

.button.is-warning.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-warning.is-inverted.is-outlined:focus,
.button.is-warning.is-inverted.is-outlined:hover {
    background-color: #fff;
    color: #f0ad4e
}

.button.is-warning.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-danger {
    background-color: #f15e48;
    border-color: transparent;
    color: #fff
}

.button.is-danger.is-hovered,
.button.is-danger:hover {
    background-color: #f0543c;
    border-color: transparent;
    color: #fff
}

.button.is-danger.is-focused,
.button.is-danger:focus {
    border-color: transparent;
    color: #fff
}

.button.is-danger.is-focused:not(:active),
.button.is-danger:focus:not(:active) {
    box-shadow: 0 rgba(241, 94, 72, .25)
}

.button.is-danger.is-active,
.button.is-danger:active {
    background-color: #ef4930;
    border-color: transparent;
    color: #fff
}

.button.is-danger[disabled] {
    background-color: #f15e48;
    border-color: transparent;
    box-shadow: none
}

.button.is-danger.is-inverted {
    background-color: #fff;
    color: #f15e48
}

.button.is-danger.is-inverted:hover {
    background-color: #f2f2f2
}

.button.is-danger.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #f15e48
}

.button.is-danger.is-loading::after {
    border-color: transparent transparent #fff #fff!important
}

.button.is-danger.is-outlined {
    background-color: transparent;
    border-color: #f15e48;
    color: #f15e48
}

.button.is-danger.is-outlined:focus,
.button.is-danger.is-outlined:hover {
    background-color: #f15e48;
    border-color: #f15e48;
    color: #fff
}

.button.is-danger.is-outlined.is-loading::after {
    border-color: transparent transparent #f15e48 #f15e48!important
}

.button.is-danger.is-outlined[disabled] {
    background-color: transparent;
    border-color: #f15e48;
    box-shadow: none;
    color: #f15e48
}

.button.is-danger.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-danger.is-inverted.is-outlined:focus,
.button.is-danger.is-inverted.is-outlined:hover {
    background-color: #fff;
    color: #f15e48
}

.button.is-danger.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-yellow {
    background-color: #fbc139;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.button.is-yellow.is-hovered,
.button.is-yellow:hover {
    background-color: #fbbd2d;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.button.is-yellow.is-focused,
.button.is-yellow:focus {
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.button.is-yellow.is-focused:not(:active),
.button.is-yellow:focus:not(:active) {
    box-shadow: 0 rgba(251, 193, 57, .25)
}

.button.is-yellow.is-active,
.button.is-yellow:active {
    background-color: #fab920;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.button.is-yellow[disabled] {
    background-color: #fbc139;
    border-color: transparent;
    box-shadow: none
}

.button.is-yellow.is-inverted {
    background-color: rgba(0, 0, 0, .7);
    color: #fbc139
}

.button.is-yellow.is-inverted:hover {
    background-color: rgba(0, 0, 0, .7)
}

.button.is-yellow.is-inverted[disabled] {
    background-color: rgba(0, 0, 0, .7);
    border-color: transparent;
    box-shadow: none;
    color: #fbc139
}

.button.is-yellow.is-loading::after {
    border-color: transparent transparent rgba(0, 0, 0, .7) rgba(0, 0, 0, .7)!important
}

.button.is-yellow.is-outlined {
    background-color: transparent;
    border-color: #fbc139;
    color: #fbc139
}

.button.is-yellow.is-outlined:focus,
.button.is-yellow.is-outlined:hover {
    background-color: #fbc139;
    border-color: #fbc139;
    color: rgba(0, 0, 0, .7)
}

.button.is-yellow.is-outlined.is-loading::after {
    border-color: transparent transparent #fbc139 #fbc139!important
}

.button.is-yellow.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fbc139;
    box-shadow: none;
    color: #fbc139
}

.button.is-yellow.is-inverted.is-outlined {
    background-color: transparent;
    border-color: rgba(0, 0, 0, .7);
    color: rgba(0, 0, 0, .7)
}

.button.is-yellow.is-inverted.is-outlined:focus,
.button.is-yellow.is-inverted.is-outlined:hover {
    background-color: rgba(0, 0, 0, .7);
    color: #fbc139
}

.button.is-yellow.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: rgba(0, 0, 0, .7);
    box-shadow: none;
    color: rgba(0, 0, 0, .7)
}

.button.is-small {
    border-radius: 2px;
    font-size: .75rem
}

.button.is-medium {
    font-size: 1.25rem
}

.button.is-large {
    font-size: 1.5rem
}

.button[disabled] {
    background-color: #fff;
    border-color: #dbdbdb;
    box-shadow: none;
    opacity: .5
}

.button.is-fullwidth {
    display: flex;
    width: 100%
}

.button.is-loading {
    color: transparent!important;
    pointer-events: none
}

.button.is-loading::after {
    position: absolute;
    left: calc(50% - (1em / 2));
    top: calc(50% - (1em / 2));
    position: absolute!important
}

.button.is-static {
    background-color: #f5f5f5;
    border-color: #dbdbdb;
    color: #7a7a7a;
    box-shadow: none;
    pointer-events: none
}

.button.is-rounded {
    border-radius: 290486px;
    padding-left: 1em;
    padding-right: 1em
}

.buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.buttons .button {
    margin-bottom: .5rem
}

.buttons .button:not(:last-child) {
    margin-right: .5rem
}

.buttons:last-child {
    margin-bottom: -.5rem
}

.buttons:not(:last-child) {
    margin-bottom: 1rem
}

.buttons.has-addons .button:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.buttons.has-addons .button:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: -1px
}

.buttons.has-addons .button:last-child {
    margin-right: 0
}

.buttons.has-addons .button.is-hovered,
.buttons.has-addons .button:hover {
    z-index: 2
}

.buttons.has-addons .button.is-active,
.buttons.has-addons .button.is-focused,
.buttons.has-addons .button.is-selected,
.buttons.has-addons .button:active,
.buttons.has-addons .button:focus {
    z-index: 3
}

.buttons.has-addons .button.is-active:hover,
.buttons.has-addons .button.is-focused:hover,
.buttons.has-addons .button.is-selected:hover,
.buttons.has-addons .button:active:hover,
.buttons.has-addons .button:focus:hover {
    z-index: 4
}

.buttons.has-addons .button.is-expanded {
    flex-grow: 1
}

.buttons.is-centered {
    justify-content: center
}

.buttons.is-right {
    justify-content: flex-end
}

.container {
    margin: 0 auto;
    position: relative
}

@media screen and (min-width:1088px) {
    .container {
        max-width: 1068px;
        width: 1068px
    }
    .container.is-fluid {
        margin-left: 10px;
        margin-right: 10px;
        max-width: none;
        width: auto
    }
}

@media screen and (max-width:1279px) {
    .container.is-widescreen {
        max-width: 1260px;
        width: auto
    }
}

@media screen and (min-width:1280px) {
    .container {
        max-width: 1260px;
        width: 1260px
    }
}

.content li+li {
    margin-top: .25em
}

.content blockquote:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content p:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child),
.content ul:not(:last-child) {
    margin-bottom: 1em
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    color: #363636;
    font-weight: 600;
    line-height: 1.125
}

.content h1 {
    font-size: 2em;
    margin-bottom: .5em
}

.content h1:not(:first-child) {
    margin-top: 1em
}

.content h2 {
    font-size: 1.75em;
    margin-bottom: .5714em
}

.content h2:not(:first-child) {
    margin-top: 1.1428em
}

.content h3 {
    font-size: 1.5em;
    margin-bottom: .6666em
}

.content h3:not(:first-child) {
    margin-top: 1.3333em
}

.content h4 {
    font-size: 1.25em;
    margin-bottom: .8em
}

.content h5 {
    font-size: 1.125em;
    margin-bottom: .8888em
}

.content h6 {
    font-size: 1em;
    margin-bottom: 1em
}

.content blockquote {
    background-color: #f5f5f5;
    border-left: 5px solid #e5e5e5;
    padding: 1.25em 1.5em
}

.content ol {
    list-style: decimal outside;
    margin-left: 2em;
    margin-top: 1em
}

.content ul {
    list-style: disc outside;
    margin-left: 2em;
    margin-top: 1em
}

.content ul ul {
    list-style-type: circle;
    margin-top: .5em
}

.content ul ul ul {
    list-style-type: square
}

.content dd {
    margin-left: 2em
}

.content figure {
    margin-left: 2em;
    margin-right: 2em;
    text-align: center
}

.content figure:not(:first-child) {
    margin-top: 2em
}

.content figure:not(:last-child) {
    margin-bottom: 2em
}

.content figure img {
    display: inline-block
}

.content figure figcaption {
    font-style: italic
}

.content pre {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding: 1.25em 1.5em;
    white-space: pre;
    word-wrap: normal
}

.content sub,
.content sup {
    font-size: 75%
}

.content table {
    width: 100%
}

.content table td,
.content table th {
    border: 1px solid #e5e5e5;
    border-width: 0 0 1px;
    padding: .5em .75em;
    vertical-align: top
}

.content table th {
    color: #363636;
    text-align: left
}

.content table thead td,
.content table thead th {
    border-width: 0 0 2px;
    color: #363636
}

.content table tfoot td,
.content table tfoot th {
    border-width: 2px 0 0;
    color: #363636
}

.content table tbody tr:last-child td,
.content table tbody tr:last-child th {
    border-bottom-width: 0
}

.content.is-small {
    font-size: .75rem
}

.content.is-medium {
    font-size: 1.25rem
}

.content.is-large {
    font-size: 1.5rem
}

.input,
.taginput .taginput-container.is-focusable,
.textarea {
    background-color: #fff;
    border-color: #dbdbdb;
    color: #363636;
    box-shadow: none;
    max-width: 100%;
    width: 100%
}

.input::-moz-placeholder,
.taginput .taginput-container.is-focusable::-moz-placeholder,
.textarea::-moz-placeholder {
    color: rgba(54, 54, 54, .3)
}

.input::-webkit-input-placeholder,
.taginput .taginput-container.is-focusable::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
    color: rgba(54, 54, 54, .3)
}

.input:-moz-placeholder,
.taginput .taginput-container.is-focusable:-moz-placeholder,
.textarea:-moz-placeholder {
    color: rgba(54, 54, 54, .3)
}

.input:-ms-input-placeholder,
.taginput .taginput-container.is-focusable:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
    color: rgba(54, 54, 54, .3)
}

.input.is-hovered,
.input:hover,
.taginput .is-hovered.taginput-container.is-focusable,
.taginput .taginput-container.is-focusable:hover,
.textarea.is-hovered,
.textarea:hover {
    border-color: #dbdbdb
}

.input.is-active,
.input.is-focused,
.input:active,
.input:focus,
.taginput .is-active.taginput-container.is-focusable,
.taginput .is-focused.taginput-container.is-focusable,
.taginput .taginput-container.is-focusable:active,
.taginput .taginput-container.is-focusable:focus,
.textarea.is-active,
.textarea.is-focused,
.textarea:active,
.textarea:focus {
    border-color: #fbc139;
    box-shadow: 0 0 0 1px #fbc139
}

.input[disabled],
.taginput [disabled].taginput-container.is-focusable,
.textarea[disabled] {
    background-color: #f5f5f5;
    border-color: #dbdbdb;
    box-shadow: none;
    color: #7a7a7a
}

.input[disabled]::-moz-placeholder,
.taginput [disabled].taginput-container.is-focusable::-moz-placeholder,
.textarea[disabled]::-moz-placeholder {
    color: rgba(122, 122, 122, .3)
}

.input[disabled]::-webkit-input-placeholder,
.taginput [disabled].taginput-container.is-focusable::-webkit-input-placeholder,
.textarea[disabled]::-webkit-input-placeholder {
    color: rgba(122, 122, 122, .3)
}

.input[disabled]:-moz-placeholder,
.taginput [disabled].taginput-container.is-focusable:-moz-placeholder,
.textarea[disabled]:-moz-placeholder {
    color: rgba(122, 122, 122, .3)
}

.input[disabled]:-ms-input-placeholder,
.taginput [disabled].taginput-container.is-focusable:-ms-input-placeholder,
.textarea[disabled]:-ms-input-placeholder {
    color: rgba(122, 122, 122, .3)
}

.input[readonly],
.taginput [readonly].taginput-container.is-focusable,
.textarea[readonly] {
    box-shadow: none
}

.input.is-white,
.taginput .is-white.taginput-container.is-focusable,
.textarea.is-white {
    border-color: #fff
}

.input.is-white.is-active,
.input.is-white.is-focused,
.input.is-white:active,
.input.is-white:focus,
.taginput .is-white.is-active.taginput-container.is-focusable,
.taginput .is-white.is-focused.taginput-container.is-focusable,
.taginput .is-white.taginput-container.is-focusable:active,
.taginput .is-white.taginput-container.is-focusable:focus,
.textarea.is-white.is-active,
.textarea.is-white.is-focused,
.textarea.is-white:active,
.textarea.is-white:focus {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .25)
}

.input.is-black,
.taginput .is-black.taginput-container.is-focusable,
.textarea.is-black {
    border-color: #0a0a0a
}

.input.is-black.is-active,
.input.is-black.is-focused,
.input.is-black:active,
.input.is-black:focus,
.taginput .is-black.is-active.taginput-container.is-focusable,
.taginput .is-black.is-focused.taginput-container.is-focusable,
.taginput .is-black.taginput-container.is-focusable:active,
.taginput .is-black.taginput-container.is-focusable:focus,
.textarea.is-black.is-active,
.textarea.is-black.is-focused,
.textarea.is-black:active,
.textarea.is-black:focus {
    box-shadow: 0 0 0 1px rgba(10, 10, 10, .25)
}

.input.is-light,
.taginput .is-light.taginput-container.is-focusable,
.textarea.is-light {
    border-color: #eee
}

.input.is-light.is-active,
.input.is-light.is-focused,
.input.is-light:active,
.input.is-light:focus,
.taginput .is-light.is-active.taginput-container.is-focusable,
.taginput .is-light.is-focused.taginput-container.is-focusable,
.taginput .is-light.taginput-container.is-focusable:active,
.taginput .is-light.taginput-container.is-focusable:focus,
.textarea.is-light.is-active,
.textarea.is-light.is-focused,
.textarea.is-light:active,
.textarea.is-light:focus {
    box-shadow: 0 0 0 1px rgba(238, 238, 238, .25)
}

.input.is-dark,
.taginput .is-dark.taginput-container.is-focusable,
.textarea.is-dark {
    border-color: #90a2ab
}

.input.is-dark.is-active,
.input.is-dark.is-focused,
.input.is-dark:active,
.input.is-dark:focus,
.taginput .is-dark.is-active.taginput-container.is-focusable,
.taginput .is-dark.is-focused.taginput-container.is-focusable,
.taginput .is-dark.taginput-container.is-focusable:active,
.taginput .is-dark.taginput-container.is-focusable:focus,
.textarea.is-dark.is-active,
.textarea.is-dark.is-focused,
.textarea.is-dark:active,
.textarea.is-dark:focus {
    box-shadow: 0 0 0 1px rgba(144, 162, 171, .25)
}

.input.is-primary,
.taginput .is-primary.taginput-container.is-focusable,
.textarea.is-primary {
    border-color: #1fb6ff
}

.input.is-primary.is-active,
.input.is-primary.is-focused,
.input.is-primary:active,
.input.is-primary:focus,
.taginput .is-primary.is-active.taginput-container.is-focusable,
.taginput .is-primary.is-focused.taginput-container.is-focusable,
.taginput .is-primary.taginput-container.is-focusable:active,
.taginput .is-primary.taginput-container.is-focusable:focus,
.textarea.is-primary.is-active,
.textarea.is-primary.is-focused,
.textarea.is-primary:active,
.textarea.is-primary:focus {
    box-shadow: 0 0 0 1px rgba(31, 182, 255, .25)
}

.input.is-info,
.taginput .is-info.taginput-container.is-focusable,
.textarea.is-info {
    border-color: #5bc0de
}

.input.is-info.is-active,
.input.is-info.is-focused,
.input.is-info:active,
.input.is-info:focus,
.taginput .is-info.is-active.taginput-container.is-focusable,
.taginput .is-info.is-focused.taginput-container.is-focusable,
.taginput .is-info.taginput-container.is-focusable:active,
.taginput .is-info.taginput-container.is-focusable:focus,
.textarea.is-info.is-active,
.textarea.is-info.is-focused,
.textarea.is-info:active,
.textarea.is-info:focus {
    box-shadow: 0 0 0 1px rgba(91, 192, 222, .25)
}

.input.is-success,
.taginput .is-success.taginput-container.is-focusable,
.textarea.is-success {
    border-color: #5cb85c
}

.input.is-success.is-active,
.input.is-success.is-focused,
.input.is-success:active,
.input.is-success:focus,
.taginput .is-success.is-active.taginput-container.is-focusable,
.taginput .is-success.is-focused.taginput-container.is-focusable,
.taginput .is-success.taginput-container.is-focusable:active,
.taginput .is-success.taginput-container.is-focusable:focus,
.textarea.is-success.is-active,
.textarea.is-success.is-focused,
.textarea.is-success:active,
.textarea.is-success:focus {
    box-shadow: 0 0 0 1px rgba(92, 184, 92, .25)
}

.input.is-warning,
.taginput .is-warning.taginput-container.is-focusable,
.textarea.is-warning {
    border-color: #f0ad4e
}

.input.is-warning.is-active,
.input.is-warning.is-focused,
.input.is-warning:active,
.input.is-warning:focus,
.taginput .is-warning.is-active.taginput-container.is-focusable,
.taginput .is-warning.is-focused.taginput-container.is-focusable,
.taginput .is-warning.taginput-container.is-focusable:active,
.taginput .is-warning.taginput-container.is-focusable:focus,
.textarea.is-warning.is-active,
.textarea.is-warning.is-focused,
.textarea.is-warning:active,
.textarea.is-warning:focus {
    box-shadow: 0 0 0 1px rgba(240, 173, 78, .25)
}

.input.is-danger,
.taginput .is-danger.taginput-container.is-focusable,
.textarea.is-danger {
    border-color: #f15e48
}

.input.is-danger.is-active,
.input.is-danger.is-focused,
.input.is-danger:active,
.input.is-danger:focus,
.taginput .is-danger.is-active.taginput-container.is-focusable,
.taginput .is-danger.is-focused.taginput-container.is-focusable,
.taginput .is-danger.taginput-container.is-focusable:active,
.taginput .is-danger.taginput-container.is-focusable:focus,
.textarea.is-danger.is-active,
.textarea.is-danger.is-focused,
.textarea.is-danger:active,
.textarea.is-danger:focus {
    box-shadow: 0 0 0 1px rgba(241, 94, 72, .25)
}

.input.is-yellow,
.taginput .is-yellow.taginput-container.is-focusable,
.textarea.is-yellow {
    border-color: #fbc139
}

.input.is-yellow.is-active,
.input.is-yellow.is-focused,
.input.is-yellow:active,
.input.is-yellow:focus,
.taginput .is-yellow.is-active.taginput-container.is-focusable,
.taginput .is-yellow.is-focused.taginput-container.is-focusable,
.taginput .is-yellow.taginput-container.is-focusable:active,
.taginput .is-yellow.taginput-container.is-focusable:focus,
.textarea.is-yellow.is-active,
.textarea.is-yellow.is-focused,
.textarea.is-yellow:active,
.textarea.is-yellow:focus {
    box-shadow: 0 0 0 1px rgba(251, 193, 57, .25)
}

.input.is-small,
.taginput .is-small.taginput-container.is-focusable,
.textarea.is-small {
    border-radius: 2px;
    font-size: .75rem
}

.input.is-medium,
.taginput .is-medium.taginput-container.is-focusable,
.textarea.is-medium {
    font-size: 1.25rem
}

.input.is-large,
.taginput .is-large.taginput-container.is-focusable,
.textarea.is-large {
    font-size: 1.5rem
}

.input.is-fullwidth,
.taginput .is-fullwidth.taginput-container.is-focusable,
.textarea.is-fullwidth {
    display: block;
    width: 100%
}

.input.is-inline,
.taginput .is-inline.taginput-container.is-focusable,
.textarea.is-inline {
    display: inline;
    width: auto
}

.input.is-rounded,
.taginput .is-rounded.taginput-container.is-focusable {
    border-radius: 290486px;
    padding-left: 1em;
    padding-right: 1em
}

.input.is-static,
.taginput .is-static.taginput-container.is-focusable {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0
}

.textarea {
    display: block;
    max-width: 100%;
    min-width: 100%;
    padding: .625em;
    resize: vertical
}

.textarea:not([rows]) {
    max-height: 600px;
    min-height: 120px
}

.textarea[rows] {
    height: initial
}

.textarea.has-fixed-size {
    resize: none
}

.checkbox,
.radio {
    cursor: pointer;
    display: inline-block;
    line-height: 1.25;
    position: relative
}

.checkbox input,
.radio input {
    cursor: pointer
}

.checkbox:hover,
.radio:hover {
    color: #363636
}

.checkbox[disabled],
.radio[disabled] {
    color: #7a7a7a;
    cursor: not-allowed
}

.radio+.radio {
    margin-left: .5em
}

.select {
    display: inline-block;
    max-width: 100%;
    position: relative;
    vertical-align: top
}

.select:not(.is-multiple) {
    height: 2.25em
}

.select:not(.is-multiple):not(.is-loading)::after {
    border-color: #555;
    right: 1.125em;
    z-index: 4
}

.select.is-rounded select {
    border-radius: 290486px;
    padding-left: 1em
}

.select select {
    background-color: #fff;
    border-color: #dbdbdb;
    color: #363636;
    cursor: pointer;
    display: block;
    font-size: 1em;
    max-width: 100%;
    outline: 0
}

.select select::-moz-placeholder {
    color: rgba(54, 54, 54, .3)
}

.select select::-webkit-input-placeholder {
    color: rgba(54, 54, 54, .3)
}

.select select:-moz-placeholder {
    color: rgba(54, 54, 54, .3)
}

.select select:-ms-input-placeholder {
    color: rgba(54, 54, 54, .3)
}

.select select.is-hovered,
.select select:hover {
    border-color: #dbdbdb
}

.select select.is-active,
.select select.is-focused,
.select select:active,
.select select:focus {
    border-color: #fbc139;
    box-shadow: 0 0 0 1px #fbc139
}

.select select[disabled] {
    background-color: #f5f5f5;
    border-color: #dbdbdb;
    box-shadow: none;
    color: #7a7a7a
}

.select select[disabled]::-moz-placeholder {
    color: rgba(122, 122, 122, .3)
}

.select select[disabled]::-webkit-input-placeholder {
    color: rgba(122, 122, 122, .3)
}

.select select[disabled]:-moz-placeholder {
    color: rgba(122, 122, 122, .3)
}

.select select[disabled]:-ms-input-placeholder {
    color: rgba(122, 122, 122, .3)
}

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

.select select[disabled]:hover {
    border-color: #dbdbdb
}

.select select:not([multiple]) {
    padding-right: 2.5em
}

.select select[multiple] {
    height: initial;
    padding: 0
}

.select select[multiple] option {
    padding: .5em 1em
}

.select:not(.is-multiple):not(.is-loading):hover::after {
    border-color: #363636
}

.select.is-white:not(:hover)::after {
    border-color: #fff
}

.select.is-white select {
    border-color: #fff
}

.select.is-white select.is-hovered,
.select.is-white select:hover {
    border-color: #f2f2f2
}

.select.is-white select.is-active,
.select.is-white select.is-focused,
.select.is-white select:active,
.select.is-white select:focus {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .25)
}

.select.is-black:not(:hover)::after {
    border-color: #0a0a0a
}

.select.is-black select {
    border-color: #0a0a0a
}

.select.is-black select.is-hovered,
.select.is-black select:hover {
    border-color: #000
}

.select.is-black select.is-active,
.select.is-black select.is-focused,
.select.is-black select:active,
.select.is-black select:focus {
    box-shadow: 0 0 0 1px rgba(10, 10, 10, .25)
}

.select.is-light:not(:hover)::after {
    border-color: #eee
}

.select.is-light select {
    border-color: #eee
}

.select.is-light select.is-hovered,
.select.is-light select:hover {
    border-color: #e1e1e1
}

.select.is-light select.is-active,
.select.is-light select.is-focused,
.select.is-light select:active,
.select.is-light select:focus {
    box-shadow: 0 0 0 1px rgba(238, 238, 238, .25)
}

.select.is-dark:not(:hover)::after {
    border-color: #90a2ab
}

.select.is-dark select {
    border-color: #90a2ab
}

.select.is-dark select.is-hovered,
.select.is-dark select:hover {
    border-color: #8196a0
}

.select.is-dark select.is-active,
.select.is-dark select.is-focused,
.select.is-dark select:active,
.select.is-dark select:focus {
    box-shadow: 0 0 0 1px rgba(144, 162, 171, .25)
}

.select.is-primary:not(:hover)::after {
    border-color: #1fb6ff
}

.select.is-primary select {
    border-color: #1fb6ff
}

.select.is-primary select.is-hovered,
.select.is-primary select:hover {
    border-color: #06aeff
}

.select.is-primary select.is-active,
.select.is-primary select.is-focused,
.select.is-primary select:active,
.select.is-primary select:focus {
    box-shadow: 0 0 0 1px rgba(31, 182, 255, .25)
}

.select.is-info:not(:hover)::after {
    border-color: #5bc0de
}

.select.is-info select {
    border-color: #5bc0de
}

.select.is-info select.is-hovered,
.select.is-info select:hover {
    border-color: #46b8da
}

.select.is-info select.is-active,
.select.is-info select.is-focused,
.select.is-info select:active,
.select.is-info select:focus {
    box-shadow: 0 0 0 1px rgba(91, 192, 222, .25)
}

.select.is-success:not(:hover)::after {
    border-color: #5cb85c
}

.select.is-success select {
    border-color: #5cb85c
}

.select.is-success select.is-hovered,
.select.is-success select:hover {
    border-color: #4cae4c
}

.select.is-success select.is-active,
.select.is-success select.is-focused,
.select.is-success select:active,
.select.is-success select:focus {
    box-shadow: 0 0 0 1px rgba(92, 184, 92, .25)
}

.select.is-warning:not(:hover)::after {
    border-color: #f0ad4e
}

.select.is-warning select {
    border-color: #f0ad4e
}

.select.is-warning select.is-hovered,
.select.is-warning select:hover {
    border-color: #eea236
}

.select.is-warning select.is-active,
.select.is-warning select.is-focused,
.select.is-warning select:active,
.select.is-warning select:focus {
    box-shadow: 0 0 0 1px rgba(240, 173, 78, .25)
}

.select.is-danger:not(:hover)::after {
    border-color: #f15e48
}

.select.is-danger select {
    border-color: #f15e48
}

.select.is-danger select.is-hovered,
.select.is-danger select:hover {
    border-color: #ef4930
}

.select.is-danger select.is-active,
.select.is-danger select.is-focused,
.select.is-danger select:active,
.select.is-danger select:focus {
    box-shadow: 0 0 0 1px rgba(241, 94, 72, .25)
}

.select.is-yellow:not(:hover)::after {
    border-color: #fbc139
}

.select.is-yellow select {
    border-color: #fbc139
}

.select.is-yellow select.is-hovered,
.select.is-yellow select:hover {
    border-color: #fab920
}

.select.is-yellow select.is-active,
.select.is-yellow select.is-focused,
.select.is-yellow select:active,
.select.is-yellow select:focus {
    box-shadow: 0 0 0 1px rgba(251, 193, 57, .25)
}

.select.is-small {
    border-radius: 2px;
    font-size: .75rem
}

.select.is-medium {
    font-size: 1.25rem
}

.select.is-large {
    font-size: 1.5rem
}

.select.is-disabled::after {
    border-color: #7a7a7a
}

.select.is-fullwidth {
    width: 100%
}

.select.is-fullwidth select {
    width: 100%
}

.select.is-loading::after {
    margin-top: 0;
    position: absolute;
    right: .625em;
    top: .625em;
    transform: none
}

.select.is-loading.is-small:after {
    font-size: .75rem
}

.select.is-loading.is-medium:after {
    font-size: 1.25rem
}

.select.is-loading.is-large:after {
    font-size: 1.5rem
}

.file {
    align-items: stretch;
    display: flex;
    justify-content: flex-start;
    position: relative
}

.file.is-white .file-cta {
    background-color: #fff;
    border-color: transparent;
    color: #0a0a0a
}

.file.is-white.is-hovered .file-cta,
.file.is-white:hover .file-cta {
    background-color: #f9f9f9;
    border-color: transparent;
    color: #0a0a0a
}

.file.is-white.is-focused .file-cta,
.file.is-white:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(255, 255, 255, .25);
    color: #0a0a0a
}

.file.is-white.is-active .file-cta,
.file.is-white:active .file-cta {
    background-color: #f2f2f2;
    border-color: transparent;
    color: #0a0a0a
}

.file.is-black .file-cta {
    background-color: #0a0a0a;
    border-color: transparent;
    color: #fff
}

.file.is-black.is-hovered .file-cta,
.file.is-black:hover .file-cta {
    background-color: #040404;
    border-color: transparent;
    color: #fff
}

.file.is-black.is-focused .file-cta,
.file.is-black:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(10, 10, 10, .25);
    color: #fff
}

.file.is-black.is-active .file-cta,
.file.is-black:active .file-cta {
    background-color: #000;
    border-color: transparent;
    color: #fff
}

.file.is-light .file-cta {
    background-color: #eee;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.file.is-light.is-hovered .file-cta,
.file.is-light:hover .file-cta {
    background-color: #e8e8e8;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.file.is-light.is-focused .file-cta,
.file.is-light:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(238, 238, 238, .25);
    color: rgba(0, 0, 0, .7)
}

.file.is-light.is-active .file-cta,
.file.is-light:active .file-cta {
    background-color: #e1e1e1;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.file.is-dark .file-cta {
    background-color: #90a2ab;
    border-color: transparent;
    color: #fff
}

.file.is-dark.is-hovered .file-cta,
.file.is-dark:hover .file-cta {
    background-color: #899ca6;
    border-color: transparent;
    color: #fff
}

.file.is-dark.is-focused .file-cta,
.file.is-dark:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(144, 162, 171, .25);
    color: #fff
}

.file.is-dark.is-active .file-cta,
.file.is-dark:active .file-cta {
    background-color: #8196a0;
    border-color: transparent;
    color: #fff
}

.file.is-primary .file-cta {
    background-color: #1fb6ff;
    border-color: transparent;
    color: #fff
}

.file.is-primary.is-hovered .file-cta,
.file.is-primary:hover .file-cta {
    background-color: #12b2ff;
    border-color: transparent;
    color: #fff
}

.file.is-primary.is-focused .file-cta,
.file.is-primary:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(31, 182, 255, .25);
    color: #fff
}

.file.is-primary.is-active .file-cta,
.file.is-primary:active .file-cta {
    background-color: #06aeff;
    border-color: transparent;
    color: #fff
}

.file.is-info .file-cta {
    background-color: #5bc0de;
    border-color: transparent;
    color: #fff
}

.file.is-info.is-hovered .file-cta,
.file.is-info:hover .file-cta {
    background-color: #50bcdc;
    border-color: transparent;
    color: #fff
}

.file.is-info.is-focused .file-cta,
.file.is-info:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(91, 192, 222, .25);
    color: #fff
}

.file.is-info.is-active .file-cta,
.file.is-info:active .file-cta {
    background-color: #46b8da;
    border-color: transparent;
    color: #fff
}

.file.is-success .file-cta {
    background-color: #5cb85c;
    border-color: transparent;
    color: #fff
}

.file.is-success.is-hovered .file-cta,
.file.is-success:hover .file-cta {
    background-color: #53b453;
    border-color: transparent;
    color: #fff
}

.file.is-success.is-focused .file-cta,
.file.is-success:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(92, 184, 92, .25);
    color: #fff
}

.file.is-success.is-active .file-cta,
.file.is-success:active .file-cta {
    background-color: #4cae4c;
    border-color: transparent;
    color: #fff
}

.file.is-warning .file-cta {
    background-color: #f0ad4e;
    border-color: transparent;
    color: #fff
}

.file.is-warning.is-hovered .file-cta,
.file.is-warning:hover .file-cta {
    background-color: #efa842;
    border-color: transparent;
    color: #fff
}

.file.is-warning.is-focused .file-cta,
.file.is-warning:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(240, 173, 78, .25);
    color: #fff
}

.file.is-warning.is-active .file-cta,
.file.is-warning:active .file-cta {
    background-color: #eea236;
    border-color: transparent;
    color: #fff
}

.file.is-danger .file-cta {
    background-color: #f15e48;
    border-color: transparent;
    color: #fff
}

.file.is-danger.is-hovered .file-cta,
.file.is-danger:hover .file-cta {
    background-color: #f0543c;
    border-color: transparent;
    color: #fff
}

.file.is-danger.is-focused .file-cta,
.file.is-danger:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(241, 94, 72, .25);
    color: #fff
}

.file.is-danger.is-active .file-cta,
.file.is-danger:active .file-cta {
    background-color: #ef4930;
    border-color: transparent;
    color: #fff
}

.file.is-yellow .file-cta {
    background-color: #fbc139;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.file.is-yellow.is-hovered .file-cta,
.file.is-yellow:hover .file-cta {
    background-color: #fbbd2d;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.file.is-yellow.is-focused .file-cta,
.file.is-yellow:focus .file-cta {
    border-color: transparent;
    box-shadow: 0 0 .5em rgba(251, 193, 57, .25);
    color: rgba(0, 0, 0, .7)
}

.file.is-yellow.is-active .file-cta,
.file.is-yellow:active .file-cta {
    background-color: #fab920;
    border-color: transparent;
    color: rgba(0, 0, 0, .7)
}

.file.is-small {
    font-size: .75rem
}

.file.is-medium {
    font-size: 1.25rem
}

.file.is-medium .file-icon .fa {
    font-size: 21px
}

.file.is-large {
    font-size: 1.5rem
}

.file.is-large .file-icon .fa {
    font-size: 28px
}

.file.has-name .file-cta {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.file.has-name .file-name {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.file.has-name.is-empty .file-cta {
    border-radius: 2px
}

.file.has-name.is-empty .file-name {
    display: none
}

.file.is-boxed .file-label {
    flex-direction: column
}

.file.is-boxed .file-cta {
    flex-direction: column;
    height: auto;
    padding: 1em 3em
}

.file.is-boxed .file-name {
    border-width: 0 1px 1px
}

.file.is-boxed .file-icon {
    height: 1.5em;
    width: 1.5em
}

.file.is-boxed .file-icon .fa {
    font-size: 21px
}

.file.is-boxed.is-small .file-icon .fa {
    font-size: 14px
}

.file.is-boxed.is-medium .file-icon .fa {
    font-size: 28px
}

.file.is-boxed.is-large .file-icon .fa {
    font-size: 35px
}

.file.is-boxed.has-name .file-cta {
    border-radius: 2px 2px 0 0
}

.file.is-boxed.has-name .file-name {
    border-radius: 0 0 2px 2px;
    border-width: 0 1px 1px
}

.file.is-centered {
    justify-content: center
}

.file.is-fullwidth .file-label {
    width: 100%
}

.file.is-fullwidth .file-name {
    flex-grow: 1;
    max-width: none
}

.file.is-right {
    justify-content: flex-end
}

.file.is-right .file-cta {
    border-radius: 0 2px 2px 0
}

.file.is-right .file-name {
    border-radius: 2px 0 0 2px;
    border-width: 1px 0 1px 1px;
    order: -1
}

.file-label {
    align-items: stretch;
    display: flex;
    cursor: pointer;
    justify-content: flex-start;
    overflow: hidden;
    position: relative
}

.file-label:hover .file-cta {
    background-color: #eee;
    color: #363636
}

.file-label:hover .file-name {
    border-color: #dfdfdf
}

.file-label:active .file-cta {
    background-color: #e8e8e8;
    color: #363636
}

.file-label:active .file-name {
    border-color: #d8d8d8
}

.file-input {
    height: .01em;
    left: 0;
    outline: 0;
    position: absolute;
    top: 0;
    width: .01em
}

.file-cta,
.file-name {
    border-color: #e5e5e5;
    border-radius: 2px;
    font-size: 1em;
    padding-left: 1em;
    padding-right: 1em;
    white-space: nowrap
}

.file-cta {
    background-color: #f5f5f5;
    color: #4a4a4a
}

.file-name {
    border-color: #e5e5e5;
    border-style: solid;
    border-width: 1px 1px 1px 0;
    display: block;
    max-width: 16em;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis
}

.file-icon {
    align-items: center;
    display: flex;
    height: 1em;
    justify-content: center;
    margin-right: .5em;
    width: 1em
}

.file-icon .fa {
    font-size: 14px
}

.label {
    color: #363636;
    display: block;
    font-size: 1rem;
    font-weight: 700
}

.label:not(:last-child) {
    margin-bottom: .5em
}

.label.is-small {
    font-size: .75rem
}

.label.is-medium {
    font-size: 1.25rem
}

.label.is-large {
    font-size: 1.5rem
}

.help {
    display: block;
    font-size: .75rem;
    margin-top: .25rem
}

.help.is-white {
    color: #fff
}

.help.is-black {
    color: #0a0a0a
}

.help.is-light {
    color: #eee
}

.help.is-dark {
    color: #90a2ab
}

.help.is-primary {
    color: #1fb6ff
}

.help.is-info {
    color: #5bc0de
}

.help.is-success {
    color: #5cb85c
}

.help.is-warning {
    color: #f0ad4e
}

.help.is-danger {
    color: #f15e48
}

.help.is-yellow {
    color: #fbc139
}

.field:not(:last-child) {
    margin-bottom: .75rem
}

.field.has-addons {
    display: flex;
    justify-content: flex-start
}

.field.has-addons .control:not(:last-child) {
    margin-right: -1px
}

.field.has-addons .control:not(:first-child):not(:last-child) .button,
.field.has-addons .control:not(:first-child):not(:last-child) .input,
.field.has-addons .control:not(:first-child):not(:last-child) .select select,
.field.has-addons .control:not(:first-child):not(:last-child) .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:not(:first-child):not(:last-child) .taginput-container.is-focusable {
    border-radius: 0
}

.field.has-addons .control:first-child .button,
.field.has-addons .control:first-child .input,
.field.has-addons .control:first-child .select select,
.field.has-addons .control:first-child .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:first-child .taginput-container.is-focusable {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.field.has-addons .control:last-child .button,
.field.has-addons .control:last-child .input,
.field.has-addons .control:last-child .select select,
.field.has-addons .control:last-child .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:last-child .taginput-container.is-focusable {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.field.has-addons .control .button.is-hovered,
.field.has-addons .control .button:hover,
.field.has-addons .control .input.is-hovered,
.field.has-addons .control .input:hover,
.field.has-addons .control .select select.is-hovered,
.field.has-addons .control .select select:hover,
.field.has-addons .control .taginput .is-hovered.taginput-container.is-focusable,
.field.has-addons .control .taginput .taginput-container.is-focusable:hover,
.taginput .field.has-addons .control .is-hovered.taginput-container.is-focusable,
.taginput .field.has-addons .control .taginput-container.is-focusable:hover {
    z-index: 2
}

.field.has-addons .control .button.is-active,
.field.has-addons .control .button.is-focused,
.field.has-addons .control .button:active,
.field.has-addons .control .button:focus,
.field.has-addons .control .input.is-active,
.field.has-addons .control .input.is-focused,
.field.has-addons .control .input:active,
.field.has-addons .control .input:focus,
.field.has-addons .control .select select.is-active,
.field.has-addons .control .select select.is-focused,
.field.has-addons .control .select select:active,
.field.has-addons .control .select select:focus,
.field.has-addons .control .taginput .is-active.taginput-container.is-focusable,
.field.has-addons .control .taginput .is-focused.taginput-container.is-focusable,
.field.has-addons .control .taginput .taginput-container.is-focusable:active,
.field.has-addons .control .taginput .taginput-container.is-focusable:focus,
.taginput .field.has-addons .control .is-active.taginput-container.is-focusable,
.taginput .field.has-addons .control .is-focused.taginput-container.is-focusable,
.taginput .field.has-addons .control .taginput-container.is-focusable:active,
.taginput .field.has-addons .control .taginput-container.is-focusable:focus {
    z-index: 3
}

.field.has-addons .control .button.is-active:hover,
.field.has-addons .control .button.is-focused:hover,
.field.has-addons .control .button:active:hover,
.field.has-addons .control .button:focus:hover,
.field.has-addons .control .input.is-active:hover,
.field.has-addons .control .input.is-focused:hover,
.field.has-addons .control .input:active:hover,
.field.has-addons .control .input:focus:hover,
.field.has-addons .control .select select.is-active:hover,
.field.has-addons .control .select select.is-focused:hover,
.field.has-addons .control .select select:active:hover,
.field.has-addons .control .select select:focus:hover,
.field.has-addons .control .taginput .is-active.taginput-container.is-focusable:hover,
.field.has-addons .control .taginput .is-focused.taginput-container.is-focusable:hover,
.field.has-addons .control .taginput .taginput-container.is-focusable:active:hover,
.field.has-addons .control .taginput .taginput-container.is-focusable:focus:hover,
.taginput .field.has-addons .control .is-active.taginput-container.is-focusable:hover,
.taginput .field.has-addons .control .is-focused.taginput-container.is-focusable:hover,
.taginput .field.has-addons .control .taginput-container.is-focusable:active:hover,
.taginput .field.has-addons .control .taginput-container.is-focusable:focus:hover {
    z-index: 4
}

.field.has-addons .control.is-expanded {
    flex-grow: 1
}

.field.has-addons.has-addons-centered {
    justify-content: center
}

.field.has-addons.has-addons-right {
    justify-content: flex-end
}

.field.has-addons.has-addons-fullwidth .control {
    flex-grow: 1;
    flex-shrink: 0
}

.field.is-grouped {
    display: flex;
    justify-content: flex-start
}

.field.is-grouped>.control {
    flex-shrink: 0
}

.field.is-grouped>.control:not(:last-child) {
    margin-bottom: 0;
    margin-right: .75rem
}

.field.is-grouped>.control.is-expanded {
    flex-grow: 1;
    flex-shrink: 1
}

.field.is-grouped.is-grouped-centered {
    justify-content: center
}

.field.is-grouped.is-grouped-right {
    justify-content: flex-end
}

.field.is-grouped.is-grouped-multiline {
    flex-wrap: wrap
}

.field.is-grouped.is-grouped-multiline>.control:last-child,
.field.is-grouped.is-grouped-multiline>.control:not(:last-child) {
    margin-bottom: .75rem
}

.field.is-grouped.is-grouped-multiline:last-child {
    margin-bottom: -.75rem
}

.field.is-grouped.is-grouped-multiline:not(:last-child) {
    margin-bottom: 0
}

@media screen and (min-width:769px),
print {
    .field.is-horizontal {
        display: flex
    }
}

.field-label .label {
    font-size: inherit
}

@media screen and (max-width:768px) {
    .field-label {
        margin-bottom: .5rem
    }
}

@media screen and (min-width:769px),
print {
    .field-label {
        flex-basis: 0;
        flex-grow: 1;
        flex-shrink: 0;
        margin-right: 1.5rem;
        text-align: right
    }
    .field-label.is-small {
        font-size: .75rem;
        padding-top: .375em
    }
    .field-label.is-normal {
        padding-top: .375em
    }
    .field-label.is-medium {
        font-size: 1.25rem;
        padding-top: .375em
    }
    .field-label.is-large {
        font-size: 1.5rem;
        padding-top: .375em
    }
}

.field-body .field .field {
    margin-bottom: 0
}

@media screen and (min-width:769px),
print {
    .field-body {
        display: flex;
        flex-basis: 0;
        flex-grow: 5;
        flex-shrink: 1
    }
    .field-body .field {
        margin-bottom: 0
    }
    .field-body>.field {
        flex-shrink: 1
    }
    .field-body>.field:not(.is-narrow) {
        flex-grow: 1
    }
    .field-body>.field:not(:last-child) {
        margin-right: .75rem
    }
}

.control {
    font-size: 1rem;
    position: relative;
    text-align: left
}

.control.has-icon .icon {
    color: #dbdbdb;
    height: 2.25em;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 2.25em;
    z-index: 4
}

.control.has-icon .input:focus+.icon,
.control.has-icon .taginput .taginput-container.is-focusable:focus+.icon,
.taginput .control.has-icon .taginput-container.is-focusable:focus+.icon {
    color: #7a7a7a
}

.control.has-icon .input.is-small+.icon,
.control.has-icon .taginput .is-small.taginput-container.is-focusable+.icon,
.taginput .control.has-icon .is-small.taginput-container.is-focusable+.icon {
    font-size: .75rem
}

.control.has-icon .input.is-medium+.icon,
.control.has-icon .taginput .is-medium.taginput-container.is-focusable+.icon,
.taginput .control.has-icon .is-medium.taginput-container.is-focusable+.icon {
    font-size: 1.25rem
}

.control.has-icon .input.is-large+.icon,
.control.has-icon .taginput .is-large.taginput-container.is-focusable+.icon,
.taginput .control.has-icon .is-large.taginput-container.is-focusable+.icon {
    font-size: 1.5rem
}

.control.has-icon:not(.has-icon-right) .icon {
    left: 0
}

.control.has-icon:not(.has-icon-right) .input,
.control.has-icon:not(.has-icon-right) .taginput .taginput-container.is-focusable,
.taginput .control.has-icon:not(.has-icon-right) .taginput-container.is-focusable {
    padding-left: 2.25em
}

.control.has-icon.has-icon-right .icon {
    right: 0
}

.control.has-icon.has-icon-right .input,
.control.has-icon.has-icon-right .taginput .taginput-container.is-focusable,
.taginput .control.has-icon.has-icon-right .taginput-container.is-focusable {
    padding-right: 2.25em
}

.control.has-icons-left .input:focus~.icon,
.control.has-icons-left .select:focus~.icon,
.control.has-icons-left .taginput .taginput-container.is-focusable:focus~.icon,
.control.has-icons-right .input:focus~.icon,
.control.has-icons-right .select:focus~.icon,
.control.has-icons-right .taginput .taginput-container.is-focusable:focus~.icon,
.taginput .control.has-icons-left .taginput-container.is-focusable:focus~.icon,
.taginput .control.has-icons-right .taginput-container.is-focusable:focus~.icon {
    color: #7a7a7a
}

.control.has-icons-left .input.is-small~.icon,
.control.has-icons-left .select.is-small~.icon,
.control.has-icons-left .taginput .is-small.taginput-container.is-focusable~.icon,
.control.has-icons-right .input.is-small~.icon,
.control.has-icons-right .select.is-small~.icon,
.control.has-icons-right .taginput .is-small.taginput-container.is-focusable~.icon,
.taginput .control.has-icons-left .is-small.taginput-container.is-focusable~.icon,
.taginput .control.has-icons-right .is-small.taginput-container.is-focusable~.icon {
    font-size: .75rem
}

.control.has-icons-left .input.is-medium~.icon,
.control.has-icons-left .select.is-medium~.icon,
.control.has-icons-left .taginput .is-medium.taginput-container.is-focusable~.icon,
.control.has-icons-right .input.is-medium~.icon,
.control.has-icons-right .select.is-medium~.icon,
.control.has-icons-right .taginput .is-medium.taginput-container.is-focusable~.icon,
.taginput .control.has-icons-left .is-medium.taginput-container.is-focusable~.icon,
.taginput .control.has-icons-right .is-medium.taginput-container.is-focusable~.icon {
    font-size: 1.25rem
}

.control.has-icons-left .input.is-large~.icon,
.control.has-icons-left .select.is-large~.icon,
.control.has-icons-left .taginput .is-large.taginput-container.is-focusable~.icon,
.control.has-icons-right .input.is-large~.icon,
.control.has-icons-right .select.is-large~.icon,
.control.has-icons-right .taginput .is-large.taginput-container.is-focusable~.icon,
.taginput .control.has-icons-left .is-large.taginput-container.is-focusable~.icon,
.taginput .control.has-icons-right .is-large.taginput-container.is-focusable~.icon {
    font-size: 1.5rem
}

.control.has-icons-left .icon,
.control.has-icons-right .icon {
    color: #dbdbdb;
    height: 2.25em;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 2.25em;
    z-index: 4
}

.control.has-icons-left .input,
.control.has-icons-left .select select,
.control.has-icons-left .taginput .taginput-container.is-focusable,
.taginput .control.has-icons-left .taginput-container.is-focusable {
    padding-left: 2.25em
}

.control.has-icons-left .icon.is-left {
    left: 0
}

.control.has-icons-right .input,
.control.has-icons-right .select select,
.control.has-icons-right .taginput .taginput-container.is-focusable,
.taginput .control.has-icons-right .taginput-container.is-focusable {
    padding-right: 2.25em
}

.control.has-icons-right .icon.is-right {
    right: 0
}

.control.is-loading::after {
    position: absolute!important;
    right: .625em;
    top: .625em;
    z-index: 4
}

.control.is-loading.is-small:after {
    font-size: .75rem
}

.control.is-loading.is-medium:after {
    font-size: 1.25rem
}

.control.is-loading.is-large:after {
    font-size: 1.5rem
}

.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem
}

.icon.is-small {
    height: 1rem;
    width: 1rem
}

.icon.is-medium {
    height: 2rem;
    width: 2rem
}

.icon.is-large {
    height: 3rem;
    width: 3rem
}

.image {
    display: block;
    position: relative
}

.image img {
    display: block;
    height: auto;
    width: 100%
}

.image img.is-rounded {
    border-radius: 290486px
}

.image.is-16by9 img,
.image.is-1by1 img,
.image.is-1by2 img,
.image.is-1by3 img,
.image.is-2by1 img,
.image.is-2by3 img,
.image.is-3by1 img,
.image.is-3by2 img,
.image.is-3by4 img,
.image.is-3by5 img,
.image.is-4by3 img,
.image.is-4by5 img,
.image.is-5by3 img,
.image.is-5by4 img,
.image.is-9by16 img,
.image.is-square img {
    height: 100%;
    width: 100%
}

.image.is-1by1,
.image.is-square {
    padding-top: 100%
}

.image.is-5by4 {
    padding-top: 80%
}

.image.is-4by3 {
    padding-top: 75%
}

.image.is-3by2 {
    padding-top: 66.6666%
}

.image.is-5by3 {
    padding-top: 60%
}

.image.is-16by9 {
    padding-top: 56.25%
}

.image.is-2by1 {
    padding-top: 50%
}

.image.is-3by1 {
    padding-top: 33.3333%
}

.image.is-4by5 {
    padding-top: 125%
}

.image.is-3by4 {
    padding-top: 133.3333%
}

.image.is-2by3 {
    padding-top: 150%
}

.image.is-3by5 {
    padding-top: 166.6666%
}

.image.is-9by16 {
    padding-top: 177.7777%
}

.image.is-1by2 {
    padding-top: 200%
}

.image.is-1by3 {
    padding-top: 300%
}

.image.is-16x16 {
    height: 16px;
    width: 16px
}

.image.is-24x24 {
    height: 24px;
    width: 24px
}

.image.is-32x32 {
    height: 32px;
    width: 32px
}

.image.is-48x48 {
    height: 48px;
    width: 48px
}

.image.is-64x64 {
    height: 64px;
    width: 64px
}

.image.is-96x96 {
    height: 96px;
    width: 96px
}

.image.is-128x128 {
    height: 128px;
    width: 128px
}

.notification {
    background-color: #f5f5f5;
    border-radius: 2px;
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
    position: relative
}

.notification a:not(.button) {
    color: currentColor;
    text-decoration: underline
}

.notification strong {
    color: currentColor
}

.notification code,
.notification pre {
    background: #fff
}

.notification pre code {
    background: 0 0
}

.notification>.delete {
    position: absolute;
    right: .5rem;
    top: .5rem
}

.notification .content,
.notification .subtitle,
.notification .title {
    color: currentColor
}

.notification.is-white {
    background-color: #fff;
    color: #0a0a0a
}

.notification.is-black {
    background-color: #0a0a0a;
    color: #fff
}

.notification.is-light {
    background-color: #eee;
    color: rgba(0, 0, 0, .7)
}

.notification.is-dark {
    background-color: #90a2ab;
    color: #fff
}

.notification.is-primary {
    background-color: #1fb6ff;
    color: #fff
}

.notification.is-info {
    background-color: #5bc0de;
    color: #fff
}

.notification.is-success {
    background-color: #5cb85c;
    color: #fff
}

.notification.is-warning {
    background-color: #f0ad4e;
    color: #fff
}

.notification.is-danger {
    background-color: #f15e48;
    color: #fff
}

.notification.is-yellow {
    background-color: #fbc139;
    color: rgba(0, 0, 0, .7)
}

.progress {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 290486px;
    display: block;
    height: 1rem;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.progress::-webkit-progress-bar {
    background-color: #e5e5e5
}

.progress::-webkit-progress-value {
    background-color: #4a4a4a
}

.progress::-moz-progress-bar {
    background-color: #4a4a4a
}

.progress::-ms-fill {
    background-color: #4a4a4a;
    border: none
}

.progress.is-white::-webkit-progress-value {
    background-color: #fff
}

.progress.is-white::-moz-progress-bar {
    background-color: #fff
}

.progress.is-white::-ms-fill {
    background-color: #fff
}

.progress.is-black::-webkit-progress-value {
    background-color: #0a0a0a
}

.progress.is-black::-moz-progress-bar {
    background-color: #0a0a0a
}

.progress.is-black::-ms-fill {
    background-color: #0a0a0a
}

.progress.is-light::-webkit-progress-value {
    background-color: #eee
}

.progress.is-light::-moz-progress-bar {
    background-color: #eee
}

.progress.is-light::-ms-fill {
    background-color: #eee
}

.progress.is-dark::-webkit-progress-value {
    background-color: #90a2ab
}

.progress.is-dark::-moz-progress-bar {
    background-color: #90a2ab
}

.progress.is-dark::-ms-fill {
    background-color: #90a2ab
}

.progress.is-primary::-webkit-progress-value {
    background-color: #1fb6ff
}

.progress.is-primary::-moz-progress-bar {
    background-color: #1fb6ff
}

.progress.is-primary::-ms-fill {
    background-color: #1fb6ff
}

.progress.is-info::-webkit-progress-value {
    background-color: #5bc0de
}

.progress.is-info::-moz-progress-bar {
    background-color: #5bc0de
}

.progress.is-info::-ms-fill {
    background-color: #5bc0de
}

.progress.is-success::-webkit-progress-value {
    background-color: #5cb85c
}

.progress.is-success::-moz-progress-bar {
    background-color: #5cb85c
}

.progress.is-success::-ms-fill {
    background-color: #5cb85c
}

.progress.is-warning::-webkit-progress-value {
    background-color: #f0ad4e
}

.progress.is-warning::-moz-progress-bar {
    background-color: #f0ad4e
}

.progress.is-warning::-ms-fill {
    background-color: #f0ad4e
}

.progress.is-danger::-webkit-progress-value {
    background-color: #f15e48
}

.progress.is-danger::-moz-progress-bar {
    background-color: #f15e48
}

.progress.is-danger::-ms-fill {
    background-color: #f15e48
}

.progress.is-yellow::-webkit-progress-value {
    background-color: #fbc139
}

.progress.is-yellow::-moz-progress-bar {
    background-color: #fbc139
}

.progress.is-yellow::-ms-fill {
    background-color: #fbc139
}

.progress.is-small {
    height: .75rem
}

.progress.is-medium {
    height: 1.25rem
}

.progress.is-large {
    height: 1.5rem
}

.table {
    background-color: transparent;
    color: #363636
}

.table td,
.table th {
    border: 1px solid #f0f0f0;
    border-width: 0 0 1px;
    padding: .5em .75em;
    vertical-align: top
}

.table td.is-white,
.table th.is-white {
    background-color: #fff;
    border-color: #fff;
    color: #0a0a0a
}

.table td.is-black,
.table th.is-black {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff
}

.table td.is-light,
.table th.is-light {
    background-color: #eee;
    border-color: #eee;
    color: rgba(0, 0, 0, .7)
}

.table td.is-dark,
.table th.is-dark {
    background-color: #90a2ab;
    border-color: #90a2ab;
    color: #fff
}

.table td.is-primary,
.table th.is-primary {
    background-color: #1fb6ff;
    border-color: #1fb6ff;
    color: #fff
}

.table td.is-info,
.table th.is-info {
    background-color: #5bc0de;
    border-color: #5bc0de;
    color: #fff
}

.table td.is-success,
.table th.is-success {
    background-color: #5cb85c;
    border-color: #5cb85c;
    color: #fff
}

.table td.is-warning,
.table th.is-warning {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
    color: #fff
}

.table td.is-danger,
.table th.is-danger {
    background-color: #f15e48;
    border-color: #f15e48;
    color: #fff
}

.table td.is-yellow,
.table th.is-yellow {
    background-color: #fbc139;
    border-color: #fbc139;
    color: rgba(0, 0, 0, .7)
}

.table td.is-narrow,
.table th.is-narrow {
    white-space: nowrap;
    width: 1%
}

.table td.is-selected,
.table th.is-selected {
    background-color: #1fb6ff;
    color: #fff
}

.table td.is-selected a,
.table td.is-selected strong,
.table th.is-selected a,
.table th.is-selected strong {
    color: currentColor
}

.table th {
    color: #999;
    text-align: left
}

.table tr.is-selected {
    background-color: #1fb6ff;
    color: #fff
}

.table tr.is-selected a,
.table tr.is-selected strong {
    color: currentColor
}

.table tr.is-selected td,
.table tr.is-selected th {
    border-color: #fff;
    color: currentColor
}

.table thead td,
.table thead th {
    border-width: 0 0 2px;
    color: #363636
}

.table tfoot td,
.table tfoot th {
    border-width: 2px 0 0;
    color: #363636
}

.table tbody tr:last-child td,
.table tbody tr:last-child th {
    border-bottom-width: 0
}

.table.is-bordered td,
.table.is-bordered th {
    border-width: 1px
}

.table.is-bordered tr:last-child td,
.table.is-bordered tr:last-child th {
    border-bottom-width: 1px
}

.table.is-fullwidth {
    width: 100%
}

.table.is-hoverable tbody tr:not(.is-selected):hover {
    background-color: #fafafa
}

.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
    background-color: #f5f5f5
}

.table.is-narrow td,
.table.is-narrow th {
    padding: .25em .5em
}

.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
    background-color: #fafafa
}

.table-container {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    overflow-y: hidden;
    max-width: 100%
}

.tags {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.tags .tag {
    margin-bottom: .5rem
}

.tags .tag:not(:last-child) {
    margin-right: .5rem
}

.tags:last-child {
    margin-bottom: -.5rem
}

.tags:not(:last-child) {
    margin-bottom: 1rem
}

.tags.has-addons .tag {
    margin-right: 0
}

.tags.has-addons .tag:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.tags.has-addons .tag:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.tags.is-centered {
    justify-content: center
}

.tags.is-centered .tag {
    margin-right: .25rem;
    margin-left: .25rem
}

.tags.is-right {
    justify-content: flex-end
}

.tags.is-right .tag:not(:first-child) {
    margin-left: .5rem
}

.tags.is-right .tag:not(:last-child) {
    margin-right: 0
}

.tag:not(body) {
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 2px;
    color: #4a4a4a;
    display: inline-flex;
    font-size: .75rem;
    height: 2em;
    justify-content: center;
    line-height: 1.5;
    padding-left: .75em;
    padding-right: .75em;
    white-space: nowrap
}

.tag:not(body) .delete {
    margin-left: .25rem;
    margin-right: -.375rem
}

.tag:not(body).is-white {
    background-color: #fff;
    color: #0a0a0a
}

.tag:not(body).is-black {
    background-color: #0a0a0a;
    color: #fff
}

.tag:not(body).is-light {
    background-color: #eee;
    color: rgba(0, 0, 0, .7)
}

.tag:not(body).is-dark {
    background-color: #90a2ab;
    color: #fff
}

.tag:not(body).is-primary {
    background-color: #1fb6ff;
    color: #fff
}

.tag:not(body).is-info {
    background-color: #5bc0de;
    color: #fff
}

.tag:not(body).is-success {
    background-color: #5cb85c;
    color: #fff
}

.tag:not(body).is-warning {
    background-color: #f0ad4e;
    color: #fff
}

.tag:not(body).is-danger {
    background-color: #f15e48;
    color: #fff
}

.tag:not(body).is-yellow {
    background-color: #fbc139;
    color: rgba(0, 0, 0, .7)
}

.tag:not(body).is-medium {
    font-size: 1rem
}

.tag:not(body).is-large {
    font-size: 1.25rem
}

.tag:not(body) .icon:first-child:not(:last-child) {
    margin-left: -.375em;
    margin-right: .1875em
}

.tag:not(body) .icon:last-child:not(:first-child) {
    margin-left: .1875em;
    margin-right: -.375em
}

.tag:not(body) .icon:first-child:last-child {
    margin-left: -.375em;
    margin-right: -.375em
}

.tag:not(body).is-delete {
    margin-left: 1px;
    padding: 0;
    position: relative;
    width: 2em
}

.tag:not(body).is-delete::after,
.tag:not(body).is-delete::before {
    background-color: currentColor;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center
}

.tag:not(body).is-delete::before {
    height: 1px;
    width: 50%
}

.tag:not(body).is-delete::after {
    height: 50%;
    width: 1px
}

.tag:not(body).is-delete:focus,
.tag:not(body).is-delete:hover {
    background-color: #e8e8e8
}

.tag:not(body).is-delete:active {
    background-color: #dbdbdb
}

.tag:not(body).is-rounded {
    border-radius: 290486px
}

a.tag:hover {
    text-decoration: underline
}

.subtitle,
.title {
    word-break: break-word
}

.subtitle em,
.subtitle span,
.title em,
.title span {
    font-weight: inherit
}

.subtitle sub,
.title sub {
    font-size: .75em
}

.subtitle sup,
.title sup {
    font-size: .75em
}

.subtitle .tag,
.title .tag {
    vertical-align: middle
}

.title {
    color: #363636;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.125
}

.title strong {
    color: inherit;
    font-weight: inherit
}

.title+.highlight {
    margin-top: -.75rem
}

.title:not(.is-spaced)+.subtitle {
    margin-top: -1.25rem
}

.title.is-1 {
    font-size: 3rem
}

.title.is-2 {
    font-size: 2.5rem
}

.title.is-3 {
    font-size: 2rem
}

.title.is-4 {
    font-size: 1.5rem
}

.title.is-5 {
    font-size: 1.25rem
}

.title.is-6 {
    font-size: 1rem
}

.title.is-7 {
    font-size: .75rem
}

.subtitle {
    color: #4a4a4a;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.25
}

.subtitle strong {
    color: #363636;
    font-weight: 600
}

.subtitle:not(.is-spaced)+.title {
    margin-top: -1.25rem
}

.subtitle.is-1 {
    font-size: 3rem
}

.subtitle.is-2 {
    font-size: 2.5rem
}

.subtitle.is-3 {
    font-size: 2rem
}

.subtitle.is-4 {
    font-size: 1.5rem
}

.subtitle.is-5 {
    font-size: 1.25rem
}

.subtitle.is-6 {
    font-size: 1rem
}

.subtitle.is-7 {
    font-size: .75rem
}

.heading {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase
}

.highlight {
    font-weight: 400;
    max-width: 100%;
    overflow: hidden;
    padding: 0
}

.highlight pre {
    overflow: auto;
    max-width: 100%
}

.number {
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 290486px;
    display: inline-flex;
    font-size: 1.25rem;
    height: 2em;
    justify-content: center;
    margin-right: 1.5rem;
    min-width: 2.5em;
    padding: .25rem .5rem;
    text-align: center;
    vertical-align: top
}

.breadcrumb {
    font-size: 1rem;
    white-space: nowrap
}

.breadcrumb a {
    align-items: center;
    color: #0383de;
    display: flex;
    justify-content: center;
    padding: 0 .75em
}

.breadcrumb a:hover {
    color: #363636
}

.breadcrumb li {
    align-items: center;
    display: flex
}

.breadcrumb li:first-child a {
    padding-left: 0
}

.breadcrumb li.is-active a {
    color: #363636;
    cursor: default;
    pointer-events: none
}

.breadcrumb li+li::before {
    color: #b5b5b5;
    content: "/"
}

.breadcrumb ol,
.breadcrumb ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.breadcrumb .icon:first-child {
    margin-right: .5em
}

.breadcrumb .icon:last-child {
    margin-left: .5em
}

.breadcrumb.is-centered ol,
.breadcrumb.is-centered ul {
    justify-content: center
}

.breadcrumb.is-right ol,
.breadcrumb.is-right ul {
    justify-content: flex-end
}

.breadcrumb.is-small {
    font-size: .75rem
}

.breadcrumb.is-medium {
    font-size: 1.25rem
}

.breadcrumb.is-large {
    font-size: 1.5rem
}

.breadcrumb.has-arrow-separator li+li::before {
    content: "→"
}

.breadcrumb.has-bullet-separator li+li::before {
    content: "•"
}

.breadcrumb.has-dot-separator li+li::before {
    content: "·"
}

.breadcrumb.has-succeeds-separator li+li::before {
    content: "≻"
}

.card {
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .1);
    color: #4a4a4a;
    max-width: 100%;
    position: relative
}

.card-header {
    background-color: none;
    align-items: stretch;
    box-shadow: 0 1px 2px rgba(10, 10, 10, .1);
    display: flex
}

.card-header-title {
    align-items: center;
    color: #363636;
    display: flex;
    flex-grow: 1;
    font-weight: 700;
    padding: .75rem
}

.card-header-title.is-centered {
    justify-content: center
}

.card-header-icon {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: .75rem
}

.card-image {
    display: block;
    position: relative
}

.card-content {
    background-color: none;
    padding: 1.5rem
}

.card-footer {
    background-color: none;
    border-top: 1px solid #e5e5e5;
    align-items: stretch;
    display: flex
}

.card-footer-item {
    align-items: center;
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: center;
    padding: .75rem
}

.card-footer-item:not(:last-child) {
    border-right: 1px solid #e5e5e5
}

.card .media:not(:last-child) {
    margin-bottom: .75rem
}

.dropdown {
    display: inline-flex;
    position: relative;
    vertical-align: top
}

.dropdown.is-active .dropdown-menu,
.dropdown.is-hoverable:hover .dropdown-menu {
    display: block
}

.dropdown.is-right .dropdown-menu {
    left: auto;
    right: 0
}

.dropdown.is-up .dropdown-menu {
    bottom: 100%;
    padding-bottom: 4px;
    padding-top: initial;
    top: auto
}

.dropdown-menu {
    display: none;
    left: 0;
    min-width: 12rem;
    padding-top: 4px;
    position: absolute;
    top: 100%;
    z-index: 20
}

.dropdown-content {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .1);
    padding-bottom: .5rem;
    padding-top: .5rem
}

.dropdown .dropdown-menu .has-link a,
.dropdown-item {
    color: #4a4a4a;
    display: block;
    font-size: .875rem;
    line-height: 1.5;
    padding: .375rem 1rem;
    position: relative
}

.dropdown .dropdown-menu .has-link a,
a.dropdown-item {
    padding-right: 3rem;
    white-space: nowrap
}

.dropdown .dropdown-menu .has-link a:hover,
a.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #0a0a0a
}

.dropdown .dropdown-menu .has-link a.is-active,
a.dropdown-item.is-active {
    background-color: #0383de;
    color: #fff
}

.dropdown-divider {
    background-color: #e5e5e5;
    border: none;
    display: block;
    height: 1px;
    margin: .5rem 0
}

.level {
    align-items: center;
    justify-content: space-between
}

.level code {
    border-radius: 2px
}

.level img {
    display: inline-block;
    vertical-align: top
}

.level.is-mobile {
    display: flex
}

.level.is-mobile .level-left,
.level.is-mobile .level-right {
    display: flex
}

.level.is-mobile .level-left+.level-right {
    margin-top: 0
}

.level.is-mobile .level-item {
    margin-right: .75rem
}

.level.is-mobile .level-item:not(:last-child) {
    margin-bottom: 0
}

.level.is-mobile .level-item:not(.is-narrow) {
    flex-grow: 1
}

@media screen and (min-width:769px),
print {
    .level {
        display: flex
    }
    .level>.level-item:not(.is-narrow) {
        flex-grow: 1
    }
}

.level-item {
    align-items: center;
    display: flex;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center
}

.level-item .subtitle,
.level-item .title {
    margin-bottom: 0
}

@media screen and (max-width:768px) {
    .level-item:not(: last-child) {
        margin-bottom: .75rem
    }
}

.level-left,
.level-right {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0
}

.level-left .level-item.is-flexible,
.level-right .level-item.is-flexible {
    flex-grow: 1
}

@media screen and (min-width:769px),
print {
    .level-left .level-item:not(: last-child), .level-right .level-item:not(: last-child) {
        margin-right: .75rem
    }
}

.level-left {
    align-items: center;
    justify-content: flex-start
}

@media screen and (max-width:768px) {
    .level-left+.level-right {
        margin-top: 1.5rem
    }
}

@media screen and (min-width:769px),
print {
    .level-left {
        display: flex
    }
}

.level-right {
    align-items: center;
    justify-content: flex-end
}

@media screen and (min-width:769px),
print {
    .level-right {
        display: flex
    }
}

.media {
    align-items: flex-start;
    display: flex;
    text-align: left
}

.media .content:not(:last-child) {
    margin-bottom: .75rem
}

.media .media {
    border-top: 1px solid rgba(229, 229, 229, .5);
    display: flex;
    padding-top: .75rem
}

.media .media .content:not(:last-child),
.media .media .control:not(:last-child) {
    margin-bottom: .5rem
}

.media .media .media {
    padding-top: .5rem
}

.media .media .media+.media {
    margin-top: .5rem
}

.media+.media {
    border-top: 1px solid rgba(229, 229, 229, .5);
    margin-top: 1rem;
    padding-top: 1rem
}

.media.is-large+.media {
    margin-top: 1.5rem;
    padding-top: 1.5rem
}

.media-left,
.media-right {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0
}

.media-left {
    margin-right: 1rem
}

.media-right {
    margin-left: 1rem
}

.media-content {
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left
}

.menu {
    font-size: 1rem
}

.menu.is-small {
    font-size: .75rem
}

.menu.is-medium {
    font-size: 1.25rem
}

.menu.is-large {
    font-size: 1.5rem
}

.menu-list {
    line-height: 1.25
}

.menu-list a {
    border-radius: 2px;
    color: #4a4a4a;
    display: block;
    padding: .5em .75em
}

.menu-list a:hover {
    background-color: #f5f5f5;
    color: #363636
}

.menu-list a.is-active {
    background-color: #0383de;
    color: #fff
}

.menu-list li ul {
    border-left: 1px solid #e5e5e5;
    margin: .75em;
    padding-left: .75em
}

.menu-label {
    color: #7a7a7a;
    font-size: .75em;
    letter-spacing: .1em;
    text-transform: uppercase
}

.menu-label:not(:first-child) {
    margin-top: 1em
}

.menu-label:not(:last-child) {
    margin-bottom: 1em
}

.message {
    background-color: #f5f5f5;
    border-radius: 2px;
    font-size: 1rem
}

.message strong {
    color: currentColor
}

.message a:not(.button):not(.tag) {
    color: currentColor;
    text-decoration: underline
}

.message.is-small {
    font-size: .75rem
}

.message.is-medium {
    font-size: 1.25rem
}

.message.is-large {
    font-size: 1.5rem
}

.message.is-white {
    background-color: #fff
}

.message.is-white .message-header {
    background-color: #fff;
    color: #0a0a0a
}

.message.is-white .message-body {
    border-color: #fff;
    color: #4d4d4d
}

.message.is-black {
    background-color: #fafafa
}

.message.is-black .message-header {
    background-color: #0a0a0a;
    color: #fff
}

.message.is-black .message-body {
    border-color: #0a0a0a;
    color: #0a0a0a
}

.message.is-light {
    background-color: #fafafa
}

.message.is-light .message-header {
    background-color: #eee;
    color: rgba(0, 0, 0, .7)
}

.message.is-light .message-body {
    border-color: #eee;
    color: #515151
}

.message.is-dark {
    background-color: #f9fafb
}

.message.is-dark .message-header {
    background-color: #90a2ab;
    color: #fff
}

.message.is-dark .message-body {
    border-color: #90a2ab;
    color: #525455
}

.message.is-primary {
    background-color: #f5fcff
}

.message.is-primary .message-header {
    background-color: #1fb6ff;
    color: #fff
}

.message.is-primary .message-body {
    border-color: #1fb6ff;
    color: #085072
}

.message.is-info {
    background-color: #f7fcfd
}

.message.is-info .message-header {
    background-color: #5bc0de;
    color: #fff
}

.message.is-info .message-body {
    border-color: #5bc0de;
    color: #205464
}

.message.is-success {
    background-color: #f8fcf8
}

.message.is-success .message-header {
    background-color: #5cb85c;
    color: #fff
}

.message.is-success .message-body {
    border-color: #5cb85c;
    color: #2d4d2d
}

.message.is-warning {
    background-color: #fefbf6
}

.message.is-warning .message-header {
    background-color: #f0ad4e;
    color: #fff
}

.message.is-warning .message-body {
    border-color: #f0ad4e;
    color: #684514
}

.message.is-danger {
    background-color: #fef7f6
}

.message.is-danger .message-header {
    background-color: #f15e48;
    color: #fff
}

.message.is-danger .message-body {
    border-color: #f15e48;
    color: #b12c18
}

.message.is-yellow {
    background-color: #fffcf5
}

.message.is-yellow .message-header {
    background-color: #fbc139;
    color: rgba(0, 0, 0, .7)
}

.message.is-yellow .message-body {
    border-color: #fbc139;
    color: #483509
}

.message-header {
    align-items: center;
    background-color: #4a4a4a;
    border-radius: 2px 2px 0 0;
    color: #fff;
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    line-height: 1.25;
    padding: .75em 1em;
    position: relative
}

.message-header .delete {
    flex-grow: 0;
    flex-shrink: 0;
    margin-left: .75em
}

.message-header+.message-body {
    border-width: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.message-body {
    border-color: #e5e5e5;
    border-radius: 2px;
    border-style: solid;
    border-width: 0 0 0 4px;
    color: #4a4a4a;
    padding: 1.25em 1.5em
}

.message-body code,
.message-body pre {
    background-color: #fff
}

.message-body pre code {
    background-color: transparent
}

.modal {
    align-items: center;
    display: none;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    z-index: 40
}

.modal.is-active {
    display: flex
}

.modal-background {
    background-color: rgba(10, 10, 10, .6)
}

.modal-card,
.modal-content {
    margin: 0 20px;
    max-height: calc(100vh - 160px);
    overflow: auto;
    position: relative;
    width: 100%
}

@media screen and (min-width:769px),
print {
    .modal-card,
    .modal-content {
        margin: 0 auto;
        max-height: calc(100vh - 40px);
        width: 640px
    }
}

.modal-close {
    background: 0 0;
    height: 48px;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 48px
}

.modal-card {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
    overflow: hidden
}

.modal-card-foot,
.modal-card-head {
    align-items: center;
    background-color: #fff;
    display: flex;
    flex-shrink: 0;
    justify-content: flex-start;
    padding: 15px;
    position: relative
}

.modal-card-head {
    border-bottom: 1px solid #e5e5e5;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.modal-card-title {
    color: #363636;
    flex-grow: 1;
    flex-shrink: 0;
    font-size: 1.7rem;
    line-height: 3.3rem
}

.modal-card-foot {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 1px solid #e5e5e5
}

.modal-card-foot .button:not(:last-child) {
    margin-right: 10px
}

.modal-card-body {
    -webkit-overflow-scrolling: touch;
    background-color: #f6f7f8;
    flex-grow: 1;
    flex-shrink: 1;
    overflow: auto;
    padding: 15px
}

.pagination {
    font-size: 1rem;
    margin: -.25rem
}

.pagination.is-small {
    font-size: .75rem
}

.pagination.is-medium {
    font-size: 1.25rem
}

.pagination.is-large {
    font-size: 1.5rem
}

.pagination.is-rounded .pagination-next,
.pagination.is-rounded .pagination-previous {
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 290486px
}

.pagination.is-rounded .pagination-link {
    border-radius: 290486px
}

.pagination,
.pagination-list {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center
}

.pagination-ellipsis,
.pagination-link,
.pagination-next,
.pagination-previous {
    font-size: 1em;
    padding-left: .5em;
    padding-right: .5em;
    justify-content: center;
    margin: .25rem;
    text-align: center
}

.pagination-link,
.pagination-next,
.pagination-previous {
    border-color: #dbdbdb;
    color: #363636;
    min-width: 2.25em
}

.pagination-link:hover,
.pagination-next:hover,
.pagination-previous:hover {
    border-color: #b5b5b5;
    color: #363636
}

.pagination-link:focus,
.pagination-next:focus,
.pagination-previous:focus {
    border-color: #0383de
}

.pagination-link:active,
.pagination-next:active,
.pagination-previous:active {
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, .2)
}

.pagination-link[disabled],
.pagination-next[disabled],
.pagination-previous[disabled] {
    background-color: #dbdbdb;
    border-color: #dbdbdb;
    box-shadow: none;
    color: #7a7a7a;
    opacity: .5
}

.pagination-next,
.pagination-previous {
    padding-left: .75em;
    padding-right: .75em;
    white-space: nowrap
}

.pagination-link.is-current {
    background-color: #0383de;
    border-color: #0383de;
    color: #fff
}

.pagination-ellipsis {
    color: #b5b5b5;
    pointer-events: none
}

.pagination-list {
    flex-wrap: wrap
}

@media screen and (max-width:768px) {
    .pagination {
        flex-wrap: wrap
    }
    .pagination-next,
    .pagination-previous {
        flex-grow: 1;
        flex-shrink: 1
    }
    .pagination-list li {
        flex-grow: 1;
        flex-shrink: 1
    }
}

@media screen and (min-width:769px),
print {
    .pagination-list {
        flex-grow: 1;
        flex-shrink: 1;
        justify-content: flex-start;
        order: 1
    }
    .pagination-previous {
        order: 2
    }
    .pagination-next {
        order: 3
    }
    .pagination {
        justify-content: space-between
    }
    .pagination.is-centered .pagination-previous {
        order: 1
    }
    .pagination.is-centered .pagination-list {
        justify-content: center;
        order: 2
    }
    .pagination.is-centered .pagination-next {
        order: 3
    }
    .pagination.is-right .pagination-previous {
        order: 1
    }
    .pagination.is-right .pagination-next {
        order: 2
    }
    .pagination.is-right .pagination-list {
        justify-content: flex-end;
        order: 3
    }
}

.panel {
    font-size: 1rem
}

.panel:not(:last-child) {
    margin-bottom: 1.5rem
}

.panel-block,
.panel-heading,
.panel-tabs {
    border-bottom: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5
}

.panel-block:first-child,
.panel-heading:first-child,
.panel-tabs:first-child {
    border-top: 1px solid #e5e5e5
}

.panel-heading {
    background-color: #f5f5f5;
    border-radius: 2px 2px 0 0;
    color: #363636;
    font-size: 1.25em;
    font-weight: 300;
    line-height: 1.25;
    padding: .5em .75em
}

.panel-tabs {
    align-items: flex-end;
    display: flex;
    font-size: .875em;
    justify-content: center
}

.panel-tabs a {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: -1px;
    padding: .5em
}

.panel-tabs a.is-active {
    border-bottom-color: #4a4a4a;
    color: #363636
}

.panel-list a {
    color: #4a4a4a
}

.panel-list a:hover {
    color: #0383de
}

.panel-block {
    align-items: center;
    color: #363636;
    display: flex;
    justify-content: flex-start;
    padding: .5em .75em
}

.panel-block input[type=checkbox] {
    margin-right: .75em
}

.panel-block>.control {
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%
}

.panel-block.is-wrapped {
    flex-wrap: wrap
}

.panel-block.is-active {
    border-left-color: #0383de;
    color: #363636
}

.panel-block.is-active .panel-icon {
    color: #0383de
}

a.panel-block,
label.panel-block {
    cursor: pointer
}

a.panel-block:hover,
label.panel-block:hover {
    background-color: #f5f5f5
}

.panel-icon {
    display: inline-block;
    font-size: 14px;
    height: 1em;
    line-height: 1em;
    text-align: center;
    vertical-align: top;
    width: 1em;
    color: #7a7a7a;
    margin-right: .75em
}

.panel-icon .fa {
    font-size: inherit;
    line-height: inherit
}

.tabs {
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    display: flex;
    font-size: 1rem;
    justify-content: space-between;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap
}

.tabs a {
    align-items: center;
    border-bottom-color: #e5e5e5;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    color: #4a4a4a;
    display: flex;
    justify-content: center;
    margin-bottom: -1px;
    padding: .5em 1em;
    vertical-align: top
}

.tabs a:hover {
    border-bottom-color: #363636;
    color: #363636
}

.tabs li {
    display: block
}

.tabs li.is-active a {
    border-bottom-color: #0383de;
    color: #0383de
}

.tabs ul {
    align-items: center;
    border-bottom-color: #e5e5e5;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: flex-start
}

.tabs ul.is-left {
    padding-right: .75em
}

.tabs ul.is-center {
    flex: none;
    justify-content: center;
    padding-left: .75em;
    padding-right: .75em
}

.tabs ul.is-right {
    justify-content: flex-end;
    padding-left: .75em
}

.tabs .icon:first-child {
    margin-right: .5em
}

.tabs .icon:last-child {
    margin-left: .5em
}

.tabs.is-centered ul {
    justify-content: center
}

.tabs.is-right ul {
    justify-content: flex-end
}

.tabs.is-boxed a {
    border: 1px solid transparent;
    border-radius: 2px 2px 0 0
}

.tabs.is-boxed a:hover {
    background-color: #f5f5f5;
    border-bottom-color: #e5e5e5
}

.tabs.is-boxed li.is-active a {
    background-color: #fff;
    border-color: #e5e5e5;
    border-bottom-color: transparent!important
}

.tabs.is-fullwidth li {
    flex-grow: 1;
    flex-shrink: 0
}

.tabs.is-toggle a {
    border-color: #e5e5e5;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 0;
    position: relative
}

.tabs.is-toggle a:hover {
    background-color: #f5f5f5;
    border-color: #b5b5b5;
    z-index: 2
}

.tabs.is-toggle li+li {
    margin-left: -1px
}

.tabs.is-toggle li:first-child a {
    border-radius: 2px 0 0 2px
}

.tabs.is-toggle li:last-child a {
    border-radius: 0 2px 2px 0
}

.tabs.is-toggle li.is-active a {
    background-color: #0383de;
    border-color: #0383de;
    color: #fff;
    z-index: 1
}

.tabs.is-toggle ul {
    border-bottom: none
}

.tabs.is-toggle.is-toggle-rounded li:first-child a {
    border-bottom-left-radius: 290486px;
    border-top-left-radius: 290486px;
    padding-left: 1.25em
}

.tabs.is-toggle.is-toggle-rounded li:last-child a {
    border-bottom-right-radius: 290486px;
    border-top-right-radius: 290486px;
    padding-right: 1.25em
}

.tabs.is-small {
    font-size: .75rem
}

.tabs.is-medium {
    font-size: 1.25rem
}

.tabs.is-large {
    font-size: 1.5rem
}

.is-noscroll {
    position: fixed;
    overflow-y: hidden;
    width: 100%;
    bottom: 0
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 150ms ease-out
}

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

.zoom-in-enter-active,
.zoom-in-leave-active {
    transition: opacity 150ms ease-out
}

.zoom-in-enter-active .animation-content,
.zoom-in-leave-active .animation-content {
    transition: transform 150ms ease-out
}

.zoom-in-enter,
.zoom-in-leave-active {
    opacity: 0
}

.zoom-in-enter .animation-content,
.zoom-in-leave-active .animation-content {
    transform: scale(.95)
}

.zoom-out-enter-active,
.zoom-out-leave-active {
    transition: opacity 150ms ease-out
}

.zoom-out-enter-active .animation-content,
.zoom-out-leave-active .animation-content {
    transition: transform 150ms ease-out
}

.zoom-out-enter,
.zoom-out-leave-active {
    opacity: 0
}

.zoom-out-enter .animation-content,
.zoom-out-leave-active .animation-content {
    transform: scale(1.05)
}

.slide-next-enter-active,
.slide-next-leave-active,
.slide-prev-enter-active,
.slide-prev-leave-active {
    transition: transform 250ms cubic-bezier(.785, .135, .15, .86)
}

.slide-next-enter,
.slide-prev-leave-to {
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    width: 100%
}

.slide-next-leave-to,
.slide-prev-enter {
    transform: translate3d(100%, 0, 0);
    position: absolute;
    width: 100%
}

.autocomplete {
    position: relative
}

.autocomplete .dropdown-menu {
    display: block;
    min-width: 100%
}

.autocomplete .dropdown-menu.is-opened-top {
    top: auto;
    bottom: 100%
}

.autocomplete .dropdown-content {
    overflow: auto;
    max-height: 200px
}

.autocomplete .dropdown .dropdown-menu .has-link a.is-hovered,
.autocomplete .dropdown-item.is-hovered,
.dropdown .dropdown-menu .has-link .autocomplete a.is-hovered {
    background: #f5f5f5;
    color: #0a0a0a
}

.autocomplete .dropdown .dropdown-menu .has-link a.is-disabled,
.autocomplete .dropdown-item.is-disabled,
.dropdown .dropdown-menu .has-link .autocomplete a.is-disabled {
    opacity: .5;
    cursor: not-allowed
}

.autocomplete.is-small {
    border-radius: 2px;
    font-size: .75rem
}

.autocomplete.is-medium {
    font-size: 1.25rem
}

.autocomplete.is-large {
    font-size: 1.5rem
}

.b-checkbox.checkbox {
    outline: 0;
    display: inline-flex;
    align-items: center
}

.b-checkbox.checkbox+.checkbox {
    margin-left: .5em
}

.b-checkbox.checkbox input[type=checkbox] {
    display: none
}

.b-checkbox.checkbox input[type=checkbox]+.check {
    width: 1.25em;
    height: 1.25em;
    flex-shrink: 0;
    border-radius: 2px;
    border: 2px solid #7a7a7a;
    transition: background 150ms ease-out
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check {
    background: #90a2ab url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #90a2ab
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-white {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%230a0a0a' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #fff
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-black {
    background: #0a0a0a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:white' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #0a0a0a
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-light {
    background: #eee url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:rgba(0, 0, 0, 0.7)' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #eee
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-dark {
    background: #90a2ab url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #90a2ab
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-primary {
    background: #1fb6ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #1fb6ff
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-info {
    background: #5bc0de url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #5bc0de
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-success {
    background: #5cb85c url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #5cb85c
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-warning {
    background: #f0ad4e url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #f0ad4e
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-danger {
    background: #f15e48 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #f15e48
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check.is-yellow {
    background: #fbc139 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:rgba(0, 0, 0, 0.7)' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    border-color: #fbc139
}

.b-checkbox.checkbox .control-label {
    padding-left: .5em
}

.b-checkbox.checkbox[disabled] {
    opacity: .5
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check {
    border-color: #90a2ab
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-white {
    border-color: #fff
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-black {
    border-color: #0a0a0a
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-light {
    border-color: #eee
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-dark {
    border-color: #90a2ab
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-primary {
    border-color: #1fb6ff
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-info {
    border-color: #5bc0de
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-success {
    border-color: #5cb85c
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-warning {
    border-color: #f0ad4e
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-danger {
    border-color: #f15e48
}

.b-checkbox.checkbox:hover input[type=checkbox]+.check.is-yellow {
    border-color: #fbc139
}

.b-checkbox.checkbox:focus input[type=checkbox]+.check {
    box-shadow: 0 0 .5em rgba(122, 122, 122, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check {
    box-shadow: 0 0 .5em rgba(144, 162, 171, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-white {
    box-shadow: 0 0 .5em rgba(255, 255, 255, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-black {
    box-shadow: 0 0 .5em rgba(10, 10, 10, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-light {
    box-shadow: 0 0 .5em rgba(238, 238, 238, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-dark {
    box-shadow: 0 0 .5em rgba(144, 162, 171, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-primary {
    box-shadow: 0 0 .5em rgba(31, 182, 255, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-info {
    box-shadow: 0 0 .5em rgba(91, 192, 222, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-success {
    box-shadow: 0 0 .5em rgba(92, 184, 92, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-warning {
    box-shadow: 0 0 .5em rgba(240, 173, 78, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-danger {
    box-shadow: 0 0 .5em rgba(241, 94, 72, .8)
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check.is-yellow {
    box-shadow: 0 0 .5em rgba(251, 193, 57, .8)
}

.b-checkbox.checkbox.is-small {
    border-radius: 2px;
    font-size: .75rem
}

.b-checkbox.checkbox.is-medium {
    font-size: 1.25rem
}

.b-checkbox.checkbox.is-large {
    font-size: 1.5rem
}

.collapse .collapse-trigger {
    display: inline;
    cursor: pointer
}

.collapse .collapse-content {
    display: inherit
}

.datepicker {
    font-size: .875rem
}

.datepicker .dropdown,
.datepicker .dropdown-trigger {
    width: 100%
}

.datepicker .dropdown .dropdown-menu .has-link a,
.datepicker .dropdown-item,
.dropdown .dropdown-menu .has-link .datepicker a {
    font-size: inherit
}

.datepicker .datepicker-header {
    padding-bottom: .875rem;
    margin-bottom: .875rem;
    border-bottom: 1px solid #dbdbdb
}

.datepicker .datepicker-footer {
    padding-top: .875rem;
    border-top: 1px solid #dbdbdb
}

.datepicker .datepicker-table {
    display: table;
    margin: 0 auto .875rem auto
}

.datepicker .datepicker-table .datepicker-cell {
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    border-radius: 2px;
    padding: .5rem .75rem
}

.datepicker .datepicker-table .datepicker-header {
    display: table-header-group
}

.datepicker .datepicker-table .datepicker-header .datepicker-cell {
    color: #7a7a7a;
    font-weight: 600
}

.datepicker .datepicker-table .datepicker-body {
    display: table-row-group
}

.datepicker .datepicker-table .datepicker-body .datepicker-row {
    display: table-row
}

.datepicker .datepicker-table .datepicker-body .datepicker-row .datepicker-cell.is-unselectable {
    color: #b5b5b5
}

.datepicker .datepicker-table .datepicker-body .datepicker-row .datepicker-cell.is-today {
    border: solid 1px rgba(31, 182, 255, .5)
}

.datepicker .datepicker-table .datepicker-body .datepicker-row .datepicker-cell.is-selectable {
    color: #4a4a4a
}

.datepicker .datepicker-table .datepicker-body .datepicker-row .datepicker-cell.is-selectable:focus:not(.is-selected),
.datepicker .datepicker-table .datepicker-body .datepicker-row .datepicker-cell.is-selectable:hover:not(.is-selected) {
    background-color: #f5f5f5;
    color: #0a0a0a;
    cursor: pointer
}

.datepicker .datepicker-table .datepicker-body .datepicker-row .datepicker-cell.is-selected {
    background-color: #1fb6ff;
    color: #fff
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell {
    padding: .3rem .75rem .75rem
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event {
    position: relative
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events {
    bottom: .425rem;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 0 .35rem;
    position: absolute;
    width: 100%
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-white {
    background-color: #fff
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-black {
    background-color: #0a0a0a
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-light {
    background-color: #eee
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-dark {
    background-color: #90a2ab
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-primary {
    background-color: #1fb6ff
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-info {
    background-color: #5bc0de
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-success {
    background-color: #5cb85c
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-warning {
    background-color: #f0ad4e
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-danger {
    background-color: #f15e48
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-yellow {
    background-color: #fbc139
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event.dots .event {
    border-radius: 50%;
    height: .35em;
    margin: 0 .1em;
    width: .35em
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event.bars .event {
    height: .25em;
    width: 100%
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.is-selected {
    overflow: hidden
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.is-selected .events .event.is-primary {
    background-color: #6ccfff
}

.datepicker.is-small {
    border-radius: 2px;
    font-size: .75rem
}

.datepicker.is-medium {
    font-size: 1.25rem
}

.datepicker.is-large {
    font-size: 1.5rem
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .datepicker .datepicker-table .datepicker-cell {
        padding: .75rem 1rem
    }
}

@media screen and (max-width:768px) {
    .datepicker .datepicker-table .datepicker-cell {
        padding: .25rem .5rem
    }
}

.dialog .modal-card {
    max-width: 460px;
    width: auto
}

.dialog .modal-card .modal-card-head {
    font-size: 1.25rem;
    font-weight: 600
}

.dialog .modal-card .modal-card-body .field {
    margin-top: 16px
}

.dialog .modal-card .modal-card-body.is-titleless {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.dialog .modal-card .modal-card-foot {
    justify-content: flex-end
}

.dialog .modal-card .modal-card-foot .button {
    display: inline;
    min-width: 5em;
    font-weight: 600
}

@media screen and (min-width:769px),
print {
    .dialog .modal-card {
        min-width: 320px
    }
}

.dialog.is-small .button,
.dialog.is-small .input,
.dialog.is-small .modal-card,
.dialog.is-small .taginput .taginput-container.is-focusable,
.taginput .dialog.is-small .taginput-container.is-focusable {
    border-radius: 2px;
    font-size: .75rem
}

.dialog.is-medium .button,
.dialog.is-medium .input,
.dialog.is-medium .modal-card,
.dialog.is-medium .taginput .taginput-container.is-focusable,
.taginput .dialog.is-medium .taginput-container.is-focusable {
    font-size: 1.25rem
}

.dialog.is-large .button,
.dialog.is-large .input,
.dialog.is-large .modal-card,
.dialog.is-large .taginput .taginput-container.is-focusable,
.taginput .dialog.is-large .taginput-container.is-focusable {
    font-size: 1.5rem
}

.dropdown+.dropdown {
    margin-left: .5em
}

.dropdown .background {
    position: fixed;
    background-color: rgba(10, 10, 10, .86);
    z-index: 10;
    cursor: pointer
}

@media screen and (min-width:1088px) {
    .dropdown .background {
        display: none
    }
}

.dropdown .dropdown-menu .dropdown-item.is-disabled,
.dropdown .dropdown-menu .has-link a.is-disabled {
    cursor: not-allowed
}

.dropdown .dropdown-menu .dropdown-item.is-disabled:hover,
.dropdown .dropdown-menu .has-link a.is-disabled:hover {
    background: inherit;
    color: inherit
}

.dropdown .dropdown-menu .has-link a {
    padding-right: 3rem;
    white-space: nowrap
}

.dropdown:not(.is-disabled) .dropdown-menu .dropdown-item.is-disabled,
.dropdown:not(.is-disabled) .dropdown-menu .has-link a.is-disabled {
    opacity: .5
}

.dropdown .navbar-item {
    height: 100%
}

.dropdown.is-disabled {
    opacity: .5;
    cursor: not-allowed
}

.dropdown.is-disabled .dropdown-trigger {
    pointer-events: none
}

.dropdown.is-inline .dropdown-menu {
    position: static;
    display: inline-block;
    padding: 0
}

.dropdown.is-top-right .dropdown-menu {
    top: auto;
    bottom: 100%
}

.dropdown.is-top-left .dropdown-menu {
    top: auto;
    bottom: 100%;
    right: 0;
    left: auto
}

.dropdown.is-bottom-left .dropdown-menu {
    right: 0;
    left: auto
}

@media screen and (max-width:1087px) {
    .dropdown.is-mobile-modal .dropdown-menu {
        position: fixed;
        width: calc(100vw - 40px);
        max-width: 460px;
        max-height: calc(100vh - 120px);
        top: 25%!important;
        left: 50%!important;
        bottom: auto!important;
        right: auto!important;
        transform: translate3d(-50%, -25%, 0);
        white-space: normal;
        overflow-y: auto
    }
    .dropdown.is-mobile-modal .dropdown-menu .dropdown-item,
    .dropdown.is-mobile-modal .dropdown-menu .has-link a {
        padding: 1rem 1.5rem
    }
}

.label {
    font-weight: 600
}

.field.is-grouped .field {
    flex-shrink: 0
}

.field.is-grouped .field+.field {
    margin-left: .75rem
}

.field.is-grouped .field.is-expanded {
    flex-grow: 1;
    flex-shrink: 1
}

.field.has-addons .control:first-child .control .button,
.field.has-addons .control:first-child .control .input,
.field.has-addons .control:first-child .control .select select,
.field.has-addons .control:first-child .control .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:first-child .control .taginput-container.is-focusable {
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px
}

.field.has-addons .control:last-child .control .button,
.field.has-addons .control:last-child .control .input,
.field.has-addons .control:last-child .control .select select,
.field.has-addons .control:last-child .control .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:last-child .control .taginput-container.is-focusable {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px
}

.field.has-addons .control .control .button,
.field.has-addons .control .control .input,
.field.has-addons .control .control .select select,
.field.has-addons .control .control .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control .control .taginput-container.is-focusable {
    border-radius: 0
}

.control .help.counter {
    float: right;
    margin-left: .5em
}

.control .icon.is-clickable {
    pointer-events: auto;
    cursor: pointer
}

.icon {
    cursor: inherit
}

.icon svg {
    background-color: transparent;
    fill: currentColor;
    stroke-width: 0;
    stroke: currentColor;
    pointer-events: none;
    width: 1.5rem;
    height: 1.5rem
}

.loading-overlay {
    align-items: center;
    display: none;
    justify-content: center;
    overflow: hidden;
    z-index: 999
}

.loading-overlay.is-active {
    display: flex
}

.loading-overlay.is-full-page {
    position: fixed
}

.loading-overlay.is-full-page .loading-icon:after {
    top: calc(50% - 2.5em);
    left: calc(50% - 2.5em);
    width: 5em;
    height: 5em
}

.loading-overlay .loading-background {
    background: #7f7f7f;
    background: rgba(255, 255, 255, .5)
}

.loading-overlay .loading-icon {
    position: relative
}

.loading-overlay .loading-icon:after {
    position: absolute;
    top: calc(50% - 1.5em);
    left: calc(50% - 1.5em);
    width: 3em;
    height: 3em;
    border-width: .25em
}

.message .media,
.notification .media {
    padding-top: 0;
    border: 0
}

.notification>.delete {
    right: .5rem!important;
    top: .5rem!important
}

.modal .animation-content {
    margin: 0 20px
}

.modal .animation-content .modal-card {
    margin: 0
}

@media screen and (max-width:768px) {
    .modal .animation-content {
        width: 100%
    }
}

.notices {
    position: fixed;
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2em;
    overflow: hidden;
    z-index: 1000;
    pointer-events: none
}

.notices .toast {
    display: inline-flex;
    animation-duration: 150ms;
    margin: .5em 0;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
    border-radius: 2em;
    padding: .75em 1.5em;
    pointer-events: auto;
    opacity: .92
}

.notices .toast.is-white {
    color: #0a0a0a;
    background: #fff
}

.notices .toast.is-black {
    color: #fff;
    background: #0a0a0a
}

.notices .toast.is-light {
    color: rgba(0, 0, 0, .7);
    background: #eee
}

.notices .toast.is-dark {
    color: #fff;
    background: #90a2ab
}

.notices .toast.is-primary {
    color: #fff;
    background: #1fb6ff
}

.notices .toast.is-info {
    color: #fff;
    background: #5bc0de
}

.notices .toast.is-success {
    color: #fff;
    background: #5cb85c
}

.notices .toast.is-warning {
    color: #fff;
    background: #f0ad4e
}

.notices .toast.is-danger {
    color: #fff;
    background: #f15e48
}

.notices .toast.is-yellow {
    color: rgba(0, 0, 0, .7);
    background: #fbc139
}

.notices .snackbar {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    animation-duration: 150ms;
    margin: .5em 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
    border-radius: 2px;
    pointer-events: auto;
    background: #363636;
    color: #fff;
    min-height: 3em
}

.notices .snackbar .text {
    padding: .5em 1em
}

.notices .snackbar .action {
    margin-left: auto;
    padding: .5em;
    padding-left: 0
}

.notices .snackbar .action .button {
    font-weight: 600;
    text-transform: uppercase
}

.notices .snackbar .action.is-white .button {
    color: #fff
}

.notices .snackbar .action.is-black .button {
    color: #0a0a0a
}

.notices .snackbar .action.is-light .button {
    color: #eee
}

.notices .snackbar .action.is-dark .button {
    color: #90a2ab
}

.notices .snackbar .action.is-primary .button {
    color: #1fb6ff
}

.notices .snackbar .action.is-info .button {
    color: #5bc0de
}

.notices .snackbar .action.is-success .button {
    color: #5cb85c
}

.notices .snackbar .action.is-warning .button {
    color: #f0ad4e
}

.notices .snackbar .action.is-danger .button {
    color: #f15e48
}

.notices .snackbar .action.is-yellow .button {
    color: #fbc139
}

@media screen and (max-width:768px) {
    .notices .snackbar {
        width: 100%;
        margin: 0;
        border-radius: 0
    }
}

@media screen and (min-width:769px),
print {
    .notices .snackbar {
        min-width: 350px;
        max-width: 600px;
        overflow: hidden
    }
}

.notices .snackbar.is-bottom,
.notices .snackbar.is-top,
.notices .toast.is-bottom,
.notices .toast.is-top {
    align-self: center
}

.notices .snackbar.is-bottom-right,
.notices .snackbar.is-top-right,
.notices .toast.is-bottom-right,
.notices .toast.is-top-right {
    align-self: flex-end
}

.notices .snackbar.is-bottom-left,
.notices .snackbar.is-top-left,
.notices .toast.is-bottom-left,
.notices .toast.is-top-left {
    align-self: flex-start
}

.notices .snackbar.is-toast,
.notices .toast.is-toast {
    opacity: .92
}

.notices.is-top {
    flex-direction: column
}

.notices.is-bottom {
    flex-direction: column-reverse
}

.notices.has-custom-container {
    position: absolute
}

@media screen and (max-width:768px) {
    .notices {
        padding: 0;
        position: fixed!important
    }
}

.pagination .pagination-next,
.pagination .pagination-previous {
    padding-left: .25em;
    padding-right: .25em
}

.pagination .pagination-next.is-disabled,
.pagination .pagination-previous.is-disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .5
}

.pagination.is-simple {
    justify-content: normal
}

.pagination .is-current {
    pointer-events: none;
    cursor: not-allowed
}

.panel .panel-heading.is-collapsible {
    cursor: pointer
}

.panel .panel-content {
    width: 100%
}

.b-radio.radio {
    outline: 0;
    display: inline-flex;
    align-items: center
}

.b-radio.radio+.radio {
    margin-left: .5em
}

.b-radio.radio input[type=radio] {
    display: none
}

.b-radio.radio input[type=radio]+.check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25em;
    height: 1.25em;
    border: 2px solid #7a7a7a;
    border-radius: 50%;
    transition: background 150ms ease-out
}

.b-radio.radio input[type=radio]+.check:before {
    content: "";
    border-radius: 50%;
    width: .625em;
    height: .625em;
    background: #1fb6ff;
    transform: scale(0);
    transition: transform 150ms ease-out
}

.b-radio.radio input[type=radio]+.check.is-white:before {
    background: #fff
}

.b-radio.radio input[type=radio]+.check.is-black:before {
    background: #0a0a0a
}

.b-radio.radio input[type=radio]+.check.is-light:before {
    background: #eee
}

.b-radio.radio input[type=radio]+.check.is-dark:before {
    background: #90a2ab
}

.b-radio.radio input[type=radio]+.check.is-primary:before {
    background: #1fb6ff
}

.b-radio.radio input[type=radio]+.check.is-info:before {
    background: #5bc0de
}

.b-radio.radio input[type=radio]+.check.is-success:before {
    background: #5cb85c
}

.b-radio.radio input[type=radio]+.check.is-warning:before {
    background: #f0ad4e
}

.b-radio.radio input[type=radio]+.check.is-danger:before {
    background: #f15e48
}

.b-radio.radio input[type=radio]+.check.is-yellow:before {
    background: #fbc139
}

.b-radio.radio input[type=radio]:checked+.check {
    border-color: #1fb6ff
}

.b-radio.radio input[type=radio]:checked+.check.is-white {
    border-color: #fff
}

.b-radio.radio input[type=radio]:checked+.check.is-black {
    border-color: #0a0a0a
}

.b-radio.radio input[type=radio]:checked+.check.is-light {
    border-color: #eee
}

.b-radio.radio input[type=radio]:checked+.check.is-dark {
    border-color: #90a2ab
}

.b-radio.radio input[type=radio]:checked+.check.is-primary {
    border-color: #1fb6ff
}

.b-radio.radio input[type=radio]:checked+.check.is-info {
    border-color: #5bc0de
}

.b-radio.radio input[type=radio]:checked+.check.is-success {
    border-color: #5cb85c
}

.b-radio.radio input[type=radio]:checked+.check.is-warning {
    border-color: #f0ad4e
}

.b-radio.radio input[type=radio]:checked+.check.is-danger {
    border-color: #f15e48
}

.b-radio.radio input[type=radio]:checked+.check.is-yellow {
    border-color: #fbc139
}

.b-radio.radio input[type=radio]:checked+.check:before {
    transform: scale(1)
}

.b-radio.radio .control-label {
    padding-left: .5em
}

.b-radio.radio[disabled] {
    opacity: .5
}

.b-radio.radio:hover input[type=radio]+.check {
    border-color: #1fb6ff
}

.b-radio.radio:hover input[type=radio]+.check.is-white {
    border-color: #fff
}

.b-radio.radio:hover input[type=radio]+.check.is-black {
    border-color: #0a0a0a
}

.b-radio.radio:hover input[type=radio]+.check.is-light {
    border-color: #eee
}

.b-radio.radio:hover input[type=radio]+.check.is-dark {
    border-color: #90a2ab
}

.b-radio.radio:hover input[type=radio]+.check.is-primary {
    border-color: #1fb6ff
}

.b-radio.radio:hover input[type=radio]+.check.is-info {
    border-color: #5bc0de
}

.b-radio.radio:hover input[type=radio]+.check.is-success {
    border-color: #5cb85c
}

.b-radio.radio:hover input[type=radio]+.check.is-warning {
    border-color: #f0ad4e
}

.b-radio.radio:hover input[type=radio]+.check.is-danger {
    border-color: #f15e48
}

.b-radio.radio:hover input[type=radio]+.check.is-yellow {
    border-color: #fbc139
}

.b-radio.radio:focus input[type=radio]+.check {
    box-shadow: 0 0 .5em rgba(122, 122, 122, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check {
    box-shadow: 0 0 .5em rgba(31, 182, 255, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-white {
    box-shadow: 0 0 .5em rgba(255, 255, 255, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-black {
    box-shadow: 0 0 .5em rgba(10, 10, 10, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-light {
    box-shadow: 0 0 .5em rgba(238, 238, 238, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-dark {
    box-shadow: 0 0 .5em rgba(144, 162, 171, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-primary {
    box-shadow: 0 0 .5em rgba(31, 182, 255, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-info {
    box-shadow: 0 0 .5em rgba(91, 192, 222, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-success {
    box-shadow: 0 0 .5em rgba(92, 184, 92, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-warning {
    box-shadow: 0 0 .5em rgba(240, 173, 78, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-danger {
    box-shadow: 0 0 .5em rgba(241, 94, 72, .8)
}

.b-radio.radio:focus input[type=radio]:checked+.check.is-yellow {
    box-shadow: 0 0 .5em rgba(251, 193, 57, .8)
}

.b-radio.radio.is-small {
    border-radius: 2px;
    font-size: .75rem
}

.b-radio.radio.is-medium {
    font-size: 1.25rem
}

.b-radio.radio.is-large {
    font-size: 1.5rem
}

.select select {
    padding-right: 2.5em
}

.select select option {
    color: #4a4a4a;
    padding: .25em .5em
}

.select select option:disabled {
    cursor: not-allowed;
    opacity: .5
}

.select select optgroup {
    color: #b5b5b5;
    font-weight: 400;
    font-style: normal;
    padding: .25em 0
}

.select.is-empty select {
    color: rgba(122, 122, 122, .7)
}

.table-wrapper .table {
    margin-bottom: 0
}

.table-wrapper:not(:last-child) {
    margin-bottom: 1.5rem
}

@media screen and (max-width:1087px) {
    .table-wrapper {
        overflow-x: auto
    }
}

.b-table {
    transition: opacity 86ms ease-out
}

@media screen and (min-width:769px),
print {
    .b-table .table-mobile-sort {
        display: none
    }
}

.b-table .icon {
    transition: transform 150ms ease-out, opacity 86ms ease-out
}

.b-table .icon.is-desc {
    transform: rotate(180deg)
}

.b-table .icon.is-expanded {
    transform: rotate(90deg)
}

.b-table .table {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 2px;
    border-collapse: separate
}

.b-table .table th {
    font-weight: 600
}

.b-table .table th .th-wrap {
    display: flex;
    align-items: center
}

.b-table .table th .th-wrap .icon {
    margin-left: .5rem;
    margin-right: 0;
    font-size: 1rem
}

.b-table .table th .th-wrap.is-numeric {
    flex-direction: row-reverse;
    text-align: right
}

.b-table .table th .th-wrap.is-numeric .icon {
    margin-left: 0;
    margin-right: .5rem
}

.b-table .table th .th-wrap.is-centered {
    justify-content: center;
    text-align: center
}

.b-table .table th.is-current-sort {
    border-color: #7a7a7a;
    font-weight: 700
}

.b-table .table th.is-sortable:hover {
    border-color: #7a7a7a
}

.b-table .table th.is-sortable,
.b-table .table th.is-sortable .th-wrap {
    cursor: pointer
}

.b-table .table tr.is-selected .checkbox input:checked+.check {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%231fb6ff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center
}

.b-table .table tr.is-selected .checkbox input+.check {
    border-color: #fff
}

.b-table .table tr.is-empty:hover {
    background-color: transparent
}

.b-table .table .chevron-cell {
    vertical-align: middle
}

.b-table .table .checkbox-cell {
    width: 40px
}

.b-table .table .checkbox-cell .checkbox {
    vertical-align: middle
}

.b-table .table .checkbox-cell .checkbox .check {
    transition: none
}

.b-table .table tr.detail {
    box-shadow: inset 0 1px 3px #dbdbdb;
    background: #fafafa
}

.b-table .table tr.detail .detail-container {
    padding: 1rem
}

.b-table .table:focus {
    border-color: #0383de;
    box-shadow: 0 0 0 .125em rgba(3, 131, 222, .25)
}

.b-table .table.is-bordered th.is-current-sort,
.b-table .table.is-bordered th.is-sortable:hover {
    border-color: #dbdbdb;
    background: #f5f5f5
}

@media screen and (max-width:768px) {
    .b-table .table.has-mobile-cards thead {
        display: none
    }
    .b-table .table.has-mobile-cards tfoot th {
        border: 0;
        display: inherit
    }
    .b-table .table.has-mobile-cards tr {
        box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .1);
        max-width: 100%;
        position: relative;
        display: block
    }
    .b-table .table.has-mobile-cards tr td {
        border: 0;
        display: inherit
    }
    .b-table .table.has-mobile-cards tr td:last-child {
        border-bottom: 0
    }
    .b-table .table.has-mobile-cards tr:not(:last-child) {
        margin-bottom: 1rem
    }
    .b-table .table.has-mobile-cards tr:not([class*=is-]) {
        background: inherit
    }
    .b-table .table.has-mobile-cards tr:not([class*=is-]):hover {
        background-color: inherit
    }
    .b-table .table.has-mobile-cards tr.detail {
        margin-top: -1rem
    }
    .b-table .table.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td {
        display: flex;
        width: auto;
        justify-content: space-between;
        text-align: right;
        border-bottom: 1px solid #f5f5f5
    }
    .b-table .table.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td:before {
        content: attr(data-label);
        font-weight: 600;
        padding-right: .5em;
        text-align: left
    }
}

.b-table .level {
    padding-bottom: 1.5rem
}

.b-table.is-loading {
    position: relative;
    pointer-events: none;
    opacity: .5
}

.b-table.is-loading:after {
    position: absolute;
    top: 4em;
    left: calc(50% - 2.5em);
    width: 5em;
    height: 5em;
    border-width: .25em
}

.b-tabs .tabs {
    margin-bottom: 0;
    flex-shrink: 0
}

.b-tabs .is-disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .5
}

.b-tabs .tab-content {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1rem
}

.b-tabs .tab-content .tab-item {
    flex-shrink: 0;
    flex-basis: auto
}

.b-tabs:not(:last-child) {
    margin-bottom: 1.5rem
}

.b-tabs.is-fullwidth {
    width: 100%
}

.tag .has-ellipsis {
    max-width: 10em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.taginput .taginput-container.is-focusable {
    padding-bottom: 0;
    padding-top: calc(.275em - 1px);
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: auto;
    cursor: text
}

.taginput .taginput-container>.tag,
.taginput .taginput-container>.tags {
    margin-bottom: calc(.275em - 1px);
    font-size: .9em;
    height: 1.7em
}

.taginput .taginput-container>.tag .tag,
.taginput .taginput-container>.tags .tag {
    margin-bottom: 0;
    font-size: .9em;
    height: 1.7em
}

.taginput .taginput-container>.tag:not(:last-child),
.taginput .taginput-container>.tags:not(:last-child) {
    margin-right: .275rem
}

.taginput .taginput-container .autocomplete {
    flex: 1
}

.taginput .taginput-container .autocomplete input {
    height: 1.7em;
    margin-bottom: calc(.275em - 1px);
    padding-top: 0;
    padding-bottom: 0;
    border: none;
    box-shadow: none;
    min-width: 8em
}

.taginput .taginput-container .autocomplete input:focus {
    box-shadow: none!important
}

.taginput .taginput-container .autocomplete .icon {
    height: 1.7em
}

.timepicker .dropdown,
.timepicker .dropdown-trigger {
    width: 100%
}

.dropdown .dropdown-menu .has-link .timepicker a,
.timepicker .dropdown .dropdown-menu .has-link a,
.timepicker .dropdown-item {
    font-size: inherit
}

.timepicker .timepicker-footer {
    padding-top: .875rem
}

.timepicker .control .select {
    font-size: 2.5rem
}

.timepicker .control .select select {
    font-weight: 600;
    padding-right: calc(.625em - 1px)
}

.timepicker .control .select select option {
    font-size: 1.5rem
}

.timepicker .control .select select option:disabled {
    color: rgba(122, 122, 122, .7)
}

.timepicker .control .select:after {
    display: none
}

.timepicker .control:nth-child(1) .select select {
    border-right: none
}

.timepicker .control:nth-child(1) .select:before {
    content: ":";
    color: #b5b5b5;
    display: inline-block;
    position: absolute;
    z-index: 6;
    font-size: 3rem;
    right: -.325rem;
    top: .25rem
}

.timepicker .control:nth-child(2) .select select {
    border-left: none
}

.timepicker.is-small {
    border-radius: 2px;
    font-size: .75rem
}

.timepicker.is-medium {
    font-size: 1.25rem
}

.timepicker.is-large {
    font-size: 1.5rem
}

.upload {
    position: relative
}

.upload input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    outline: 0;
    z-index: -1
}

.upload .upload-draggable {
    display: inline-block;
    cursor: pointer;
    padding: .25em;
    border: 1px dashed #b5b5b5;
    border-radius: 6px
}

.upload .upload-draggable.is-disabled {
    opacity: .5;
    cursor: not-allowed
}

.upload .upload-draggable.is-loading {
    position: relative;
    pointer-events: none;
    opacity: .5
}

.upload .upload-draggable.is-loading:after {
    top: 0;
    left: calc(50% - 1.5em);
    width: 3em;
    height: 3em;
    border-width: .25em
}

.upload .upload-draggable.is-hovered.is-white,
.upload .upload-draggable:hover.is-white {
    border-color: #fff;
    background: rgba(255, 255, 255, .05)
}

.upload .upload-draggable.is-hovered.is-black,
.upload .upload-draggable:hover.is-black {
    border-color: #0a0a0a;
    background: rgba(10, 10, 10, .05)
}

.upload .upload-draggable.is-hovered.is-light,
.upload .upload-draggable:hover.is-light {
    border-color: #eee;
    background: rgba(238, 238, 238, .05)
}

.upload .upload-draggable.is-hovered.is-dark,
.upload .upload-draggable:hover.is-dark {
    border-color: #90a2ab;
    background: rgba(144, 162, 171, .05)
}

.upload .upload-draggable.is-hovered.is-primary,
.upload .upload-draggable:hover.is-primary {
    border-color: #1fb6ff;
    background: rgba(31, 182, 255, .05)
}

.upload .upload-draggable.is-hovered.is-info,
.upload .upload-draggable:hover.is-info {
    border-color: #5bc0de;
    background: rgba(91, 192, 222, .05)
}

.upload .upload-draggable.is-hovered.is-success,
.upload .upload-draggable:hover.is-success {
    border-color: #5cb85c;
    background: rgba(92, 184, 92, .05)
}

.upload .upload-draggable.is-hovered.is-warning,
.upload .upload-draggable:hover.is-warning {
    border-color: #f0ad4e;
    background: rgba(240, 173, 78, .05)
}

.upload .upload-draggable.is-hovered.is-danger,
.upload .upload-draggable:hover.is-danger {
    border-color: #f15e48;
    background: rgba(241, 94, 72, .05)
}

.upload .upload-draggable.is-hovered.is-yellow,
.upload .upload-draggable:hover.is-yellow {
    border-color: #fbc139;
    background: rgba(251, 193, 57, .05)
}

@media screen and (max-width:768px) {
    .is-pulled-left-mobile {
        float: left!important
    }
    .is-pulled-right-mobile {
        float: left!important
    }
}

@media (min-width:769px) {
    .is-visible-inline-mobile,
    .is-visible-mobile {
        display: none!important
    }
    .b-table .table {
        border: 0
    }
}

@media (max-width:768px) {
    .is-visible-mobile {
        display: block!important
    }
    .is-visible-inline-mobile {
        display: inline-block!important
    }
    .button.is-fullwidth-mobile {
        display: flex;
        width: 100%
    }
    .b-table .table.has-mobile-cards tfoot th {
        border-bottom: 1px solid #dcdcdc
    }
}

@media (max-width:768px) {
    .animation-content {
        transition: transform 150ms ease-out
    }
    .zoom-out-enter-active:not(.dialog) .animation-content,
    .zoom-out-leave-active:not(.dialog) .animation-content {
        transform: translate3d(0, 110%, 0)
    }
}

.dropdown.is-fullwidth,
.dropdown.is-fullwidth>div {
    width: 100%
}

.table-wrapper {
    -ms-overflow-style: none
}

.button.is-loading:not(.btn-link-icon)>* {
    visibility: hidden
}

.btn-link.is-loading:after {
    width: 1.2em;
    height: 1.2em
}

.taginput-container[disabled] a.tag.is-delete {
    display: none
}

.img-circle {
    border-radius: 50%
}

.control.has-icons-right .icon.is-right {
    top: 1px;
    right: 2px;
    color: #90a2ab!important
}

.control.has-icons-left .icon.is-left {
    top: 1px
}

.is-mouse-locked {
    pointer-events: none
}

.input[readonly] {
    background: #f5f5f5
}

.datepicker .input[readonly],
.timepicker .input[readonly] {
    background: #fff
}

.card-content {
    padding: 1rem
}

.card-content+.card-content {
    border-top: 1px solid #dbdbdb
}

.has-text-strike {
    text-decoration: line-through
}

.notices {
    z-index: 999999
}

.has-cursor-pointer {
    cursor: pointer
}

.table.is-bordered td {
    border-right-width: 0;
    border-top-width: 0
}

.table.is-bordered th {
    border-right-width: 0
}

.b-table .table.is-bordered th.is-current-sort,
.b-table .table.is-bordered th.is-sortable:hover {
    border-color: #f0f0f0;
    border-bottom-color: #7a7a7a;
    background: #fcfcfc;
    font-weight: 400
}

.b-table .table th {
    white-space: nowrap
}

.table.is-bordered td:last-child,
.table.is-bordered th:last-child {
    border-right-width: 1px
}

.table-wrapper {
    overflow-x: scroll
}

.snackbar .button.is-dark {
    background: #363636
}

.is-expanded>label.radio {
    width: 100%
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    font-weight: 400
}

.dropdown .dropdown-menu .has-link a,
.dropdown-item {
    font-size: inherit
}

.dropdown-item .fa,
.dropdown-item .fas,
dropdown-item .fal {
    width: 1.5rem
}

@media (min-width:769px) {
    .modal-card-large {
        width: 900px
    }
    .modal-card,
    .modal-card-body {
        overflow: visible
    }
}

.pagination-ellipsis,
.pagination-link,
.pagination-next,
.pagination-previous {
    font-size: inherit!important
}

.modal-card-title {
    flex-shrink: 1;
    line-height: 2rem;
    padding: 1.5rem 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.modal-card-foot.level {
    margin-bottom: 0
}

.pagination-link.is-current {
    background: #90a2ab;
    border-color: #90a2ab
}

.breadcrumb li a {
    display: inline
}

.has-error .label {
    color: #f15e48
}

.has-error .button.is-static,
.has-error .input,
.has-error select {
    border-color: #f15e48!important;
    box-shadow: 0 0 0 1px #f15e48!important
}

.has-error .help {
    color: #f15e48
}

.has-mb-1 {
    margin-bottom: .5rem!important
}

.has-pb-1 {
    padding-bottom: .5rem!important
}

.has-pt-1 {
    padding-top: .5rem!important
}

.has-pt-2 {
    padding-top: 1rem!important
}

.has-mb-2 {
    margin-bottom: 1rem!important
}

.has-mb-3 {
    margin-bottom: 1.5rem!important
}

.has-mb-4 {
    margin-bottom: 2rem!important
}

.has-mb-5 {
    margin-bottom: 2.5rem!important
}

.has-mb-6 {
    margin-bottom: 3rem!important
}

.has-mb-7 {
    margin-bottom: 3.5rem!important
}

.has-mb-8 {
    margin-bottom: 4rem!important
}

.has-p-2 {
    padding: 1rem!important
}

.has-pb-2 {
    padding-bottom: 1rem!important
}

.has-pt-2 {
    padding-top: 1rem!important
}

.has-pr-2 {
    padding-right: 1rem!important
}

.has-p-3 {
    padding: 1.5rem!important
}

.has-pb-3 {
    padding-bottom: 1.5rem!important
}

.has-pt-3 {
    padding-top: 1.5rem!important
}

.has-p-4 {
    padding: 2em!important
}

.has-pb-4 {
    padding-bottom: 2rem!important
}

.has-pt-4 {
    padding-top: 2rem!important
}

.has-pb-5 {
    padding-bottom: 2.5rem!important
}

.has-pt-5 {
    padding-top: 2.5rem!important
}

.has-mt-1 {
    margin-top: .5rem!important
}

.has-mt-2 {
    margin-top: 1rem!important
}

.has-mt-3 {
    margin-top: 1.5rem!important
}

.has-mt-4 {
    margin-top: 2rem!important
}

.has-mt-5 {
    margin-top: 2.5rem!important
}

.has-mt-6 {
    margin-top: 3rem!important
}

.has-ml-1 {
    margin-left: .5rem!important
}

.has-ml-2 {
    margin-left: 1.5rem!important
}

.has-ml-3 {
    margin-left: 2rem!important
}

.has-text-nowrap {
    white-space: nowrap
}

@media (max-width:769px) {
    .has-xs-mb-2 {
        margin-bottom: 1rem!important
    }
    .has-xs-mb-3 {
        margin-bottom: 1.5rem!important
    }
}

@media (min-width:769px) {
    td.has-width-10 {
        width: 10%
    }
    td.has-width-15 {
        width: 15%
    }
    td.has-width-20 {
        width: 20%
    }
    td.has-width-25 {
        width: 25%
    }
    td.has-width-30 {
        width: 30%
    }
    td.has-width-50 {
        width: 50%
    }
}

.message .message-body {
    border: 1px solid #0000000f!important;
    box-shadow: 0 1px 0 0 #fffffff0
}

.pagination.is-simple .info {
    display: none
}

html {
    font-size: 14px
}

.title {
    font-weight: 400
}

body {
    color: #333
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0 0 0 40px
}

h1 {
    font-size: 2.5rem;
    line-height: 2.5rem
}

h2 {
    font-size: 1.85rem;
    line-height: 1.85rem
}

h3 {
    font-size: 1.65rem
}

h4 {
    font-size: 1.3rem
}

@media (max-width:767px) {
    h1 {
        font-size: 2rem;
        line-height: 2rem
    }
    h2 {
        font-size: 1.5rem
    }
    h3 {
        font-size: 1.4rem
    }
    h4 {
        font-size: 1.25rem
    }
}

@media (max-height:400px) {
    .modal-card-foot,
    .modal-footer {
        display: none
    }
}

.media-heading {
    margin-top: 0;
    margin-bottom: .4rem
}

.button.is-large,
.input.is-large {
    font-size: 1.25rem
}

.modal-card-body-blocks {
    padding: 0!important
}

.modal-card-body-blocks>section {
    padding: 25px
}

@media (max-width:767px) {
    .modal-card-body-blocks>section {
        padding: 15px
    }
}

.modal-card-body-blocks section+section {
    border-top: 1px solid #e5e5e5
}

.modal-card-body-blocks section.is-hidden+section {
    border-top: 0
}

.modal-card-foot.level {
    justify-content: space-between
}

.modal-card-foot .level-left+.level-right {
    margin-top: 0
}

.dialog .modal-card .modal-card-foot .button,
.dialog .modal-card .modal-card-head {
    font-weight: 400
}

.has-text-success {
    color: #3c763d!important
}

.has-text-warning {
    color: #8a6d3b!important
}

.has-text-primary {
    color: #0383de!important
}

.has-text-danger {
    color: #a94442!important
}

.has-text-info {
    color: #0383de!important
}

.message.is-warning {
    background-color: #fcf8e3
}

.form-control-static {
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0
}

.has-feedback {
    position: relative
}

.has-feedback .input {
    padding-right: 3rem
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center
}

.form-control-feedback:not(a) {
    pointer-events: none
}

.button,
.file-cta,
.file-name,
.input,
.pagination-ellipsis,
.pagination-link,
.pagination-next,
.pagination-previous,
.select select {
    height: 2.45em
}

.btn-block {
    height: auto
}

textarea.input {
    height: auto
}

.taginput-container.is-focusable {
    min-height: 2.45em
}

.taginput-container {
    padding-left: calc(.5em - 1px)!important;
    padding-right: calc(.5em - 1px)!important
}

.button.is-vertical {
    flex-direction: column
}

.tag:not(body) {
    padding: .15rem .5rem;
    height: auto;
    font-weight: 700;
    -webkit-font-smoothing: subpixel-antialiased
}

.b-checkbox.checkbox {
    height: 2.45em
}

.b-checkbox.checkbox:focus input[type=checkbox]+.check {
    box-shadow: none
}

@media (max-width:767px) {
    .table tr {
        background: #fff!important
    }
}

@media (min-width:768px) {
    .table.is-hoverable tr:not(: hover), .table:not(.is-hoverable) tr {
        background: #fff!important
    }
}

.b-table .b-checkbox.checkbox {
    height: auto;
    top: 2px
}

.b-table .table th {
    color: #999;
    font-weight: 400;
    background: #fcfcfc
}

.navbar-link::after,
.select:not(.is-multiple):not(.is-loading)::after {
    width: .5em;
    height: .5em;
    border-width: 1px;
    border-radius: 0
}

.navbar-link::after,
.select:not(.is-multiple):not(.is-loading)::after {
    margin-top: -.3em
}

.modal.is-active {
    overflow-y: auto!important
}

.modal-card-body {
    border-top: 1px solid #e5e5e5
}

.modal-background {
    position: fixed
}

.modal-card-head {
    padding: 10px 25px 5px 25px;
    border: 0
}

.modal-card-body {
    padding: 25px
}

.modal-card-foot {
    padding: 15px
}

.modal-close {
    position: relative
}

.modal-close.is-large {
    height: 48px;
    max-height: 48px;
    max-width: 48px;
    min-height: 48px;
    min-width: 48px;
    width: 48px;
    align-self: start;
    top: 10px;
    right: 0;
    margin-right: -10px
}

.modal-close::after,
.modal-close::before {
    background-color: #000
}

.modal-close:hover {
    background: #eee
}

@media (max-width:767px) {
    .modal:not(.dialog) .animation-content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        margin: 0
    }
    .modal:not(.dialog) .modal-card {
        max-height: none;
        height: 100%
    }
    .modal:not(.dialog) .modal-card-foot,
    .modal:not(.dialog) .modal-card-head {
        border-radius: 0
    }
    .modal-close::after,
    .modal-close::before {
        background-color: #000
    }
    .modal-card-body,
    .modal-card-foot {
        padding: 15px
    }
    .modal-close.is-large {
        margin-right: -5px
    }
    .modal-card-head {
        padding: 10px 15px 5px 15px
    }
}

@media screen and (min-width:769px) {
    .field-body {
        flex-grow: 3
    }
}

.field-label label {
    padding: 0;
    line-height: inherit;
    text-align: left;
    white-space: inherit
}

.field:not(:last-child) {
    margin-bottom: 1.5rem
}

.modal-card-foot,
.modal-card-head {
    justify-content: flex-end
}

.modal-card-foot .columns {
    flex-grow: 1
}

.modal-card-foot .button:not(:last-child) {
    margin-right: 5px
}

.input,
.taginput .taginput-container.is-focusable,
.textarea {
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.input[readonly]:focus {
    box-shadow: 0 0 0 1px #fbc139
}

ul.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

ul.pagination>li {
    display: inline
}

ul.pagination>li>a,
ul.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #0383de;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

ul.pagination>li:first-child>a,
ul.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

ul.pagination>li:last-child>a,
ul.pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

ul.pagination>li>a:focus,
ul.pagination>li>a:hover,
ul.pagination>li>span:focus,
ul.pagination>li>span:hover {
    z-index: 2;
    color: #025693;
    background-color: #eee;
    border-color: #ddd
}

ul.pagination>.active>a,
ul.pagination>.active>a:focus,
ul.pagination>.active>a:hover,
ul.pagination>.active>span,
ul.pagination>.active>span:focus,
ul.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    background-color: #0383de;
    border-color: #0383de;
    cursor: default
}

ul.pagination>.disabled>a,
ul.pagination>.disabled>a:focus,
ul.pagination>.disabled>a:hover,
ul.pagination>.disabled>span,
ul.pagination>.disabled>span:focus,
ul.pagination>.disabled>span:hover {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.media+.media {
    border-top: 0;
    padding-top: 0
}

.message-body ul {
    margin-bottom: 0
}

ul.pagination-list {
    margin: 0
}

.modal .nav-tabs {
    margin-bottom: 0;
    padding: 0 20px;
    background: #fff;
    z-index: 2;
    position: relative;
    width: 100%;
    white-space: nowrap;
    margin-bottom: -1px;
    margin-top: -1px;
    border-bottom: 1px solid #ddd
}

.modal .nav-tabs>li {
    float: none;
    margin-bottom: -1px;
    display: inline-block
}

.modal .nav-tabs>li>a {
    padding: 10px 5px;
    margin-right: 30px;
    transition: .1s linear;
    -webkit-transition: .1s linear;
    -moz-transition: .1s linear;
    display: block
}

@media (max-width:767px) {
    .modal .nav-tabs {
        padding: 0 15px
    }
    .modal .nav-tabs>li>a {
        padding: 10px 5px;
        margin-right: 7px
    }
}

.modal .nav-tabs>li:last-child a {
    margin-right: 0
}

.modal .nav-tabs>li>a,
.modal .nav-tabs>li>a:focus,
.modal .nav-tabs>li>a:hover {
    color: #a9a9a9;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: pointer;
    border-width: 0 0 1px 0;
    border-bottom-color: #ddd;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px
}

.modal .nav-tabs>li.active>a,
.modal .nav-tabs>li.active>a:focus,
.modal .nav-tabs>li.active>a:hover {
    border-bottom-color: #1fb6ff;
    color: #1fb6ff
}

.modal .nav-tabs>li>a:hover {
    color: #1fb6ff
}

.table.is-hoverable tbody tr {
    cursor: pointer
}

.top-panel .select select[disabled] {
    opacity: .5
}

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

input[type=range].slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 1rem 0;
    background: 0 0
}

input[type=range].slider.is-fullwidth {
    display: block;
    width: 100%
}

input[type=range].slider:focus {
    outline: 0
}

input[type=range].slider:not([orient=vertical])::-webkit-slider-runnable-track {
    width: 100%
}

input[type=range].slider:not([orient=vertical])::-moz-range-track {
    width: 100%
}

input[type=range].slider:not([orient=vertical])::-ms-track {
    width: 100%
}

input[type=range].slider:not([orient=vertical]).has-output+output,
input[type=range].slider:not([orient=vertical]).has-output-tooltip+output {
    width: 3rem;
    background: #4a4a4a;
    border-radius: 4px;
    padding: .4rem .8rem;
    font-size: .75rem;
    line-height: .75rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    overflow: hidden;
    pointer-events: none;
    z-index: 200
}

input[type=range].slider:not([orient=vertical]).has-output {
    display: inline-block;
    width: calc(100% - (4.2rem))
}

input[type=range].slider:not([orient=vertical]).has-output+output {
    display: inline-block;
    position: relative;
    margin-left: .75rem;
    top: -.75rem
}

input[type=range].slider:not([orient=vertical]).has-output-tooltip {
    display: block
}

input[type=range].slider:not([orient=vertical]).has-output-tooltip+output {
    position: absolute;
    left: 0;
    top: -.1rem
}

input[type=range].slider[orient=vertical] {
    -webkit-appearance: slider-vertical;
    -webkit-writing-mode: bt-lr;
    -ms-writing-mode: bt-lr;
    writing-mode: bt-lr
}

input[type=range].slider[orient=vertical]::-webkit-slider-runnable-track {
    height: 100%
}

input[type=range].slider[orient=vertical]::-moz-range-track {
    height: 100%
}

input[type=range].slider[orient=vertical]::-ms-track {
    height: 100%
}

input[type=range].slider::-webkit-slider-runnable-track {
    cursor: pointer;
    animate: .2s;
    box-shadow: 0 0 0 #7a7a7a;
    background: #dbdbdb;
    border-radius: 4px;
    border: 0 solid #7a7a7a
}

input[type=range].slider::-moz-range-track {
    cursor: pointer;
    animate: .2s;
    box-shadow: 0 0 0 #7a7a7a;
    background: #dbdbdb;
    border-radius: 4px;
    border: 0 solid #7a7a7a
}

input[type=range].slider::-ms-track {
    cursor: pointer;
    animate: .2s;
    box-shadow: 0 0 0 #7a7a7a;
    background: #dbdbdb;
    border-radius: 4px;
    border: 0 solid #7a7a7a
}

input[type=range].slider::-ms-fill-lower {
    background: #00d1b2
}

input[type=range].slider::-ms-fill-upper {
    background: #dbdbdb
}

input[type=range].slider::-webkit-slider-thumb {
    box-shadow: none;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    transition: transform .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: -webkit-transform .2s ease
}

input[type=range].slider::-moz-range-thumb {
    box-shadow: none;
    border: 1px solid #b5b5b5;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: transform .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: -webkit-transform .2s ease
}

input[type=range].slider::-ms-thumb {
    box-shadow: none;
    border: 1px solid #b5b5b5;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: transform .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: -webkit-transform .2s ease
}

input[type=range].slider::-webkit-slider-thumb {
    -webkit-appearance: none
}

input[type=range].slider.is-circle::-webkit-slider-thumb {
    border-radius: 50%
}

input[type=range].slider.is-circle::-moz-range-thumb {
    border-radius: 50%
}

input[type=range].slider.is-circle::-ms-thumb {
    border-radius: 50%
}

input[type=range].slider:active::-webkit-slider-thumb {
    -webkit-transform: scale(1.25);
    transform: scale(1.25)
}

input[type=range].slider:active::-moz-range-thumb {
    transform: scale(1.25)
}

input[type=range].slider:active::-ms-thumb {
    transform: scale(1.25)
}

input[type=range].slider:disabled {
    opacity: .5;
    cursor: not-allowed
}

input[type=range].slider:disabled::-webkit-slider-thumb {
    cursor: not-allowed;
    -webkit-transform: scale(1);
    transform: scale(1)
}

input[type=range].slider:disabled::-moz-range-thumb {
    cursor: not-allowed;
    transform: scale(1)
}

input[type=range].slider:disabled::-ms-thumb {
    cursor: not-allowed;
    transform: scale(1)
}

input[type=range].slider:not([orient=vertical])::-webkit-slider-runnable-track {
    height: .5rem
}

input[type=range].slider:not([orient=vertical])::-moz-range-track {
    height: .5rem
}

input[type=range].slider:not([orient=vertical])::-ms-track {
    height: .5rem
}

input[type=range].slider[orient=vertical]::-webkit-slider-runnable-track {
    width: .5rem
}

input[type=range].slider[orient=vertical]::-moz-range-track {
    width: .5rem
}

input[type=range].slider[orient=vertical]::-ms-track {
    width: .5rem
}

input[type=range].slider::-webkit-slider-thumb {
    height: 1rem;
    width: 1rem;
    margin-top: -.25rem
}

input[type=range].slider::-moz-range-thumb {
    height: 1rem;
    width: 1rem
}

input[type=range].slider::-ms-thumb {
    height: 1rem;
    width: 1rem
}

input[type=range].slider[orient=vertical]::-webkit-slider-thumb {
    margin-top: auto;
    margin-left: -.25rem
}

input[type=range].slider.is-small:not([orient=vertical])::-webkit-slider-runnable-track {
    height: .375rem
}

input[type=range].slider.is-small:not([orient=vertical])::-moz-range-track {
    height: .375rem
}

input[type=range].slider.is-small:not([orient=vertical])::-ms-track {
    height: .375rem
}

input[type=range].slider.is-small[orient=vertical]::-webkit-slider-runnable-track {
    width: .375rem
}

input[type=range].slider.is-small[orient=vertical]::-moz-range-track {
    width: .375rem
}

input[type=range].slider.is-small[orient=vertical]::-ms-track {
    width: .375rem
}

input[type=range].slider.is-small::-webkit-slider-thumb {
    height: .75rem;
    width: .75rem;
    margin-top: -.1875rem
}

input[type=range].slider.is-small::-moz-range-thumb {
    height: .75rem;
    width: .75rem
}

input[type=range].slider.is-small::-ms-thumb {
    height: .75rem;
    width: .75rem
}

input[type=range].slider.is-small[orient=vertical]::-webkit-slider-thumb {
    margin-top: auto;
    margin-left: -.1875rem
}

input[type=range].slider.is-medium:not([orient=vertical])::-webkit-slider-runnable-track {
    height: .625rem
}

input[type=range].slider.is-medium:not([orient=vertical])::-moz-range-track {
    height: .625rem
}

input[type=range].slider.is-medium:not([orient=vertical])::-ms-track {
    height: .625rem
}

input[type=range].slider.is-medium[orient=vertical]::-webkit-slider-runnable-track {
    width: .625rem
}

input[type=range].slider.is-medium[orient=vertical]::-moz-range-track {
    width: .625rem
}

input[type=range].slider.is-medium[orient=vertical]::-ms-track {
    width: .625rem
}

input[type=range].slider.is-medium::-webkit-slider-thumb {
    height: 1.25rem;
    width: 1.25rem;
    margin-top: -.3125rem
}

input[type=range].slider.is-medium::-moz-range-thumb {
    height: 1.25rem;
    width: 1.25rem
}

input[type=range].slider.is-medium::-ms-thumb {
    height: 1.25rem;
    width: 1.25rem
}

input[type=range].slider.is-medium[orient=vertical]::-webkit-slider-thumb {
    margin-top: auto;
    margin-left: -.3125rem
}

input[type=range].slider.is-large:not([orient=vertical])::-webkit-slider-runnable-track {
    height: .75rem
}

input[type=range].slider.is-large:not([orient=vertical])::-moz-range-track {
    height: .75rem
}

input[type=range].slider.is-large:not([orient=vertical])::-ms-track {
    height: .75rem
}

input[type=range].slider.is-large[orient=vertical]::-webkit-slider-runnable-track {
    width: .75rem
}

input[type=range].slider.is-large[orient=vertical]::-moz-range-track {
    width: .75rem
}

input[type=range].slider.is-large[orient=vertical]::-ms-track {
    width: .75rem
}

input[type=range].slider.is-large::-webkit-slider-thumb {
    height: 1.5rem;
    width: 1.5rem;
    margin-top: -.375rem
}

input[type=range].slider.is-large::-moz-range-thumb {
    height: 1.5rem;
    width: 1.5rem
}

input[type=range].slider.is-large::-ms-thumb {
    height: 1.5rem;
    width: 1.5rem
}

input[type=range].slider.is-large[orient=vertical]::-webkit-slider-thumb {
    margin-top: auto;
    margin-left: -.375rem
}

input[type=range].slider.is-white::-moz-range-track {
    background: #fff
}

input[type=range].slider.is-white::-webkit-slider-runnable-track {
    background: #fff
}

input[type=range].slider.is-white::-ms-track {
    background: #fff!important
}

input[type=range].slider.is-white::-ms-fill-lower {
    background: #fff
}

input[type=range].slider.is-white .has-output-tooltip+output,
input[type=range].slider.is-white.has-output+output {
    background-color: #fff;
    color: #0a0a0a
}

input[type=range].slider.is-black::-moz-range-track {
    background: #0a0a0a
}

input[type=range].slider.is-black::-webkit-slider-runnable-track {
    background: #0a0a0a
}

input[type=range].slider.is-black::-ms-track {
    background: #0a0a0a!important
}

input[type=range].slider.is-black::-ms-fill-lower {
    background: #0a0a0a
}

input[type=range].slider.is-black .has-output-tooltip+output,
input[type=range].slider.is-black.has-output+output {
    background-color: #0a0a0a;
    color: #fff
}

input[type=range].slider.is-light::-moz-range-track {
    background: #f5f5f5
}

input[type=range].slider.is-light::-webkit-slider-runnable-track {
    background: #f5f5f5
}

input[type=range].slider.is-light::-ms-track {
    background: #f5f5f5!important
}

input[type=range].slider.is-light::-ms-fill-lower {
    background: #f5f5f5
}

input[type=range].slider.is-light .has-output-tooltip+output,
input[type=range].slider.is-light.has-output+output {
    background-color: #f5f5f5;
    color: #363636
}

input[type=range].slider.is-dark::-moz-range-track {
    background: #363636
}

input[type=range].slider.is-dark::-webkit-slider-runnable-track {
    background: #363636
}

input[type=range].slider.is-dark::-ms-track {
    background: #363636!important
}

input[type=range].slider.is-dark::-ms-fill-lower {
    background: #363636
}

input[type=range].slider.is-dark .has-output-tooltip+output,
input[type=range].slider.is-dark.has-output+output {
    background-color: #363636;
    color: #f5f5f5
}

input[type=range].slider.is-primary::-moz-range-track {
    background: #00d1b2
}

input[type=range].slider.is-primary::-webkit-slider-runnable-track {
    background: #00d1b2
}

input[type=range].slider.is-primary::-ms-track {
    background: #00d1b2!important
}

input[type=range].slider.is-primary::-ms-fill-lower {
    background: #00d1b2
}

input[type=range].slider.is-primary .has-output-tooltip+output,
input[type=range].slider.is-primary.has-output+output {
    background-color: #00d1b2;
    color: #fff
}

input[type=range].slider.is-link::-moz-range-track {
    background: #3273dc
}

input[type=range].slider.is-link::-webkit-slider-runnable-track {
    background: #3273dc
}

input[type=range].slider.is-link::-ms-track {
    background: #3273dc!important
}

input[type=range].slider.is-link::-ms-fill-lower {
    background: #3273dc
}

input[type=range].slider.is-link .has-output-tooltip+output,
input[type=range].slider.is-link.has-output+output {
    background-color: #3273dc;
    color: #fff
}

input[type=range].slider.is-info::-moz-range-track {
    background: #209cee
}

input[type=range].slider.is-info::-webkit-slider-runnable-track {
    background: #209cee
}

input[type=range].slider.is-info::-ms-track {
    background: #209cee!important
}

input[type=range].slider.is-info::-ms-fill-lower {
    background: #209cee
}

input[type=range].slider.is-info .has-output-tooltip+output,
input[type=range].slider.is-info.has-output+output {
    background-color: #209cee;
    color: #fff
}

input[type=range].slider.is-success::-moz-range-track {
    background: #23d160
}

input[type=range].slider.is-success::-webkit-slider-runnable-track {
    background: #23d160
}

input[type=range].slider.is-success::-ms-track {
    background: #23d160!important
}

input[type=range].slider.is-success::-ms-fill-lower {
    background: #23d160
}

input[type=range].slider.is-success .has-output-tooltip+output,
input[type=range].slider.is-success.has-output+output {
    background-color: #23d160;
    color: #fff
}

input[type=range].slider.is-warning::-moz-range-track {
    background: #ffdd57
}

input[type=range].slider.is-warning::-webkit-slider-runnable-track {
    background: #ffdd57
}

input[type=range].slider.is-warning::-ms-track {
    background: #ffdd57!important
}

input[type=range].slider.is-warning::-ms-fill-lower {
    background: #ffdd57
}

input[type=range].slider.is-warning .has-output-tooltip+output,
input[type=range].slider.is-warning.has-output+output {
    background-color: #ffdd57;
    color: rgba(0, 0, 0, .7)
}

input[type=range].slider.is-danger::-moz-range-track {
    background: #ff3860
}

input[type=range].slider.is-danger::-webkit-slider-runnable-track {
    background: #ff3860
}

input[type=range].slider.is-danger::-ms-track {
    background: #ff3860!important
}

input[type=range].slider.is-danger::-ms-fill-lower {
    background: #ff3860
}

input[type=range].slider.is-danger .has-output-tooltip+output,
input[type=range].slider.is-danger.has-output+output {
    background-color: #ff3860;
    color: #fff
}

html {
    -webkit-tap-highlight-color: transparent
}

.btn-group-justified {
    width: 100%;
    display: table!important;
    table-layout: fixed
}

.btn-group-justified>.control {
    display: table-cell
}

.btn-group-justified>.control:not(:last-child)>* {
    border-right: 0
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2
}

.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5
}

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.in {
    opacity: .5
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }
    .modal-sm {
        width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg,
    .modal-lg .modal-content {
        width: 900px
    }
}

@media (max-width:767px) {
    .modal-card,
    .modal-content {
        margin: 0
    }
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.button.is-small {
    min-height: 1.55rem;
    border-radius: 2px;
    font-size: .75rem;
    font-weight: 700;
    padding: .15rem .5rem;
    height: auto
}


/*!
 * Font Awesome Pro 5.3.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */

.fa,
.fab,
.fal,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-xs {
    font-size: .75em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: solid .08em #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1)
}

.fa-flip-horizontal.fa-flip-vertical {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1)
}

:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2em
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-500px:before {
    content: "\f26e"
}

.fa-abacus:before {
    content: "\f640"
}

.fa-accessible-icon:before {
    content: "\f368"
}

.fa-accusoft:before {
    content: "\f369"
}

.fa-ad:before {
    content: "\f641"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-card:before {
    content: "\f2bb"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-adn:before {
    content: "\f170"
}

.fa-adversal:before {
    content: "\f36a"
}

.fa-affiliatetheme:before {
    content: "\f36b"
}

.fa-air-freshener:before {
    content: "\f5d0"
}

.fa-alarm-clock:before {
    content: "\f34e"
}

.fa-algolia:before {
    content: "\f36c"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-alipay:before {
    content: "\f642"
}

.fa-allergies:before {
    content: "\f461"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-amazon-pay:before {
    content: "\f42c"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-amilia:before {
    content: "\f36d"
}

.fa-analytics:before {
    content: "\f643"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-android:before {
    content: "\f17b"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angry:before {
    content: "\f556"
}

.fa-angrycreative:before {
    content: "\f36e"
}

.fa-angular:before {
    content: "\f420"
}

.fa-ankh:before {
    content: "\f644"
}

.fa-app-store:before {
    content: "\f36f"
}

.fa-app-store-ios:before {
    content: "\f370"
}

.fa-apper:before {
    content: "\f371"
}

.fa-apple:before {
    content: "\f179"
}

.fa-apple-alt:before {
    content: "\f5d1"
}

.fa-apple-pay:before {
    content: "\f415"
}

.fa-archive:before {
    content: "\f187"
}

.fa-archway:before {
    content: "\f557"
}

.fa-arrow-alt-circle-down:before {
    content: "\f358"
}

.fa-arrow-alt-circle-left:before {
    content: "\f359"
}

.fa-arrow-alt-circle-right:before {
    content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
    content: "\f35b"
}

.fa-arrow-alt-down:before {
    content: "\f354"
}

.fa-arrow-alt-from-bottom:before {
    content: "\f346"
}

.fa-arrow-alt-from-left:before {
    content: "\f347"
}

.fa-arrow-alt-from-right:before {
    content: "\f348"
}

.fa-arrow-alt-from-top:before {
    content: "\f349"
}

.fa-arrow-alt-left:before {
    content: "\f355"
}

.fa-arrow-alt-right:before {
    content: "\f356"
}

.fa-arrow-alt-square-down:before {
    content: "\f350"
}

.fa-arrow-alt-square-left:before {
    content: "\f351"
}

.fa-arrow-alt-square-right:before {
    content: "\f352"
}

.fa-arrow-alt-square-up:before {
    content: "\f353"
}

.fa-arrow-alt-to-bottom:before {
    content: "\f34a"
}

.fa-arrow-alt-to-left:before {
    content: "\f34b"
}

.fa-arrow-alt-to-right:before {
    content: "\f34c"
}

.fa-arrow-alt-to-top:before {
    content: "\f34d"
}

.fa-arrow-alt-up:before {
    content: "\f357"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-arrow-from-bottom:before {
    content: "\f342"
}

.fa-arrow-from-left:before {
    content: "\f343"
}

.fa-arrow-from-right:before {
    content: "\f344"
}

.fa-arrow-from-top:before {
    content: "\f345"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-square-down:before {
    content: "\f339"
}

.fa-arrow-square-left:before {
    content: "\f33a"
}

.fa-arrow-square-right:before {
    content: "\f33b"
}

.fa-arrow-square-up:before {
    content: "\f33c"
}

.fa-arrow-to-bottom:before {
    content: "\f33d"
}

.fa-arrow-to-left:before {
    content: "\f33e"
}

.fa-arrow-to-right:before {
    content: "\f340"
}

.fa-arrow-to-top:before {
    content: "\f341"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-arrows-alt-h:before {
    content: "\f337"
}

.fa-arrows-alt-v:before {
    content: "\f338"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-asymmetrik:before {
    content: "\f372"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-atlas:before {
    content: "\f558"
}

.fa-atom:before {
    content: "\f5d2"
}

.fa-atom-alt:before {
    content: "\f5d3"
}

.fa-audible:before {
    content: "\f373"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-autoprefixer:before {
    content: "\f41c"
}

.fa-avianex:before {
    content: "\f374"
}

.fa-aviato:before {
    content: "\f421"
}

.fa-award:before {
    content: "\f559"
}

.fa-aws:before {
    content: "\f375"
}

.fa-backpack:before {
    content: "\f5d4"
}

.fa-backspace:before {
    content: "\f55a"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-badge:before {
    content: "\f335"
}

.fa-badge-check:before {
    content: "\f336"
}

.fa-badge-dollar:before {
    content: "\f645"
}

.fa-badge-percent:before {
    content: "\f646"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-balance-scale-left:before {
    content: "\f515"
}

.fa-balance-scale-right:before {
    content: "\f516"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-band-aid:before {
    content: "\f462"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-barcode-alt:before {
    content: "\f463"
}

.fa-barcode-read:before {
    content: "\f464"
}

.fa-barcode-scan:before {
    content: "\f465"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-baseball:before {
    content: "\f432"
}

.fa-baseball-ball:before {
    content: "\f433"
}

.fa-basketball-ball:before {
    content: "\f434"
}

.fa-basketball-hoop:before {
    content: "\f435"
}

.fa-bath:before {
    content: "\f2cd"
}

.fa-battery-bolt:before {
    content: "\f376"
}

.fa-battery-empty:before {
    content: "\f244"
}

.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-slash:before {
    content: "\f377"
}

.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-bed:before {
    content: "\f236"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-bell-school:before {
    content: "\f5d5"
}

.fa-bell-school-slash:before {
    content: "\f5d6"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bezier-curve:before {
    content: "\f55b"
}

.fa-bible:before {
    content: "\f647"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bimobject:before {
    content: "\f378"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitcoin:before {
    content: "\f379"
}

.fa-bity:before {
    content: "\f37a"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-blackberry:before {
    content: "\f37b"
}

.fa-blanket:before {
    content: "\f498"
}

.fa-blender:before {
    content: "\f517"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-blogger:before {
    content: "\f37c"
}

.fa-blogger-b:before {
    content: "\f37d"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-bold:before {
    content: "\f032"
}

.fa-bolt:before {
    content: "\f0e7"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-bone:before {
    content: "\f5d7"
}

.fa-bone-break:before {
    content: "\f5d8"
}

.fa-bong:before {
    content: "\f55c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-book-alt:before {
    content: "\f5d9"
}

.fa-book-heart:before {
    content: "\f499"
}

.fa-book-open:before {
    content: "\f518"
}

.fa-book-reader:before {
    content: "\f5da"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-books:before {
    content: "\f5db"
}

.fa-bowling-ball:before {
    content: "\f436"
}

.fa-bowling-pins:before {
    content: "\f437"
}

.fa-box:before {
    content: "\f466"
}

.fa-box-alt:before {
    content: "\f49a"
}

.fa-box-check:before {
    content: "\f467"
}

.fa-box-fragile:before {
    content: "\f49b"
}

.fa-box-full:before {
    content: "\f49c"
}

.fa-box-heart:before {
    content: "\f49d"
}

.fa-box-open:before {
    content: "\f49e"
}

.fa-box-up:before {
    content: "\f49f"
}

.fa-box-usd:before {
    content: "\f4a0"
}

.fa-boxes:before {
    content: "\f468"
}

.fa-boxes-alt:before {
    content: "\f4a1"
}

.fa-boxing-glove:before {
    content: "\f438"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-brain:before {
    content: "\f5dc"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-briefcase-medical:before {
    content: "\f469"
}

.fa-broadcast-tower:before {
    content: "\f519"
}

.fa-broom:before {
    content: "\f51a"
}

.fa-browser:before {
    content: "\f37e"
}

.fa-brush:before {
    content: "\f55d"
}

.fa-btc:before {
    content: "\f15a"
}

.fa-bug:before {
    content: "\f188"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-bullseye-arrow:before {
    content: "\f648"
}

.fa-bullseye-pointer:before {
    content: "\f649"
}

.fa-burn:before {
    content: "\f46a"
}

.fa-buromobelexperte:before {
    content: "\f37f"
}

.fa-bus:before {
    content: "\f207"
}

.fa-bus-alt:before {
    content: "\f55e"
}

.fa-bus-school:before {
    content: "\f5dd"
}

.fa-business-time:before {
    content: "\f64a"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-cabinet-filing:before {
    content: "\f64b"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-calculator-alt:before {
    content: "\f64c"
}

.fa-calendar:before {
    content: "\f133"
}

.fa-calendar-alt:before {
    content: "\f073"
}

.fa-calendar-check:before {
    content: "\f274"
}

.fa-calendar-edit:before {
    content: "\f333"
}

.fa-calendar-exclamation:before {
    content: "\f334"
}

.fa-calendar-minus:before {
    content: "\f272"
}

.fa-calendar-plus:before {
    content: "\f271"
}

.fa-calendar-times:before {
    content: "\f273"
}

.fa-camera:before {
    content: "\f030"
}

.fa-camera-alt:before {
    content: "\f332"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-cannabis:before {
    content: "\f55f"
}

.fa-capsules:before {
    content: "\f46b"
}

.fa-car:before {
    content: "\f1b9"
}

.fa-car-alt:before {
    content: "\f5de"
}

.fa-car-battery:before {
    content: "\f5df"
}

.fa-car-bump:before {
    content: "\f5e0"
}

.fa-car-crash:before {
    content: "\f5e1"
}

.fa-car-garage:before {
    content: "\f5e2"
}

.fa-car-mechanic:before {
    content: "\f5e3"
}

.fa-car-side:before {
    content: "\f5e4"
}

.fa-car-tilt:before {
    content: "\f5e5"
}

.fa-car-wash:before {
    content: "\f5e6"
}

.fa-caret-circle-down:before {
    content: "\f32d"
}

.fa-caret-circle-left:before {
    content: "\f32e"
}

.fa-caret-circle-right:before {
    content: "\f330"
}

.fa-caret-circle-up:before {
    content: "\f331"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-caret-square-down:before {
    content: "\f150"
}

.fa-caret-square-left:before {
    content: "\f191"
}

.fa-caret-square-right:before {
    content: "\f152"
}

.fa-caret-square-up:before {
    content: "\f151"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cc-amazon-pay:before {
    content: "\f42d"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-apple-pay:before {
    content: "\f416"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-centercode:before {
    content: "\f380"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-chalkboard:before {
    content: "\f51b"
}

.fa-chalkboard-teacher:before {
    content: "\f51c"
}

.fa-charging-station:before {
    content: "\f5e7"
}

.fa-chart-area:before {
    content: "\f1fe"
}

.fa-chart-bar:before {
    content: "\f080"
}

.fa-chart-line:before {
    content: "\f201"
}

.fa-chart-line-down:before {
    content: "\f64d"
}

.fa-chart-pie:before {
    content: "\f200"
}

.fa-chart-pie-alt:before {
    content: "\f64e"
}

.fa-check:before {
    content: "\f00c"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-check-double:before {
    content: "\f560"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-chess:before {
    content: "\f439"
}

.fa-chess-bishop:before {
    content: "\f43a"
}

.fa-chess-bishop-alt:before {
    content: "\f43b"
}

.fa-chess-board:before {
    content: "\f43c"
}

.fa-chess-clock:before {
    content: "\f43d"
}

.fa-chess-clock-alt:before {
    content: "\f43e"
}

.fa-chess-king:before {
    content: "\f43f"
}

.fa-chess-king-alt:before {
    content: "\f440"
}

.fa-chess-knight:before {
    content: "\f441"
}

.fa-chess-knight-alt:before {
    content: "\f442"
}

.fa-chess-pawn:before {
    content: "\f443"
}

.fa-chess-pawn-alt:before {
    content: "\f444"
}

.fa-chess-queen:before {
    content: "\f445"
}

.fa-chess-queen-alt:before {
    content: "\f446"
}

.fa-chess-rook:before {
    content: "\f447"
}

.fa-chess-rook-alt:before {
    content: "\f448"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-double-down:before {
    content: "\f322"
}

.fa-chevron-double-left:before {
    content: "\f323"
}

.fa-chevron-double-right:before {
    content: "\f324"
}

.fa-chevron-double-up:before {
    content: "\f325"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-chevron-square-down:before {
    content: "\f329"
}

.fa-chevron-square-left:before {
    content: "\f32a"
}

.fa-chevron-square-right:before {
    content: "\f32b"
}

.fa-chevron-square-up:before {
    content: "\f32c"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-church:before {
    content: "\f51d"
}

.fa-circle:before {
    content: "\f111"
}

.fa-circle-notch:before {
    content: "\f1ce"
}

.fa-city:before {
    content: "\f64f"
}

.fa-clipboard:before {
    content: "\f328"
}

.fa-clipboard-check:before {
    content: "\f46c"
}

.fa-clipboard-list:before {
    content: "\f46d"
}

.fa-clipboard-prescription:before {
    content: "\f5e8"
}

.fa-clock:before {
    content: "\f017"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-closed-captioning:before {
    content: "\f20a"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-download-alt:before {
    content: "\f381"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-cloud-upload-alt:before {
    content: "\f382"
}

.fa-cloudscale:before {
    content: "\f383"
}

.fa-cloudsmith:before {
    content: "\f384"
}

.fa-cloudversify:before {
    content: "\f385"
}

.fa-club:before {
    content: "\f327"
}

.fa-cocktail:before {
    content: "\f561"
}

.fa-code:before {
    content: "\f121"
}

.fa-code-branch:before {
    content: "\f126"
}

.fa-code-commit:before {
    content: "\f386"
}

.fa-code-merge:before {
    content: "\f387"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cog:before {
    content: "\f013"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-coins:before {
    content: "\f51e"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-comment:before {
    content: "\f075"
}

.fa-comment-alt:before {
    content: "\f27a"
}

.fa-comment-alt-check:before {
    content: "\f4a2"
}

.fa-comment-alt-dollar:before {
    content: "\f650"
}

.fa-comment-alt-dots:before {
    content: "\f4a3"
}

.fa-comment-alt-edit:before {
    content: "\f4a4"
}

.fa-comment-alt-exclamation:before {
    content: "\f4a5"
}

.fa-comment-alt-lines:before {
    content: "\f4a6"
}

.fa-comment-alt-minus:before {
    content: "\f4a7"
}

.fa-comment-alt-plus:before {
    content: "\f4a8"
}

.fa-comment-alt-slash:before {
    content: "\f4a9"
}

.fa-comment-alt-smile:before {
    content: "\f4aa"
}

.fa-comment-alt-times:before {
    content: "\f4ab"
}

.fa-comment-check:before {
    content: "\f4ac"
}

.fa-comment-dollar:before {
    content: "\f651"
}

.fa-comment-dots:before {
    content: "\f4ad"
}

.fa-comment-edit:before {
    content: "\f4ae"
}

.fa-comment-exclamation:before {
    content: "\f4af"
}

.fa-comment-lines:before {
    content: "\f4b0"
}

.fa-comment-minus:before {
    content: "\f4b1"
}

.fa-comment-plus:before {
    content: "\f4b2"
}

.fa-comment-slash:before {
    content: "\f4b3"
}

.fa-comment-smile:before {
    content: "\f4b4"
}

.fa-comment-times:before {
    content: "\f4b5"
}

.fa-comments:before {
    content: "\f086"
}

.fa-comments-alt:before {
    content: "\f4b6"
}

.fa-comments-alt-dollar:before {
    content: "\f652"
}

.fa-comments-dollar:before {
    content: "\f653"
}

.fa-compact-disc:before {
    content: "\f51f"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-compass-slash:before {
    content: "\f5e9"
}

.fa-compress:before {
    content: "\f066"
}

.fa-compress-alt:before {
    content: "\f422"
}

.fa-compress-wide:before {
    content: "\f326"
}

.fa-concierge-bell:before {
    content: "\f562"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-container-storage:before {
    content: "\f4b7"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-conveyor-belt:before {
    content: "\f46e"
}

.fa-conveyor-belt-alt:before {
    content: "\f46f"
}

.fa-cookie:before {
    content: "\f563"
}

.fa-cookie-bite:before {
    content: "\f564"
}

.fa-copy:before {
    content: "\f0c5"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-couch:before {
    content: "\f4b8"
}

.fa-cpanel:before {
    content: "\f388"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-creative-commons-by:before {
    content: "\f4e7"
}

.fa-creative-commons-nc:before {
    content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
    content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
    content: "\f4ea"
}

.fa-creative-commons-nd:before {
    content: "\f4eb"
}

.fa-creative-commons-pd:before {
    content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
    content: "\f4ed"
}

.fa-creative-commons-remix:before {
    content: "\f4ee"
}

.fa-creative-commons-sa:before {
    content: "\f4ef"
}

.fa-creative-commons-sampling:before {
    content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
    content: "\f4f1"
}

.fa-creative-commons-share:before {
    content: "\f4f2"
}

.fa-creative-commons-zero:before {
    content: "\f4f3"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-credit-card-blank:before {
    content: "\f389"
}

.fa-credit-card-front:before {
    content: "\f38a"
}

.fa-cricket:before {
    content: "\f449"
}

.fa-crop:before {
    content: "\f125"
}

.fa-crop-alt:before {
    content: "\f565"
}

.fa-cross:before {
    content: "\f654"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-crow:before {
    content: "\f520"
}

.fa-crown:before {
    content: "\f521"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-curling:before {
    content: "\f44a"
}

.fa-cut:before {
    content: "\f0c4"
}

.fa-cuttlefish:before {
    content: "\f38c"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-deaf:before {
    content: "\f2a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-deploydog:before {
    content: "\f38e"
}

.fa-deskpro:before {
    content: "\f38f"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-desktop-alt:before {
    content: "\f390"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-dharmachakra:before {
    content: "\f655"
}

.fa-diagnoses:before {
    content: "\f470"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-dice:before {
    content: "\f522"
}

.fa-dice-five:before {
    content: "\f523"
}

.fa-dice-four:before {
    content: "\f524"
}

.fa-dice-one:before {
    content: "\f525"
}

.fa-dice-six:before {
    content: "\f526"
}

.fa-dice-three:before {
    content: "\f527"
}

.fa-dice-two:before {
    content: "\f528"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-digital-ocean:before {
    content: "\f391"
}

.fa-digital-tachograph:before {
    content: "\f566"
}

.fa-diploma:before {
    content: "\f5ea"
}

.fa-directions:before {
    content: "\f5eb"
}

.fa-discord:before {
    content: "\f392"
}

.fa-discourse:before {
    content: "\f393"
}

.fa-divide:before {
    content: "\f529"
}

.fa-dizzy:before {
    content: "\f567"
}

.fa-dna:before {
    content: "\f471"
}

.fa-do-not-enter:before {
    content: "\f5ec"
}

.fa-dochub:before {
    content: "\f394"
}

.fa-docker:before {
    content: "\f395"
}

.fa-dollar-sign:before {
    content: "\f155"
}

.fa-dolly:before {
    content: "\f472"
}

.fa-dolly-empty:before {
    content: "\f473"
}

.fa-dolly-flatbed:before {
    content: "\f474"
}

.fa-dolly-flatbed-alt:before {
    content: "\f475"
}

.fa-dolly-flatbed-empty:before {
    content: "\f476"
}

.fa-donate:before {
    content: "\f4b9"
}

.fa-door-closed:before {
    content: "\f52a"
}

.fa-door-open:before {
    content: "\f52b"
}

.fa-dot-circle:before {
    content: "\f192"
}

.fa-dove:before {
    content: "\f4ba"
}

.fa-download:before {
    content: "\f019"
}

.fa-draft2digital:before {
    content: "\f396"
}

.fa-drafting-compass:before {
    content: "\f568"
}

.fa-draw-circle:before {
    content: "\f5ed"
}

.fa-draw-polygon:before {
    content: "\f5ee"
}

.fa-draw-square:before {
    content: "\f5ef"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-dribbble-square:before {
    content: "\f397"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-drum:before {
    content: "\f569"
}

.fa-drum-steelpan:before {
    content: "\f56a"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-dumbbell:before {
    content: "\f44b"
}

.fa-dyalog:before {
    content: "\f399"
}

.fa-ear:before {
    content: "\f5f0"
}

.fa-earlybirds:before {
    content: "\f39a"
}

.fa-ebay:before {
    content: "\f4f4"
}

.fa-edge:before {
    content: "\f282"
}

.fa-edit:before {
    content: "\f044"
}

.fa-eject:before {
    content: "\f052"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-h-alt:before {
    content: "\f39b"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-ellipsis-v-alt:before {
    content: "\f39c"
}

.fa-ello:before {
    content: "\f5f1"
}

.fa-ember:before {
    content: "\f423"
}

.fa-empire:before {
    content: "\f1d1"
}

.fa-empty-set:before {
    content: "\f656"
}

.fa-engine-warning:before {
    content: "\f5f2"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-dollar:before {
    content: "\f657"
}

.fa-envelope-open-text:before {
    content: "\f658"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-envira:before {
    content: "\f299"
}

.fa-equals:before {
    content: "\f52c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-erlang:before {
    content: "\f39d"
}

.fa-ethereum:before {
    content: "\f42e"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-euro-sign:before {
    content: "\f153"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-exchange-alt:before {
    content: "\f362"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-exclamation-square:before {
    content: "\f321"
}

.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-expand:before {
    content: "\f065"
}

.fa-expand-alt:before {
    content: "\f424"
}

.fa-expand-arrows:before {
    content: "\f31d"
}

.fa-expand-arrows-alt:before {
    content: "\f31e"
}

.fa-expand-wide:before {
    content: "\f320"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-external-link-alt:before {
    content: "\f35d"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-external-link-square-alt:before {
    content: "\f360"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-dropper:before {
    content: "\f1fb"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-facebook-messenger:before {
    content: "\f39f"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-feather:before {
    content: "\f52d"
}

.fa-feather-alt:before {
    content: "\f56b"
}

.fa-female:before {
    content: "\f182"
}

.fa-field-hockey:before {
    content: "\f44c"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-alt:before {
    content: "\f15c"
}

.fa-file-archive:before {
    content: "\f1c6"
}

.fa-file-audio:before {
    content: "\f1c7"
}

.fa-file-certificate:before {
    content: "\f5f3"
}

.fa-file-chart-line:before {
    content: "\f659"
}

.fa-file-chart-pie:before {
    content: "\f65a"
}

.fa-file-check:before {
    content: "\f316"
}

.fa-file-code:before {
    content: "\f1c9"
}

.fa-file-contract:before {
    content: "\f56c"
}

.fa-file-download:before {
    content: "\f56d"
}

.fa-file-edit:before {
    content: "\f31c"
}

.fa-file-excel:before {
    content: "\f1c3"
}

.fa-file-exclamation:before {
    content: "\f31a"
}

.fa-file-export:before {
    content: "\f56e"
}

.fa-file-image:before {
    content: "\f1c5"
}

.fa-file-import:before {
    content: "\f56f"
}

.fa-file-invoice:before {
    content: "\f570"
}

.fa-file-invoice-dollar:before {
    content: "\f571"
}

.fa-file-medical:before {
    content: "\f477"
}

.fa-file-medical-alt:before {
    content: "\f478"
}

.fa-file-minus:before {
    content: "\f318"
}

.fa-file-pdf:before {
    content: "\f1c1"
}

.fa-file-plus:before {
    content: "\f319"
}

.fa-file-powerpoint:before {
    content: "\f1c4"
}

.fa-file-prescription:before {
    content: "\f572"
}

.fa-file-signature:before {
    content: "\f573"
}

.fa-file-spreadsheet:before {
    content: "\f65b"
}

.fa-file-times:before {
    content: "\f317"
}

.fa-file-upload:before {
    content: "\f574"
}

.fa-file-user:before {
    content: "\f65c"
}

.fa-file-video:before {
    content: "\f1c8"
}

.fa-file-word:before {
    content: "\f1c2"
}

.fa-fill:before {
    content: "\f575"
}

.fa-fill-drip:before {
    content: "\f576"
}

.fa-film:before {
    content: "\f008"
}

.fa-film-alt:before {
    content: "\f3a0"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-fingerprint:before {
    content: "\f577"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-first-aid:before {
    content: "\f479"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-first-order-alt:before {
    content: "\f50a"
}

.fa-firstdraft:before {
    content: "\f3a1"
}

.fa-fish:before {
    content: "\f578"
}

.fa-flag:before {
    content: "\f024"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-flipboard:before {
    content: "\f44d"
}

.fa-flushed:before {
    content: "\f579"
}

.fa-fly:before {
    content: "\f417"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-minus:before {
    content: "\f65d"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-folder-plus:before {
    content: "\f65e"
}

.fa-folder-times:before {
    content: "\f65f"
}

.fa-folders:before {
    content: "\f660"
}

.fa-font:before {
    content: "\f031"
}

.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-font-awesome-flag:before {
    content: "\f425"
}

.fa-font-awesome-logo-full:before {
    content: "\f4e6"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-fonticons-fi:before {
    content: "\f3a2"
}

.fa-football-ball:before {
    content: "\f44e"
}

.fa-football-helmet:before {
    content: "\f44f"
}

.fa-forklift:before {
    content: "\f47a"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-fort-awesome-alt:before {
    content: "\f3a3"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-fragile:before {
    content: "\f4bb"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-freebsd:before {
    content: "\f3a4"
}

.fa-frog:before {
    content: "\f52e"
}

.fa-frown:before {
    content: "\f119"
}

.fa-frown-open:before {
    content: "\f57a"
}

.fa-fulcrum:before {
    content: "\f50b"
}

.fa-function:before {
    content: "\f661"
}

.fa-funnel-dollar:before {
    content: "\f662"
}

.fa-futbol:before {
    content: "\f1e3"
}

.fa-galactic-republic:before {
    content: "\f50c"
}

.fa-galactic-senate:before {
    content: "\f50d"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-gas-pump:before {
    content: "\f52f"
}

.fa-gas-pump-slash:before {
    content: "\f5f4"
}

.fa-gavel:before {
    content: "\f0e3"
}

.fa-gem:before {
    content: "\f3a5"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-gift-card:before {
    content: "\f663"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-github:before {
    content: "\f09b"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-gitkraken:before {
    content: "\f3a6"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-gitter:before {
    content: "\f426"
}

.fa-glass-martini:before {
    content: "\f000"
}

.fa-glass-martini-alt:before {
    content: "\f57b"
}

.fa-glasses:before {
    content: "\f530"
}

.fa-glasses-alt:before {
    content: "\f5f5"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-globe-africa:before {
    content: "\f57c"
}

.fa-globe-americas:before {
    content: "\f57d"
}

.fa-globe-asia:before {
    content: "\f57e"
}

.fa-globe-stand:before {
    content: "\f5f6"
}

.fa-gofore:before {
    content: "\f3a7"
}

.fa-golf-ball:before {
    content: "\f450"
}

.fa-golf-club:before {
    content: "\f451"
}

.fa-goodreads:before {
    content: "\f3a8"
}

.fa-goodreads-g:before {
    content: "\f3a9"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-google-drive:before {
    content: "\f3aa"
}

.fa-google-play:before {
    content: "\f3ab"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-gopuram:before {
    content: "\f664"
}

.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-gratipay:before {
    content: "\f184"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-greater-than:before {
    content: "\f531"
}

.fa-greater-than-equal:before {
    content: "\f532"
}

.fa-grimace:before {
    content: "\f57f"
}

.fa-grin:before {
    content: "\f580"
}

.fa-grin-alt:before {
    content: "\f581"
}

.fa-grin-beam:before {
    content: "\f582"
}

.fa-grin-beam-sweat:before {
    content: "\f583"
}

.fa-grin-hearts:before {
    content: "\f584"
}

.fa-grin-squint:before {
    content: "\f585"
}

.fa-grin-squint-tears:before {
    content: "\f586"
}

.fa-grin-stars:before {
    content: "\f587"
}

.fa-grin-tears:before {
    content: "\f588"
}

.fa-grin-tongue:before {
    content: "\f589"
}

.fa-grin-tongue-squint:before {
    content: "\f58a"
}

.fa-grin-tongue-wink:before {
    content: "\f58b"
}

.fa-grin-wink:before {
    content: "\f58c"
}

.fa-grip-horizontal:before {
    content: "\f58d"
}

.fa-grip-vertical:before {
    content: "\f58e"
}

.fa-gripfire:before {
    content: "\f3ac"
}

.fa-grunt:before {
    content: "\f3ad"
}

.fa-gulp:before {
    content: "\f3ae"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-h1:before {
    content: "\f313"
}

.fa-h2:before {
    content: "\f314"
}

.fa-h3:before {
    content: "\f315"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-hacker-news-square:before {
    content: "\f3af"
}

.fa-hackerrank:before {
    content: "\f5f7"
}

.fa-hamsa:before {
    content: "\f665"
}

.fa-hand-heart:before {
    content: "\f4bc"
}

.fa-hand-holding:before {
    content: "\f4bd"
}

.fa-hand-holding-box:before {
    content: "\f47b"
}

.fa-hand-holding-heart:before {
    content: "\f4be"
}

.fa-hand-holding-seedling:before {
    content: "\f4bf"
}

.fa-hand-holding-usd:before {
    content: "\f4c0"
}

.fa-hand-holding-water:before {
    content: "\f4c1"
}

.fa-hand-lizard:before {
    content: "\f258"
}

.fa-hand-paper:before {
    content: "\f256"
}

.fa-hand-peace:before {
    content: "\f25b"
}

.fa-hand-point-down:before {
    content: "\f0a7"
}

.fa-hand-point-left:before {
    content: "\f0a5"
}

.fa-hand-point-right:before {
    content: "\f0a4"
}

.fa-hand-point-up:before {
    content: "\f0a6"
}

.fa-hand-pointer:before {
    content: "\f25a"
}

.fa-hand-receiving:before {
    content: "\f47c"
}

.fa-hand-rock:before {
    content: "\f255"
}

.fa-hand-scissors:before {
    content: "\f257"
}

.fa-hand-spock:before {
    content: "\f259"
}

.fa-hands:before {
    content: "\f4c2"
}

.fa-hands-heart:before {
    content: "\f4c3"
}

.fa-hands-helping:before {
    content: "\f4c4"
}

.fa-hands-usd:before {
    content: "\f4c5"
}

.fa-handshake:before {
    content: "\f2b5"
}

.fa-handshake-alt:before {
    content: "\f4c6"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-haykal:before {
    content: "\f666"
}

.fa-hdd:before {
    content: "\f0a0"
}

.fa-heading:before {
    content: "\f1dc"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-headphones-alt:before {
    content: "\f58f"
}

.fa-headset:before {
    content: "\f590"
}

.fa-heart:before {
    content: "\f004"
}

.fa-heart-circle:before {
    content: "\f4c7"
}

.fa-heart-rate:before {
    content: "\f5f8"
}

.fa-heart-square:before {
    content: "\f4c8"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-helicopter:before {
    content: "\f533"
}

.fa-hexagon:before {
    content: "\f312"
}

.fa-highlighter:before {
    content: "\f591"
}

.fa-hips:before {
    content: "\f452"
}

.fa-hire-a-helper:before {
    content: "\f3b0"
}

.fa-history:before {
    content: "\f1da"
}

.fa-hockey-puck:before {
    content: "\f453"
}

.fa-hockey-sticks:before {
    content: "\f454"
}

.fa-home:before {
    content: "\f015"
}

.fa-home-heart:before {
    content: "\f4c9"
}

.fa-hooli:before {
    content: "\f427"
}

.fa-hornbill:before {
    content: "\f592"
}

.fa-hospital:before {
    content: "\f0f8"
}

.fa-hospital-alt:before {
    content: "\f47d"
}

.fa-hospital-symbol:before {
    content: "\f47e"
}

.fa-hot-tub:before {
    content: "\f593"
}

.fa-hotel:before {
    content: "\f594"
}

.fa-hotjar:before {
    content: "\f3b1"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-start:before {
    content: "\f251"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-hubspot:before {
    content: "\f3b2"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-id-card-alt:before {
    content: "\f47f"
}

.fa-image:before {
    content: "\f03e"
}

.fa-images:before {
    content: "\f302"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-inbox-in:before {
    content: "\f310"
}

.fa-inbox-out:before {
    content: "\f311"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-industry:before {
    content: "\f275"
}

.fa-industry-alt:before {
    content: "\f3b3"
}

.fa-infinity:before {
    content: "\f534"
}

.fa-info:before {
    content: "\f129"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-info-square:before {
    content: "\f30f"
}

.fa-inhaler:before {
    content: "\f5f9"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-integral:before {
    content: "\f667"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-intersection:before {
    content: "\f668"
}

.fa-inventory:before {
    content: "\f480"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-italic:before {
    content: "\f033"
}

.fa-itunes:before {
    content: "\f3b4"
}

.fa-itunes-note:before {
    content: "\f3b5"
}

.fa-jack-o-lantern:before {
    content: "\f30e"
}

.fa-java:before {
    content: "\f4e4"
}

.fa-jedi:before {
    content: "\f669"
}

.fa-jedi-order:before {
    content: "\f50e"
}

.fa-jenkins:before {
    content: "\f3b6"
}

.fa-joget:before {
    content: "\f3b7"
}

.fa-joint:before {
    content: "\f595"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-journal-whills:before {
    content: "\f66a"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-js-square:before {
    content: "\f3b9"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-kaaba:before {
    content: "\f66b"
}

.fa-kaggle:before {
    content: "\f5fa"
}

.fa-key:before {
    content: "\f084"
}

.fa-keybase:before {
    content: "\f4f5"
}

.fa-keyboard:before {
    content: "\f11c"
}

.fa-keycdn:before {
    content: "\f3ba"
}

.fa-keynote:before {
    content: "\f66c"
}

.fa-khanda:before {
    content: "\f66d"
}

.fa-kickstarter:before {
    content: "\f3bb"
}

.fa-kickstarter-k:before {
    content: "\f3bc"
}

.fa-kidneys:before {
    content: "\f5fb"
}

.fa-kiss:before {
    content: "\f596"
}

.fa-kiss-beam:before {
    content: "\f597"
}

.fa-kiss-wink-heart:before {
    content: "\f598"
}

.fa-kiwi-bird:before {
    content: "\f535"
}

.fa-korvue:before {
    content: "\f42f"
}

.fa-lambda:before {
    content: "\f66e"
}

.fa-lamp:before {
    content: "\f4ca"
}

.fa-landmark:before {
    content: "\f66f"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-laptop-code:before {
    content: "\f5fc"
}

.fa-laravel:before {
    content: "\f3bd"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-laugh:before {
    content: "\f599"
}

.fa-laugh-beam:before {
    content: "\f59a"
}

.fa-laugh-squint:before {
    content: "\f59b"
}

.fa-laugh-wink:before {
    content: "\f59c"
}

.fa-layer-group:before {
    content: "\f5fd"
}

.fa-layer-minus:before {
    content: "\f5fe"
}

.fa-layer-plus:before {
    content: "\f5ff"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-leaf-heart:before {
    content: "\f4cb"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-lemon:before {
    content: "\f094"
}

.fa-less:before {
    content: "\f41d"
}

.fa-less-than:before {
    content: "\f536"
}

.fa-less-than-equal:before {
    content: "\f537"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-level-down-alt:before {
    content: "\f3be"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-up-alt:before {
    content: "\f3bf"
}

.fa-life-ring:before {
    content: "\f1cd"
}

.fa-lightbulb:before {
    content: "\f0eb"
}

.fa-lightbulb-dollar:before {
    content: "\f670"
}

.fa-lightbulb-exclamation:before {
    content: "\f671"
}

.fa-lightbulb-on:before {
    content: "\f672"
}

.fa-lightbulb-slash:before {
    content: "\f673"
}

.fa-line:before {
    content: "\f3c0"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-linkedin:before {
    content: "\f08c"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-lips:before {
    content: "\f600"
}

.fa-lira-sign:before {
    content: "\f195"
}

.fa-list:before {
    content: "\f03a"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-location:before {
    content: "\f601"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-location-circle:before {
    content: "\f602"
}

.fa-location-slash:before {
    content: "\f603"
}

.fa-lock:before {
    content: "\f023"
}

.fa-lock-alt:before {
    content: "\f30d"
}

.fa-lock-open:before {
    content: "\f3c1"
}

.fa-lock-open-alt:before {
    content: "\f3c2"
}

.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-long-arrow-alt-right:before {
    content: "\f30b"
}

.fa-long-arrow-alt-up:before {
    content: "\f30c"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-loveseat:before {
    content: "\f4cc"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-luchador:before {
    content: "\f455"
}

.fa-luggage-cart:before {
    content: "\f59d"
}

.fa-lungs:before {
    content: "\f604"
}

.fa-lyft:before {
    content: "\f3c3"
}

.fa-magento:before {
    content: "\f3c4"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-mail-bulk:before {
    content: "\f674"
}

.fa-mailchimp:before {
    content: "\f59e"
}

.fa-male:before {
    content: "\f183"
}

.fa-mandalorian:before {
    content: "\f50f"
}

.fa-map:before {
    content: "\f279"
}

.fa-map-marked:before {
    content: "\f59f"
}

.fa-map-marked-alt:before {
    content: "\f5a0"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-map-marker-alt:before {
    content: "\f3c5"
}

.fa-map-marker-alt-slash:before {
    content: "\f605"
}

.fa-map-marker-check:before {
    content: "\f606"
}

.fa-map-marker-edit:before {
    content: "\f607"
}

.fa-map-marker-exclamation:before {
    content: "\f608"
}

.fa-map-marker-minus:before {
    content: "\f609"
}

.fa-map-marker-plus:before {
    content: "\f60a"
}

.fa-map-marker-question:before {
    content: "\f60b"
}

.fa-map-marker-slash:before {
    content: "\f60c"
}

.fa-map-marker-smile:before {
    content: "\f60d"
}

.fa-map-marker-times:before {
    content: "\f60e"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-markdown:before {
    content: "\f60f"
}

.fa-marker:before {
    content: "\f5a1"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mastodon:before {
    content: "\f4f6"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-medal:before {
    content: "\f5a2"
}

.fa-medapps:before {
    content: "\f3c6"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-medium-m:before {
    content: "\f3c7"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-medrt:before {
    content: "\f3c8"
}

.fa-meetup:before {
    content: "\f2e0"
}

.fa-megaphone:before {
    content: "\f675"
}

.fa-megaport:before {
    content: "\f5a3"
}

.fa-meh:before {
    content: "\f11a"
}

.fa-meh-blank:before {
    content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
    content: "\f5a5"
}

.fa-memory:before {
    content: "\f538"
}

.fa-menorah:before {
    content: "\f676"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-alt:before {
    content: "\f3c9"
}

.fa-microphone-alt-slash:before {
    content: "\f539"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-microscope:before {
    content: "\f610"
}

.fa-microsoft:before {
    content: "\f3ca"
}

.fa-mind-share:before {
    content: "\f677"
}

.fa-minus:before {
    content: "\f068"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-minus-hexagon:before {
    content: "\f307"
}

.fa-minus-octagon:before {
    content: "\f308"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-mix:before {
    content: "\f3cb"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-mizuni:before {
    content: "\f3cc"
}

.fa-mobile:before {
    content: "\f10b"
}

.fa-mobile-alt:before {
    content: "\f3cd"
}

.fa-mobile-android:before {
    content: "\f3ce"
}

.fa-mobile-android-alt:before {
    content: "\f3cf"
}

.fa-modx:before {
    content: "\f285"
}

.fa-monero:before {
    content: "\f3d0"
}

.fa-money-bill:before {
    content: "\f0d6"
}

.fa-money-bill-alt:before {
    content: "\f3d1"
}

.fa-money-bill-wave:before {
    content: "\f53a"
}

.fa-money-bill-wave-alt:before {
    content: "\f53b"
}

.fa-money-check:before {
    content: "\f53c"
}

.fa-money-check-alt:before {
    content: "\f53d"
}

.fa-monitor-heart-rate:before {
    content: "\f611"
}

.fa-monument:before {
    content: "\f5a6"
}

.fa-moon:before {
    content: "\f186"
}

.fa-mortar-pestle:before {
    content: "\f5a7"
}

.fa-mosque:before {
    content: "\f678"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-music:before {
    content: "\f001"
}

.fa-napster:before {
    content: "\f3d2"
}

.fa-neos:before {
    content: "\f612"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-nimblr:before {
    content: "\f5a8"
}

.fa-nintendo-switch:before {
    content: "\f418"
}

.fa-node:before {
    content: "\f419"
}

.fa-node-js:before {
    content: "\f3d3"
}

.fa-not-equal:before {
    content: "\f53e"
}

.fa-notes-medical:before {
    content: "\f481"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-ns8:before {
    content: "\f3d5"
}

.fa-nutritionix:before {
    content: "\f3d6"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-octagon:before {
    content: "\f306"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-oil-can:before {
    content: "\f613"
}

.fa-oil-temp:before {
    content: "\f614"
}

.fa-old-republic:before {
    content: "\f510"
}

.fa-om:before {
    content: "\f679"
}

.fa-omega:before {
    content: "\f67a"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-osi:before {
    content: "\f41a"
}

.fa-outdent:before {
    content: "\f03b"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-paint-brush-alt:before {
    content: "\f5a9"
}

.fa-paint-roller:before {
    content: "\f5aa"
}

.fa-palette:before {
    content: "\f53f"
}

.fa-palfed:before {
    content: "\f3d8"
}

.fa-pallet:before {
    content: "\f482"
}

.fa-pallet-alt:before {
    content: "\f483"
}

.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-parachute-box:before {
    content: "\f4cd"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-parking:before {
    content: "\f540"
}

.fa-parking-circle:before {
    content: "\f615"
}

.fa-parking-circle-slash:before {
    content: "\f616"
}

.fa-parking-slash:before {
    content: "\f617"
}

.fa-passport:before {
    content: "\f5ab"
}

.fa-pastafarianism:before {
    content: "\f67b"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-patreon:before {
    content: "\f3d9"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-peace:before {
    content: "\f67c"
}

.fa-pen:before {
    content: "\f304"
}

.fa-pen-alt:before {
    content: "\f305"
}

.fa-pen-fancy:before {
    content: "\f5ac"
}

.fa-pen-nib:before {
    content: "\f5ad"
}

.fa-pen-square:before {
    content: "\f14b"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-pencil-alt:before {
    content: "\f303"
}

.fa-pencil-paintbrush:before {
    content: "\f618"
}

.fa-pencil-ruler:before {
    content: "\f5ae"
}

.fa-pennant:before {
    content: "\f456"
}

.fa-people-carry:before {
    content: "\f4ce"
}

.fa-percent:before {
    content: "\f295"
}

.fa-percentage:before {
    content: "\f541"
}

.fa-periscope:before {
    content: "\f3da"
}

.fa-person-carry:before {
    content: "\f4cf"
}

.fa-person-dolly:before {
    content: "\f4d0"
}

.fa-person-dolly-empty:before {
    content: "\f4d1"
}

.fa-phabricator:before {
    content: "\f3db"
}

.fa-phoenix-framework:before {
    content: "\f3dc"
}

.fa-phoenix-squadron:before {
    content: "\f511"
}

.fa-phone:before {
    content: "\f095"
}

.fa-phone-office:before {
    content: "\f67d"
}

.fa-phone-plus:before {
    content: "\f4d2"
}

.fa-phone-slash:before {
    content: "\f3dd"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-phone-volume:before {
    content: "\f2a0"
}

.fa-php:before {
    content: "\f457"
}

.fa-pi:before {
    content: "\f67e"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-pied-piper-hat:before {
    content: "\f4e5"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-piggy-bank:before {
    content: "\f4d3"
}

.fa-pills:before {
    content: "\f484"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-place-of-worship:before {
    content: "\f67f"
}

.fa-plane:before {
    content: "\f072"
}

.fa-plane-alt:before {
    content: "\f3de"
}

.fa-plane-arrival:before {
    content: "\f5af"
}

.fa-plane-departure:before {
    content: "\f5b0"
}

.fa-play:before {
    content: "\f04b"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-playstation:before {
    content: "\f3df"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-plus:before {
    content: "\f067"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-plus-hexagon:before {
    content: "\f300"
}

.fa-plus-octagon:before {
    content: "\f301"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-podium:before {
    content: "\f680"
}

.fa-poll:before {
    content: "\f681"
}

.fa-poll-h:before {
    content: "\f682"
}

.fa-poo:before {
    content: "\f2fe"
}

.fa-poop:before {
    content: "\f619"
}

.fa-portrait:before {
    content: "\f3e0"
}

.fa-pound-sign:before {
    content: "\f154"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-pray:before {
    content: "\f683"
}

.fa-praying-hands:before {
    content: "\f684"
}

.fa-prescription:before {
    content: "\f5b1"
}

.fa-prescription-bottle:before {
    content: "\f485"
}

.fa-prescription-bottle-alt:before {
    content: "\f486"
}

.fa-presentation:before {
    content: "\f685"
}

.fa-print:before {
    content: "\f02f"
}

.fa-print-slash:before {
    content: "\f686"
}

.fa-procedures:before {
    content: "\f487"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-project-diagram:before {
    content: "\f542"
}

.fa-pushed:before {
    content: "\f3e1"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-python:before {
    content: "\f3e2"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-question:before {
    content: "\f128"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-question-square:before {
    content: "\f2fd"
}

.fa-quidditch:before {
    content: "\f458"
}

.fa-quinscape:before {
    content: "\f459"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-quran:before {
    content: "\f687"
}

.fa-r-project:before {
    content: "\f4f7"
}

.fa-racquet:before {
    content: "\f45a"
}

.fa-ramp-loading:before {
    content: "\f4d4"
}

.fa-random:before {
    content: "\f074"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-react:before {
    content: "\f41b"
}

.fa-readme:before {
    content: "\f4d5"
}

.fa-rebel:before {
    content: "\f1d0"
}

.fa-receipt:before {
    content: "\f543"
}

.fa-rectangle-landscape:before {
    content: "\f2fa"
}

.fa-rectangle-portrait:before {
    content: "\f2fb"
}

.fa-rectangle-wide:before {
    content: "\f2fc"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-red-river:before {
    content: "\f3e3"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-redo:before {
    content: "\f01e"
}

.fa-redo-alt:before {
    content: "\f2f9"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-rendact:before {
    content: "\f3e4"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-repeat:before {
    content: "\f363"
}

.fa-repeat-1:before {
    content: "\f365"
}

.fa-repeat-1-alt:before {
    content: "\f366"
}

.fa-repeat-alt:before {
    content: "\f364"
}

.fa-reply:before {
    content: "\f3e5"
}

.fa-reply-all:before {
    content: "\f122"
}

.fa-replyd:before {
    content: "\f3e6"
}

.fa-researchgate:before {
    content: "\f4f8"
}

.fa-resolving:before {
    content: "\f3e7"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-retweet-alt:before {
    content: "\f361"
}

.fa-rev:before {
    content: "\f5b2"
}

.fa-ribbon:before {
    content: "\f4d6"
}

.fa-road:before {
    content: "\f018"
}

.fa-robot:before {
    content: "\f544"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-rocketchat:before {
    content: "\f3e8"
}

.fa-rockrms:before {
    content: "\f3e9"
}

.fa-route:before {
    content: "\f4d7"
}

.fa-route-highway:before {
    content: "\f61a"
}

.fa-route-interstate:before {
    content: "\f61b"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-ruble-sign:before {
    content: "\f158"
}

.fa-ruler:before {
    content: "\f545"
}

.fa-ruler-combined:before {
    content: "\f546"
}

.fa-ruler-horizontal:before {
    content: "\f547"
}

.fa-ruler-triangle:before {
    content: "\f61c"
}

.fa-ruler-vertical:before {
    content: "\f548"
}

.fa-rupee-sign:before {
    content: "\f156"
}

.fa-sad-cry:before {
    content: "\f5b3"
}

.fa-sad-tear:before {
    content: "\f5b4"
}

.fa-safari:before {
    content: "\f267"
}

.fa-sass:before {
    content: "\f41e"
}

.fa-save:before {
    content: "\f0c7"
}

.fa-scalpel:before {
    content: "\f61d"
}

.fa-scalpel-path:before {
    content: "\f61e"
}

.fa-scanner:before {
    content: "\f488"
}

.fa-scanner-keyboard:before {
    content: "\f489"
}

.fa-scanner-touchscreen:before {
    content: "\f48a"
}

.fa-schlix:before {
    content: "\f3ea"
}

.fa-school:before {
    content: "\f549"
}

.fa-screwdriver:before {
    content: "\f54a"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-scrubber:before {
    content: "\f2f8"
}

.fa-search:before {
    content: "\f002"
}

.fa-search-dollar:before {
    content: "\f688"
}

.fa-search-location:before {
    content: "\f689"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-searchengin:before {
    content: "\f3eb"
}

.fa-seedling:before {
    content: "\f4d8"
}

.fa-sellcast:before {
    content: "\f2da"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-server:before {
    content: "\f233"
}

.fa-servicestack:before {
    content: "\f3ec"
}

.fa-shapes:before {
    content: "\f61f"
}

.fa-share:before {
    content: "\f064"
}

.fa-share-all:before {
    content: "\f367"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-shekel-sign:before {
    content: "\f20b"
}

.fa-shield:before {
    content: "\f132"
}

.fa-shield-alt:before {
    content: "\f3ed"
}

.fa-shield-check:before {
    content: "\f2f7"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-shipping-fast:before {
    content: "\f48b"
}

.fa-shipping-timed:before {
    content: "\f48c"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-shoe-prints:before {
    content: "\f54b"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-shopware:before {
    content: "\f5b5"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-shredder:before {
    content: "\f68a"
}

.fa-shuttle-van:before {
    content: "\f5b6"
}

.fa-shuttlecock:before {
    content: "\f45b"
}

.fa-sigma:before {
    content: "\f68b"
}

.fa-sign:before {
    content: "\f4d9"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-sign-language:before {
    content: "\f2a7"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-signal:before {
    content: "\f012"
}

.fa-signal-1:before {
    content: "\f68c"
}

.fa-signal-2:before {
    content: "\f68d"
}

.fa-signal-3:before {
    content: "\f68e"
}

.fa-signal-4:before {
    content: "\f68f"
}

.fa-signal-alt:before {
    content: "\f690"
}

.fa-signal-alt-1:before {
    content: "\f691"
}

.fa-signal-alt-2:before {
    content: "\f692"
}

.fa-signal-alt-3:before {
    content: "\f693"
}

.fa-signal-alt-slash:before {
    content: "\f694"
}

.fa-signal-slash:before {
    content: "\f695"
}

.fa-signature:before {
    content: "\f5b7"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-sistrix:before {
    content: "\f3ee"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-sith:before {
    content: "\f512"
}

.fa-skeleton:before {
    content: "\f620"
}

.fa-skull:before {
    content: "\f54c"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-slack:before {
    content: "\f198"
}

.fa-slack-hash:before {
    content: "\f3ef"
}

.fa-sliders-h:before {
    content: "\f1de"
}

.fa-sliders-h-square:before {
    content: "\f3f0"
}

.fa-sliders-v:before {
    content: "\f3f1"
}

.fa-sliders-v-square:before {
    content: "\f3f2"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-smile:before {
    content: "\f118"
}

.fa-smile-beam:before {
    content: "\f5b8"
}

.fa-smile-plus:before {
    content: "\f5b9"
}

.fa-smile-wink:before {
    content: "\f4da"
}

.fa-smoking:before {
    content: "\f48d"
}

.fa-smoking-ban:before {
    content: "\f54d"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-snowflake:before {
    content: "\f2dc"
}

.fa-socks:before {
    content: "\f696"
}

.fa-solar-panel:before {
    content: "\f5ba"
}

.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-alpha-down:before {
    content: "\f15d"
}

.fa-sort-alpha-up:before {
    content: "\f15e"
}

.fa-sort-amount-down:before {
    content: "\f160"
}

.fa-sort-amount-up:before {
    content: "\f161"
}

.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-numeric-down:before {
    content: "\f162"
}

.fa-sort-numeric-up:before {
    content: "\f163"
}

.fa-sort-up:before {
    content: "\f0de"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-spa:before {
    content: "\f5bb"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-spade:before {
    content: "\f2f4"
}

.fa-speakap:before {
    content: "\f3f3"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-spinner-third:before {
    content: "\f3f4"
}

.fa-splotch:before {
    content: "\f5bc"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-spray-can:before {
    content: "\f5bd"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-square-root:before {
    content: "\f697"
}

.fa-square-root-alt:before {
    content: "\f698"
}

.fa-squarespace:before {
    content: "\f5be"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-stamp:before {
    content: "\f5bf"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-and-crescent:before {
    content: "\f699"
}

.fa-star-exclamation:before {
    content: "\f2f3"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-star-half-alt:before {
    content: "\f5c0"
}

.fa-star-of-david:before {
    content: "\f69a"
}

.fa-star-of-life:before {
    content: "\f621"
}

.fa-staylinked:before {
    content: "\f3f5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-steam-symbol:before {
    content: "\f3f6"
}

.fa-steering-wheel:before {
    content: "\f622"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-sticker-mule:before {
    content: "\f3f7"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-stomach:before {
    content: "\f623"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stopwatch:before {
    content: "\f2f2"
}

.fa-store:before {
    content: "\f54e"
}

.fa-store-alt:before {
    content: "\f54f"
}

.fa-strava:before {
    content: "\f428"
}

.fa-stream:before {
    content: "\f550"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-stripe:before {
    content: "\f429"
}

.fa-stripe-s:before {
    content: "\f42a"
}

.fa-stroopwafel:before {
    content: "\f551"
}

.fa-studiovinari:before {
    content: "\f3f8"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-subway:before {
    content: "\f239"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-suitcase-rolling:before {
    content: "\f5c1"
}

.fa-sun:before {
    content: "\f185"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-supple:before {
    content: "\f3f9"
}

.fa-surprise:before {
    content: "\f5c2"
}

.fa-swatchbook:before {
    content: "\f5c3"
}

.fa-swimmer:before {
    content: "\f5c4"
}

.fa-swimming-pool:before {
    content: "\f5c5"
}

.fa-synagogue:before {
    content: "\f69b"
}

.fa-sync:before {
    content: "\f021"
}

.fa-sync-alt:before {
    content: "\f2f1"
}

.fa-syringe:before {
    content: "\f48e"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-table-tennis:before {
    content: "\f45d"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-tablet-alt:before {
    content: "\f3fa"
}

.fa-tablet-android:before {
    content: "\f3fb"
}

.fa-tablet-android-alt:before {
    content: "\f3fc"
}

.fa-tablet-rugged:before {
    content: "\f48f"
}

.fa-tablets:before {
    content: "\f490"
}

.fa-tachometer:before {
    content: "\f0e4"
}

.fa-tachometer-alt:before {
    content: "\f3fd"
}

.fa-tachometer-alt-average:before {
    content: "\f624"
}

.fa-tachometer-alt-fast:before {
    content: "\f625"
}

.fa-tachometer-alt-fastest:before {
    content: "\f626"
}

.fa-tachometer-alt-slow:before {
    content: "\f627"
}

.fa-tachometer-alt-slowest:before {
    content: "\f628"
}

.fa-tachometer-average:before {
    content: "\f629"
}

.fa-tachometer-fast:before {
    content: "\f62a"
}

.fa-tachometer-fastest:before {
    content: "\f62b"
}

.fa-tachometer-slow:before {
    content: "\f62c"
}

.fa-tachometer-slowest:before {
    content: "\f62d"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-tally:before {
    content: "\f69c"
}

.fa-tape:before {
    content: "\f4db"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-taxi:before {
    content: "\f1ba"
}

.fa-teamspeak:before {
    content: "\f4f9"
}

.fa-teeth:before {
    content: "\f62e"
}

.fa-teeth-open:before {
    content: "\f62f"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-telegram-plane:before {
    content: "\f3fe"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-tennis-ball:before {
    content: "\f45e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-the-red-yeti:before {
    content: "\f69d"
}

.fa-theater-masks:before {
    content: "\f630"
}

.fa-themeco:before {
    content: "\f5c6"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-thermometer:before {
    content: "\f491"
}

.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-theta:before {
    content: "\f69e"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbtack:before {
    content: "\f08d"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-tilde:before {
    content: "\f69f"
}

.fa-times:before {
    content: "\f00d"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-times-hexagon:before {
    content: "\f2ee"
}

.fa-times-octagon:before {
    content: "\f2f0"
}

.fa-times-square:before {
    content: "\f2d3"
}

.fa-tint:before {
    content: "\f043"
}

.fa-tint-slash:before {
    content: "\f5c7"
}

.fa-tire:before {
    content: "\f631"
}

.fa-tire-flat:before {
    content: "\f632"
}

.fa-tire-pressure-warning:before {
    content: "\f633"
}

.fa-tire-rugged:before {
    content: "\f634"
}

.fa-tired:before {
    content: "\f5c8"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-toolbox:before {
    content: "\f552"
}

.fa-tooth:before {
    content: "\f5c9"
}

.fa-toothbrush:before {
    content: "\f635"
}

.fa-torah:before {
    content: "\f6a0"
}

.fa-torii-gate:before {
    content: "\f6a1"
}

.fa-trade-federation:before {
    content: "\f513"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-traffic-cone:before {
    content: "\f636"
}

.fa-traffic-light:before {
    content: "\f637"
}

.fa-traffic-light-go:before {
    content: "\f638"
}

.fa-traffic-light-slow:before {
    content: "\f639"
}

.fa-traffic-light-stop:before {
    content: "\f63a"
}

.fa-train:before {
    content: "\f238"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-trash-alt:before {
    content: "\f2ed"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-tree-alt:before {
    content: "\f400"
}

.fa-trello:before {
    content: "\f181"
}

.fa-triangle:before {
    content: "\f2ec"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-trophy-alt:before {
    content: "\f2eb"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-truck-container:before {
    content: "\f4dc"
}

.fa-truck-couch:before {
    content: "\f4dd"
}

.fa-truck-loading:before {
    content: "\f4de"
}

.fa-truck-monster:before {
    content: "\f63b"
}

.fa-truck-moving:before {
    content: "\f4df"
}

.fa-truck-pickup:before {
    content: "\f63c"
}

.fa-truck-ramp:before {
    content: "\f4e0"
}

.fa-tshirt:before {
    content: "\f553"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-tv:before {
    content: "\f26c"
}

.fa-tv-retro:before {
    content: "\f401"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-typo3:before {
    content: "\f42b"
}

.fa-uber:before {
    content: "\f402"
}

.fa-uikit:before {
    content: "\f403"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-umbrella-beach:before {
    content: "\f5ca"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-undo:before {
    content: "\f0e2"
}

.fa-undo-alt:before {
    content: "\f2ea"
}

.fa-union:before {
    content: "\f6a2"
}

.fa-uniregistry:before {
    content: "\f404"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-university:before {
    content: "\f19c"
}

.fa-unlink:before {
    content: "\f127"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-untappd:before {
    content: "\f405"
}

.fa-upload:before {
    content: "\f093"
}

.fa-usb:before {
    content: "\f287"
}

.fa-usd-circle:before {
    content: "\f2e8"
}

.fa-usd-square:before {
    content: "\f2e9"
}

.fa-user:before {
    content: "\f007"
}

.fa-user-alt:before {
    content: "\f406"
}

.fa-user-alt-slash:before {
    content: "\f4fa"
}

.fa-user-astronaut:before {
    content: "\f4fb"
}

.fa-user-chart:before {
    content: "\f6a3"
}

.fa-user-check:before {
    content: "\f4fc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-clock:before {
    content: "\f4fd"
}

.fa-user-cog:before {
    content: "\f4fe"
}

.fa-user-crown:before {
    content: "\f6a4"
}

.fa-user-edit:before {
    content: "\f4ff"
}

.fa-user-friends:before {
    content: "\f500"
}

.fa-user-graduate:before {
    content: "\f501"
}

.fa-user-lock:before {
    content: "\f502"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-user-minus:before {
    content: "\f503"
}

.fa-user-ninja:before {
    content: "\f504"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-user-shield:before {
    content: "\f505"
}

.fa-user-slash:before {
    content: "\f506"
}

.fa-user-tag:before {
    content: "\f507"
}

.fa-user-tie:before {
    content: "\f508"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-users:before {
    content: "\f0c0"
}

.fa-users-class:before {
    content: "\f63d"
}

.fa-users-cog:before {
    content: "\f509"
}

.fa-users-crown:before {
    content: "\f6a5"
}

.fa-ussunnah:before {
    content: "\f407"
}

.fa-utensil-fork:before {
    content: "\f2e3"
}

.fa-utensil-knife:before {
    content: "\f2e4"
}

.fa-utensil-spoon:before {
    content: "\f2e5"
}

.fa-utensils:before {
    content: "\f2e7"
}

.fa-utensils-alt:before {
    content: "\f2e6"
}

.fa-vaadin:before {
    content: "\f408"
}

.fa-value-absolute:before {
    content: "\f6a6"
}

.fa-vector-square:before {
    content: "\f5cb"
}

.fa-venus:before {
    content: "\f221"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-vial:before {
    content: "\f492"
}

.fa-vials:before {
    content: "\f493"
}

.fa-viber:before {
    content: "\f409"
}

.fa-video:before {
    content: "\f03d"
}

.fa-video-plus:before {
    content: "\f4e1"
}

.fa-video-slash:before {
    content: "\f4e2"
}

.fa-vihara:before {
    content: "\f6a7"
}

.fa-vimeo:before {
    content: "\f40a"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-vimeo-v:before {
    content: "\f27d"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-vk:before {
    content: "\f189"
}

.fa-vnv:before {
    content: "\f40b"
}

.fa-volleyball-ball:before {
    content: "\f45f"
}

.fa-volume:before {
    content: "\f6a8"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-mute:before {
    content: "\f6a9"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-slash:before {
    content: "\f2e2"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-vuejs:before {
    content: "\f41f"
}

.fa-walking:before {
    content: "\f554"
}

.fa-wallet:before {
    content: "\f555"
}

.fa-warehouse:before {
    content: "\f494"
}

.fa-warehouse-alt:before {
    content: "\f495"
}

.fa-watch:before {
    content: "\f2e1"
}

.fa-watch-fitness:before {
    content: "\f63e"
}

.fa-weebly:before {
    content: "\f5cc"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-weight:before {
    content: "\f496"
}

.fa-weight-hanging:before {
    content: "\f5cd"
}

.fa-weixin:before {
    content: "\f1d7"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-whistle:before {
    content: "\f460"
}

.fa-whmcs:before {
    content: "\f40d"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-wifi-1:before {
    content: "\f6aa"
}

.fa-wifi-2:before {
    content: "\f6ab"
}

.fa-wifi-slash:before {
    content: "\f6ac"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-window:before {
    content: "\f40e"
}

.fa-window-alt:before {
    content: "\f40f"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-wine-glass:before {
    content: "\f4e3"
}

.fa-wine-glass-alt:before {
    content: "\f5ce"
}

.fa-wix:before {
    content: "\f5cf"
}

.fa-wolf-pack-battalion:before {
    content: "\f514"
}

.fa-won-sign:before {
    content: "\f159"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-wordpress-simple:before {
    content: "\f411"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-x-ray:before {
    content: "\f497"
}

.fa-xbox:before {
    content: "\f412"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-y-combinator:before {
    content: "\f23b"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-yandex:before {
    content: "\f413"
}

.fa-yandex-international:before {
    content: "\f414"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-yen-sign:before {
    content: "\f157"
}

.fa-yin-yang:before {
    content: "\f6ad"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-youtube-square:before {
    content: "\f431"
}

.fa-zhihu:before {
    content: "\f63f"
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

.fa-rotate-45 {
    transform: rotate(45deg)
}

.fa-rotate-135 {
    transform: rotate(135deg)
}


/*!
 * Font Awesome Pro 5.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    src: url(/s/fonts/fa-regular-400.eot);
    src: url(/s/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(/s/fonts/fa-regular-400.woff2) format("woff2"), url(/s/fonts/fa-regular-400.woff) format("woff"), url(/s/fonts/fa-regular-400.ttf) format("truetype"), url(/s/fonts/fa-regular-400.svg#fontawesome) format("svg")
}

.fa,
.far {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400
}


/*!
 * Font Awesome Pro 5.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    src: url(/s/fonts/fa-light-300.eot?5.3.1);
    src: url(/s/fonts/fa-light-300.eot?#iefix) format("embedded-opentype"), url(/s/fonts/fa-light-300.woff2?5.3.1) format("woff2"), url(/s/fonts/fa-light-300.woff?5.3.1) format("woff"), url(/s/fonts/fa-light-300.ttf?5.3.1) format("truetype"), url(/s/fonts/fa-light-300.svg#fontawesome) format("svg")
}

.fal {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300
}


/*!
 * Font Awesome Pro 5.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    src: url(/s/fonts/fa-solid-900.eot);
    src: url(/s/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(/s/fonts/fa-solid-900.woff2) format("woff2"), url(/s/fonts/fa-solid-900.woff) format("woff"), url(/s/fonts/fa-solid-900.ttf) format("truetype"), url(/s/fonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fas {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900
}


/*!
 * Font Awesome Pro 5.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    src: url(/s/fonts/fa-brands-400.eot);
    src: url(/s/fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(/s/fonts/fa-brands-400.woff2) format("woff2"), url(/s/fonts/fa-brands-400.woff) format("woff"), url(/s/fonts/fa-brands-400.ttf) format("truetype"), url(/s/fonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
    font-family: "Font Awesome 5 Brands"
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    display: block;
    max-width: 100%;
    height: auto
}

html {
    font-size: 14px
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

.carousel-inner>.item {
    display: none;
    position: relative;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-inner>.item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }
    .carousel-inner>.item.active.right,
    .carousel-inner>.item.next {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        left: 0
    }
    .carousel-inner>.item.active.left,
    .carousel-inner>.item.prev {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        left: 0
    }
    .carousel-inner>.item.active,
    .carousel-inner>.item.next.left,
    .carousel-inner>.item.prev.right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0
    }
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
    display: block
}

.carousel-inner>.active {
    left: 0
}

.carousel-inner>.next,
.carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner>.next {
    left: 100%
}

.carousel-inner>.prev {
    left: -100%
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
    left: 0
}

.carousel-inner>.active.left {
    left: -100%
}

.carousel-inner>.active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: rgba(0, 0, 0, 0)
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-repeat: repeat-x
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-repeat: repeat-x
}

.carousel-control:focus,
.carousel-control:hover {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0)
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width:768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next,
    .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px
    }
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px
    }
    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }
    .carousel-indicators {
        bottom: 20px
    }
}

.breadcrumb {
    margin: 0;
    padding: 0
}

.breadcrumb li {
    display: inline-block;
    font-size: 1.3rem
}

.breadcrumb li+li:before {
    top: -2px;
    position: relative;
    font: normal normal normal 14px/1 "Font Awesome 5 Pro";
    content: '\f105';
    margin: 0 10px;
    color: #888
}

.breadcrumb li a {
    text-decoration: none;
    color: #888
}

.breadcrumb li a:hover {
    color: #000;
    text-decoration: underline
}

.btn-clear,
.btn-clear:active,
.btn-clear:hover,
.btn-clear:link,
.btn-clear:visited {
    background-color: #fff;
    color: #000;
    border: 1px solid #d2d2d2!important;
    padding: 6px 12px!important
}

.btn-clear.btn-xs,
.btn-clear.btn-xs:active,
.btn-clear.btn-xs:hover,
.btn-clear.btn-xs:link,
.btn-clear.btn-xs:visited {
    padding: 1px 5px!important
}

.btn-clear.active,
.btn-clear:hover {
    background-color: #e6e6e6;
    color: #000
}

.btn-clear.dropdown-toggle {
    border-top: solid 1px #a9a9a9
}

.btn-gray {
    background-color: #eee;
    text-decoration: none;
    color: #000
}

.btn-clear:focus,
.btn-clear:hover,
.btn-gray:focus,
.btn-gray:hover,
.btn-menu:focus,
.btn-menu:hover {
    color: #000!important
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    pointer-events: none;
    cursor: not-allowed;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

.carousel-indicators li {
    border-color: #d3d4d6;
    background: #d3d4d6
}

.carousel-indicators li.active {
    border-color: #53a3e0;
    background: #53a3e0
}

.btn-group {
    border-radius: 5px;
    border: 1px solid #ddd
}

.btn-group .btn {
    background: 0 0
}

.btn-group-success {
    border: 1px solid #5cb85c
}

.btn-group-gray {
    border: 1px solid #ddd
}

.btn-group-gray .button {
    background: #fff;
    border-color: #ddd!important
}

.btn-group-success .btn {
    border-color: #5cb85c!important
}

.btn-group-tariffs .button {
    background: #fff;
    border-color: #fbc139!important
}

.btn-group-days input,
.btn-group-gray input,
.btn-group-tariffs input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.btn-group-tariffs .button:focus,
.btn-group-theme .button:focus {
    box-shadow: none
}

.btn-group-tariffs .button,
.btn-group-theme .button {
    border-width: 2px;
    padding-left: .3em;
    padding-right: .3em
}

.field.has-addons.btn-group-theme .control:not(:last-child) {
    margin-right: -2px
}

.btn-group-gray .button i,
.btn-group-success .button i,
.btn-group-tariffs .button i,
.btn-group-theme .button i {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-style: normal
}

.btn-group-gray .active,
.btn-group-success .active,
.btn-group-tariffs .active,
.btn-group-theme .active {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fbc139
}

.btn-group-gray .active {
    background: #ddd
}

.btn-group-success .active {
    background: #5cb85c;
    color: #fff!important
}

@media (max-width:767px) {
    .text-xs-bold {
        font-weight: 700
    }
}

.col-shrink {
    -webkit-flex-grow: 0!important;
    flex-grow: 0!important;
    flex-basis: auto!important;
    padding-right: 15px;
    padding-left: 15px
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%
}

.form-horizontal .form-group,
.row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex!important;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.form-horizontal .form-group.hide {
    display: none!important
}

.row.reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse
}

.col.reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse
}

.col-xs,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px
}

.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%
}

.col-xs {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%
}

.col-xs-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%
}

.col-xs-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%
}

.col-xs-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%
}

.col-xs-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%
}

.col-xs-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%
}

.col-xs-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%
}

.col-xs-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%
}

.col-xs-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%
}

.col-xs-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%
}

.col-xs-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%
}

.col-xs-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%
}

.col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%
}

.col-xs-offset-0 {
    margin-left: 0
}

.col-xs-offset-1 {
    margin-left: 8.333%
}

.col-xs-offset-2 {
    margin-left: 16.667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.333%
}

.col-xs-offset-5 {
    margin-left: 41.667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.333%
}

.col-xs-offset-8 {
    margin-left: 66.667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.333%
}

.col-xs-offset-11 {
    margin-left: 91.667%
}

.start-xs {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start
}

.center-xs {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center
}

.end-xs {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end
}

.top-xs {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start
}

.middle-xs {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center
}

.bottom-xs {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end
}

.around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.between-xs {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between
}

.first-xs {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1
}

.last-xs {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1
}

@media only screen and (min-width:768px) {
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 15px;
        padding-left: 15px
    }
    .col-sm {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }
    .col-sm-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .col-sm-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }
    .col-sm-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .col-sm-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }
    .col-sm-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .col-sm-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%
    }
    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }
    .col-sm-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .col-sm-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }
    .col-sm-offset-0 {
        margin-left: 0
    }
    .col-sm-offset-1 {
        margin-left: 8.333%
    }
    .col-sm-offset-2 {
        margin-left: 16.667%
    }
    .col-sm-offset-3 {
        margin-left: 25%
    }
    .col-sm-offset-4 {
        margin-left: 33.333%
    }
    .col-sm-offset-5 {
        margin-left: 41.667%
    }
    .col-sm-offset-6 {
        margin-left: 50%
    }
    .col-sm-offset-7 {
        margin-left: 58.333%
    }
    .col-sm-offset-8 {
        margin-left: 66.667%
    }
    .col-sm-offset-9 {
        margin-left: 75%
    }
    .col-sm-offset-10 {
        margin-left: 83.333%
    }
    .col-sm-offset-11 {
        margin-left: 91.667%
    }
    .start-sm {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start
    }
    .center-sm {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center
    }
    .end-sm {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end
    }
    .top-sm {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start
    }
    .middle-sm {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center
    }
    .bottom-sm {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end
    }
    .around-sm {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .between-sm {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
    .first-sm {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1
    }
    .last-sm {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1
    }
}

@media (min-width:992px) {
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 15px;
        padding-left: 15px;
    }
    .col-md {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }
    .col-md-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .col-md-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }
    .col-md-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .col-md-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }
    .col-md-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .col-md-8 {
        -ms-flex-preferred-size: 66.667  %;
        flex-basis: 66.667  %;
        max-width: 66.667  %
    }
    .col-md-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }
    .col-md-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .col-md-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }
    .col-md-offset-0 {
        margin-left: 0
    }
    .col-md-offset-1 {
        margin-left: 8.333%
    }
    .col-md-offset-2 {
        margin-left: 16.667%;
    }
    .col-md-offset-3 {
        margin-left: 25%
    }
    .col-md-offset-4 {
        margin-left: 33.333%
    }
    .col-md-offset-5 {
        margin-left: 41.667%
    }
    .col-md-offset-6 {
        margin-left: 50%
    }
    .col-md-offset-7 {
        margin-left: 58.333%
    }
    .col-md-offset-8 {
        margin-left: 66.667%
    }
    .col-md-offset-9 {
        margin-left: 75%
    }
    .col-md-offset-10 {
        margin-left: 83.333%
    }
    .col-md-offset-11 {
        margin-left: 91.667%
    }
    .start-md {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start
    }
    .center-md {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center
    }
    .end-md {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end
    }
    .top-md {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start
    }
    .middle-md {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center
    }
    .bottom-md {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end
    }
    .around-md {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .between-md {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
    .first-md {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1
    }
    .last-md {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1
    }
}

@media (min-width:1200px) {
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 15px;
        padding-left: 15px
    }
    .col-lg {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }
    .col-lg-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .col-lg-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }
    .col-lg-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .col-lg-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }
    .col-lg-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .col-lg-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%
    }
    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }
    .col-lg-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .col-lg-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }
    .col-lg-offset-0 {
        margin-left: 0
    }
    .col-lg-offset-1 {
        margin-left: 8.333%
    }
    .col-lg-offset-2 {
        margin-left: 16.667%
    }
    .col-lg-offset-3 {
        margin-left: 25%
    }
    .col-lg-offset-4 {
        margin-left: 33.333%
    }
    .col-lg-offset-5 {
        margin-left: 41.667%
    }
    .col-lg-offset-6 {
        margin-left: 50%
    }
    .col-lg-offset-7 {
        margin-left: 58.333%
    }
    .col-lg-offset-8 {
        margin-left: 66.667%
    }
    .col-lg-offset-9 {
        margin-left: 75%
    }
    .col-lg-offset-10 {
        margin-left: 83.333%
    }
    .col-lg-offset-11 {
        margin-left: 91.667%
    }
    .start-lg {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start
    }
    .center-lg {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center
    }
    .end-lg {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end
    }
    .top-lg {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start
    }
    .middle-lg {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center
    }
    .bottom-lg {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end
    }
    .around-lg {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .between-lg {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
    .first-lg {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1
    }
    .last-lg {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1
    }
}

.row-table>.col-lg,
.row-table>.col-lg-1,
.row-table>.col-lg-10,
.row-table>.col-lg-11,
.row-table>.col-lg-12,
.row-table>.col-lg-2,
.row-table>.col-lg-3,
.row-table>.col-lg-4,
.row-table>.col-lg-5,
.row-table>.col-lg-6,
.row-table>.col-lg-7,
.row-table>.col-lg-8,
.row-table>.col-lg-9,
.row-table>.col-md,
.row-table>.col-md-1,
.row-table>.col-md-10,
.row-table>.col-md-11,
.row-table>.col-md-12,
.row-table>.col-md-2,
.row-table>.col-md-3,
.row-table>.col-md-4,
.row-table>.col-md-5,
.row-table>.col-md-6,
.row-table>.col-md-7,
.row-table>.col-md-8,
.row-table>.col-md-9,
.row-table>.col-shrink,
.row-table>.col-sm,
.row-table>.col-sm-1,
.row-table>.col-sm-10,
.row-table>.col-sm-11,
.row-table>.col-sm-12,
.row-table>.col-sm-2,
.row-table>.col-sm-3,
.row-table>.col-sm-4,
.row-table>.col-sm-5,
.row-table>.col-sm-6,
.row-table>.col-sm-7,
.row-table>.col-sm-8,
.row-table>.col-sm-9,
.row-table>.col-xs,
.row-table>.col-xs-1,
.row-table>.col-xs-10,
.row-table>.col-xs-11,
.row-table>.col-xs-12,
.row-table>.col-xs-2,
.row-table>.col-xs-3,
.row-table>.col-xs-4,
.row-table>.col-xs-5,
.row-table>.col-xs-6,
.row-table>.col-xs-7,
.row-table>.col-xs-8,
.row-table>.col-xs-9 {
    padding: 8px
}

.row-table.row-small>.col-lg,
.row-table.row-small>.col-lg-1,
.row-table.row-small>.col-lg-10,
.row-table.row-small>.col-lg-11,
.row-table.row-small>.col-lg-12,
.row-table.row-small>.col-lg-2,
.row-table.row-small>.col-lg-3,
.row-table.row-small>.col-lg-4,
.row-table.row-small>.col-lg-5,
.row-table.row-small>.col-lg-6,
.row-table.row-small>.col-lg-7,
.row-table.row-small>.col-lg-8,
.row-table.row-small>.col-lg-9,
.row-table.row-small>.col-md,
.row-table.row-small>.col-md-1,
.row-table.row-small>.col-md-10,
.row-table.row-small>.col-md-11,
.row-table.row-small>.col-md-12,
.row-table.row-small>.col-md-2,
.row-table.row-small>.col-md-3,
.row-table.row-small>.col-md-4,
.row-table.row-small>.col-md-5,
.row-table.row-small>.col-md-6,
.row-table.row-small>.col-md-7,
.row-table.row-small>.col-md-8,
.row-table.row-small>.col-md-9,
.row-table.row-small>.col-shrink,
.row-table.row-small>.col-sm,
.row-table.row-small>.col-sm-1,
.row-table.row-small>.col-sm-10,
.row-table.row-small>.col-sm-11,
.row-table.row-small>.col-sm-12,
.row-table.row-small>.col-sm-2,
.row-table.row-small>.col-sm-3,
.row-table.row-small>.col-sm-4,
.row-table.row-small>.col-sm-5,
.row-table.row-small>.col-sm-6,
.row-table.row-small>.col-sm-7,
.row-table.row-small>.col-sm-8,
.row-table.row-small>.col-sm-9,
.row-table.row-small>.col-xs,
.row-table.row-small>.col-xs-1,
.row-table.row-small>.col-xs-10,
.row-table.row-small>.col-xs-11,
.row-table.row-small>.col-xs-12,
.row-table.row-small>.col-xs-2,
.row-table.row-small>.col-xs-3,
.row-table.row-small>.col-xs-4,
.row-table.row-small>.col-xs-5,
.row-table.row-small>.col-xs-6,
.row-table.row-small>.col-xs-7,
.row-table.row-small>.col-xs-8,
.row-table.row-small>.col-xs-9 {
    padding-top: 5px;
    padding-bottom: 5px
}

.form-horizontal .form-group::after,
.form-horizontal .form-group::before {
    content: none
}

.row-small {
    margin-right: -5px!important;
    margin-left: -5px!important
}

.row-small.row-blocks .col-block {
    margin-bottom: 10px
}

.row-small.row-blocks {
    margin-bottom: -10px
}

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

.row-noborder>.col-lg,
.row-noborder>.col-lg-1,
.row-noborder>.col-lg-10,
.row-noborder>.col-lg-11,
.row-noborder>.col-lg-12,
.row-noborder>.col-lg-2,
.row-noborder>.col-lg-3,
.row-noborder>.col-lg-4,
.row-noborder>.col-lg-5,
.row-noborder>.col-lg-6,
.row-noborder>.col-lg-7,
.row-noborder>.col-lg-8,
.row-noborder>.col-lg-9,
.row-noborder>.col-md,
.row-noborder>.col-md-1,
.row-noborder>.col-md-10,
.row-noborder>.col-md-11,
.row-noborder>.col-md-12,
.row-noborder>.col-md-2,
.row-noborder>.col-md-3,
.row-noborder>.col-md-4,
.row-noborder>.col-md-5,
.row-noborder>.col-md-6,
.row-noborder>.col-md-7,
.row-noborder>.col-md-8,
.row-noborder>.col-md-9,
.row-noborder>.col-shrink,
.row-noborder>.col-sm,
.row-noborder>.col-sm-1,
.row-noborder>.col-sm-10,
.row-noborder>.col-sm-11,
.row-noborder>.col-sm-12,
.row-noborder>.col-sm-2,
.row-noborder>.col-sm-3,
.row-noborder>.col-sm-4,
.row-noborder>.col-sm-5,
.row-noborder>.col-sm-6,
.row-noborder>.col-sm-7,
.row-noborder>.col-sm-8,
.row-noborder>.col-sm-9,
.row-noborder>.col-xs,
.row-noborder>.col-xs-1,
.row-noborder>.col-xs-10,
.row-noborder>.col-xs-11,
.row-noborder>.col-xs-12,
.row-noborder>.col-xs-2,
.row-noborder>.col-xs-3,
.row-noborder>.col-xs-4,
.row-noborder>.col-xs-5,
.row-noborder>.col-xs-6,
.row-noborder>.col-xs-7,
.row-noborder>.col-xs-8,
.row-noborder>.col-xs-9 {
    padding-right: 0;
    padding-left: 0
}

.row-small .col-lg,
.row-small .col-lg-1,
.row-small .col-lg-10,
.row-small .col-lg-11,
.row-small .col-lg-12,
.row-small .col-lg-2,
.row-small .col-lg-3,
.row-small .col-lg-4,
.row-small .col-lg-5,
.row-small .col-lg-6,
.row-small .col-lg-7,
.row-small .col-lg-8,
.row-small .col-lg-9,
.row-small .col-md,
.row-small .col-md-1,
.row-small .col-md-10,
.row-small .col-md-11,
.row-small .col-md-12,
.row-small .col-md-2,
.row-small .col-md-3,
.row-small .col-md-4,
.row-small .col-md-5,
.row-small .col-md-6,
.row-small .col-md-7,
.row-small .col-md-8,
.row-small .col-md-9,
.row-small .col-shrink,
.row-small .col-sm,
.row-small .col-sm-1,
.row-small .col-sm-10,
.row-small .col-sm-11,
.row-small .col-sm-12,
.row-small .col-sm-2,
.row-small .col-sm-3,
.row-small .col-sm-4,
.row-small .col-sm-5,
.row-small .col-sm-6,
.row-small .col-sm-7,
.row-small .col-sm-8,
.row-small .col-sm-9,
.row-small .col-xs,
.row-small .col-xs-1,
.row-small .col-xs-10,
.row-small .col-xs-11,
.row-small .col-xs-12,
.row-small .col-xs-2,
.row-small .col-xs-3,
.row-small .col-xs-4,
.row-small .col-xs-5,
.row-small .col-xs-6,
.row-small .col-xs-7,
.row-small .col-xs-8,
.row-small .col-xs-9 {
    padding-right: 5px;
    padding-left: 5px
}

.col-xs-1>.btn {
    padding-left: 2px;
    padding-right: 2px
}

.row-small>.col-shrink {
    padding-right: 5px;
    padding-left: 5px
}

.col-xs-10p {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%
}

.col-xs-15p {
    -ms-flex-preferred-size: 15%;
    flex-basis: 15%;
    max-width: 15%
}

.col-xs-20p {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%
}

.col-xs-25p {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%
}

@media (min-width:768px) {
    .col-sm-10p {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%
    }
    .col-sm-15p {
        -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
        max-width: 15%
    }
    .col-sm-20p {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%
    }
    .col-sm-25p {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }
}

.row-table-bordered {
    border: 1px solid #ddd;
    border-right: 0;
    border-bottom: 0;
    margin-left: 0!important;
    margin-right: 0!important
}

.row-table-bordered+.row-table-bordered {
    border-top: 0
}

.panel>.row-table-bordered {
    border-left: 0;
    border-right: 0
}

.row-table-bordered>div {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd
}

.row-table-bordered>div:last-child {
    border-right: 0
}

@media (min-width:768px) {
    .col-sm-shrink {
        -webkit-flex-grow: 0;
        flex-grow: 0;
        flex-basis: auto;
        padding-right: 15px;
        padding-left: 15px
    }
}

.collapse-item .a {
    display: block;
    padding: 20px 20px 20px 40px;
    position: relative;
    color: #000
}

.collapse-item .collapse-title {
    font-size: 2.5em
}

.collapse-text {
    font-size: 2em;
    position: relative;
    max-height: 0;
    -webkit-transition: max-height ease-in-out .4s;
    -moz-transition: max-height ease-in-out .4s;
    -o-transition: max-height ease-in-out .4s;
    transition: max-height ease-in-out .4s;
    overflow: hidden
}

.collapse-text-inner {
    padding: 0 0 20px 40px
}

.collapse-item.in .collapse-text {
    position: static;
    max-height: 4000px
}

.collapse-item .a:active,
.collapse-item .a:focus,
.collapse-item .a:hover {
    text-decoration: none
}

.collapse-icon {
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -12px;
    height: 24px;
    width: 24px;
    opacity: .5
}

.collapse-icon::before {
    width: 2px;
    height: 24px;
    left: 11px;
    top: 0;
    opacity: 1
}

.collapse-icon::after,
.collapse-icon::before {
    content: "";
    position: absolute;
    background: #000;
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: all .4s ease-in-out
}

.collapse-icon::after {
    width: 24px;
    height: 2px;
    left: 0;
    top: 11px
}

.collapse-item.in .collapse-icon::after,
.collapse-item.in .collapse-icon::before {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all .4s ease-in-out
}

.collapse-item.in .collapse-icon::before {
    opacity: 0
}

html {
    min-height: 100%;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    background-attachment: fixed
}

body {
    background: 0 0
}

img {
    max-width: 100%
}

.text-avatar {
    font-size: 2em;
    font-family: monospace;
}

.block {
    margin-bottom: 15px
}

.section {
    margin-bottom: 30px
}

.section-2x {
    margin-bottom: 60px
}

.border {
    padding: 15px
}

.border-2x {
    padding: 30px
}

.border-3x {
    padding: 60px
}

.border-horizontal {
    padding-left: 15px;
    padding-right: 15px
}

.border-horizontal {
    padding-left: 15px;
    padding-right: 15px
}

.border-vertical {
    padding-top: 15px;
    padding-bottom: 15px
}

.border-vertical-3x {
    padding-top: 60px;
    padding-bottom: 60px
}

@media (max-width:767px) {
    .section {
        margin-bottom: 15px
    }
    .section-2x {
        margin-bottom: 30px
    }
    .section-xs {
        margin-bottom: 15px
    }
    .section-xs-2x {
        margin-bottom: 30px
    }
}

@media (min-width:1200px) {
    .section-lg-2x {
        margin-bottom: 60px
    }
}

input[type=tel]::placeholder {
    color: #bbb
}

.stop-transition {
    -webkit-transition-duration: 0s!important;
    transition-duration: 0s!important
}

sup.required {
    color: red;
    margin-left: .35em;
    line-height: 1;
    font-weight: 700;
    top: -.35em
}

.block-avatar a,
.block-avatar a:active,
.block-avatar a:hover,
.block-avatar a:link,
.block-avatar a:visited {
    text-decoration: none
}

.checkbox input,
.radio input {
    width: 20px;
    height: 20px;
    display: block;
    border: 0;
    background: 0 0;
    cursor: pointer;
    position: absolute!important;
    margin: 5px 0 0 0!important;
    left: 1px
}

.checkbox+.checkbox,
.radio+.radio {
    margin-top: 0
}

input[type=checkbox]:focus,
input[type=file]:focus,
input[type=radio]:focus {
    outline: 0
}

.checkbox:not(.b-checkbox),
.radio:not(.b-radio) {
    cursor: pointer;
    position: relative;
    padding: 0 15px 0 30px!important;
    line-height: 30px;
    font-weight: 400;
    margin: 0!important
}

.checkbox input,
.radio input {
    -webkit-appearance: none
}

.b-checkbox.checkbox input[type=checkbox]+.check:before,
.checkbox input:before,
.radio input:before {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 28px;
    background: #fff;
    content: ' ';
    transition: background-color 20ms ease-in-out
}

.checkbox input:before {
    border-radius: 2px
}

.b-checkbox.checkbox input[type=checkbox]+.check:after,
.checkbox input:after,
.radio input:after {
    transition: opacity 50ms ease-in-out;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 33%;
    left: 25%;
    display: block;
    width: 10px;
    height: 4px;
    border: 1px solid #fff;
    border-top: 0;
    border-right: 0;
    content: ' ';
    opacity: 0
}

.b-checkbox.checkbox input[type=checkbox]+.check {
    border: 0
}

.b-checkbox.checkbox:focus input[type=checkbox]:checked+.check {
    box-shadow: none
}

.b-checkbox.checkbox input[type=checkbox]+.check:before {
    border-radius: 0
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check:before,
.checkbox input:checked:before,
.radio input:checked:before {
    background: #90a2ab;
    border-color: #90a2ab
}

.b-checkbox.checkbox input[type=checkbox]+.check {
    position: relative
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check:disabled:before,
.checkbox input:disabled:before,
.radio input:disabled:before {
    border-color: #dcdcdc;
    background: #eee
}

.checkbox input:disabled:checked:before,
.radio input:disabled:checked:before {
    background: #dcdcdc;
    border-color: #dcdcdc
}

.b-checkbox.checkbox input[type=checkbox]:checked+.check:after,
.checkbox input:checked:after,
.radio input:checked:after {
    opacity: 1
}

.checkbox+.form-field-desc {
    margin-top: 10px
}

@media (max-width:767px) {
    [data-scroll-y] {
        overflow-y: scroll
    }
}

.modal.zoom .modal-dialog {
    -moz-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -webkit-transition: -webkit-transform .1s ease-out;
    -moz-transition: -moz-transform .1s ease-out;
    -o-transition: -o-transform .1s ease-out;
    transition: transform .1s ease-out
}

.modal.zoom.in .modal-dialog {
    -moz-transform: scale(1);
    -webkit-transform: scale(1)
}

.modal.downup .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease;
    -webkit-transition-duration: .3s;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease;
    -webkit-transform: translate3d(0, 110%, 0);
    transform: translate3d(0, 110%, 0)
}

.modal.downup.in .modal-dialog {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.amcharts-chart-div svg {
    border-radius: 6px
}

.modal {
    display: flex!important;
    flex-direction: row;
    align-items: center
}

.modal-dialog {
    max-height: 100%
}

.modal-header h4 {
    padding: 15px 0;
    font-size: 24px
}

@media (max-width:767px) {
    .modal-header .close,
    .modal-header h4 {
        padding: 10px 0
    }
}

.modal-header {
    padding: 10px 25px 5px 25px;
    overflow: hidden;
    border-bottom: 0;
    background: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.modal-content {
    background: #f6f7f8;
    display: flex;
    flex-direction: column;
    width: 100%
}

.modal-footer {
    background: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.modal-body {
    padding: 25px;
    border-top: 1px solid #e5e5e5
}

.modal-body-noborder {
    padding: 0!important
}

.modal-header .close {
    font-size: 40px;
    line-height: 30px;
    opacity: 1;
    color: #000;
    margin: 3px 0 0 0;
    padding: 15px 0;
    line-height: 27px;
    font-weight: 200;
    font-family: sans-serif
}

.modal-header .close:hover {
    color: #d2322d
}

a:focus,
button:focus {
    outline: 0
}

.modal-header .history:hover {
    color: #15a4fa
}

.modal-header .history.active {
    background: #15a4fa;
    color: #fff
}

@media (max-width:767px) {
    .modal-header .close {
        margin: 0
    }
    .block-xs {
        margin-bottom: 15px
    }
}

.modal-flex {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.modal-flex .modal-body,
.modal-flex .mx-scroll-content {
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto
}

.modal-flex .modal-footer,
.modal-flex .modal-header,
.modal-flex .nav-tabs {
    flex-shrink: 0
}

.block-panel {
    background: #fff;
    color: #000
}

.page .block-panel a {
    color: #000!important
}

.block-item>div.disabled,
.disabled,
button:disabled {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    pointer-events: none
}

.disabled {
    opacity: .4!important
}

.disabled .disabled {
    opacity: 1!important
}

.strikethrough {
    position: relative
}

.strikethrough:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg)
}

.footer-banner,
.header-banner {
    position: fixed;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    z-index: 1000;
    transition: all .3s;
    cursor: default
}

.header-banner-static {
    position: relative
}

.header-banner {
    bottom: auto;
    top: 0
}

.footer-banner.has-background-black,
.footer-banner.has-background-dark,
.header-banner.has-background-black {
    color: #fff
}

.footer-banner.has-background-black .modal-close::after,
.footer-banner.has-background-black .modal-close::before {
    background-color: #fff
}

.footer-banner.has-close .modal-close {
    align-self: start;
    right: 0;
    top: 0
}

.footer-banner.is-closed {
    transform: translate(0, 100%);
    opacity: 0
}

@media (max-width:767px) {
    .header-banner-button>.container {
        text-align: center;
        flex-direction: column
    }
    .header-banner-button .button {
        margin-top: .5rem;
        display: flex;
        width: 100%
    }
}

.footer-banner .container,
.header-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.block-item-locked {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: .4!important;
    position: relative
}

.block-item-locked:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1
}

.flip-clock-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden
}

.flip-clock-wrapper a {
    cursor: pointer;
    text-decoration: none;
    color: #ccc
}

.flip-clock-wrapper a:hover {
    color: #fff
}

.flip-clock-wrapper ul {
    list-style: none
}

.flip-clock-wrapper.clearfix:after,
.flip-clock-wrapper.clearfix:before {
    content: " ";
    display: table
}

.flip-clock-wrapper.clearfix:after {
    clear: both
}

.flip-clock-wrapper {
    font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
    -webkit-user-select: none
}

.flip-clock-meridium {
    background: 0 0!important;
    box-shadow: 0 0 0!important;
    font-size: 36px!important
}

.flip-clock-meridium a {
    color: #313333
}

.flip-clock-wrapper {
    text-align: center;
    position: relative;
    width: auto;
    display: inline-block;
    margin-top: 1rem
}

.flip-clock-wrapper:after,
.flip-clock-wrapper:before {
    content: " ";
    display: table
}

.flip-clock-wrapper:after {
    clear: both
}

.flip-clock-wrapper ul {
    position: relative;
    float: left;
    margin: 5px;
    width: 60px;
    height: 90px;
    font-size: 80px;
    font-weight: 700;
    line-height: 87px;
    border-radius: 6px;
    background: #000
}

.flip-clock-wrapper ul li {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 87px;
    text-decoration: none!important
}

.flip-clock-wrapper ul li:first-child {
    z-index: 2
}

.flip-clock-wrapper ul li a {
    display: block;
    height: 100%;
    -webkit-perspective: 200px;
    -moz-perspective: 200px;
    perspective: 200px;
    margin: 0!important;
    overflow: visible!important;
    cursor: default!important
}

.flip-clock-wrapper ul li a div {
    z-index: 1;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    font-size: 80px;
    overflow: hidden;
    outline: 1px solid transparent
}

.flip-clock-wrapper ul li a div .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2
}

.flip-clock-wrapper ul li a div.up {
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    top: 0
}

.flip-clock-wrapper ul li a div.up:after {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 3px;
    background-color: #000;
    background-color: rgba(0, 0, 0, .4)
}

.flip-clock-wrapper ul li a div.down {
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    transform-origin: 50% 0;
    bottom: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.flip-clock-wrapper ul li a div div.inn {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 200%;
    color: #ccc;
    text-shadow: 0 1px 2px #000;
    text-align: center;
    background-color: #333;
    border-radius: 6px;
    font-size: 70px
}

.flip-clock-wrapper ul li a div.up div.inn {
    top: 0
}

.flip-clock-wrapper ul li a div.down div.inn {
    bottom: 0
}

.flip-clock-wrapper ul.play li.flip-clock-before {
    z-index: 3
}

.flip-clock-wrapper .flip {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .7)
}

.flip-clock-wrapper ul.play li.flip-clock-active {
    -webkit-animation: asd .5s .5s linear both;
    -moz-animation: asd .5s .5s linear both;
    animation: asd .5s .5s linear both;
    z-index: 5
}

.flip-clock-divider {
    float: left;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 100px
}

.flip-clock-divider:first-child {
    width: 0
}

.flip-clock-dot {
    display: block;
    background: #323434;
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    left: 5px
}

.flip-clock-divider .flip-clock-label {
    position: absolute;
    top: -1.5em;
    right: -86px;
    color: #000;
    text-shadow: none
}

.flip-clock-divider.minutes .flip-clock-label {
    right: -88px
}

.flip-clock-divider.seconds .flip-clock-label {
    right: -91px
}

.flip-clock-dot.top {
    top: 30px
}

.flip-clock-dot.bottom {
    bottom: 30px
}

@-webkit-keyframes asd {
    0% {
        z-index: 2
    }
    20% {
        z-index: 4
    }
    100% {
        z-index: 4
    }
}

@-moz-keyframes asd {
    0% {
        z-index: 2
    }
    20% {
        z-index: 4
    }
    100% {
        z-index: 4
    }
}

@-o-keyframes asd {
    0% {
        z-index: 2
    }
    20% {
        z-index: 4
    }
    100% {
        z-index: 4
    }
}

@keyframes asd {
    0% {
        z-index: 2
    }
    20% {
        z-index: 4
    }
    100% {
        z-index: 4
    }
}

.flip-clock-wrapper ul.play li.flip-clock-active .down {
    z-index: 2;
    -webkit-animation: turn .5s .5s linear both;
    -moz-animation: turn .5s .5s linear both;
    animation: turn .5s .5s linear both
}

@-webkit-keyframes turn {
    0% {
        -webkit-transform: rotateX(90deg)
    }
    100% {
        -webkit-transform: rotateX(0)
    }
}

@-moz-keyframes turn {
    0% {
        -moz-transform: rotateX(90deg)
    }
    100% {
        -moz-transform: rotateX(0)
    }
}

@-o-keyframes turn {
    0% {
        -o-transform: rotateX(90deg)
    }
    100% {
        -o-transform: rotateX(0)
    }
}

@keyframes turn {
    0% {
        transform: rotateX(90deg)
    }
    100% {
        transform: rotateX(0)
    }
}

.flip-clock-wrapper ul.play li.flip-clock-before .up {
    z-index: 2;
    -webkit-animation: turn2 .5s linear both;
    -moz-animation: turn2 .5s linear both;
    animation: turn2 .5s linear both
}

@-webkit-keyframes turn2 {
    0% {
        -webkit-transform: rotateX(0)
    }
    100% {
        -webkit-transform: rotateX(-90deg)
    }
}

@-moz-keyframes turn2 {
    0% {
        -moz-transform: rotateX(0)
    }
    100% {
        -moz-transform: rotateX(-90deg)
    }
}

@-o-keyframes turn2 {
    0% {
        -o-transform: rotateX(0)
    }
    100% {
        -o-transform: rotateX(-90deg)
    }
}

@keyframes turn2 {
    0% {
        transform: rotateX(0)
    }
    100% {
        transform: rotateX(-90deg)
    }
}

.flip-clock-wrapper ul li.flip-clock-active {
    z-index: 3
}

.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .1) 0, #000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, .1)), color-stop(100%, #000));
    background: linear, top, rgba(0, 0, 0, .1) 0, #000 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, .1) 0, #000 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, .1) 0, #000 100%);
    background: linear, to bottom, rgba(0, 0, 0, .1) 0, #000 100%;
    -webkit-animation: show .5s linear both;
    -moz-animation: show .5s linear both;
    animation: show .5s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .1) 0, #000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, .1)), color-stop(100%, #000));
    background: linear, top, rgba(0, 0, 0, .1) 0, #000 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, .1) 0, #000 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, .1) 0, #000 100%);
    background: linear, to bottom, rgba(0, 0, 0, .1) 0, #000 100%;
    -webkit-animation: hide .5s .3s linear both;
    -moz-animation: hide .5s .3s linear both;
    animation: hide .5s .3s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
    background: -moz-linear-gradient(top, #000 0, rgba(0, 0, 0, .1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(100%, rgba(0, 0, 0, .1)));
    background: linear, top, #000 0, rgba(0, 0, 0, .1) 100%;
    background: -o-linear-gradient(top, #000 0, rgba(0, 0, 0, .1) 100%);
    background: -ms-linear-gradient(top, #000 0, rgba(0, 0, 0, .1) 100%);
    background: linear, to bottom, #000 0, rgba(0, 0, 0, .1) 100%;
    -webkit-animation: show .5s linear both;
    -moz-animation: show .5s linear both;
    animation: show .5s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
    background: -moz-linear-gradient(top, #000 0, rgba(0, 0, 0, .1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(100%, rgba(0, 0, 0, .1)));
    background: linear, top, #000 0, rgba(0, 0, 0, .1) 100%;
    background: -o-linear-gradient(top, #000 0, rgba(0, 0, 0, .1) 100%);
    background: -ms-linear-gradient(top, #000 0, rgba(0, 0, 0, .1) 100%);
    background: linear, to bottom, #000 0, rgba(0, 0, 0, .1) 100%;
    -webkit-animation: hide .5s .3s linear both;
    -moz-animation: hide .5s .3s linear both;
    animation: hide .5s .2s linear both
}

@-webkit-keyframes show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-moz-keyframes show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-o-keyframes show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes hide {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@-moz-keyframes hide {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@-o-keyframes hide {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes hide {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@media only screen and (max-width:768px) {
    .flip-clock-dot.bottom {
        bottom: 15px
    }
    .flip-clock-label {
        font-size: 10px
    }
    .flip-clock-divider {
        height: 45px;
        width: 8px
    }
    .flip-clock-divider.days .flip-clock-label {
        left: -20px
    }
    .flip-clock-divider.hours .flip-clock-label {
        left: -7px
    }
    .flip-clock-divider.minutes .flip-clock-label {
        left: -9px
    }
    .flip-clock-divider.seconds .flip-clock-label {
        left: -10px
    }
    .flip-clock-dot {
        width: 4px;
        height: 4px;
        left: 2px
    }
    .flip-clock-dot.top {
        top: 15px
    }
    .flip-clock-wrapper ul {
        width: 30px;
        height: 45px;
        font-size: 40px;
        line-height: 43px;
        margin: 1px;
        padding: 0 15px
    }
    .flip-clock-wrapper li {
        line-height: 43px!important
    }
    .flip-clock-wrapper .inn {
        font-size: 30px!important
    }
}

.leaflet-image-layer,
.leaflet-layer,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-pane,
.leaflet-pane>canvas,
.leaflet-pane>svg,
.leaflet-tile,
.leaflet-tile-container,
.leaflet-zoom-box {
    position: absolute;
    left: 0;
    top: 0
}

.leaflet-container {
    overflow: hidden
}

.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none
}

.leaflet-safari .leaflet-tile {
    image-rendering: -webkit-optimize-contrast
}

.leaflet-safari .leaflet-tile-container {
    width: 1600px;
    height: 1600px;
    -webkit-transform-origin: 0 0
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
    display: block
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
    max-width: none!important;
    max-height: none!important
}

.leaflet-container.leaflet-touch-zoom {
    -ms-touch-action: pan-x pan-y;
    touch-action: pan-x pan-y
}

.leaflet-container.leaflet-touch-drag {
    -ms-touch-action: pinch-zoom;
    touch-action: none;
    touch-action: pinch-zoom
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    -ms-touch-action: none;
    touch-action: none
}

.leaflet-container {
    -webkit-tap-highlight-color: transparent
}

.leaflet-container a {
    -webkit-tap-highlight-color: rgba(51, 181, 229, .4);
    color: #777!important;
    text-decoration: none!important
}

.leaflet-container a:hover {
    color: #333!important
}

.leaflet-tile {
    filter: inherit;
    visibility: hidden
}

.leaflet-tile-loaded {
    visibility: inherit
}

.leaflet-zoom-box {
    width: 0;
    height: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 800
}

.leaflet-overlay-pane svg {
    -moz-user-select: none
}

.leaflet-pane {
    z-index: 400
}

.leaflet-tile-pane {
    z-index: 200
}

.leaflet-overlay-pane {
    z-index: 400
}

.leaflet-shadow-pane {
    z-index: 500
}

.leaflet-marker-pane {
    z-index: 600
}

.leaflet-tooltip-pane {
    z-index: 650
}

.leaflet-popup-pane {
    z-index: 700
}

.leaflet-map-pane canvas {
    z-index: 100
}

.leaflet-map-pane svg {
    z-index: 200
}

.leaflet-vml-shape {
    width: 1px;
    height: 1px
}

.lvml {
    behavior: url(#default#VML);
    display: inline-block;
    position: absolute
}

.leaflet-control {
    position: relative;
    z-index: 800;
    pointer-events: visiblePainted;
    pointer-events: auto
}

.leaflet-bottom,
.leaflet-top {
    position: absolute;
    z-index: 1000;
    pointer-events: none
}

.leaflet-top {
    top: 0
}

.leaflet-right {
    right: 0
}

.leaflet-bottom {
    bottom: 0
}

.leaflet-left {
    left: 0
}

.leaflet-control {
    float: left;
    clear: both
}

.leaflet-right .leaflet-control {
    float: right
}

.leaflet-top .leaflet-control {
    margin-top: 10px
}

.leaflet-bottom .leaflet-control {
    margin-bottom: 10px
}

.leaflet-left .leaflet-control {
    margin-left: 10px
}

.leaflet-right .leaflet-control {
    margin-right: 10px
}

.leaflet-fade-anim .leaflet-tile {
    will-change: opacity
}

.leaflet-fade-anim .leaflet-popup {
    opacity: 0;
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    transition: opacity .2s linear
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
    opacity: 1
}

.leaflet-zoom-animated {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0
}

.leaflet-zoom-anim .leaflet-zoom-animated {
    will-change: transform
}

.leaflet-zoom-anim .leaflet-zoom-animated {
    -webkit-transition: -webkit-transform .25s cubic-bezier(0, 0, .25, 1);
    -moz-transition: -moz-transform .25s cubic-bezier(0, 0, .25, 1);
    -o-transition: -o-transform .25s cubic-bezier(0, 0, .25, 1);
    transition: transform .25s cubic-bezier(0, 0, .25, 1)
}

.leaflet-pan-anim .leaflet-tile,
.leaflet-zoom-anim .leaflet-tile {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none
}

.leaflet-zoom-anim .leaflet-zoom-hide {
    visibility: hidden
}

.leaflet-interactive {
    cursor: pointer
}

.leaflet-grab {
    cursor: -webkit-grab;
    cursor: -moz-grab
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
    cursor: crosshair
}

.leaflet-control,
.leaflet-popup-pane {
    cursor: auto
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing
}

.leaflet-image-layer,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-pane>svg path,
.leaflet-tile-container {
    pointer-events: none
}

.leaflet-image-layer.leaflet-interactive,
.leaflet-marker-icon.leaflet-interactive,
.leaflet-pane>svg path.leaflet-interactive {
    pointer-events: visiblePainted;
    pointer-events: auto
}

.leaflet-container {
    background: #ddd;
    outline: 0
}

.leaflet-container a {
    color: #0078a8
}

.leaflet-container a.leaflet-active {
    outline: 2px solid orange
}

.leaflet-zoom-box {
    border: 2px dotted #38f;
    background: rgba(255, 255, 255, .5)
}

.leaflet-bar {
    box-shadow: 0 1px 5px rgba(0, 0, 0, .65);
    border-radius: 4px
}

.leaflet-bar a,
.leaflet-bar a:hover {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block
}

.leaflet-bar a:hover {
    background-color: #f4f4f4
}

.leaflet-bar a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.leaflet-bar a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom: none
}

.leaflet-bar a.leaflet-disabled {
    cursor: default;
    background-color: #f4f4f4;
    color: #bbb
}

.leaflet-touch .leaflet-bar a {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px
}

.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font: bold 18px 'Lucida Console', Monaco, monospace;
    text-indent: 1px
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
    font-size: 22px
}

.leaflet-control-layers {
    box-shadow: 0 1px 5px rgba(0, 0, 0, .4);
    background: #fff;
    border-radius: 5px
}

.leaflet-control-layers-toggle {
    background-image: url(images/layers.png);
    width: 36px;
    height: 36px
}

.leaflet-retina .leaflet-control-layers-toggle {
    background-image: url(images/layers-2x.png);
    background-size: 26px 26px
}

.leaflet-touch .leaflet-control-layers-toggle {
    width: 44px;
    height: 44px
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
    display: none
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
    display: block;
    position: relative
}

.leaflet-control-layers-expanded {
    padding: 6px 10px 6px 6px;
    color: #333;
    background: #fff
}

.leaflet-control-layers-scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 5px
}

.leaflet-control-layers-selector {
    margin-top: 2px;
    position: relative;
    top: 1px
}

.leaflet-control-layers label {
    display: block
}

.leaflet-control-layers-separator {
    height: 0;
    border-top: 1px solid #ddd;
    margin: 5px -10px 5px -6px
}

.leaflet-default-icon-path {
    background-image: url(images/marker-icon.png)
}

.leaflet-container .leaflet-control-attribution {
    background: #fff;
    background: rgba(255, 255, 255, .7);
    margin: 0
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
    padding: 0 5px;
    color: #333
}

.leaflet-control-attribution a {
    text-decoration: none
}

.leaflet-control-attribution a:hover {
    text-decoration: underline
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
    font-size: 11px
}

.leaflet-left .leaflet-control-scale {
    margin-left: 5px
}

.leaflet-bottom .leaflet-control-scale {
    margin-bottom: 5px
}

.leaflet-control-scale-line {
    border: 2px solid #777;
    border-top: none;
    line-height: 1.1;
    padding: 2px 5px 1px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    background: rgba(255, 255, 255, .5)
}

.leaflet-control-scale-line:not(:first-child) {
    border-top: 2px solid #777;
    border-bottom: none;
    margin-top: -2px
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
    border-bottom: 2px solid #777
}

.leaflet-touch .leaflet-bar,
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers {
    box-shadow: none
}

.leaflet-touch .leaflet-bar,
.leaflet-touch .leaflet-control-layers {
    border: 2px solid rgba(0, 0, 0, .2);
    background-clip: padding-box
}

.leaflet-popup {
    position: absolute;
    text-align: center;
    margin-bottom: 20px
}

.leaflet-popup-content-wrapper {
    padding: 1px;
    text-align: left;
    border-radius: 4px
}

.leaflet-popup-content {
    font-size: 1rem;
    margin: .6rem 1rem;
    line-height: 1.2;
    color: #666
}

.leaflet-popup-content b {
    white-space: nowrap;
    display: block;
    line-height: 1.4;
    color: #000
}

.leaflet-popup-content b+div {
    padding-top: .3rem
}

.leaflet-popup-content p {
    margin: 18px 0
}

.leaflet-popup-tip-container {
    width: 40px;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    overflow: hidden;
    pointer-events: none
}

.leaflet-popup-tip {
    width: 17px;
    height: 17px;
    padding: 1px;
    margin: -10px auto 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #fff;
    color: #333;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .4)
}

.leaflet-container a.leaflet-popup-close-button {
    display: none
}

.leaflet-popup-scrolled {
    overflow: auto;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd
}

.leaflet-oldie .leaflet-popup-content-wrapper {
    zoom: 1
}

.leaflet-oldie .leaflet-popup-tip {
    width: 24px;
    margin: 0 auto
}

.leaflet-oldie .leaflet-popup-tip-container {
    margin-top: -1px
}

.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
    border: 1px solid #999
}

.leaflet-div-icon {
    background: #fff;
    border: 1px solid #666
}

.leaflet-tooltip {
    position: absolute;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #222;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .4)
}

.leaflet-tooltip.leaflet-clickable {
    cursor: pointer;
    pointer-events: auto
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before,
.leaflet-tooltip-top:before {
    position: absolute;
    pointer-events: none;
    border: 6px solid transparent;
    background: 0 0;
    content: ""
}

.leaflet-tooltip-bottom {
    margin-top: 6px
}

.leaflet-tooltip-top {
    margin-top: -6px
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
    left: 50%;
    margin-left: -6px
}

.leaflet-tooltip-top:before {
    bottom: 0;
    margin-bottom: -12px;
    border-top-color: #fff
}

.leaflet-tooltip-bottom:before {
    top: 0;
    margin-top: -12px;
    margin-left: -6px;
    border-bottom-color: #fff
}

.leaflet-tooltip-left {
    margin-left: -6px
}

.leaflet-tooltip-right {
    margin-left: 6px
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    top: 50%;
    margin-top: -6px
}

.leaflet-tooltip-left:before {
    right: 0;
    margin-right: -12px;
    border-left-color: #fff
}

.leaflet-tooltip-right:before {
    left: 0;
    margin-left: -12px;
    border-right-color: #fff
}

.leaflet-control-zoom {
    display: none
}

.map-view-with-zoom-control .leaflet-control-zoom {
    display: block
}

.action-panel-container.in {
    height: 80px;
    min-height: 80px
}

.action-panel {
    opacity: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transition: -webkit-transform .3s ease, opacity .3s ease;
    -o-transition: -o-transform .3s ease, opacity .3s ease;
    transition: transform .3s ease, opacity .3s ease;
    background: #fff;
    padding: 15px 0;
    text-align: center;
    box-shadow: rgba(0, 0, 0, .1) 0 -1px 1px 0;
    z-index: 50
}

.action-panel .button {
    min-height: 3.3rem;
    height: auto
}

.action-panel .tag {
    font-size: 10px;
    padding: 3px 5px;
    top: -7px;
    left: -7px;
    margin-right: -10px;
    line-height: 10px;
    position: relative
}

.action-panel-container.in .action-panel {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1
}

.payments-button {
    width: 80px;
    height: 80px;
    display: inline-block;
    background: url(/s/i/payments-logo.png?1);
    background-size: 100%;
    background-size: 560px
}

.payments-button-blank {
    background: 0 0
}

.payments-button-cash {
    background-position: -480px 0
}

.payments-button-mastercard {
    background-position: -80px 0
}

.payments-button-mir {
    background-position: 0 -80px
}

.payments-button-masterpass {
    background-position: -80px -80px
}

.payments-button-yandexmoney {
    background-position: -160px 0
}

.payments-button-qiwi {
    background-position: -240px 0
}

.payments-button-w1 {
    background-position: -400px 0
}

.payments-button-webmoney {
    background-position: -320px 0
}

.payments-button-paypal {
    background-position: -160px -80px
}

.payments-button-yandexkassa {
    background-position: 0 -240px
}

.payments-button-alfabank {
    background-position: 0 -160px
}

.payments-button-sberbank {
    background-position: -80px -160px
}

.payments-button-psbank {
    background-position: -160px -160px
}

.payments-button-robokassa {
    background-position: -80px -240px
}

.payments-button-tinkoff {
    background-position: -160px -240px
}

.payments-button-cloudpayments {
    background-position: -320px -160px
}

.payments-button-liqpay {
    background-position: -240px -160px
}

.payments-button-bankcard {
    background-position: -240px -80px
}

.payments-button-paybox {
    background-position: -320px -80px
}

.payments-button-fondy {
    background-position: -400px -80px
}

.payments-button-atf24 {
    background-position: 0 -320px
}

.payments-button-homebank {
    background-position: -80px -320px
}

.payments-button-fortebank {
    background-position: -160px -320px
}

.payments-button-rbkbank {
    background-position: -240px -320px
}

.payments-button-kazpost {
    background-position: -320px -320px
}

.payments-button-kassa24 {
    background-position: -400px -320px
}

.payments-button-privat24 {
    background-position: -480px -320px
}

.payments-button-freekassa {
    background-position: -400px -160px
}

.payments-button-applepay {
    background-position: -480px -160px
}

.intl-tel-input {
    position: relative;
    display: inline-block
}

.intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box
}

.intl-tel-input .hide {
    display: none
}

.intl-tel-input .v-hide {
    visibility: hidden
}

.intl-tel-input input,
.intl-tel-input input[type=tel],
.intl-tel-input input[type=text] {
    position: relative;
    z-index: 0;
    margin-top: 0!important;
    margin-bottom: 0!important;
    padding-right: 36px;
    margin-right: 0
}

.intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px
}

.intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 100%;
    padding: 0 0 0 8px
}

.intl-tel-input .selected-flag .iti-flag {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto
}

.intl-tel-input .selected-flag .iti-arrow {
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555
}

.intl-tel-input .selected-flag .iti-arrow.up {
    border-top: none;
    border-bottom: 4px solid #555
}

.intl-tel-input .country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
    background-color: #fff;
    border: 1px solid #ccc;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll
}

.intl-tel-input .country-list.dropup {
    bottom: 100%;
    margin-bottom: -1px
}

.intl-tel-input .country-list .flag-box {
    display: inline-block;
    width: 20px
}

@media (max-width:500px) {
    .intl-tel-input .country-list {
        white-space: normal
    }
}

.intl-tel-input .country-list .divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc
}

.intl-tel-input .country-list .country {
    padding: 5px 10px
}

.intl-tel-input .country-list .country .dial-code {
    color: #999
}

.intl-tel-input .country-list .country.highlight {
    background-color: rgba(0, 0, 0, .05)
}

.intl-tel-input .country-list .country-name,
.intl-tel-input .country-list .dial-code,
.intl-tel-input .country-list .flag-box {
    vertical-align: middle
}

.intl-tel-input .country-list .country-name,
.intl-tel-input .country-list .flag-box {
    margin-right: 6px
}

.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type=tel],
.intl-tel-input.allow-dropdown input[type=text],
.intl-tel-input.separate-dial-code input,
.intl-tel-input.separate-dial-code input[type=tel],
.intl-tel-input.separate-dial-code input[type=text] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.intl-tel-input.allow-dropdown .flag-container,
.intl-tel-input.separate-dial-code .flag-container {
    right: auto;
    left: 0
}

.intl-tel-input.allow-dropdown .selected-flag,
.intl-tel-input.separate-dial-code .selected-flag {
    width: 46px
}

.intl-tel-input.allow-dropdown .flag-container:hover {
    cursor: pointer
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
    background-color: rgba(0, 0, 0, .05)
}

.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover,
.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover {
    cursor: default
}

.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag,
.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag {
    background-color: transparent
}

.intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgba(0, 0, 0, .05);
    display: table
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 28px
}

.intl-tel-input.separate-dial-code.iti-sdc-2 input,
.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],
.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {
    padding-left: 66px
}

.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
    width: 60px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {
    padding-left: 76px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
    width: 70px
}

.intl-tel-input.separate-dial-code.iti-sdc-3 input,
.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],
.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {
    padding-left: 74px
}

.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
    width: 68px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {
    padding-left: 84px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    width: 78px
}

.intl-tel-input.separate-dial-code.iti-sdc-4 input,
.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],
.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {
    padding-left: 82px
}

.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
    width: 76px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
    padding-left: 92px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
    width: 86px
}

.intl-tel-input.separate-dial-code.iti-sdc-5 input,
.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],
.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {
    padding-left: 90px
}

.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
    width: 84px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {
    padding-left: 100px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
    width: 94px
}

.intl-tel-input.iti-container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px
}

.intl-tel-input.iti-container:hover {
    cursor: pointer
}

.iti-mobile .intl-tel-input.iti-container {
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    position: fixed
}

.iti-mobile .intl-tel-input .country-list {
    max-height: 100%;
    width: 100%
}

.iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em
}

.iti-flag {
    width: 20px
}

.iti-flag.be {
    width: 18px
}

.iti-flag.ch {
    width: 15px
}

.iti-flag.mc {
    width: 19px
}

.iti-flag.ne {
    width: 18px
}

.iti-flag.np {
    width: 13px
}

.iti-flag.va {
    width: 15px
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
    .iti-flag {
        background-size: 5652px 15px
    }
}

.iti-flag.ac {
    height: 10px;
    background-position: 0 0
}

.iti-flag.ad {
    height: 14px;
    background-position: -22px 0
}

.iti-flag.ae {
    height: 10px;
    background-position: -44px 0
}

.iti-flag.af {
    height: 14px;
    background-position: -66px 0
}

.iti-flag.ag {
    height: 14px;
    background-position: -88px 0
}

.iti-flag.ai {
    height: 10px;
    background-position: -110px 0
}

.iti-flag.al {
    height: 15px;
    background-position: -132px 0
}

.iti-flag.am {
    height: 10px;
    background-position: -154px 0
}

.iti-flag.ao {
    height: 14px;
    background-position: -176px 0
}

.iti-flag.aq {
    height: 14px;
    background-position: -198px 0
}

.iti-flag.ar {
    height: 13px;
    background-position: -220px 0
}

.iti-flag.as {
    height: 10px;
    background-position: -242px 0
}

.iti-flag.at {
    height: 14px;
    background-position: -264px 0
}

.iti-flag.au {
    height: 10px;
    background-position: -286px 0
}

.iti-flag.aw {
    height: 14px;
    background-position: -308px 0
}

.iti-flag.ax {
    height: 13px;
    background-position: -330px 0
}

.iti-flag.az {
    height: 10px;
    background-position: -352px 0
}

.iti-flag.ba {
    height: 10px;
    background-position: -374px 0
}

.iti-flag.bb {
    height: 14px;
    background-position: -396px 0
}

.iti-flag.bd {
    height: 12px;
    background-position: -418px 0
}

.iti-flag.be {
    height: 15px;
    background-position: -440px 0
}

.iti-flag.bf {
    height: 14px;
    background-position: -460px 0
}

.iti-flag.bg {
    height: 12px;
    background-position: -482px 0
}

.iti-flag.bh {
    height: 12px;
    background-position: -504px 0
}

.iti-flag.bi {
    height: 12px;
    background-position: -526px 0
}

.iti-flag.bj {
    height: 14px;
    background-position: -548px 0
}

.iti-flag.bl {
    height: 14px;
    background-position: -570px 0
}

.iti-flag.bm {
    height: 10px;
    background-position: -592px 0
}

.iti-flag.bn {
    height: 10px;
    background-position: -614px 0
}

.iti-flag.bo {
    height: 14px;
    background-position: -636px 0
}

.iti-flag.bq {
    height: 14px;
    background-position: -658px 0
}

.iti-flag.br {
    height: 14px;
    background-position: -680px 0
}

.iti-flag.bs {
    height: 10px;
    background-position: -702px 0
}

.iti-flag.bt {
    height: 14px;
    background-position: -724px 0
}

.iti-flag.bv {
    height: 15px;
    background-position: -746px 0
}

.iti-flag.bw {
    height: 14px;
    background-position: -768px 0
}

.iti-flag.by {
    height: 10px;
    background-position: -790px 0
}

.iti-flag.bz {
    height: 14px;
    background-position: -812px 0
}

.iti-flag.ca {
    height: 10px;
    background-position: -834px 0
}

.iti-flag.cc {
    height: 10px;
    background-position: -856px 0
}

.iti-flag.cd {
    height: 15px;
    background-position: -878px 0
}

.iti-flag.cf {
    height: 14px;
    background-position: -900px 0
}

.iti-flag.cg {
    height: 14px;
    background-position: -922px 0
}

.iti-flag.ch {
    height: 15px;
    background-position: -944px 0
}

.iti-flag.ci {
    height: 14px;
    background-position: -961px 0
}

.iti-flag.ck {
    height: 10px;
    background-position: -983px 0
}

.iti-flag.cl {
    height: 14px;
    background-position: -1005px 0
}

.iti-flag.cm {
    height: 14px;
    background-position: -1027px 0
}

.iti-flag.cn {
    height: 14px;
    background-position: -1049px 0
}

.iti-flag.co {
    height: 14px;
    background-position: -1071px 0
}

.iti-flag.cp {
    height: 14px;
    background-position: -1093px 0
}

.iti-flag.cr {
    height: 12px;
    background-position: -1115px 0
}

.iti-flag.cu {
    height: 10px;
    background-position: -1137px 0
}

.iti-flag.cv {
    height: 12px;
    background-position: -1159px 0
}

.iti-flag.cw {
    height: 14px;
    background-position: -1181px 0
}

.iti-flag.cx {
    height: 10px;
    background-position: -1203px 0
}

.iti-flag.cy {
    height: 14px;
    background-position: -1225px 0
}

.iti-flag.cz {
    height: 14px;
    background-position: -1247px 0
}

.iti-flag.de {
    height: 12px;
    background-position: -1269px 0
}

.iti-flag.dg {
    height: 10px;
    background-position: -1291px 0
}

.iti-flag.dj {
    height: 14px;
    background-position: -1313px 0
}

.iti-flag.dk {
    height: 15px;
    background-position: -1335px 0
}

.iti-flag.dm {
    height: 10px;
    background-position: -1357px 0
}

.iti-flag.do {
    height: 14px;
    background-position: -1379px 0
}

.iti-flag.dz {
    height: 14px;
    background-position: -1401px 0
}

.iti-flag.ea {
    height: 14px;
    background-position: -1423px 0
}

.iti-flag.ec {
    height: 14px;
    background-position: -1445px 0
}

.iti-flag.ee {
    height: 13px;
    background-position: -1467px 0
}

.iti-flag.eg {
    height: 14px;
    background-position: -1489px 0
}

.iti-flag.eh {
    height: 10px;
    background-position: -1511px 0
}

.iti-flag.er {
    height: 10px;
    background-position: -1533px 0
}

.iti-flag.es {
    height: 14px;
    background-position: -1555px 0
}

.iti-flag.et {
    height: 10px;
    background-position: -1577px 0
}

.iti-flag.eu {
    height: 14px;
    background-position: -1599px 0
}

.iti-flag.fi {
    height: 12px;
    background-position: -1621px 0
}

.iti-flag.fj {
    height: 10px;
    background-position: -1643px 0
}

.iti-flag.fk {
    height: 10px;
    background-position: -1665px 0
}

.iti-flag.fm {
    height: 11px;
    background-position: -1687px 0
}

.iti-flag.fo {
    height: 15px;
    background-position: -1709px 0
}

.iti-flag.fr {
    height: 14px;
    background-position: -1731px 0
}

.iti-flag.ga {
    height: 15px;
    background-position: -1753px 0
}

.iti-flag.gb {
    height: 10px;
    background-position: -1775px 0
}

.iti-flag.gd {
    height: 12px;
    background-position: -1797px 0
}

.iti-flag.ge {
    height: 14px;
    background-position: -1819px 0
}

.iti-flag.gf {
    height: 14px;
    background-position: -1841px 0
}

.iti-flag.gg {
    height: 14px;
    background-position: -1863px 0
}

.iti-flag.gh {
    height: 14px;
    background-position: -1885px 0
}

.iti-flag.gi {
    height: 10px;
    background-position: -1907px 0
}

.iti-flag.gl {
    height: 14px;
    background-position: -1929px 0
}

.iti-flag.gm {
    height: 14px;
    background-position: -1951px 0
}

.iti-flag.gn {
    height: 14px;
    background-position: -1973px 0
}

.iti-flag.gp {
    height: 14px;
    background-position: -1995px 0
}

.iti-flag.gq {
    height: 14px;
    background-position: -2017px 0
}

.iti-flag.gr {
    height: 14px;
    background-position: -2039px 0
}

.iti-flag.gs {
    height: 10px;
    background-position: -2061px 0
}

.iti-flag.gt {
    height: 13px;
    background-position: -2083px 0
}

.iti-flag.gu {
    height: 11px;
    background-position: -2105px 0
}

.iti-flag.gw {
    height: 10px;
    background-position: -2127px 0
}

.iti-flag.gy {
    height: 12px;
    background-position: -2149px 0
}

.iti-flag.hk {
    height: 14px;
    background-position: -2171px 0
}

.iti-flag.hm {
    height: 10px;
    background-position: -2193px 0
}

.iti-flag.hn {
    height: 10px;
    background-position: -2215px 0
}

.iti-flag.hr {
    height: 10px;
    background-position: -2237px 0
}

.iti-flag.ht {
    height: 12px;
    background-position: -2259px 0
}

.iti-flag.hu {
    height: 10px;
    background-position: -2281px 0
}

.iti-flag.ic {
    height: 14px;
    background-position: -2303px 0
}

.iti-flag.id {
    height: 14px;
    background-position: -2325px 0
}

.iti-flag.ie {
    height: 10px;
    background-position: -2347px 0
}

.iti-flag.il {
    height: 15px;
    background-position: -2369px 0
}

.iti-flag.im {
    height: 10px;
    background-position: -2391px 0
}

.iti-flag.in {
    height: 14px;
    background-position: -2413px 0
}

.iti-flag.io {
    height: 10px;
    background-position: -2435px 0
}

.iti-flag.iq {
    height: 14px;
    background-position: -2457px 0
}

.iti-flag.ir {
    height: 12px;
    background-position: -2479px 0
}

.iti-flag.is {
    height: 15px;
    background-position: -2501px 0
}

.iti-flag.it {
    height: 14px;
    background-position: -2523px 0
}

.iti-flag.je {
    height: 12px;
    background-position: -2545px 0
}

.iti-flag.jm {
    height: 10px;
    background-position: -2567px 0
}

.iti-flag.jo {
    height: 10px;
    background-position: -2589px 0
}

.iti-flag.jp {
    height: 14px;
    background-position: -2611px 0
}

.iti-flag.ke {
    height: 14px;
    background-position: -2633px 0
}

.iti-flag.kg {
    height: 12px;
    background-position: -2655px 0
}

.iti-flag.kh {
    height: 13px;
    background-position: -2677px 0
}

.iti-flag.ki {
    height: 10px;
    background-position: -2699px 0
}

.iti-flag.km {
    height: 12px;
    background-position: -2721px 0
}

.iti-flag.kn {
    height: 14px;
    background-position: -2743px 0
}

.iti-flag.kp {
    height: 10px;
    background-position: -2765px 0
}

.iti-flag.kr {
    height: 14px;
    background-position: -2787px 0
}

.iti-flag.kw {
    height: 10px;
    background-position: -2809px 0
}

.iti-flag.ky {
    height: 10px;
    background-position: -2831px 0
}

.iti-flag.kz {
    height: 10px;
    background-position: -2853px 0
}

.iti-flag.la {
    height: 14px;
    background-position: -2875px 0
}

.iti-flag.lb {
    height: 14px;
    background-position: -2897px 0
}

.iti-flag.lc {
    height: 10px;
    background-position: -2919px 0
}

.iti-flag.li {
    height: 12px;
    background-position: -2941px 0
}

.iti-flag.lk {
    height: 10px;
    background-position: -2963px 0
}

.iti-flag.lr {
    height: 11px;
    background-position: -2985px 0
}

.iti-flag.ls {
    height: 14px;
    background-position: -3007px 0
}

.iti-flag.lt {
    height: 12px;
    background-position: -3029px 0
}

.iti-flag.lu {
    height: 12px;
    background-position: -3051px 0
}

.iti-flag.lv {
    height: 10px;
    background-position: -3073px 0
}

.iti-flag.ly {
    height: 10px;
    background-position: -3095px 0
}

.iti-flag.ma {
    height: 14px;
    background-position: -3117px 0
}

.iti-flag.mc {
    height: 15px;
    background-position: -3139px 0
}

.iti-flag.md {
    height: 10px;
    background-position: -3160px 0
}

.iti-flag.me {
    height: 10px;
    background-position: -3182px 0
}

.iti-flag.mf {
    height: 14px;
    background-position: -3204px 0
}

.iti-flag.mg {
    height: 14px;
    background-position: -3226px 0
}

.iti-flag.mh {
    height: 11px;
    background-position: -3248px 0
}

.iti-flag.mk {
    height: 10px;
    background-position: -3270px 0
}

.iti-flag.ml {
    height: 14px;
    background-position: -3292px 0
}

.iti-flag.mm {
    height: 14px;
    background-position: -3314px 0
}

.iti-flag.mn {
    height: 10px;
    background-position: -3336px 0
}

.iti-flag.mo {
    height: 14px;
    background-position: -3358px 0
}

.iti-flag.mp {
    height: 10px;
    background-position: -3380px 0
}

.iti-flag.mq {
    height: 14px;
    background-position: -3402px 0
}

.iti-flag.mr {
    height: 14px;
    background-position: -3424px 0
}

.iti-flag.ms {
    height: 10px;
    background-position: -3446px 0
}

.iti-flag.mt {
    height: 14px;
    background-position: -3468px 0
}

.iti-flag.mu {
    height: 14px;
    background-position: -3490px 0
}

.iti-flag.mv {
    height: 14px;
    background-position: -3512px 0
}

.iti-flag.mw {
    height: 14px;
    background-position: -3534px 0
}

.iti-flag.mx {
    height: 12px;
    background-position: -3556px 0
}

.iti-flag.my {
    height: 10px;
    background-position: -3578px 0
}

.iti-flag.mz {
    height: 14px;
    background-position: -3600px 0
}

.iti-flag.na {
    height: 14px;
    background-position: -3622px 0
}

.iti-flag.nc {
    height: 10px;
    background-position: -3644px 0
}

.iti-flag.ne {
    height: 15px;
    background-position: -3666px 0
}

.iti-flag.nf {
    height: 10px;
    background-position: -3686px 0
}

.iti-flag.ng {
    height: 10px;
    background-position: -3708px 0
}

.iti-flag.ni {
    height: 12px;
    background-position: -3730px 0
}

.iti-flag.nl {
    height: 14px;
    background-position: -3752px 0
}

.iti-flag.no {
    height: 15px;
    background-position: -3774px 0
}

.iti-flag.np {
    height: 15px;
    background-position: -3796px 0
}

.iti-flag.nr {
    height: 10px;
    background-position: -3811px 0
}

.iti-flag.nu {
    height: 10px;
    background-position: -3833px 0
}

.iti-flag.nz {
    height: 10px;
    background-position: -3855px 0
}

.iti-flag.om {
    height: 10px;
    background-position: -3877px 0
}

.iti-flag.pa {
    height: 14px;
    background-position: -3899px 0
}

.iti-flag.pe {
    height: 14px;
    background-position: -3921px 0
}

.iti-flag.pf {
    height: 14px;
    background-position: -3943px 0
}

.iti-flag.pg {
    height: 15px;
    background-position: -3965px 0
}

.iti-flag.ph {
    height: 10px;
    background-position: -3987px 0
}

.iti-flag.pk {
    height: 14px;
    background-position: -4009px 0
}

.iti-flag.pl {
    height: 13px;
    background-position: -4031px 0
}

.iti-flag.pm {
    height: 14px;
    background-position: -4053px 0
}

.iti-flag.pn {
    height: 10px;
    background-position: -4075px 0
}

.iti-flag.pr {
    height: 14px;
    background-position: -4097px 0
}

.iti-flag.ps {
    height: 10px;
    background-position: -4119px 0
}

.iti-flag.pt {
    height: 14px;
    background-position: -4141px 0
}

.iti-flag.pw {
    height: 13px;
    background-position: -4163px 0
}

.iti-flag.py {
    height: 11px;
    background-position: -4185px 0
}

.iti-flag.qa {
    height: 8px;
    background-position: -4207px 0
}

.iti-flag.re {
    height: 14px;
    background-position: -4229px 0
}

.iti-flag.ro {
    height: 14px;
    background-position: -4251px 0
}

.iti-flag.rs {
    height: 14px;
    background-position: -4273px 0
}

.iti-flag.ru {
    height: 14px;
    background-position: -4295px 0
}

.iti-flag.rw {
    height: 14px;
    background-position: -4317px 0
}

.iti-flag.sa {
    height: 14px;
    background-position: -4339px 0
}

.iti-flag.sb {
    height: 10px;
    background-position: -4361px 0
}

.iti-flag.sc {
    height: 10px;
    background-position: -4383px 0
}

.iti-flag.sd {
    height: 10px;
    background-position: -4405px 0
}

.iti-flag.se {
    height: 13px;
    background-position: -4427px 0
}

.iti-flag.sg {
    height: 14px;
    background-position: -4449px 0
}

.iti-flag.sh {
    height: 10px;
    background-position: -4471px 0
}

.iti-flag.si {
    height: 10px;
    background-position: -4493px 0
}

.iti-flag.sj {
    height: 15px;
    background-position: -4515px 0
}

.iti-flag.sk {
    height: 14px;
    background-position: -4537px 0
}

.iti-flag.sl {
    height: 14px;
    background-position: -4559px 0
}

.iti-flag.sm {
    height: 15px;
    background-position: -4581px 0
}

.iti-flag.sn {
    height: 14px;
    background-position: -4603px 0
}

.iti-flag.so {
    height: 14px;
    background-position: -4625px 0
}

.iti-flag.sr {
    height: 14px;
    background-position: -4647px 0
}

.iti-flag.ss {
    height: 10px;
    background-position: -4669px 0
}

.iti-flag.st {
    height: 10px;
    background-position: -4691px 0
}

.iti-flag.sv {
    height: 12px;
    background-position: -4713px 0
}

.iti-flag.sx {
    height: 14px;
    background-position: -4735px 0
}

.iti-flag.sy {
    height: 14px;
    background-position: -4757px 0
}

.iti-flag.sz {
    height: 14px;
    background-position: -4779px 0
}

.iti-flag.ta {
    height: 10px;
    background-position: -4801px 0
}

.iti-flag.tc {
    height: 10px;
    background-position: -4823px 0
}

.iti-flag.td {
    height: 14px;
    background-position: -4845px 0
}

.iti-flag.tf {
    height: 14px;
    background-position: -4867px 0
}

.iti-flag.tg {
    height: 13px;
    background-position: -4889px 0
}

.iti-flag.th {
    height: 14px;
    background-position: -4911px 0
}

.iti-flag.tj {
    height: 10px;
    background-position: -4933px 0
}

.iti-flag.tk {
    height: 10px;
    background-position: -4955px 0
}

.iti-flag.tl {
    height: 10px;
    background-position: -4977px 0
}

.iti-flag.tm {
    height: 14px;
    background-position: -4999px 0
}

.iti-flag.tn {
    height: 14px;
    background-position: -5021px 0
}

.iti-flag.to {
    height: 10px;
    background-position: -5043px 0
}

.iti-flag.tr {
    height: 14px;
    background-position: -5065px 0
}

.iti-flag.tt {
    height: 12px;
    background-position: -5087px 0
}

.iti-flag.tv {
    height: 10px;
    background-position: -5109px 0
}

.iti-flag.tw {
    height: 14px;
    background-position: -5131px 0
}

.iti-flag.tz {
    height: 14px;
    background-position: -5153px 0
}

.iti-flag.ua {
    height: 14px;
    background-position: -5175px 0
}

.iti-flag.ug {
    height: 14px;
    background-position: -5197px 0
}

.iti-flag.um {
    height: 11px;
    background-position: -5219px 0
}

.iti-flag.un {
    height: 14px;
    background-position: -5241px 0
}

.iti-flag.us {
    height: 11px;
    background-position: -5263px 0
}

.iti-flag.uy {
    height: 14px;
    background-position: -5285px 0
}

.iti-flag.uz {
    height: 10px;
    background-position: -5307px 0
}

.iti-flag.va {
    height: 15px;
    background-position: -5329px 0
}

.iti-flag.vc {
    height: 14px;
    background-position: -5346px 0
}

.iti-flag.ve {
    height: 14px;
    background-position: -5368px 0
}

.iti-flag.vg {
    height: 10px;
    background-position: -5390px 0
}

.iti-flag.vi {
    height: 14px;
    background-position: -5412px 0
}

.iti-flag.vn {
    height: 14px;
    background-position: -5434px 0
}

.iti-flag.vu {
    height: 12px;
    background-position: -5456px 0
}

.iti-flag.wf {
    height: 14px;
    background-position: -5478px 0
}

.iti-flag.ws {
    height: 10px;
    background-position: -5500px 0
}

.iti-flag.xk {
    height: 15px;
    background-position: -5522px 0
}

.iti-flag.ye {
    height: 14px;
    background-position: -5544px 0
}

.iti-flag.yt {
    height: 14px;
    background-position: -5566px 0
}

.iti-flag.za {
    height: 14px;
    background-position: -5588px 0
}

.iti-flag.zm {
    height: 14px;
    background-position: -5610px 0
}

.iti-flag.zw {
    height: 10px;
    background-position: -5632px 0
}

.iti-flag {
    width: 20px;
    height: 15px;
    box-shadow: 0 0 1px 0 #888;
    background-image: url(/s/i/flags.png?v2);
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-position: 20px 0
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
    .iti-flag {
        background-image: url(/s/i/flags@2x.png?v2)
    }
}

.iti-flag.np {
    background-color: transparent
}

.intl-tel-input {
    width: 100%
}

.intl-tel-input .country-list .country {
    margin: 0
}

.flag-container {
    color: #000
}

.collections-chooser,
.select {
    height: auto!important
}

.products-cart>* {
    align-self: center
}

.products-cart a:hover {
    text-decoration: none
}

.products-cart .product-container-outer {
    min-height: auto;
    margin-bottom: 0
}

.product-container-outer dl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    margin: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .6)));
    background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .6) 100%);
    background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, .6) 100%);
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .6) 100%);
    display: flex;
    flex-direction: row;
    padding: 20px 10px 10px 10px;
    border-radius: 0 0 3px 3px
}

.product-container-outer dd,
.product-container-outer dt {
    color: #fff;
    align-self: flex-end;
    text-shadow: 0 0 1px rgba(0, 0, 0, .6)
}

.product-container-outer dt {
    flex-grow: 1;
    font-size: 2em
}

.product-container-outer dd {
    font-weight: 700;
    font-size: 2.5em;
    padding-left: 10px;
    white-space: nowrap
}

.products-cart+.products-cart {
    border-top: 1px solid #eee
}

.products-cart .input-group input {
    border: 0;
    box-shadow: none;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    -webkit-appearance: none
}

.products-cart .input-group input:focus {
    outline: 0;
    -webkit-focus-ring-color: transparent;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
    outline: 0
}

.products-cart .field.error button.is-light,
.products-cart .field.error button.is-light:hover {
    background: #fd6a62;
    color: #fff!important
}

.products-cart .field.error input {
    border-color: #fd6a62
}

.products-cart .has-addons input {
    border-color: #f5f5f5;
    border-width: 2px
}

.products-cart .has-addons input:focus {
    box-shadow: none
}

.product-container {
    padding-top: 100%;
    position: relative
}

.product-container-outer {
    margin-bottom: 10px;
    text-decoration: none
}

.products-price {
    display: inline
}

a.product-container-outer:active,
a.product-container-outer:hover,
a.product-container-outer:visited {
    text-decoration: none
}

.product-container-text {
    font-size: 1.8em;
    padding-top: .5em;
    padding-bottom: .5em
}

.product-container-text i {
    font-style: normal;
    display: block;
    opacity: .6;
    line-height: 1.3em;
    padding-bottom: .2em
}

.product-container-text b {
    font-weight: 700;
    display: block
}

@media (max-width:767px) {
    .products-price {
        display: block
    }
    .product-container-outer dl {
        flex-direction: column
    }
    .product-container-outer dt {
        font-size: 1.8em;
        align-self: flex-start
    }
    .product-container-outer dd {
        font-size: 1.5em;
        align-self: flex-start;
        padding-left: 0
    }
}

@media (min-width:768px) {
    a.product-container-outer:hover .product-container:after {
        content: '';
        border-radius: 5px;
        background-color: rgba(0, 0, 0, .3);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute
    }
}

@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px
    }
}

@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px
    }
    84% {
        width: 55px;
        right: 0;
        top: 35px
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px
    }
}

@keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg)
    }
    5% {
        transform: rotate(-45deg)
    }
    12% {
        transform: rotate(-405deg)
    }
    100% {
        transform: rotate(-405deg)
    }
}

.animateSuccessTip {
    animation: animateSuccessTip .75s
}

.animateSuccessLong {
    animation: animateSuccessLong .75s
}

.sa-icon.sa-success.animate::after {
    animation: rotatePlaceholder 4.25s ease-in
}

.sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    border-radius: 50%;
    margin: 20px auto 30px auto;
    position: relative;
    box-sizing: content-box;
    display: none
}

.sa-icon.sa-success {
    border-color: #4cae4c
}

.sa-icon.sa-success::after,
.sa-icon.sa-success::before {
    content: '';
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: #f6f7f8;
    transform: rotate(45deg)
}

.sa-icon.sa-success::before {
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    transform: rotate(-45deg);
    transform-origin: 60px 60px
}

.sa-icon.sa-success::after {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    transform: rotate(-45deg);
    transform-origin: 0 60px
}

.sa-icon.sa-success .sa-placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(92, 184, 92, .2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2
}

.sa-icon.sa-success .sa-fix {
    width: 5px;
    height: 90px;
    background-color: #f6f7f8;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    transform: rotate(-45deg)
}

.sa-icon.sa-success .sa-line {
    height: 5px;
    background-color: #5cb85c;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2
}

.sa-icon.sa-success .sa-line.sa-tip {
    width: 25px;
    left: 14px;
    top: 46px;
    transform: rotate(45deg)
}

.sa-icon.sa-success .sa-line.sa-long {
    width: 47px;
    right: 8px;
    top: 38px;
    transform: rotate(-45deg)
}

html {
    background: #f5f5f5!important;
    display: flex;
    flex-direction: column
}

.page,
body {
    font-family: Roboto, sans-serif
}

body {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.main {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    background-color: #2a0d0d !important;
    background: url();
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.page {
    padding: 15px 15px 0 15px;
    position: relative;
    max-width: 600px;
    font-size: 8px;
    text-align: left!important
}

@media (max-width:767px) {
    .page {
        
    }
    .blocks-list .block-break:before {
        margin-left: 20px
    }
}

.page-font {
    font-size: 8px
}

.btn-link,
.btn-link:active,
.btn-link:hover,
.btn-link:link,
.btn-link:visited {
    display: block;
    width: 100%;
    padding: 20px 10px;
    text-decoration: none!important;
    font-size: 2em;
    border: 2px solid transparent;
    border-radius: 2px;
    position: relative;
    height: auto;
    line-height: 1.4;
    white-space: normal
}

@-webkit-keyframes circle-ripple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .2
    }
    33% {
        opacity: 1
    }
    67% {
        opacity: .2
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes circle-ripple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .2
    }
    33% {
        opacity: 1
    }
    67% {
        opacity: .2
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.waiting-block {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto
}

.waiting:after,
.waiting:before {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    -webkit-animation: circle-ripple 2s infinite cubic-bezier(.1, .2, .3, 1);
    animation: circle-ripple 2s infinite cubic-bezier(.1, .2, .3, 1);
    z-index: 1
}

.waiting:after {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.waiting-blue:after,
.waiting-blue:before {
    border-color: #4f8ef7
}

.waiting-black:after,
.waiting-black:before {
    border-color: #212125
}

.profile-avatar {
    border-radius: 50%
}

.profile-avatar-65 {
    width: 65px;
    height: 65px
}

.profile-avatar-95 {
    width: 95px;
    height: 95px
}

.profile-avatar-125 {
    width: 125px;
    height: 125px
}

.profile-avatar-150 {
    width: 150px;
    height: 150px
}

.btn {
    white-space: normal
}

.btn-link:hover {
    opacity: .9
}

.footer-link {
    text-align: center;
    text-decoration: none;
    padding: 20px 15px 35px 15px;
    opacity: .7;
    transition: opacity .1s ease
}

.footer-link span {
    font-weight: 700
}

.footer-link:hover {
    text-decoration: none;
    opacity: 1
}

.map-container,
.video-container {
    background: #eee;
    padding-top: 56.17021276595745%;
    width: 100%;
    position: relative;
    overflow: hidden
}

.map-container .map-form,
.map-container .map-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.picture-container,
.product-container {
    background-color: #eee;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    border-radius: 3px
}

.picture-cover {
    background-size: cover!important
}

.picture-contain {
    background-size: contain!important;
    background-color: #fff
}

.picture-container {
    padding-top: 70%
}

.picture-container:after,
.product-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px
}

.slider-has-link .picture-container:after,
.slider-has-text .picture-container:after {
    border-radius: 5px 5px 0 0
}

.slider-has-border .picture-container:after,
.slider-has-border .product-container:after {
    border: 1px solid rgba(0, 0, 0, .1)
}

.product-container:after {
    border-radius: 5px
}

.product-container.fa:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #dedcdc;
    font-size: 25px;
    text-shadow: 0 1px 0 #fff
}

.picture-container-empty:before,
.picture-container-upload:before,
.product-container-empty:before,
.product-container.fa:before {
    font: normal normal normal 50px/1 "Font Awesome 5 Pro";
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: #d6d6d6;
    text-shadow: 0 1px 1px #fff
}

.product-container-outer .product-container-empty:before,
.product-container.fa:before {
    font-size: 30px
}

.picture-container-empty:before,
.product-container-empty:before {
    content: "\f03e";
    font-weight: 300
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.block-break {
    position: relative
}

.block-form label {
    font-weight: 400;
    margin-bottom: 10px
}

.block-form .btn-link {
    position: relative
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.updating-link span {
    display: none
}

.updating-link,
.updating-link:active,
.updating-link:hover,
.updating-link:link,
.updating-link:visited {
    color: transparent!important;
    position: relative
}

.btn-link.updating-link .fa,
.btn-link.updating-link svg {
    visibility: hidden
}

.block-form .btn-link,
.block-form .checkbox-list,
.block-form .intl-tel-input,
.block-form .radio-list,
.block-form input[type=number],
.block-form input[type=search],
.block-form input[type=tel],
.block-form input[type=text],
.block-form select,
.block-form textarea {
    margin-bottom: 15px!important;
    display: block;
    width: 100%;
    font-size: 2em
}

.block-form .label {
    font-size: inherit;
    display: block;
    font-size: 2.2em
}

.block-form input[type=number],
.block-form input[type=search],
.block-form input[type=tel],
.block-form input[type=text],
.block-form select,
.block-form textarea {
    padding: 16px 16px;
    border: solid 1px #d9d9d9;
    border-top: solid 1px #a9a9a9;
    border-radius: 2px;
    -webkit-appearance: none;
    background: #fff;
    color: #000;
    font-size: 2.2em
}

.block-form .intl-tel-input input[type=tel] {
    font-size: inherit
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: 0
}

.block-form select {
    border: solid 1px #d9d9d9;
    background: #fff
}

.block-form div.select {
    position: relative;
    width: 100%;
    height: auto
}

.block-form div.select select {
    height: auto;
    line-height: normal
}

.block-form div.select:after {
    margin-top: -.9em!important;
    font-size: 2.2em
}

.block-form input:focus,
.block-form select:focus,
.block-form textarea:focus {
    outline: 0;
    -webkit-focus-ring-color: transparent;
    -webkit-tap-highlight-color: transparent
}

.block-form .form-field-desc {
    opacity: .5;
    margin-bottom: 10px
}

.form-field>.form-field-desc {
    font-size: 1.8em
}

.block-form .form-field button[type=submit] {
    margin-top: 1.5rem
}

.block-break:before {
    content: '';
    height: 50%;
    border-bottom: 1px solid #000;
    opacity: .3;
    position: absolute;
    top: 0;
    left: 50%;
    width: 20%;
    transform: translate(-50%, 0);
    pointer-events: none
}

.btn-link-whatsapp,
.btn-link-whatsapp:active,
.btn-link-whatsapp:hover,
.btn-link-whatsapp:link,
.btn-link-whatsapp:visited {
    background: #55cd6c!important;
    color: #fff!important;
    border-color: #55cd6c!important
}

.btn-link-telegram,
.btn-link-telegram:active,
.btn-link-telegram:hover,
.btn-link-telegram:link,
.btn-link-telegram:visited {
    background: #61a8de!important;
    color: #fff!important;
    border-color: #61a8de!important
}

.btn-link-fb,
.btn-link-fb:active,
.btn-link-fb:hover,
.btn-link-fb:link,
.btn-link-fb:visited {
    background: #0084ff!important;
    color: #fff!important;
    border-color: #0084ff!important
}

.btn-link-sk,
.btn-link-sk:active,
.btn-link-sk:hover,
.btn-link-sk:link,
.btn-link-sk:visited {
    background: #00aff0!important;
    color: #fff!important;
    border-color: #00aff0!important
}

.btn-link-icon.btn-link-sk img {
    padding: 3px;
    background: #fff
}

.btn-link-vk,
.btn-link-vk:active,
.btn-link-vk:hover,
.btn-link-vk:link,
.btn-link-vk:visited {
    background: #4d76a1!important;
    color: #fff!important;
    border-color: #4d76a1!important
}

.btn-link-viber,
.btn-link-viber:active,
.btn-link-viber:hover,
.btn-link-viber:link,
.btn-link-viber:visited {
    background: #7d3daf!important;
    color: #fff!important;
    border-color: #7d3daf!important
}

.btn-link-ln,
.btn-link-ln:active,
.btn-link-ln:hover,
.btn-link-ln:link,
.btn-link-ln:visited {
    background: #00c200!important;
    color: #fff!important;
    border-color: #00c200!important
}

.socials .btn-link-block img,
.socials .btn-link-circle img,
.socials .btn-link-compact img {
    margin: -10px 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px
}

.socials .btn-link-icon img {
    width: 60px;
    height: 60px
}

.btn-link-circle.btn-link-vk img {
    left: -1px;
    position: relative
}

.btn-link-block img+span {
    margin-left: 10px
}

.btn-link-circle {
    border-radius: 50%!important;
    display: block;
    width: 60px!important;
    margin: 0 auto;
    padding: 17px 0!important
}

.btn-link-circle.btn-link-telegram img {
    margin-left: -5px
}

.btn-link-block+.btn-link-block,
.btn-link-default+.btn-link-default {
    margin-top: 15px
}

.btn-link.btn-link-icon {
    background: 0 0!important;
    border: 0!important;
    padding: 0!important;
    min-width: 60px!important;
    line-height: 0
}

.btn-link.btn-link-icon img {
    box-shadow: 0 0 1px rgba(0, 0, 0, .3);
    margin: 1px;
    border-radius: 13px
}

.footer-link,
.footer-link:active,
.footer-link:hover,
.footer-link:link,
.footer-link:visited {
    text-decoration: none
}

.block-html,
.block-text {
    font-size: 2.2em
}

.block-text>a {
    overflow: hidden
}

.block-html input,
.block-html select,
.block-html textarea {
    background: #fff;
    color: #000
}

.block-text a.link,
.block-text a.link:active,
.block-text a.link:hover,
.block-text a.link:link,
.block-text a.link:visited {
    text-decoration: underline
}

.block-handle-socials {
    bottom: 1rem;
    top: 0;
    height: auto
}

.block-item .socials .col-xs,
.block-item .socials .col-xs-12 {
    margin-bottom: 1rem
}

.block-item .socials .row {
    margin-bottom: -1rem
}

.socials .row {
    padding-bottom: 15px
}

.socials .row:last-child {
    padding-bottom: 0
}

.btn-map,
.btn-map:active,
.btn-map:hover,
.btn-map:link,
.btn-map:visited,
.btn-socials,
.btn-socials:active,
.btn-socials:hover,
.btn-socials:link,
.btn-socials:visited {
    display: flex!important;
    flex-direction: row;
    justify-content: center;
    padding: 19px 5px!important;
    border-width: 0;
    line-height: 1
}

.btn-socials,
.btn-socials:active,
.btn-socials:hover,
.btn-socials:link,
.btn-socials:visited {
    color: #fff!important;
    min-width: 60px
}

.btn-socials .fa {
    font-size: 29px;
    align-self: center;
    margin: 0 5px
}

.btn-socials span {
    align-self: center
}

.btn-socials-youtube,
.btn-socials-youtube:active,
.btn-socials-youtube:hover,
.btn-socials-youtube:link,
.btn-socials-youtube:visited {
    background: #cc181e!important
}

.btn-socials-bh,
.btn-socials-bh:active,
.btn-socials-bh:hover,
.btn-socials-bh:link,
.btn-socials-bh:visited {
    background: #0057ff!important
}

.btn-socials-ok,
.btn-socials-ok:active,
.btn-socials-ok:hover,
.btn-socials-ok:link,
.btn-socials-ok:visited {
    background: #f7941d!important
}

.btn-socials-vk,
.btn-socials-vk:active,
.btn-socials-vk:hover,
.btn-socials-vk:link,
.btn-socials-vk:visited {
    background: #597da3!important
}

.btn-socials-fb,
.btn-socials-fb:active,
.btn-socials-fb:hover,
.btn-socials-fb:link,
.btn-socials-fb:visited {
    background: #1059b2!important
}

.btn-socials-ig,
.btn-socials-ig:active,
.btn-socials-ig:hover,
.btn-socials-ig:link,
.btn-socials-ig:visited {
    background: #517fa6!important
}

.btn-socials-pt,
.btn-socials-pt:active,
.btn-socials-pt:hover,
.btn-socials-pt:link,
.btn-socials-pt:visited {
    background: #bd081c!important
}

.btn-socials-twitter,
.btn-socials-twitter:active,
.btn-socials-twitter:hover,
.btn-socials-twitter:link,
.btn-socials-twitter:visited {
    background: #2ac0ff!important
}

.btn-socials-sn,
.btn-socials-sn:active,
.btn-socials-sn:hover,
.btn-socials-sn:link,
.btn-socials-sn:visited {
    background: #ff0!important;
    color: #000!important
}

.btn-socials .fa+span {
    margin-left: 10px
}

.btn-socials .fa-vk {
    top: -2px;
    position: relative
}

.btn-socials-instagram {
    border: 1px solid #517fa6;
    background: #517fa6!important
}

.btn-map .fa {
    font-size: 25px;
    align-self: center;
    margin: 0 5px
}

.btn-map .fa+span {
    margin-left: 7px
}

.btn-map span {
    align-self: center
}

.slider {
    position: relative;
    clear: both
}

.slider-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: visible
}

.product-container-outer,
.slider-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    min-height: 100px;
    white-space: normal;
    transition: transform .5s
}

.slider-control {
    position: absolute;
    background: red;
    width: 100px;
    height: 100%;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDc2LjczNyA0NzYuNzM3IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NzYuNzM3IDQ3Ni43Mzc7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4Ij48Zz48Zz48Zz48cGF0aCBkPSJNMjM4LjM2OSwwQzEwNi43MjYsMCwwLDEwNi43MjYsMCwyMzguMzY5YzAsMTMxLjY3NSwxMDYuNzI2LDIzOC4zNjksMjM4LjM2OSwyMzguMzY5YzEzMS42NzUsMCwyMzguMzY5LTEwNi42OTQsMjM4LjM2OS0yMzguMzY5QzQ3Ni43MzcsMTA2LjcyNiwzNzAuMDQzLDAsMjM4LjM2OSwweiBNMjg5LjIyMSwzMzAuMjUyICAgICBjNi4xOTgsNi4xOTgsNi4xOTgsMTYuMjczLDAsMjIuNDdzLTE2LjI3Myw2LjE5OC0yMi40NywwTDE2My42OCwyNDkuNjUxYy0zLjExNS0zLjExNS00LjY0LTcuMTgzLTQuNjQtMTEuMjgzICAgICBzMS41MjYtOC4xNjgsNC42NC0xMS4yODNMMjY2Ljc1LDEyNC4wMTVjNi4xOTgtNi4xOTgsMTYuMjczLTYuMTk4LDIyLjQ3LDBjNi4xOTgsNi4xOTgsNi4xOTgsMTYuMjczLDAsMjIuNDdsLTkxLjg4Myw5MS44ODMgICAgIEwyODkuMjIxLDMzMC4yNTJ6IiBmaWxsPSIjZDRkNGQ0Ii8+PC9nPjwvZz48L2c+PC9zdmc+) no-repeat center center;
    opacity: .7;
    cursor: pointer;
    z-index: 1001;
    top: 0;
    bottom: 0
}

.slider-control-left {
    margin-left: -50px;
    left: 0
}

.slider-control-right {
    margin-right: -50px;
    right: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media (max-width:1199px) {
    .slider-control {
        display: none
    }
}

.slider-control:hover {
    opacity: 1
}

.slider-has-link .picture-container,
.slider-has-link .picture-container:before,
.slider-has-text .picture-container,
.slider-has-text .picture-container:before {
    border-radius: 5px 5px 0 0
}

.slider-slide-text {
    border-radius: 0 0 5px 5px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    margin: 0 4px;
    color: #000;
    padding: 1rem;
    background: #fff;
    text-align: left;
    display: none;
    text-overflow: ellipsis;
    overflow: hidden
}

.slider-has-border .slider-slide-text {
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: 0
}

.slider-has-text .slider-slide-text {
    display: block
}

.slider-slide-link {
    display: none;
    text-overflow: ellipsis;
    overflow: hidden
}

.slider-has-link .slider-slide-link {
    display: block
}

.slider-slide-link,
.slider-slide-link:active,
.slider-slide-link:hover,
.slider-slide-link:link,
.slider-slide-link:visited {
    padding: 17px 20px;
    background: #fff;
    border-radius: 0 0 5px 5px;
    margin: 0 4px;
    font-size: 2.3em;
    color: #0383de!important;
    text-decoration: none;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.slider-has-border .slider-slide-link {
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: 0
}

.slider-has-link.slider-has-text .slider-slide-link {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.slider-has-link .slider-slide-text {
    border-radius: 0;
    border-bottom: 0
}

.slider-slide-text .slider-slide-title {
    font-size: 2.3em
}

.slider-slide-text .slider-slide-snippet {
    font-size: 1.8em;
    opacity: .7;
    white-space: pre-line
}

.slider-arrow-left,
.slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: hidden;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 3;
    font: normal normal normal 14px/1 "Font Awesome 5 Pro";
    cursor: pointer;
    color: #000
}

.slider-arrow-left {
    right: auto
}

.slider-arrow-right {
    left: auto
}

.slider-arrow-left:before,
.slider-arrow-right:before {
    content: "\f104";
    font-size: 60px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em;
    text-align: center;
    position: absolute
}

.slider-arrow-right:before {
    content: "\f105"
}

.slider-nav {
    padding-top: 10px;
    margin: auto;
    height: 20px;
    text-align: center;
    font-size: 0
}

.slider-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #d3d4d6;
    cursor: pointer;
    margin: 0 3px 5px;
    -webkit-transition: background-color .1s, color .1s;
    transition: background-color .1s, color .1s;
    border-radius: 50%
}

.slider-dot.active {
    opacity: 1;
    background-color: #53a3e0
}

.slider-pictures .slider-inner {
    margin: 0 11px
}

.slider-pictures {
    overflow: hidden
}

.modal .slider-pictures .slider-slide {
    margin-top: 15px
}

.slider-pictures .picture-container {
    margin: 0 4px;
    width: auto
}

@media only screen and (min-device-width:320px) and (max-device-width:568px) {
    .header-choose-profile .fa {
        display: none
    }
    .menu a {
        padding: 5px 9px
    }
    .menu-tiny a {
        padding: 5px 5px
    }
    .menu a.active i {
        margin-right: 5px
    }
    .header-choose-profile .a>a,
    .header-choose-profile .a>div.d {
        padding: 0 8px
    }
    header .menu a .fa {
        font-weight: 400
    }
}

@media only screen and (min-device-width:375px) and (max-device-width:667px) {
    .header-choose-profile .fa {
        display: inline-block
    }
    .menu a {
        padding: 5px 12px
    }
    .menu-tiny a {
        padding: 5px 11px
    }
}

@media (max-width:767px) {
    .modal-md,
    .modal-xl {
        width: 100%;
        margin: 0
    }
    .modal-body {
        padding: 15px;
        max-height: none!important
    }
    .modal-content {
        border: 0;
        border-radius: 0
    }
    .modal-dialog {
        margin: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0
    }
    .modal-dialog .modal-content {
        height: 100%;
        min-height: 100%
    }
    .modal-open .modal {
        overflow-y: hidden
    }
    .modal-notify {
        padding: 15px;
        height: auto
    }
    .modal-notify .modal-content {
        height: auto;
        min-height: auto
    }
    .btn-link-empty,
    .btn-link-empty:active,
    .btn-link-empty:hover,
    .btn-link-empty:link,
    .btn-link-empty:visited {
        margin: 30px 0 0 0;
        background: #1fb6ff!important;
        border: 0!important;
        color: #fff!important;
        padding: 30px 18px!important;
        border-radius: 0!important
    }
    .btn-link-empty i.fa {
        display: inline-block!important;
        margin-right: 10px
    }
    .menu {
        margin: 0
    }
    .hero-link {
        padding: 20px 0 40px 0
    }
    .btn-xs-block {
        display: block;
        width: 100%
    }
    .text-xs-center {
        text-align: center
    }
    .text-xs-left {
        text-align: left
    }
    .text-xs-right {
        text-align: right
    }
    .startup-helper-holder .btn-link-empty {
        margin-left: 0
    }
    .themes-panel {
        padding: 15px
    }
    .device-xs-hide.marvel-device .screen {
        overflow: hidden
    }
    .border-3x {
        padding: 30px
    }
    .border-vertical-3x {
        padding-top: 30px;
        padding-bottom: 30px
    }
    .marvel-device .page {
        padding: 0
    }
    .page .blocks-list {
        padding: 30px 15px 0 15px
    }
}

@media (max-width:991px) {
    .block-handle {
        left: 0
    }
    .block-handle-link {
        right: 0
    }
    .device-xs-hide .block-avatar,
    .device-xs-hide .block-break,
    .device-xs-hide .block-form,
    .device-xs-hide .block-html,
    .device-xs-hide .block-link,
    .device-xs-hide .block-slider,
    .device-xs-hide .block-socialnetworks,
    .device-xs-hide .block-text,
    .device-xs-hide .block-video,
    .startup-helper-holder .block-avatar,
    .startup-helper-holder .block-break,
    .startup-helper-holder .block-form,
    .startup-helper-holder .block-link,
    .startup-helper-holder .block-slider,
    .startup-helper-holder .block-socialnetworks,
    .startup-helper-holder .block-text,
    .startup-helper-holder .block-video {
        padding-left: 40px
    }
    .block-link-page {
        padding-right: 40px
    }
}

@media (min-width:768px) and (max-width:991px) {
    .text-sm-center {
        text-align: center
    }
}

@media (max-width:991px) {
    .index-statistics-image {
        top: 0;
        margin-bottom: 0
    }
}

.mx-link,
.mx-tap {
    cursor: pointer
}

.mx-tap {
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.mx-tap.active {
    background-color: #d9d9d9!important;
    -webkit-transition-duration: 0s;
    transition-duration: 0s
}

@media (min-width:768px) {
    .mx-tap:hover {
        background-color: #f5f5f5
    }
}

mx-item {
    display: block;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fff
}

mx-item .item-row {
    margin: 0
}

mx-item .item-row>div {
    padding: 8px;
    border-right: 1px solid #f0f0f0;
    overflow: hidden
}

mx-item .item-row>div.item-col-clear {
    border-right: 0
}

mx-item .item-row>div:last-child {
    border-right: 0
}

@media (max-width:767px) {
    mx-item .item-row {
        padding: 10px
    }
    mx-item .item-row>div {
        border-right: 0;
        padding: 0
    }
    mx-item {
        line-height: 1.6
    }
    mx-item .checkbox {
        margin-bottom: 10px!important
    }
}

.mx-toggle+.form-control-static {
    margin-left: 10px;
    display: inline-block;
    vertical-align: top;
    font-weight: 700
}

.mx-icon-toggle,
.mx-toggle {
    display: inline-block;
    width: 80px;
    border-radius: 2px;
    height: 34px;
    position: relative;
    cursor: pointer;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    color: #fff;
    margin-bottom: 0;
    font-weight: 400
}

.mx-toggle:after {
    content: 'Да';
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    text-align: center;
    line-height: 32px
}

.mx-toggle[data-true-value]:after {
    content: attr(data-true-value)
}

.mx-toggle div {
    width: 80px;
    border-radius: 2px;
    height: 34px;
    background: #68747b;
    z-index: 1;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;
    position: relative;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    border: 2px solid rgba(0, 0, 0, .2);
    pointer-events: none
}

.mx-toggle div:before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 76px;
    border-radius: 2px;
    height: 30px;
    background: #829199;
    z-index: 1;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transform: scale(1);
    transform: scale(1);
    content: 'Нет';
    padding-left: 30px;
    line-height: 31px;
    text-align: center
}

.mx-toggle div[data-false-value]:before {
    content: attr(data-false-value)
}

.mx-toggle div:after {
    content: ' ';
    height: 30px;
    width: 30px;
    border-radius: 2px;
    background: #fff;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.mx-icon-toggle input[type=checkbox],
.mx-toggle input[type=checkbox] {
    display: none
}

.mx-toggle input[type=checkbox]:checked+div {
    background: #5cb85c;
    z-index: 0
}

.mx-toggle input[type=checkbox]:checked+div:before {
    -webkit-transform: scale(0);
    transform: scale(0)
}

.mx-toggle input[type=checkbox]:checked+div:after {
    -webkit-transform: translateX(46px);
    transform: translateX(46px)
}

.mx-toggle input:disabled+div,
.mx-toggle input:disabled+div:before {
    background: #c1c1c1!important
}

.mx-toggle input:disabled+div:after {
    box-shadow: none!important
}

@media (max-width:767px) {
    .mx-toggle {
        float: left
    }
    .mx-toggle+.form-control-static {
        margin-left: 90px;
        display: block
    }
}

.mx-icon-toggle {
    color: #000;
    text-align: center
}

.mx-icon-toggle .icon-yes {
    display: none
}

.mx-icon-toggle .icon-no {
    display: inline-block;
    color: #aaa
}

.mx-icon-toggle input[type=checkbox]:checked+.icon-yes {
    display: inline-block
}

.mx-icon-toggle input[type=checkbox]:checked+.icon-yes+.icon-no {
    display: none
}

.mx-icon-toggle {
    width: 34px
}

.card-info__form-wrap {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: left
}

.card-info__cards {
    position: relative;
    width: 100%;
    padding-bottom: 51%
}

.card-info__card {
    width: 75%;
    padding-bottom: 46%;
    background: #eee;
    border-radius: 1em
}

.card-info__front {
    position: absolute;
    z-index: 200;
    top: 0;
    left: 0
}

.card-info__back {
    position: absolute;
    z-index: 100;
    background: #bbb;
    right: 0;
    bottom: 0
}

.card-info__back-line {
    position: absolute;
    top: 2em;
    right: 0;
    height: 4em;
    background: #888;
    width: 100%
}

.card-info__cards * {
    box-sizing: border-box
}

.card-info__back-fields {
    box-sizing: content-box;
    position: absolute;
    top: 6em;
    right: 0;
    padding: 6%;
    width: 22%
}

.card-info__label-code {
    margin-top: 10%;
    line-height: 1.3
}

.card-info__bank-logo-wrap {
    position: absolute;
    display: none;
    top: 9.5%;
    left: 0;
    height: 25%;
    width: 100%;
    padding: 0 6%;
    z-index: 100
}

.card-info__bank-logo-link {
    background-position: 0 0;
    background-size: contain;
    border: none!important;
    display: block;
    background-repeat: no-repeat;
    height: 100%
}

.card-info__type-logo-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 6%;
    line-height: 0
}

.card-info__type-logo {
    height: 2.8em!important
}

.card-info__label {
    display: block
}

.card-info__front-fields {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 6%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden
}

.card-info__field {
    font-size: 1.8em;
    line-height: 1.15;
    display: block;
    font-family: monospace, verdana;
    padding: .2em .3em;
    box-sizing: border-box;
    width: 100%;
    border: 2px transparent solid;
    text-indent: .1em;
    color: initial
}

.card-info__field:focus {
    border-color: #fbc139!important;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0
}

.card-info__label-expired {
    margin: 3% 0 2%
}

.card-info__field-expired {
    float: left;
    margin-right: 4%;
    width: 20%
}
.music-stores {
    max-width: 600px;
   }

@media (max-width:992px) {
        .music-stores {
        max-width: 150px !important;
        margin-bottom: 20px !important;
        margin-right: auto !important;
        margin-left: auto !important;
        float: none !important;
    }
    }
    
@keyframes glowing {
        0% {
          background-color: #eef1f5;
          box-shadow: 0 0 5px #fff;
        }
        50% {
          background-color: #f1d899;
          box-shadow: 0 0 20px #fff;
        }
        100% {
          background-color: #eef1f5;
          box-shadow: 0 0 5px #fff;
        }
      }
      
      @media (max-width:992px) {
          .songs-list {
          max-width: 90%;
          margin-bottom: 20px !important;
          margin-right: auto !important;
          margin-left: auto !important;
          float: none !important;
      }
      }
      
      