@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes puffIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(2px);
        filter: blur(2px)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@keyframes puffIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(2px);
        filter: blur(2px)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@-webkit-keyframes puffOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(2px);
        filter: blur(2px)
    }
}

@keyframes puffOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(2px);
        filter: blur(2px)
    }
}

.fx {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.fx--start-visible {
    opacity: 0
}

.fx--fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 5s;
    animation-duration: 5s
}

.fx--fade-in.fx--start-visible {
    opacity: 1
}

.fx--fade-out {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

.fx--puff-in {
    -webkit-animation-name: puffIn;
    animation-name: puffIn
}

.fx--puff-out {
    -webkit-animation-name: puffOut;
    animation-name: puffOut
}

*,
:after,
:before {
    box-sizing: border-box
}

.disable-hover,
.disable-hover * {
    pointer-events: none!important
}

html {
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: Ubuntu, sans-serif;
    color: #4a4a4a;
    fill: #4a4a4a;
    background-color: #fff;
    margin: 0;
    padding: 0
}

.inline {
    display: inline-block
}

body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5
}

.color-primary {
    color: #7291ca;
    fill: #7291ca
}

.color-primary-light {
    color: #a0baea;
    fill: #a0baea
}

.color-primary-dark {
    color: #5d6e8c;
    fill: #5d6e8c
}

.color-success,
.color-success-dark,
.color-success-light {
    color: #78b948;
    fill: #78b948
}

.color-info {
    color: #e0be59;
    fill: #e0be59
}

.color-info-light {
    color: #ffe28b;
    fill: #ffe28b
}

.color-info-dark {
    color: #9c7b18;
    fill: #9c7b18
}

.color-warning {
    color: #e07f59;
    fill: #e07f59
}

.color-warning-light {
    color: #ffac8b;
    fill: #ffac8b
}

.color-warning-dark {
    color: #c45d34;
    fill: #c45d34
}

.color-danger,
.color-danger-dark,
.color-danger-light {
    color: #c14944;
    fill: #c14944
}

.color-white {
    color: #fff;
    fill: #fff
}

.color-black {
    color: #000;
    fill: #000
}

.color-main {
    color: #4a4a4a;
    fill: #4a4a4a
}

.color-gray {
    color: #caceca;
    fill: #caceca
}

.color-gray-light {
    color: #f0f2f0;
    fill: #f0f2f0
}

.color-gray-dark {
    color: #6a6e6a;
    fill: #6a6e6a
}

.bg-primary {
    background-color: #7291ca
}

.bg-primary-light {
    background-color: #a0baea
}

.bg-primary-dark {
    background-color: #5d6e8c
}

.bg-success,
.bg-success-dark,
.bg-success-light {
    background-color: #78b948
}

.bg-info {
    background-color: #e0be59
}

.bg-info-light {
    background-color: #ffe28b
}

.bg-info-dark {
    background-color: #9c7b18
}

.bg-warning {
    background-color: #e07f59
}

.bg-warning-light {
    background-color: #ffac8b
}

.bg-warning-dark {
    background-color: #c45d34
}

.bg-danger,
.bg-danger-dark,
.bg-danger-light {
    background-color: #c14944
}

.bg-white {
    background-color: #fff
}

.bg-black {
    background-color: #000
}

.bg-wt {
    background-color: #ffffe6
}

.bg-gray {
    background-color: #caceca
}

.bg-gray-light {
    background-color: #f0f2f0
}

.bg-gray-dark {
    background-color: #6a6e6a
}

.font-secondary {
    font-family: Georgia, Times, Times New Roman, serif
}

.size--xs {
    font-size: .75em
}

.size--sm {
    font-size: .875em
}

.size--md {
    font-size: 1.125em
}

.size--lg {
    font-size: 1.25em
}

.size--hd {
    font-size: 1.5em
}

.hide {
    display: none
}

blockquote,
p {
    padding: 0;
    margin: 0 0 1em
}

blockquote:last-of-type,
p:last-of-type {
    margin-bottom: 0
}

strong {
    font-weight: 700
}

b {
    font-weight: 600
}

em,
i {
    font-style: italic
}

em {
    letter-spacing: .025em
}

mark {
    padding: 0 2px;
    background: #e0be59
}

abbr {
    border-bottom: 1px dotted #6a6e6a;
    cursor: help
}

dfn,
q {
    font-style: italic
}

dfn {
    font-weight: 600
}

.datetime,
time {
    display: inline-block
}

.datetime--circle {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #6a6e6a;
    border-radius: 50%;
    text-align: center;
    line-height: 1
}

.datetime--circle .month {
    font-size: .5em
}

.datetime--circle.color-primary {
    border-color: #7291ca
}

.datetime--circle.color-success {
    border-color: #78b948
}

.datetime--circle.color-info {
    border-color: #e0be59
}

.datetime--circle.color-warning {
    border-color: #e07f59
}

.datetime--circle.color-danger {
    border-color: #c14944
}

hr {
    height: 0;
    padding: 5px 0;
    border: 0;
    border-bottom: 1px solid #6a6e6a;
    margin: 2em 0
}

hr.color-primary {
    border-bottom-color: #7291ca
}

hr.color-success {
    border-bottom-color: #78b948
}

hr.color-info {
    border-bottom-color: #e0be59
}

hr.color-warning {
    border-bottom-color: #e07f59
}

hr.color-danger {
    border-bottom-color: #c14944
}

hr.color-gray {
    border-bottom-color: #caceca
}

hr.color-gray-light {
    border-bottom-color: #f0f2f0
}

hr.color-white {
    border-bottom-color: #fff
}

.text--upper {
    text-transform: uppercase
}

.text--lower {
    text-transform: lowercase
}

.text-w300 {
    font-weight: 300
}

.text-w400 {
    font-weight: 400
}

.text-w600 {
    font-weight: 600
}

.text-w700 {
    font-weight: 700
}

.text--left {
    text-align: left
}

.text--center {
    text-align: center
}

.text--right {
    text-align: right
}

.text--nowrap {
    white-space: nowrap
}

.quote,
blockquote {
    position: relative;
    display: inline-block;
    padding-left: 70px;
    font-size: 1.25em;
    font-weight: 400;
    color: #4a4a4a
}

.quote:after,
.quote:before,
blockquote:after,
blockquote:before {
    position: absolute;
    display: inline-block;
    font-family: Times New Roman, sans-serif;
    font-size: 1.875em
}

.quote:before,
blockquote:before {
    top: -.2em;
    margin-left: -.75em;
    content: '\201c'
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 .5em;
    padding: 0;
    line-height: 1.25
}

h1,
h2 {
    font-weight: 300
}

h3,
h4,
h5,
h6 {
    font-weight: 600
}

h2,
h3,
h4,
h5,
h6 {
    margin-top: 2rem
}

h1 {
    font-size: 2.5em
}

h2 {
    font-size: 1.875em
}

h3 {
    font-size: 1.25em
}

h4 {
    font-size: 1rem
}

h5 {
    font-size: .875em
}

h6 {
    font-size: .75em
}

.link,
a {
    text-decoration: none;
    border-bottom: 1px solid #7291ca;
    transition: color, background-color, fill, border, -webkit-filter .3s ease-out;
    transition: color, background-color, fill, border, filter .3s ease-out;
    transition: color, background-color, fill, border, filter .3s ease-out, -webkit-filter .3s ease-out
}

.link,
.link>span,
a,
a>span {
    color: #7291ca;
    fill: #7291ca;
    border-bottom-color: rgba(114, 145, 202, .5)
}

.link:hover,
.link:hover>span,
a:hover,
a:hover>span {
    color: #a0baea;
    fill: #a0baea;
    border-bottom-color: rgba(160, 186, 234, .1)
}

.link:focus,
.link:hover,
a:focus,
a:hover {
    transition-duration: .1s
}

.link .icon,
a .icon {
    background-repeat: no-repeat;
    background-size: contain
}

.link .icon+span,
.link span+.icon,
a .icon+span,
a span+.icon {
    margin-left: .2em
}

.link.color-primary,
.link.color-primary>span,
a.color-primary,
a.color-primary>span {
    color: #7291ca;
    fill: #7291ca;
    border-bottom-color: rgba(114, 145, 202, .5)
}

.link.color-primary:hover,
.link.color-primary:hover>span,
a.color-primary:hover,
a.color-primary:hover>span {
    color: #a0baea;
    fill: #a0baea;
    border-bottom-color: rgba(160, 186, 234, .1)
}

.link.color-success,
.link.color-success>span,
a.color-success,
a.color-success>span {
    color: #78b948;
    fill: #78b948;
    border-bottom-color: rgba(120, 185, 72, .5)
}

.link.color-success:hover,
.link.color-success:hover>span,
a.color-success:hover,
a.color-success:hover>span {
    color: #78b948;
    fill: #78b948;
    border-bottom-color: rgba(120, 185, 72, .1)
}

.link.color-info,
.link.color-info>span,
a.color-info,
a.color-info>span {
    color: #e0be59;
    fill: #e0be59;
    border-bottom-color: rgba(224, 190, 89, .5)
}

.link.color-info:hover,
.link.color-info:hover>span,
a.color-info:hover,
a.color-info:hover>span {
    color: #ffe28b;
    fill: #ffe28b;
    border-bottom-color: rgba(255, 226, 139, .1)
}

.link.color-warning,
.link.color-warning>span,
a.color-warning,
a.color-warning>span {
    color: #e07f59;
    fill: #e07f59;
    border-bottom-color: rgba(224, 127, 89, .5)
}

.link.color-warning:hover,
.link.color-warning:hover>span,
a.color-warning:hover,
a.color-warning:hover>span {
    color: #ffac8b;
    fill: #ffac8b;
    border-bottom-color: rgba(255, 172, 139, .1)
}

.link.color-danger,
.link.color-danger>span,
a.color-danger,
a.color-danger>span {
    color: #c14944;
    fill: #c14944;
    border-bottom-color: rgba(193, 73, 68, .5)
}

.link.color-danger:hover,
.link.color-danger:hover>span,
a.color-danger:hover,
a.color-danger:hover>span {
    color: #c14944;
    fill: #c14944;
    border-bottom-color: rgba(193, 73, 68, .1)
}

.link.color-gray,
.link.color-gray>span,
a.color-gray,
a.color-gray>span {
    color: #6a6e6a;
    fill: #6a6e6a;
    border-bottom-color: rgba(105, 109, 105, .5)
}

.link.color-gray:hover,
.link.color-gray:hover>span,
a.color-gray:hover,
a.color-gray:hover>span {
    color: #a0baea;
    fill: #a0baea;
    border-bottom-color: rgba(160, 186, 234, .1)
}

.link.color-white,
.link.color-white>span,
a.color-white,
a.color-white>span {
    color: #fff;
    fill: #fff;
    border-bottom-color: rgba(255, 255, 255, .5)
}

.link.color-white:hover,
.link.color-white:hover>span,
a.color-white:hover,
a.color-white:hover>span {
    color: #fff;
    fill: #fff;
    border-bottom-color: rgba(255, 255, 255, .1)
}

.link.color-black,
.link.color-black>span,
a.color-black,
a.color-black>span {
    color: #000;
    fill: #000;
    border-bottom-color: rgba(0, 0, 0, .5)
}

.link.color-black:hover,
.link.color-black:hover>span,
a.color-black:hover,
a.color-black:hover>span {
    color: #a0baea;
    fill: #a0baea;
    border-bottom-color: rgba(160, 186, 234, .1)
}

.link.color-main,
.link.color-main>span,
a.color-main,
a.color-main>span {
    color: #4a4a4a;
    fill: #4a4a4a;
    border-bottom-color: rgba(74, 74, 74, .5)
}

.link.color-main:hover,
.link.color-main:hover>span,
a.color-main:hover,
a.color-main:hover>span {
    color: #a0baea;
    fill: #a0baea;
    border-bottom-color: rgba(160, 186, 234, .1)
}

.link--simple {
    border: 0
}

.link--pseudo,
.link--pseudo span {
    border-bottom-style: dashed
}

.link--icon {
    border-bottom: 0
}

.link--icon>span {
    border-bottom-width: 1px;
    border-bottom-style: solid
}

dl,
ol,
ul {
    margin: 0 0 1em;
    padding: 0
}

dl:last-child,
ol:last-child,
ul:last-child {
    margin-bottom: 0
}

dl li,
ol li,
ul li {
    margin-bottom: .25em
}

ul {
    list-style: disc;
    margin-left: 1.2em
}

ol {
    list-style: decimal;
    margin-left: 1.5em
}

dt {
    font-weight: 700
}

dd {
    margin: 0 0 .5em
}

table {
    font-size: .875em;
    border-collapse: collapse
}

table,
table td,
table th {
    border: 1px solid rgba(0, 0, 0, .1)
}

table td,
table th {
    padding: .3em .4em;
    vertical-align: top;
    text-align: left
}

table tbody th {
    font-weight: 400;
    color: #757575
}

table tfoot th,
table thead th {
    font-weight: 600;
    background: #f0f2f0
}

.table--clean {
    border: 0
}

.table--clean td,
.table--clean th {
    padding: 0;
    border: 0
}

.table--clean tfoot th,
.table--clean thead th {
    font-weight: inherit;
    background: transparent
}

.table--row {
    border: 0
}

.table--row td,
.table--row th {
    border-color: transparent
}

.table--row tfoot th,
.table--row thead th {
    border-right-color: rgba(0, 0, 0, .05)
}

.table--row tfoot th:last-child,
.table--row thead th:last-child {
    border-right-color: transparent
}

.table--row tbody tr:last-child td,
.table--row tbody tr:last-child th,
.table--row thead th {
    border-bottom-color: rgba(0, 0, 0, .1)
}

.table--row tbody tr:nth-child(2n) td {
    background: rgba(202, 206, 202, .2)
}

.icon {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 1em;
    height: 1em
}

.mdl {
    vertical-align: middle
}

img {
    max-width: 100%
}

@-moz-document url-prefix() {
    img {
        width: 100%;
        max-width: -moz-max-content
    }
}

.pic {
    position: relative;
    display: block;
    border: 0;
    line-height: 0
}

.pic .zoom {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 3em;
    cursor: pointer;
    fill: #fff;
    transition: opacity .3s ease-out
}

.pic:hover .zoom {
    opacity: 1;
    transition-duration: .1s
}

.pic .wrap-hover {
    position: relative;
    display: inline-block
}

.pic .wrap-hover img {
    transition: opacity .3s ease-out
}

.pic img.hover {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0
}

.pic:hover .wrap-hover img:first-child {
    opacity: 0
}

.pic:hover img.hover {
    opacity: 1;
    transition-duration: .1s
}

.pic-label {
    position: absolute;
    font-size: .875em;
    color: #6a6e6a;
    line-height: 1.25
}

.pic-label--bottom {
    position: absolute;
    bottom: 0;
    padding: 5px;
    color: #000;
    background: rgba(255, 255, 255, .9)
}

.pic--blur-hover img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-filter .3s ease-out;
    transition: filter .3s ease-out;
    transition: filter .3s ease-out, -webkit-filter .3s ease-out
}

.pic--blur-hover:hover img {
    -webkit-filter: blur(2px);
    filter: blur(2px)
}

.pic--inline {
    vertical-align: top;
    line-height: 0
}

.pic--circle,
.pic--inline {
    display: inline-block
}

.pic--circle .wrap {
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%
}

.pic--circle .wrap img {
    border-radius: 50%
}

.pic--circle .pic-label {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.pic--rad img {
    border-radius: 10px
}

.pic--user {
    position: relative;
    background: #f0f2f0
}

.pic--user .wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 122.222%
}

.pic--user:before {
    position: absolute;
    content: '';
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: url(../../st/img/no-user.png) 50% 50% no-repeat;
    background-size: cover
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden
}

.video embed,
.video iframe,
.video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=text],
input[type=url],
select,
textarea {
    width: 100%;
    height: 2.5em;
    margin: 0;
    padding: .5em .8em;
    font-size: 1em;
    line-height: 2;
    color: #4a4a4a;
    background: rgba(255, 255, 255, .8);
    border: 1px solid #caceca;
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .1);
    transition: all .3s ease-out
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #7291ca;
    box-shadow: 0 0 3px #7291ca;
    transition-duration: .1s
}

input[type=email]:required+abbr,
input[type=number]:required+abbr,
input[type=password]:required+abbr,
input[type=search]:required+abbr,
input[type=text]:required+abbr,
input[type=url]:required+abbr,
select:required+abbr,
textarea:required+abbr {
    position: absolute;
    display: block;
    height: 2.25em;
    line-height: 2.5em;
    right: .75em;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    color: #c14944;
    border: 0
}

input[type=email]:required+abbr:after,
input[type=number]:required+abbr:after,
input[type=password]:required+abbr:after,
input[type=search]:required+abbr:after,
input[type=text]:required+abbr:after,
input[type=url]:required+abbr:after,
select:required+abbr:after,
textarea:required+abbr:after {
    content: '*'
}

input[type=email].passed:valid,
input[type=number].passed:valid,
input[type=password].passed:valid,
input[type=search].passed:valid,
input[type=text].passed:valid,
input[type=url].passed:valid,
select.passed:valid,
textarea.passed:valid {
    border-color: #78b948
}

input[type=email].passed:invalid,
input[type=number].passed:invalid,
input[type=password].passed:invalid,
input[type=search].passed:invalid,
input[type=text].passed:invalid,
input[type=url].passed:invalid,
select.passed:invalid,
textarea.passed:invalid {
    border-color: #c14944
}

input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-weight: 300;
    color: #aaa
}

input[type=email]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=url]:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
    font-weight: 300;
    color: #aaa
}

input[type=email].inline,
input[type=number].inline,
input[type=password].inline,
input[type=search].inline,
input[type=text].inline,
input[type=url].inline,
select.inline,
textarea.inline {
    display: inline-block;
    width: auto
}

input[type=checkbox],
input[type=radio] {
    font-size: 1em
}

textarea {
    height: 100px
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

fieldset legend {
    margin-bottom: .5em
}

legend {
    padding: 0
}

legend abbr {
    border: 0
}

.success-show {
    display: none
}

.btn,
button {
    display: inline-block;
    position: relative;
    padding: .8em .75em;
    font-family: Ubuntu, sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all .3s ease-out;
    background: #caceca;
    box-shadow: 0 1px 1px rgba(56, 58, 56, .3)
}

.btn:focus,
button:focus {
    outline: none;
    border-color: #e0be59;
    box-shadow: 0 0 3px #ffe28b;
    transition-duration: .1s
}

.btn:active,
.btn:hover,
button:active,
button:hover {
    transition-duration: .1s
}

.btn .disabled,
.btn:disabled,
button .disabled,
button:disabled {
    opacity: .5
}

.btn.sm,
button.sm {
    padding: .5em
}

.btn.md,
button.md {
    text-transform: uppercase;
    padding: .8em 1em;
    font-size: .9375em
}

.btn.lg,
button.lg {
    font-size: 1.5em;
    padding: .5em 1.2em
}

.btn.full,
button.full {
    width: 100%
}

.btn,
.btn span,
button,
button span {
    color: #4a4a4a;
    fill: #4a4a4a
}

.btn:hover,
button:hover {
    background: #6a6e6a;
    box-shadow: 0 1px 2px rgba(56, 58, 56, .3)
}

.btn:hover,
.btn:hover span,
button:hover,
button:hover span {
    color: #fff;
    fill: #fff
}

.btn:active,
button:active {
    background: #6a6e6a;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3), 0 0 8px rgba(156, 160, 156, .5)
}

.btn:active,
.btn:active span,
button:active,
button:active span {
    color: #fff;
    fill: #fff
}

.btn.disabled:active,
.btn.disabled:hover,
.btn:disabled:active,
.btn:disabled:hover,
button.disabled:active,
button.disabled:hover,
button:disabled:active,
button:disabled:hover {
    background: #caceca;
    box-shadow: none
}

.btn.disabled:active,
.btn.disabled:active span,
.btn.disabled:hover,
.btn.disabled:hover span,
.btn:disabled:active,
.btn:disabled:active span,
.btn:disabled:hover,
.btn:disabled:hover span,
button.disabled:active,
button.disabled:active span,
button.disabled:hover,
button.disabled:hover span,
button:disabled:active,
button:disabled:active span,
button:disabled:hover,
button:disabled:hover span {
    color: #4a4a4a;
    fill: #4a4a4a
}

.btn.shadow,
.btn.shadow:hover,
button.shadow,
button.shadow:hover {
    box-shadow: 0 2px 3px rgba(68, 71, 68, .5)
}

.btn.shadow:active,
button.shadow:active {
    box-shadow: 0 0 2px rgba(68, 71, 68, .5), inset 0 1px 3px 0 rgba(0, 0, 0, .3)
}

.btn.shadow:disabled:active,
.btn.shadow:disabled:hover,
button.shadow:disabled:active,
button.shadow:disabled:hover {
    box-shadow: 0 2px 3px rgba(68, 71, 68, .5)
}

.btn.color-primary,
button.color-primary {
    background: #7291ca;
    box-shadow: 0 1px 1px rgba(52, 62, 79, .3)
}

.btn.color-primary,
.btn.color-primary span,
button.color-primary,
button.color-primary span {
    color: #fff;
    fill: #fff
}

.btn.color-primary:hover,
button.color-primary:hover {
    background: #5d6e8c;
    box-shadow: 0 1px 2px rgba(52, 62, 79, .3)
}

.btn.color-primary:hover,
.btn.color-primary:hover span,
button.color-primary:hover,
button.color-primary:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-primary:active,
button.color-primary:active {
    background: #5d6e8c;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3), 0 0 8px rgba(150, 163, 185, .5)
}

.btn.color-primary:active,
.btn.color-primary:active span,
button.color-primary:active,
button.color-primary:active span {
    color: #fff;
    fill: #fff
}

.btn.color-primary.disabled:active,
.btn.color-primary.disabled:hover,
.btn.color-primary:disabled:active,
.btn.color-primary:disabled:hover,
button.color-primary.disabled:active,
button.color-primary.disabled:hover,
button.color-primary:disabled:active,
button.color-primary:disabled:hover {
    background: #7291ca;
    box-shadow: none
}

.btn.color-primary.disabled:active,
.btn.color-primary.disabled:active span,
.btn.color-primary.disabled:hover,
.btn.color-primary.disabled:hover span,
.btn.color-primary:disabled:active,
.btn.color-primary:disabled:active span,
.btn.color-primary:disabled:hover,
.btn.color-primary:disabled:hover span,
button.color-primary.disabled:active,
button.color-primary.disabled:active span,
button.color-primary.disabled:hover,
button.color-primary.disabled:hover span,
button.color-primary:disabled:active,
button.color-primary:disabled:active span,
button.color-primary:disabled:hover,
button.color-primary:disabled:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-primary.shadow,
.btn.color-primary.shadow:hover,
button.color-primary.shadow,
button.color-primary.shadow:hover {
    box-shadow: 0 2px 3px rgba(62, 74, 94, .5)
}

.btn.color-primary.shadow:active,
button.color-primary.shadow:active {
    box-shadow: 0 0 2px rgba(62, 74, 94, .5), inset 0 1px 3px 0 rgba(0, 0, 0, .3)
}

.btn.color-primary.shadow:disabled:active,
.btn.color-primary.shadow:disabled:hover,
button.color-primary.shadow:disabled:active,
button.color-primary.shadow:disabled:hover {
    box-shadow: 0 2px 3px rgba(62, 74, 94, .5)
}

.btn.color-success,
button.color-success {
    background: #78b948;
    box-shadow: 0 1px 1px rgba(72, 112, 43, .3)
}

.btn.color-success,
.btn.color-success span,
button.color-success,
button.color-success span {
    color: #fff;
    fill: #fff
}

.btn.color-success:hover,
button.color-success:hover {
    background: #78b948;
    box-shadow: 0 1px 2px rgba(72, 112, 43, .3)
}

.btn.color-success:hover,
.btn.color-success:hover span,
button.color-success:hover,
button.color-success:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-success:active,
button.color-success:active {
    background: #78b948;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3), 0 0 8px rgba(173, 212, 145, .5)
}

.btn.color-success:active,
.btn.color-success:active span,
button.color-success:active,
button.color-success:active span {
    color: #fff;
    fill: #fff
}

.btn.color-success.disabled:active,
.btn.color-success.disabled:hover,
.btn.color-success:disabled:active,
.btn.color-success:disabled:hover,
button.color-success.disabled:active,
button.color-success.disabled:hover,
button.color-success:disabled:active,
button.color-success:disabled:hover {
    background: #78b948;
    box-shadow: none
}

.btn.color-success.disabled:active,
.btn.color-success.disabled:active span,
.btn.color-success.disabled:hover,
.btn.color-success.disabled:hover span,
.btn.color-success:disabled:active,
.btn.color-success:disabled:active span,
.btn.color-success:disabled:hover,
.btn.color-success:disabled:hover span,
button.color-success.disabled:active,
button.color-success.disabled:active span,
button.color-success.disabled:hover,
button.color-success.disabled:hover span,
button.color-success:disabled:active,
button.color-success:disabled:active span,
button.color-success:disabled:hover,
button.color-success:disabled:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-success.shadow,
.btn.color-success.shadow:hover,
button.color-success.shadow,
button.color-success.shadow:hover {
    box-shadow: 0 2px 3px rgba(84, 131, 50, .5)
}

.btn.color-success.shadow:active,
button.color-success.shadow:active {
    box-shadow: 0 0 2px rgba(84, 131, 50, .5), inset 0 1px 3px 0 rgba(0, 0, 0, .3)
}

.btn.color-success.shadow:disabled:active,
.btn.color-success.shadow:disabled:hover,
button.color-success.shadow:disabled:active,
button.color-success.shadow:disabled:hover {
    box-shadow: 0 2px 3px rgba(84, 131, 50, .5)
}

.btn.color-info,
button.color-info {
    background: #fbaa3b;
    box-shadow: 0 1px 1px rgba(141, 92, 27, .3)
}

.btn.color-info,
.btn.color-info span,
button.color-info,
button.color-info span {
    color: #333;
    fill: #333
}

.btn.color-info:hover,
button.color-info:hover {
    background: #d99335;
    box-shadow: 0 1px 2px rgba(141, 92, 27, .3)
}

.btn.color-info:hover,
.btn.color-info:hover span,
button.color-info:hover,
button.color-info:hover span {
    color: #333;
    fill: #333
}

.btn.color-info:active,
button.color-info:active {
    background: #d99335;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3), 0 0 8px rgba(233, 192, 139, .5)
}

.btn.color-info:active,
.btn.color-info:active span,
button.color-info:active,
button.color-info:active span {
    color: #333;
    fill: #333
}

.btn.color-info.disabled:active,
.btn.color-info.disabled:hover,
.btn.color-info:disabled:active,
.btn.color-info:disabled:hover,
button.color-info.disabled:active,
button.color-info.disabled:hover,
button.color-info:disabled:active,
button.color-info:disabled:hover {
    background: #fbaa3b;
    box-shadow: none
}

.btn.color-info.disabled:active,
.btn.color-info.disabled:active span,
.btn.color-info.disabled:hover,
.btn.color-info.disabled:hover span,
.btn.color-info:disabled:active,
.btn.color-info:disabled:active span,
.btn.color-info:disabled:hover,
.btn.color-info:disabled:hover span,
button.color-info.disabled:active,
button.color-info.disabled:active span,
button.color-info.disabled:hover,
button.color-info.disabled:hover span,
button.color-info:disabled:active,
button.color-info:disabled:active span,
button.color-info:disabled:hover,
button.color-info:disabled:hover span {
    color: #333;
    fill: #333
}

.btn.color-info.shadow,
.btn.color-info.shadow:hover,
button.color-info.shadow,
button.color-info.shadow:hover {
    box-shadow: 0 2px 3px rgba(163, 106, 31, .5)
}

.btn.color-info.shadow:active,
button.color-info.shadow:active {
    box-shadow: 0 0 2px rgba(163, 106, 31, .5), inset 0 1px 3px 0 rgba(0, 0, 0, .3)
}

.btn.color-info.shadow:disabled:active,
.btn.color-info.shadow:disabled:hover,
button.color-info.shadow:disabled:active,
button.color-info.shadow:disabled:hover {
    box-shadow: 0 2px 3px rgba(163, 106, 31, .5)
}

.btn.color-warning,
button.color-warning {
    background: #e07f59;
    box-shadow: 0 1px 1px rgba(115, 55, 31, .3)
}

.btn.color-warning,
.btn.color-warning span,
button.color-warning,
button.color-warning span {
    color: #fff;
    fill: #fff
}

.btn.color-warning:hover,
button.color-warning:hover {
    background: #c45d34;
    box-shadow: 0 1px 2px rgba(115, 55, 31, .3)
}

.btn.color-warning:hover,
.btn.color-warning:hover span,
button.color-warning:hover,
button.color-warning:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-warning:active,
button.color-warning:active {
    background: #c45d34;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3), 0 0 8px rgba(222, 156, 130, .5)
}

.btn.color-warning:active,
.btn.color-warning:active span,
button.color-warning:active,
button.color-warning:active span {
    color: #fff;
    fill: #fff
}

.btn.color-warning.disabled:active,
.btn.color-warning.disabled:hover,
.btn.color-warning:disabled:active,
.btn.color-warning:disabled:hover,
button.color-warning.disabled:active,
button.color-warning.disabled:hover,
button.color-warning:disabled:active,
button.color-warning:disabled:hover {
    background: #e07f59;
    box-shadow: none
}

.btn.color-warning.disabled:active,
.btn.color-warning.disabled:active span,
.btn.color-warning.disabled:hover,
.btn.color-warning.disabled:hover span,
.btn.color-warning:disabled:active,
.btn.color-warning:disabled:active span,
.btn.color-warning:disabled:hover,
.btn.color-warning:disabled:hover span,
button.color-warning.disabled:active,
button.color-warning.disabled:active span,
button.color-warning.disabled:hover,
button.color-warning.disabled:hover span,
button.color-warning:disabled:active,
button.color-warning:disabled:active span,
button.color-warning:disabled:hover,
button.color-warning:disabled:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-warning.shadow,
.btn.color-warning.shadow:hover,
button.color-warning.shadow,
button.color-warning.shadow:hover {
    box-shadow: 0 2px 3px rgba(136, 64, 36, .5)
}

.btn.color-warning.shadow:active,
button.color-warning.shadow:active {
    box-shadow: 0 0 2px rgba(136, 64, 36, .5), inset 0 1px 3px 0 rgba(0, 0, 0, .3)
}

.btn.color-warning.shadow:disabled:active,
.btn.color-warning.shadow:disabled:hover,
button.color-warning.shadow:disabled:active,
button.color-warning.shadow:disabled:hover {
    box-shadow: 0 2px 3px rgba(136, 64, 36, .5)
}

.btn.color-danger,
button.color-danger {
    background: #c14944;
    box-shadow: 0 1px 1px rgba(119, 43, 40, .3)
}

.btn.color-danger,
.btn.color-danger span,
button.color-danger,
button.color-danger span {
    color: #fff;
    fill: #fff
}

.btn.color-danger:hover,
button.color-danger:hover {
    background: #c14944;
    box-shadow: 0 1px 2px rgba(119, 43, 40, .3)
}

.btn.color-danger:hover,
.btn.color-danger:hover span,
button.color-danger:hover,
button.color-danger:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-danger:active,
button.color-danger:active {
    background: #c14944;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3), 0 0 8px rgba(218, 147, 144, .5)
}

.btn.color-danger:active,
.btn.color-danger:active span,
button.color-danger:active,
button.color-danger:active span {
    color: #fff;
    fill: #fff
}

.btn.color-danger.disabled:active,
.btn.color-danger.disabled:hover,
.btn.color-danger:disabled:active,
.btn.color-danger:disabled:hover,
button.color-danger.disabled:active,
button.color-danger.disabled:hover,
button.color-danger:disabled:active,
button.color-danger:disabled:hover {
    background: #c14944;
    box-shadow: none
}

.btn.color-danger.disabled:active,
.btn.color-danger.disabled:active span,
.btn.color-danger.disabled:hover,
.btn.color-danger.disabled:hover span,
.btn.color-danger:disabled:active,
.btn.color-danger:disabled:active span,
.btn.color-danger:disabled:hover,
.btn.color-danger:disabled:hover span,
button.color-danger.disabled:active,
button.color-danger.disabled:active span,
button.color-danger.disabled:hover,
button.color-danger.disabled:hover span,
button.color-danger:disabled:active,
button.color-danger:disabled:active span,
button.color-danger:disabled:hover,
button.color-danger:disabled:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-danger.shadow,
.btn.color-danger.shadow:hover,
button.color-danger.shadow,
button.color-danger.shadow:hover {
    box-shadow: 0 2px 3px rgba(139, 50, 46, .5)
}

.btn.color-danger.shadow:active,
button.color-danger.shadow:active {
    box-shadow: 0 0 2px rgba(139, 50, 46, .5), inset 0 1px 3px 0 rgba(0, 0, 0, .3)
}

.btn.color-danger.shadow:disabled:active,
.btn.color-danger.shadow:disabled:hover,
button.color-danger.shadow:disabled:active,
button.color-danger.shadow:disabled:hover {
    box-shadow: 0 2px 3px rgba(139, 50, 46, .5)
}

.btn.color-danger2,
button.color-danger2 {
    background: #ff3109;
    box-shadow: 0 1px 1px rgba(123, 23, 4, .3)
}

.btn.color-danger2,
.btn.color-danger2 span,
button.color-danger2,
button.color-danger2 span {
    color: #fff;
    fill: #fff
}

.btn.color-danger2:hover,
button.color-danger2:hover {
    background: #dd2a08;
    box-shadow: 0 1px 2px rgba(123, 23, 4, .3)
}

.btn.color-danger2:hover,
.btn.color-danger2:hover span,
button.color-danger2:hover,
button.color-danger2:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-danger2:active,
button.color-danger2:active {
    background: #dd2a08;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3), 0 0 8px rgba(249, 109, 82, .5)
}

.btn.color-danger2:active,
.btn.color-danger2:active span,
button.color-danger2:active,
button.color-danger2:active span {
    color: #fff;
    fill: #fff
}

.btn.color-danger2.disabled:active,
.btn.color-danger2.disabled:hover,
.btn.color-danger2:disabled:active,
.btn.color-danger2:disabled:hover,
button.color-danger2.disabled:active,
button.color-danger2.disabled:hover,
button.color-danger2:disabled:active,
button.color-danger2:disabled:hover {
    background: #ff3109;
    box-shadow: none
}

.btn.color-danger2.disabled:active,
.btn.color-danger2.disabled:active span,
.btn.color-danger2.disabled:hover,
.btn.color-danger2.disabled:hover span,
.btn.color-danger2:disabled:active,
.btn.color-danger2:disabled:active span,
.btn.color-danger2:disabled:hover,
.btn.color-danger2:disabled:hover span,
button.color-danger2.disabled:active,
button.color-danger2.disabled:active span,
button.color-danger2.disabled:hover,
button.color-danger2.disabled:hover span,
button.color-danger2:disabled:active,
button.color-danger2:disabled:active span,
button.color-danger2:disabled:hover,
button.color-danger2:disabled:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-danger2.shadow,
.btn.color-danger2.shadow:hover,
button.color-danger2.shadow,
button.color-danger2.shadow:hover {
    box-shadow: 0 2px 3px rgba(147, 28, 5, .5)
}

.btn.color-danger2.shadow:active,
button.color-danger2.shadow:active {
    box-shadow: 0 0 2px rgba(147, 28, 5, .5), inset 0 1px 3px 0 rgba(0, 0, 0, .3)
}

.btn.color-danger2.shadow:disabled:active,
.btn.color-danger2.shadow:disabled:hover,
button.color-danger2.shadow:disabled:active,
button.color-danger2.shadow:disabled:hover {
    box-shadow: 0 2px 3px rgba(147, 28, 5, .5)
}

.btn.color-transparent,
button.color-transparent {
    background: transparent;
    box-shadow: 0 1px 1px rgba(52, 62, 79, .3)
}

.btn.color-transparent,
.btn.color-transparent span,
button.color-transparent,
button.color-transparent span {
    color: #fff;
    fill: #fff
}

.btn.color-transparent:hover,
button.color-transparent:hover {
    background: #5d6e8c;
    box-shadow: 0 1px 2px rgba(52, 62, 79, .3)
}

.btn.color-transparent:hover,
.btn.color-transparent:hover span,
button.color-transparent:hover,
button.color-transparent:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-transparent:active,
button.color-transparent:active {
    background: #5d6e8c;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3), 0 0 8px rgba(150, 163, 185, .5)
}

.btn.color-transparent:active,
.btn.color-transparent:active span,
button.color-transparent:active,
button.color-transparent:active span {
    color: #fff;
    fill: #fff
}

.btn.color-transparent.disabled:active,
.btn.color-transparent.disabled:hover,
.btn.color-transparent:disabled:active,
.btn.color-transparent:disabled:hover,
button.color-transparent.disabled:active,
button.color-transparent.disabled:hover,
button.color-transparent:disabled:active,
button.color-transparent:disabled:hover {
    background: transparent;
    box-shadow: none
}

.btn.color-transparent.disabled:active,
.btn.color-transparent.disabled:active span,
.btn.color-transparent.disabled:hover,
.btn.color-transparent.disabled:hover span,
.btn.color-transparent:disabled:active,
.btn.color-transparent:disabled:active span,
.btn.color-transparent:disabled:hover,
.btn.color-transparent:disabled:hover span,
button.color-transparent.disabled:active,
button.color-transparent.disabled:active span,
button.color-transparent.disabled:hover,
button.color-transparent.disabled:hover span,
button.color-transparent:disabled:active,
button.color-transparent:disabled:active span,
button.color-transparent:disabled:hover,
button.color-transparent:disabled:hover span {
    color: #fff;
    fill: #fff
}

.btn.color-transparent.shadow,
.btn.color-transparent.shadow:hover,
button.color-transparent.shadow,
button.color-transparent.shadow:hover {
    box-shadow: 0 2px 3px rgba(62, 74, 94, .5)
}

.btn.color-transparent.shadow:active,
button.color-transparent.shadow:active {
    box-shadow: 0 0 2px rgba(62, 74, 94, .5), inset 0 1px 3px 0 rgba(0, 0, 0, .3)
}

.btn.color-transparent.shadow:disabled:active,
.btn.color-transparent.shadow:disabled:hover,
button.color-transparent.shadow:disabled:active,
button.color-transparent.shadow:disabled:hover {
    box-shadow: 0 2px 3px rgba(62, 74, 94, .5)
}

.btn.gradient,
button.gradient {
    border-top-color: #caceca;
    border-bottom-color: #a2a9a2;
    background-image: linear-gradient(#caceca, #a2a9a2);
    transition: none
}

.btn.gradient:hover,
button.gradient:hover {
    border-top-color: #6a6e6a;
    border-bottom-color: #515451;
    background-image: linear-gradient(#6a6e6a, #515451)
}

.btn.gradient:active,
button.gradient:active {
    border-top-color: #6a6e6a;
    border-bottom-color: #515451;
    background-image: linear-gradient(#444744, #515451)
}

.btn.gradient.disabled:active,
.btn.gradient.disabled:hover,
.btn.gradient:disabled:active,
.btn.gradient:disabled:hover,
button.gradient.disabled:active,
button.gradient.disabled:hover,
button.gradient:disabled:active,
button.gradient:disabled:hover {
    border-top-color: #caceca;
    border-bottom-color: #a2a9a2;
    background-image: linear-gradient(#caceca, #a2a9a2)
}

.btn.gradient.color-primary,
button.gradient.color-primary {
    border-top-color: #7291ca;
    border-bottom-color: #4168ae;
    background-image: linear-gradient(#7291ca, #4168ae);
    transition: none
}

.btn.gradient.color-primary:hover,
button.gradient.color-primary:hover {
    border-top-color: #5d6e8c;
    border-bottom-color: #49566d;
    background-image: linear-gradient(#5d6e8c, #49566d)
}

.btn.gradient.color-primary:active,
button.gradient.color-primary:active {
    border-top-color: #5d6e8c;
    border-bottom-color: #49566d;
    background-image: linear-gradient(#3e4a5e, #49566d)
}

.btn.gradient.color-primary.disabled:active,
.btn.gradient.color-primary.disabled:hover,
.btn.gradient.color-primary:disabled:active,
.btn.gradient.color-primary:disabled:hover,
button.gradient.color-primary.disabled:active,
button.gradient.color-primary.disabled:hover,
button.gradient.color-primary:disabled:active,
button.gradient.color-primary:disabled:hover {
    border-top-color: #7291ca;
    border-bottom-color: #4168ae;
    background-image: linear-gradient(#7291ca, #4168ae)
}

.btn.gradient.color-success,
button.gradient.color-success {
    border-top-color: #78b948;
    border-bottom-color: #548332;
    background-image: linear-gradient(#78b948, #548332);
    transition: none
}

.btn.gradient.color-success:hover,
button.gradient.color-success:hover {
    border-top-color: #78b948;
    border-bottom-color: #609539;
    background-image: linear-gradient(#78b948, #609539)
}

.btn.gradient.color-success:active,
button.gradient.color-success:active {
    border-top-color: #78b948;
    border-bottom-color: #609539;
    background-image: linear-gradient(#548332, #609539)
}

.btn.gradient.color-success.disabled:active,
.btn.gradient.color-success.disabled:hover,
.btn.gradient.color-success:disabled:active,
.btn.gradient.color-success:disabled:hover,
button.gradient.color-success.disabled:active,
button.gradient.color-success.disabled:hover,
button.gradient.color-success:disabled:active,
button.gradient.color-success:disabled:hover {
    border-top-color: #78b948;
    border-bottom-color: #548332;
    background-image: linear-gradient(#78b948, #548332)
}

.btn.gradient.color-info,
button.gradient.color-info {
    border-top-color: #e0be59;
    border-bottom-color: #c79e25;
    background-image: linear-gradient(#e0be59, #c79e25);
    transition: none
}

.btn.gradient.color-info:hover,
button.gradient.color-info:hover {
    border-top-color: #9c7b18;
    border-bottom-color: #705811;
    background-image: linear-gradient(#9c7b18, #705811)
}

.btn.gradient.color-info:active,
button.gradient.color-info:active {
    border-top-color: #9c7b18;
    border-bottom-color: #705811;
    background-image: linear-gradient(#5a470e, #705811)
}

.btn.gradient.color-info.disabled:active,
.btn.gradient.color-info.disabled:hover,
.btn.gradient.color-info:disabled:active,
.btn.gradient.color-info:disabled:hover,
button.gradient.color-info.disabled:active,
button.gradient.color-info.disabled:hover,
button.gradient.color-info:disabled:active,
button.gradient.color-info:disabled:hover {
    border-top-color: #e0be59;
    border-bottom-color: #c79e25;
    background-image: linear-gradient(#e0be59, #c79e25)
}

.btn.gradient.color-warning,
button.gradient.color-warning {
    border-top-color: #e07f59;
    border-bottom-color: #c75325;
    background-image: linear-gradient(#e07f59, #c75325);
    transition: none
}

.btn.gradient.color-warning:hover,
button.gradient.color-warning:hover {
    border-top-color: #c45d34;
    border-bottom-color: #9c4a29;
    background-image: linear-gradient(#c45d34, #9c4a29)
}

.btn.gradient.color-warning:active,
button.gradient.color-warning:active {
    border-top-color: #c45d34;
    border-bottom-color: #9c4a29;
    background-image: linear-gradient(#884024, #9c4a29)
}

.btn.gradient.color-warning.disabled:active,
.btn.gradient.color-warning.disabled:hover,
.btn.gradient.color-warning:disabled:active,
.btn.gradient.color-warning:disabled:hover,
button.gradient.color-warning.disabled:active,
button.gradient.color-warning.disabled:hover,
button.gradient.color-warning:disabled:active,
button.gradient.color-warning:disabled:hover {
    border-top-color: #e07f59;
    border-bottom-color: #c75325;
    background-image: linear-gradient(#e07f59, #c75325)
}

.btn.gradient.color-danger,
button.gradient.color-danger {
    border-top-color: #c14944;
    border-bottom-color: #8b322e;
    background-image: linear-gradient(#c14944, #8b322e);
    transition: none
}

.btn.gradient.color-danger:hover,
button.gradient.color-danger:hover {
    border-top-color: #c14944;
    border-bottom-color: #9e3934;
    background-image: linear-gradient(#c14944, #9e3934)
}

.btn.gradient.color-danger:active,
button.gradient.color-danger:active {
    border-top-color: #c14944;
    border-bottom-color: #9e3934;
    background-image: linear-gradient(#8b322e, #9e3934)
}

.btn.gradient.color-danger.disabled:active,
.btn.gradient.color-danger.disabled:hover,
.btn.gradient.color-danger:disabled:active,
.btn.gradient.color-danger:disabled:hover,
button.gradient.color-danger.disabled:active,
button.gradient.color-danger.disabled:hover,
button.gradient.color-danger:disabled:active,
button.gradient.color-danger:disabled:hover {
    border-top-color: #c14944;
    border-bottom-color: #8b322e;
    background-image: linear-gradient(#c14944, #8b322e)
}

.btn.border,
button.border {
    border: 1px solid #b0b6b0
}

.btn.border:active,
.btn.border:hover,
button.border:active,
button.border:hover {
    border-color: #515451
}

.btn.border.disabled:active,
.btn.border.disabled:hover,
.btn.border:disabled:active,
.btn.border:disabled:hover,
button.border.disabled:active,
button.border.disabled:hover,
button.border:disabled:active,
button.border:disabled:hover {
    border: 1px solid #b0b6b0
}

.btn.border.color-primary,
button.border.color-primary {
    border: 1px solid #4d74bc
}

.btn.border.color-primary:active,
.btn.border.color-primary:hover,
button.border.color-primary:active,
button.border.color-primary:hover {
    border-color: #4d74bc
}

.btn.border.color-primary.disabled:active,
.btn.border.color-primary.disabled:hover,
.btn.border.color-primary:disabled:active,
.btn.border.color-primary:disabled:hover,
button.border.color-primary.disabled:active,
button.border.color-primary.disabled:hover,
button.border.color-primary:disabled:active,
button.border.color-primary:disabled:hover {
    border: 1px solid #4d74bc
}

.btn.border.color-success,
button.border.color-success {
    border: 1px solid #609539
}

.btn.border.color-success:active,
.btn.border.color-success:hover,
button.border.color-success:active,
button.border.color-success:hover {
    border-color: #609539
}

.btn.border.color-success.disabled:active,
.btn.border.color-success.disabled:hover,
.btn.border.color-success:disabled:active,
.btn.border.color-success:disabled:hover,
button.border.color-success.disabled:active,
button.border.color-success.disabled:hover,
button.border.color-success:disabled:active,
button.border.color-success:disabled:hover {
    border: 1px solid #609539
}

.btn.border.color-info,
button.border.color-info {
    border: 1px solid #d8ad2e
}

.btn.border.color-info:active,
.btn.border.color-info:hover,
button.border.color-info:active,
button.border.color-info:hover {
    border-color: #d8ad2e
}

.btn.border.color-info.disabled:active,
.btn.border.color-info.disabled:hover,
.btn.border.color-info:disabled:active,
.btn.border.color-info:disabled:hover,
button.border.color-info.disabled:active,
button.border.color-info.disabled:hover,
button.border.color-info:disabled:active,
button.border.color-info:disabled:hover {
    border: 1px solid #d8ad2e
}

.btn.border.color-warning,
button.border.color-warning {
    border: 1px solid #d85e2e
}

.btn.border.color-warning:active,
.btn.border.color-warning:hover,
button.border.color-warning:active,
button.border.color-warning:hover {
    border-color: #d85e2e
}

.btn.border.color-warning.disabled:active,
.btn.border.color-warning.disabled:hover,
.btn.border.color-warning:disabled:active,
.btn.border.color-warning:disabled:hover,
button.border.color-warning.disabled:active,
button.border.color-warning.disabled:hover,
button.border.color-warning:disabled:active,
button.border.color-warning:disabled:hover {
    border: 1px solid #d85e2e
}

.btn.border.color-danger,
button.border.color-danger {
    border: 1px solid #9e3934
}

.btn.border.color-danger:active,
.btn.border.color-danger:hover,
button.border.color-danger:active,
button.border.color-danger:hover {
    border-color: #9e3934
}

.btn.border.color-danger.disabled:active,
.btn.border.color-danger.disabled:hover,
.btn.border.color-danger:disabled:active,
.btn.border.color-danger:disabled:hover,
button.border.color-danger.disabled:active,
button.border.color-danger.disabled:hover,
button.border.color-danger:disabled:active,
button.border.color-danger:disabled:hover {
    border: 1px solid #9e3934
}

.btn.border--white,
.btn.border--white.color-danger,
.btn.border--white.color-info,
.btn.border--white.color-primary,
.btn.border--white.color-success,
.btn.border--white.color-warning,
button.border--white,
button.border--white.color-danger,
button.border--white.color-info,
button.border--white.color-primary,
button.border--white.color-success,
button.border--white.color-warning {
    border: 1px solid #fff
}

.btn.border--white.color-danger:active,
.btn.border--white.color-danger:hover,
.btn.border--white.color-info:active,
.btn.border--white.color-info:hover,
.btn.border--white.color-primary:active,
.btn.border--white.color-primary:hover,
.btn.border--white.color-success:active,
.btn.border--white.color-success:hover,
.btn.border--white.color-warning:active,
.btn.border--white.color-warning:hover,
.btn.border--white:active,
.btn.border--white:hover,
button.border--white.color-danger:active,
button.border--white.color-danger:hover,
button.border--white.color-info:active,
button.border--white.color-info:hover,
button.border--white.color-primary:active,
button.border--white.color-primary:hover,
button.border--white.color-success:active,
button.border--white.color-success:hover,
button.border--white.color-warning:active,
button.border--white.color-warning:hover,
button.border--white:active,
button.border--white:hover {
    border-color: rgba(255, 255, 255, .5)
}

.btn.border--white.color-danger.disabled:active,
.btn.border--white.color-danger.disabled:hover,
.btn.border--white.color-danger:disabled:active,
.btn.border--white.color-danger:disabled:hover,
.btn.border--white.color-info.disabled:active,
.btn.border--white.color-info.disabled:hover,
.btn.border--white.color-info:disabled:active,
.btn.border--white.color-info:disabled:hover,
.btn.border--white.color-primary.disabled:active,
.btn.border--white.color-primary.disabled:hover,
.btn.border--white.color-primary:disabled:active,
.btn.border--white.color-primary:disabled:hover,
.btn.border--white.color-success.disabled:active,
.btn.border--white.color-success.disabled:hover,
.btn.border--white.color-success:disabled:active,
.btn.border--white.color-success:disabled:hover,
.btn.border--white.color-warning.disabled:active,
.btn.border--white.color-warning.disabled:hover,
.btn.border--white.color-warning:disabled:active,
.btn.border--white.color-warning:disabled:hover,
.btn.border--white.disabled:active,
.btn.border--white.disabled:hover,
.btn.border--white:disabled:active,
.btn.border--white:disabled:hover,
button.border--white.color-danger.disabled:active,
button.border--white.color-danger.disabled:hover,
button.border--white.color-danger:disabled:active,
button.border--white.color-danger:disabled:hover,
button.border--white.color-info.disabled:active,
button.border--white.color-info.disabled:hover,
button.border--white.color-info:disabled:active,
button.border--white.color-info:disabled:hover,
button.border--white.color-primary.disabled:active,
button.border--white.color-primary.disabled:hover,
button.border--white.color-primary:disabled:active,
button.border--white.color-primary:disabled:hover,
button.border--white.color-success.disabled:active,
button.border--white.color-success.disabled:hover,
button.border--white.color-success:disabled:active,
button.border--white.color-success:disabled:hover,
button.border--white.color-warning.disabled:active,
button.border--white.color-warning.disabled:hover,
button.border--white.color-warning:disabled:active,
button.border--white.color-warning:disabled:hover,
button.border--white.disabled:active,
button.border--white.disabled:hover,
button.border--white:disabled:active,
button.border--white:disabled:hover {
    border: 1px solid #fff
}

.mt-d10 {
    margin-top: 10px
}

.mt-d15 {
    margin-top: 15px
}

.mt-d30 {
    margin-top: 30px
}

.mt-d50 {
    margin-top: 50px
}

.mb-d10 {
    margin-bottom: 10px
}

.mb-d15 {
    margin-bottom: 15px
}

.mb-d30 {
    margin-bottom: 30px
}

.mb-d50 {
    margin-bottom: 50px
}

.ptb-d50 {
    padding-top: 50px;
    padding-bottom: 50px
}

.container {
    display: block;
    margin: 0 auto
}

.grid {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

.grid,
.grid--v {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.grid--v {
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column
}

.grid--v>[class*=col-] {
    width: 100%
}

.grid--left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.grid--center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.grid--right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.grid--top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start
}

.grid--h.grid--middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center
}

.grid--v.grid--middle {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.grid--bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end
}

.grid.center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.grid.center>* {
    text-align: left
}

.no-flex .grid {
    display: block;
    font-size: 0;
    line-height: 0
}

.no-flex .grid:after,
.no-flex .grid:before {
    content: " ";
    display: table
}

.no-flex .grid:after {
    clear: both
}

.no-flex .grid>[class*=col-] {
    font-size: 16px;
    line-height: 1.5;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    min-height: 1px
}

.col-main {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.container,
.container[class*=col-] {
    width: 1200px
}

.pad-d10 {
    padding-left: 10px;
    padding-right: 10px
}

.pad-d15 {
    padding-left: 15px;
    padding-right: 15px
}

.padf-d10 {
    padding: 10px
}

.padf-d15 {
    padding: 15px
}

.padf-d25 {
    padding: 25px
}

.inc-d10 {
    margin-left: -10px;
    margin-right: -10px
}

.inc-d15 {
    margin-left: -15px;
    margin-right: -15px
}

.hide-d {
    display: none
}

.grid.by-d1>.col-d1 {
    width: 100%
}

.grid.by-d2>.col-d1 {
    width: 50%
}

.grid.by-d2>.col-d2 {
    width: 100%
}

.grid.by-d2>[class*=mb-d]:nth-last-child(1),
.grid.by-d2>[class*=mb-d]:nth-last-child(2) {
    margin-bottom: 0
}

.grid.by-d3>.col-d1 {
    width: 33.33333333%
}

.grid.by-d3>.col-d2 {
    width: 66.66666667%
}

.grid.by-d3>.col-d3 {
    width: 100%
}

.grid.by-d3>[class*=mb-d]:nth-last-child(1),
.grid.by-d3>[class*=mb-d]:nth-last-child(2),
.grid.by-d3>[class*=mb-d]:nth-last-child(3) {
    margin-bottom: 0
}

.grid.by-d4>.col-d1 {
    width: 25%
}

.grid.by-d4>.col-d2 {
    width: 50%
}

.grid.by-d4>.col-d3 {
    width: 75%
}

.grid.by-d4>.col-d4 {
    width: 100%
}

.grid.by-d4>[class*=mb-d]:nth-last-child(1),
.grid.by-d4>[class*=mb-d]:nth-last-child(2),
.grid.by-d4>[class*=mb-d]:nth-last-child(3),
.grid.by-d4>[class*=mb-d]:nth-last-child(4) {
    margin-bottom: 0
}

.grid.by-d5>.col-d1 {
    width: 20%
}

.grid.by-d5>.col-d2 {
    width: 40%
}

.grid.by-d5>.col-d3 {
    width: 60%
}

.grid.by-d5>.col-d4 {
    width: 80%
}

.grid.by-d5>.col-d5 {
    width: 100%
}

.grid.by-d5>[class*=mb-d]:nth-last-child(1),
.grid.by-d5>[class*=mb-d]:nth-last-child(2),
.grid.by-d5>[class*=mb-d]:nth-last-child(3),
.grid.by-d5>[class*=mb-d]:nth-last-child(4),
.grid.by-d5>[class*=mb-d]:nth-last-child(5) {
    margin-bottom: 0
}

.grid.by-d6>.col-d1 {
    width: 16.66666667%
}

.grid.by-d6>.col-d2 {
    width: 33.33333333%
}

.grid.by-d6>.col-d3 {
    width: 50%
}

.grid.by-d6>.col-d4 {
    width: 66.66666667%
}

.grid.by-d6>.col-d5 {
    width: 83.33333333%
}

.grid.by-d6>.col-d6 {
    width: 100%
}

.grid.by-d7>.col-d1 {
    width: 14.28571429%
}

.grid.by-d7>.col-d2 {
    width: 28.57142857%
}

.grid.by-d7>.col-d3 {
    width: 42.85714286%
}

.grid.by-d7>.col-d4 {
    width: 57.14285714%
}

.grid.by-d7>.col-d5 {
    width: 71.42857143%
}

.grid.by-d7>.col-d6 {
    width: 85.71428571%
}

.grid.by-d7>.col-d7 {
    width: 100%
}

.grid.by-d8>.col-d1 {
    width: 12.5%
}

.grid.by-d8>.col-d2 {
    width: 25%
}

.grid.by-d8>.col-d3 {
    width: 37.5%
}

.grid.by-d8>.col-d4 {
    width: 50%
}

.grid.by-d8>.col-d5 {
    width: 62.5%
}

.grid.by-d8>.col-d6 {
    width: 75%
}

.grid.by-d8>.col-d7 {
    width: 87.5%
}

.grid.by-d8>.col-d8 {
    width: 100%
}

.grid.by-d9>.col-d1 {
    width: 11.11111111%
}

.grid.by-d9>.col-d2 {
    width: 22.22222222%
}

.grid.by-d9>.col-d3 {
    width: 33.33333333%
}

.grid.by-d9>.col-d4 {
    width: 44.44444444%
}

.grid.by-d9>.col-d5 {
    width: 55.55555556%
}

.grid.by-d9>.col-d6 {
    width: 66.66666667%
}

.grid.by-d9>.col-d7 {
    width: 77.77777778%
}

.grid.by-d9>.col-d8 {
    width: 88.88888889%
}

.grid.by-d9>.col-d9 {
    width: 100%
}

.grid.by-d10>.col-d1 {
    width: 10%
}

.grid.by-d10>.col-d2 {
    width: 20%
}

.grid.by-d10>.col-d3 {
    width: 30%
}

.grid.by-d10>.col-d4 {
    width: 40%
}

.grid.by-d10>.col-d5 {
    width: 50%
}

.grid.by-d10>.col-d6 {
    width: 60%
}

.grid.by-d10>.col-d7 {
    width: 70%
}

.grid.by-d10>.col-d8 {
    width: 80%
}

.grid.by-d10>.col-d9 {
    width: 90%
}

.grid.by-d10>.col-d10 {
    width: 100%
}

.grid.by-d12>.col-d1 {
    width: 8.33333333%
}

.grid.by-d12>.col-d2 {
    width: 16.66666667%
}

.grid.by-d12>.col-d3 {
    width: 25%
}

.grid.by-d12>.col-d4 {
    width: 33.33333333%
}

.grid.by-d12>.col-d5 {
    width: 41.66666667%
}

.grid.by-d12>.col-d6 {
    width: 50%
}

.grid.by-d12>.col-d7 {
    width: 58.33333333%
}

.grid.by-d12>.col-d8 {
    width: 66.66666667%
}

.grid.by-d12>.col-d9 {
    width: 75%
}

.grid.by-d12>.col-d10 {
    width: 83.33333333%
}

.grid.by-d12>.col-d11 {
    width: 91.66666667%
}

.grid.by-d12>.col-d12 {
    width: 100%
}

.logo {
    display: inline-block;
    border: 0
}

.logo .pic img {
    max-height: 100%
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.nav-item {
    display: inline-block
}

.nav-item--main {
    font-weight: 400
}

.nav-main.color-white .link {
    color: #fff
}

.nav-btn {
    display: none
}

.nav-list--main {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.nav-item--main {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.125em;
    font-weight: 400;
    margin-right: 30px
}

.nav-item--main:last-child {
    margin-right: 0
}

.nav-item--main .link {
    position: relative;
    display: inline-block;
    #padding: 10px 0;
    border-bottom: 0
}

.nav-item--main .link:after {
    content: '';
    position: absolute;
    background: #fff;
    transition: opacity, background, width .3s ease-out;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    width: 0
}

.nav-item--main .link:active,
.nav-item--main .link:hover {
    color: #fff
}

.nav-item--main .link:active:after,
.nav-item--main .link:hover:after {
    width: 100%;
    transition-duration: .1s
}

.nav-item--main .link.active {
    color: #7291ca
}

.nav-item--main .link.active:after {
    width: 100%;
    transition-duration: .1s
}

.nav-item--main:hover+.nav-item--main:after {
    display: none
}

.nav-main.stal .nav-item--main {
    font-size: 1.125em;
    font-weight: 700;
    margin-right: 20px
}

.nav-main.stal .nav-item--main:last-child {
    margin-right: 0
}

.service-nav {
    position: absolute!important;
    bottom: 0;
    width: 100%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%)
}

.service-nav .nav-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 1200px;
    margin: -8px auto
}

.service-nav .nav-item {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 116px;
    padding: 8px
}

.service-nav .nav-item .link {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    height: 100%;
    padding: 5px;
    background: #7291ca;
    overflow: hidden;
    border: 0;
    font-size: .875em;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.service-nav .nav-item .icon,
.service-nav .nav-item span {
    position: relative;
    z-index: 2;
    color: #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.service-nav .nav-item .icon {
    -webkit-flex-basis: 50px;
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 5px
}

.service-nav .nav-item .bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .3;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .5s ease-out;
    background-size: cover;
    background-position: 50% 30%
}

.service-nav .nav-item .link:hover .bg {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.service-nav .nav-item .link.active .bg {
    opacity: 0
}

.header--home .service-nav .nav-item {
    height: 220px
}

.header--home .service-nav .nav-item .link {
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header--home .service-nav .nav-item .link .icon {
    margin: 0 0 10px
}

.header--home .service-nav .nav-item .link span {
    width: 100%;
    text-align: center
}

.nav-item--subnav:last-child {
    margin-right: 0
}

.nav-item--subnav .link.active {
    color: #4a4a4a;
    font-weight: 600;
    border: 0
}

.nav-item--subnav {
    margin-right: 30px
}

.nav-item--aside {
    position: relative;
    display: block;
    padding-left: 1em
}

.nav-item--aside:before {
    position: absolute;
    left: 0;
    top: .25em;
    content: 'â'
}

.nav-item--aside .link {
    display: inline-block;
    padding: 6px 0;
    border: 0;
    color: #030f6f;
    font-weight: 700;
    line-height: 1.3
}

.nav-item--aside .link.active,
.nav-item--aside .link:active,
.nav-item--aside .link:hover {
    color: #c14944;
    font-weight: 500;
    border: 0
}

.pagination {
    margin: 30px 0
}

.pagination .link {
    padding: 5px 10px;
    font-size: 1.125em
}

.pagination .link.active {
    font-weight: 600;
    background: #f0f2f0;
    color: #4a4a4a
}

.nav-btn--mobile {
    display: block;
    border: 0;
    margin-top: 2px;
    font-size: 1.5em;
    line-height: 1
}

.nav-list--mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    background-color: #302a2a;
    padding-top: 50px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all .3s ease-out
}

body.page-edit .nav-list--mobile {
    display: none!important
}

body.active .nav-list--mobile {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.nav-item--mobile {
    display: block
}

.nav-item--mobile .link {
    display: block;
    padding: .5em 1em
}

.nav-item--mobile .link,
.nav-item--mobile .link:hover {
    border-bottom-color: rgba(255, 255, 255, .2)
}

.field {
    position: relative
}

.field.error input[type=email],
.field.error input[type=number],
.field.error input[type=password],
.field.error input[type=search],
.field.error input[type=text],
.field.error input[type=url],
.field.error select,
.field.error textarea {
    border-color: #c14944
}

.field.error input[type=email]:focus,
.field.error input[type=number]:focus,
.field.error input[type=password]:focus,
.field.error input[type=search]:focus,
.field.error input[type=text]:focus,
.field.error input[type=url]:focus,
.field.error select:focus,
.field.error textarea:focus {
    border-color: #e0be59;
    box-shadow: 0 0 3px #ffe28b
}

.field.error .field-lbl {
    color: #c14944
}

.field-lbl,
.field.error .field-error {
    display: block
}

.field-lbl {
    margin-bottom: .5em;
    line-height: 1.25;
    font-size: 1em
}

.field-lbl abbr {
    border: 0
}

.field-help {
    display: block;
    font-style: italic
}

.field-error,
.field-help {
    margin: 5px 0 0;
    font-size: .75em
}

.field-error {
    display: none;
    color: #c14944
}

.field--line {
    padding-left: 150px
}

.field--line .field-lbl {
    position: absolute;
    width: 150px;
    height: 2em;
    left: 0;
    top: 0;
    margin: 0;
    padding: .5em 1em .5em 0;
    text-align: right
}

.field-checkbox {
    padding-left: 1.5em
}

.field-checkbox input {
    visibility: hidden
}

.field-checkbox input,
.field-checkbox input+label {
    position: absolute;
    display: block;
    top: .12em;
    left: 0;
    width: 1em;
    height: 1em
}

.field-checkbox input+label {
    background: rgba(255, 255, 255, .8);
    border: 1px solid #caceca;
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .1);
    cursor: pointer
}

.field-checkbox input+label:after {
    content: '';
    position: absolute;
    width: .6em;
    height: .3em;
    top: .24em;
    left: .18em;
    border: 2px solid #4a4a4a;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-48deg);
    transform: rotate(-48deg)
}

.field-checkbox input:checked+label:after {
    opacity: 1
}

.field-radio {
    padding-left: 1.5em
}

.field-radio input {
    visibility: hidden
}

.field-radio input,
.field-radio input+label {
    position: absolute;
    display: block;
    top: .12em;
    left: 0;
    width: 1em;
    height: 1em
}

.field-radio input+label {
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
    border: 1px solid #caceca;
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .1);
    cursor: pointer
}

.field-radio input+label:after {
    content: '';
    position: absolute;
    width: .5em;
    height: .5em;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #4a4a4a;
    opacity: 0
}

.field-radio input:checked+label:after {
    opacity: 1
}

.field-radio.field--primary input+label:after {
    background: #7291ca
}

.field-radio.field--success input+label:after {
    background: #78b948
}

.field-radio.field--info input+label:after {
    background: #e0be59
}

.field-radio.field--warning input+label:after {
    background: #e07f59
}

.field-radio.field--danger input+label:after {
    background: #c14944
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    box-sizing: border-box
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative
}

.noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0
}

.noUi-handle {
    position: relative;
    z-index: 1
}

.noUi-stacking .noUi-handle {
    z-index: 10
}

.noUi-state-tap .noUi-origin {
    transition: left .3s, top .3s
}

.noUi-state-drag * {
    cursor: inherit!important
}

.noUi-horizontal {
    height: 6px
}

.noUi-horizontal .noUi-handle {
    position: relative;
    width: 20px;
    height: 20px;
    left: -10px;
    top: -7px;
    border-radius: 50%;
    background: linear-gradient(0deg, #f8efde 0, #d8d0c1);
    box-shadow: 0 1px 3px rgba(71, 110, 43, .75), inset 0 1px 0 #fff;
    cursor: pointer
}

.noUi-horizontal .noUi-handle:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    top: 7px;
    left: 7px;
    border-radius: 50%;
    background: #c14944
}

.noUi-background {
    background: #d3d3d3;
    box-shadow: inset 0 0 3px #959595, 0 0 1px #fff
}

.noUi-connect {
    background: linear-gradient(180deg, #a0baea 20%, #5d6e8c);
    transition: background .45s;
    border-radius: 2px
}

.noUi-origin,
.noUi-target {
    border-radius: 4px
}

.noUi-target.noUi-connect {
    box-shadow: inset 0 0 3px rgba(51, 51, 51, .45), 0 3px 6px -5px #bbb
}

.noUi-dragable {
    cursor: w-resize
}

[disabled].noUi-connect,
[disabled] .noUi-connect {
    background: #b8b8b8
}

[disabled] .noUi-handle {
    cursor: not-allowed
}

.field-range {
    padding-bottom: 15px
}

.field-range .field-inputs {
    min-height: 40.6px;
    padding-right: 30px
}

.field-range .field-inputs .wrap {
    position: relative;
    display: block
}

.field-range .field-inputs label {
    padding: 7.8px 0
}

.field-range .field-inputs label.from,
.field-range .field-inputs label.to {
    position: absolute;
    width: 50%
}

.field-range .field-inputs label.from:first-of-type,
.field-range .field-inputs label.to:first-of-type {
    left: 0
}

.field-range .field-inputs label.from:last-of-type,
.field-range .field-inputs label.to:last-of-type {
    right: -30px
}

.field-range .field-inputs label.from span,
.field-range .field-inputs label.to span {
    position: absolute;
    top: 0
}

.field-range .field-inputs label.from span input,
.field-range .field-inputs label.to span input {
    text-align: center
}

.field-range .field-inputs .suf {
    position: absolute;
    right: 0
}

.field-range .field-slider {
    margin-top: 10px;
    min-height: 15px;
    padding: 0 13px
}

.field-range .field-labels {
    font-size: .75em
}

.field-range .field-labels .from {
    float: left
}

.field-range .field-labels .to {
    float: right
}

.title {
    font-weight: 400
}

h1.title {
    font-size: 2.625em;
    font-weight: 700
}

h1.title,
h2.title {
    margin-top: 0;
    margin-bottom: 1em
}

h2.title {
    font-size: 1.875em
}

h2.title.md {
    font-size: 2.5em
}

h3.title {
    margin-bottom: 1em;
    font-size: 1.5625em
}

.title-bottom {
    margin-bottom: 15px;
    font-size: .875em
}

.title-bottom .icon {
    top: .25em
}

.number {
    padding-right: 50px
}

.number,
.number b {
    display: inline-block
}

.number b {
    padding: 5px 0 7px;
    font-size: 3.125em;
    line-height: 1;
    color: #c14944;
    text-align: center;
    border-top: 5px solid #c14944;
    border-bottom: 5px solid #c14944
}

.number span {
    display: block
}

.stats {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.stats-item {
    position: relative;
    width: 200px;
    height: 120px
}

.stats-item svg {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
    stroke-width: 3px;
    stroke: #c14944;
    transition: fill .3s ease-out
}

.stats-item:hover svg {
    fill: #c14944
}

.stats-item:hover .stats-num {
    color: #fff
}

.stats-num {
    margin-bottom: 3px;
    padding-top: 18px;
    font-size: 2.5em;
    line-height: 1;
    color: #c14944;
    transition: all .3s ease-out
}

.stats-num,
.stats-title {
    position: relative;
    z-index: 2;
    display: block;
    text-align: center
}

.stats-title {
    font-size: .8125em;
    line-height: 1.25
}

.spinner-wrap.loading {
    position: relative
}

.spinner-wrap.loading .mfp__wrap {
    -webkit-filter: blur(1px);
    filter: blur(1px)
}

.spinner-wrap.loading .spinner-overlay {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.spinner-wrap.loading .spinner-btn {
    position: relative
}

.spinner-wrap.loading .spinner-btn>span {
    opacity: 0
}

.spinner-wrap.loading .spinner-btn .spinner-overlay {
    border-radius: 2em;
    background: transparent
}

.spinner-wrap.loading .spinner-btn .spinner>div {
    background: #fff
}

.btn.loading {
    position: relative
}

.btn.loading>span {
    opacity: 0
}

.btn.loading .spinner-overlay {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-radius: 2em
}

.btn.loading .spinner>div {
    background: #fff
}

.spinner-overlay {
    position: absolute;
    display: none;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
}

.spinner {
    margin: 2px auto 0;
    width: 90%;
    text-align: center
}

.spinner>div {
    width: 18px;
    height: 18px;
    background-color: #7291ca;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both
}

.spinner .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

.spinner .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    to {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bouncedelay {
    0%,
    80%,
    to {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.bg-video {
    overflow: hidden;
    background: #000;
    transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
    transition: transform 1.5s ease-out, opacity 1.5s ease-out;
    transition: transform 1.5s ease-out, opacity 1.5s ease-out, -webkit-transform 1.5s ease-out
}

.bg-video,
.bg-video:after,
.bg-video:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.bg-video:after,
.bg-video:before {
    content: '';
    background: rgba(0, 0, 0, .5)
}

.bg-video:before {
    background-size: contain
}

.bg-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.jouele-control {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.jouele-control-text {
    font-size: 1.125em
}

.jouele-time {
    padding-top: 8px;
    font-size: .8125em;
    color: rgba(0, 0, 0, .5)
}

.jouele-play-time {
    opacity: 0
}

.jouele-status-playing .jouele-play-time {
    opacity: 1
}

.jouele-load-bar:after,
.jouele-mine-bar:after,
.jouele-play-bar:after {
    height: 3px
}

.jouele-control-button-icon_pause .jouele-svg,
.jouele-control-button-icon_play .jouele-svg {
    width: 32px;
    height: 32px
}

.jouele-control-button-icon_play .jouele-svg-color {
    fill: #c14944
}

.jouele-control-button-icon_pause {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.jouele-control-button-icon_pause .jouele-svg-color {
    display: none
}

.jouele-control-button-icon_pause:before {
    position: absolute;
    top: 50%;
    left: 8px;
    width: 10px;
    height: 16px;
    border: 4px solid #c14944;
    border-width: 0 4px;
    margin-top: -7px;
    background: transparent;
    content: ""
}

.jouele-play-lift {
    top: 50%;
    width: 5px;
    height: 20px;
    margin: -10px 0 0;
    border-radius: 0;
    background-color: #000;
    opacity: 0
}

.jouele-mine:hover .jouele-play-lift {
    width: 5px;
    height: 20px;
    margin: -10px 0 0;
    border-radius: 0;
    background-color: #c14944;
    opacity: 1
}

.jouele-status-playing .jouele-play-lift {
    background-color: #c14944;
    opacity: 1
}

.jouele-play-bar:after,
.jouele-status-playing .jouele-play-bar:after {
    background-color: #c14944
}

.credit {
    text-align: left
}

.credit .field>label {
    display: block;
    margin-bottom: 10px
}

.credit input[type=range] {
    width: 100%
}

.range-lbl {
    margin-top: 5px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.125em;
    color: #6a6e6a
}

.credit .field>label,
.credit .lbl {
    font-size: 1.25em
}

.credit .col-main {
    margin-right: 50px
}

.credit .col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px
}

.credit .col input {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 15px;
    text-align: center;
    font-size: 1.25em
}

.credit .col label {
    width: 60px
}

.tarif-grid {
    margin: 0 auto;
    border: 0;
    font-size: 1em;
    width: 100%
}

.tarif-grid td,
.tarif-grid th {
    padding: .4em 1em;
    border: 0
}

.tarif-grid thead th {
    background: none;
    border: 0;
    font-size: 1.125em;
    font-weight: 400;
    padding: 1em;
    border-bottom: 1px solid #caceca;
    text-align: center
}

.tarif-grid thead th:nth-child(1) {
    width: 376px
}

.tarif-grid thead th:nth-child(2),
.tarif-grid thead th:nth-child(3) {
    width: 200px
}

.tarif-grid tbody tr:nth-child(2n+1) td,
.tarif-grid tbody tr:nth-child(2n+1) th {
    background: rgba(193, 73, 68, .05)
}

.tarif-grid tbody th {
    font-size: 1em;
    font-weight: 300
}

.tarif-grid tbody td {
    text-align: center
}

.tarif-grid tfoot th {
    text-align: center;
    background: transparent;
    font-size: .9375em;
    font-weight: 300;
    line-height: 1;
    padding-top: 5px
}

.tarif-grid tfoot th .price {
    margin-top: 5px;
    font-size: 1.53333333em
}

.tarif-grid tfoot th .btn {
    margin-top: 10px;
    font-size: 1.33333333em;
    line-height: 1.25;
    padding: 8px
}

.tarif-grid tfoot th .btn .size--md {
    font-size: 1.3em
}

.faq {
    margin-bottom: 30px;
    text-align: left
}

.faq:last-of-type {
    margin-bottom: 0
}

.faq-question {
    position: relative;
    padding-left: 40px;
    font-size: 1.5em;
    line-height: 1.25;
    cursor: pointer
}

.faq-question .icon {
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
    width: 24px;
    height: 24px
}

.faq-question .icon:after,
.faq-question .icon:before {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    height: 2px;
    background: #7291ca
}

.faq-question .icon:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: all .3s ease-out
}

.faq-question span {
    color: #7291ca;
    border-bottom: 1px dashed #7291ca;
    transition: all .3s ease-out
}

.faq-answer {
    display: none;
    padding-left: 40px;
    padding-top: 10px;
    font-size: 1.125em;
    transition: all .3s ease-out
}

.faq.active .faq-question .icon:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.faq.active .faq-question span {
    border-bottom-color: transparent
}

.faq.active .faq-answer {
    display: block
}

.page {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column;
    min-height: 100vh;
    overflow-x: hidden
}

.main {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.top {
    position: fixed!important;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
    transition: background .3s ease-out
}

.top.fixed {
    height: 76px;
	box-shadow: #ABA7A7 5px 5px 10px;
}

.top.fixed.fixed--dark {
    color: #4a4a4a;
    background: rgba(0, 0, 0, .9)
}

.top.fixed .logo img {
    height: 56px
}

.footer {
    position: relative;
    color: #fff
}

.footer-bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 6em;
    line-height: 1;
    height: .5em
}

.design-link {
    border: 0
}

.design-link,
.design-link .icon {
    display: block;
    height: .5em
}

.footer-end,
.footer-middle,
.footer-start {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0
}

.footer-end,
.footer-start {
    min-width: 250px
}

.footer-middle,
.main-content {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.main-aside {
    width: 300px;
    margin-right: 25px;
    padding-right: 25px
}

.slider {
    position: relative;
    display: block
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 100%
}

.slider-item:first-child {
    position: relative;
    margin-left: 0
}

.slider-item--custom {
    height: 100%;
    padding: 30px 0 60px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.slider--custom .fotorama__arr {
    display: none;
    width: 23px;
    height: 42px;
    top: 50%;
    margin-top: -12px;
    background: url(../../st/img/arrows.png) 0 50% no-repeat
}

.slider--custom .fotorama__arr--prev {
    left: 10px
}

.slider--custom .fotorama__arr--next {
    right: 10px;
    background-position: -23px 50%
}

.slider--custom .fotorama__nav-wrap {
    position: absolute;
    bottom: 15px
}

.slider--custom .fotorama__nav--dots .fotorama__nav__frame {
    width: 26px;
    height: 30px
}

.slider--custom .fotorama__dot {
    width: 14px;
    height: 14px;
    top: 8px;
    left: 6px;
    border-radius: 7px;
    border: 7px solid #caceca
}

.slider--custom .fotorama__nav__frame.fotorama__active .fotorama__dot {
    border: 7px solid #522e91
}

.slider-red .fotorama__arr {
    background-image: url(../../st/img/arrows-red.png)
}

.slider-item--simple,
.slider-slider--simple {
    height: 100%
}

.slider--simple {
    margin-bottom: 50px
}

.slider-slider--simple {
    overflow: visible
}

.slider-item--simple {
    position: relative;
    background-position: 50% 50%
}

.slider--simple {
    width: 100%
}

.slider--simple .slide-text {
    color: #fff
}

.slider--simple .slide-text h1,
.slider--simple .slide-text h2,
.slider--simple .slide-text h3 {
    margin-top: 0
}

.slider--simple .slide-btn {
    display: inline-block
}

.slider--simple .fotorama__nav-wrap {
    margin-top: 10px
}

.slider--simple .fotorama__nav--dots .fotorama__nav__frame {
    width: 26px;
    height: 30px
}

.slider--simple .fotorama__dot {
    width: 14px;
    height: 14px;
    top: 8px;
    left: 6px;
    border-radius: 7px;
    border: 7px solid #caceca
}

.slider--simple .fotorama__nav__frame.fotorama__active .fotorama__dot {
    border: 7px solid #7291ca
}

.slider--simple .slide-text {
    padding-top: 90px;
    max-width: 540px
}

.slider--simple .slide-text h1,
.slider--simple .slide-text h2,
.slider--simple .slide-text h3 {
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase
}

.slider--simple .slide-btn {
    margin-top: 30px
}

.slider--triple .slider-slider {
    height: 100%
}

.slider--triple .slider-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%
}

.slider--triple .slider-item .col {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
    border-right: 1px solid #caceca
}

.slider--triple .slider-item .col:last-child {
    border-right: 0
}

.slider--triple .slider-item.by3 .col1,
.slider--triple .slider-item.by3 .col3 {
    width: 30%
}

.slider--triple .slider-item.by3 .col2 {
    width: 40%
}

.slider--triple .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    padding: 15px;
    font-size: .875em;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition: all .5s ease-out
}

.slider--triple .col:hover .title {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.card {
    display: block;
    padding: 10px;
    border: 1px solid #caceca;
    overflow: hidden
}

.card-pic {
    display: block;
    border: 2px solid #caceca
}

.card-title {
    margin-top: 10px;
    font-weight: 400;
    color: #4a4a4a;
    text-align: center
}

.card:hover {
    border-color: #fac52a;
    background-color: #fac52a
}

.card:hover .card-pic {
    border-color: #fff
}

.sep {
    display: inline-block;
    padding: 0 5px
}

.tel {
    white-space: nowrap;
    font-weight: 700;
    border: 0;
font-size: 24px;
}

.tel .code {
    font-size: .85em;
    font-weight: 300
}

.tel--simple {
    font-weight: 400
}

.contact-item .icon {
    top: .3em
}

.contact--footer,
.contact--top {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%
}

.contact--footer .contact-item,
.contact--top .contact-item {
    margin-right: 30px
}

.contact--footer .contact-item:first-of-type,
.contact--top .contact-item:first-of-type {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.contact--footer .contact-item:last-child,
.contact--top .contact-item:last-child {
    margin-right: 0
}

.contact--footer,
.contact--top {
    color: #4a4a4a;
    fill: #4a4a4a
}

.contact--footer a,
.contact--footer a>span,
.contact--top a,
.contact--top a>span {
    position: relative;
    color: #4a4a4a;
    border-bottom: 0
}

.contact--footer a:after,
.contact--top a:after {
    content: '';
    position: absolute;
    width: 0;
    left: 0;
    bottom: -4px;
    border-bottom: 1px solid #4a4a4a;
    transition: width .5s ease-out
}

.contact--footer a:hover:after,
.contact--top a:hover:after {
    width: 100%;
    transition-duration: .1s
}

.contact--footer,
.contact--top {
    color: #fff;
    fill: #fff;
    text-align: right
}

.contact--footer a,
.contact--footer a>span,
.contact--top a,
.contact--top a>span {
    color: #fff;
    fill: #fff
}

.contact--footer a:after,
.contact--top a:after {
    border-bottom-color: #fff
}

.contact-map {
    position: relative;
    width: 100%
}

.contact-map .map {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.vcard.info {
    text-align: center;
    width: 300px;
    padding: 10px 15px;
    font-size: 1.125em
}

.vcard.info h3 {
    margin: 0 0 15px;
    font-size: 1.11111111em;
    line-height: 22px;
    text-transform: uppercase;
    color: #7291ca;
    padding-bottom: 15px;
    border-bottom: 1px dashed #bbb
}

.vcard.info .contact-item {
    margin-bottom: 5px
}

.vcard.info .contact-item .icon {
    margin-right: 3px
}

.contact--line {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%
}

.contact--line .contact-item {
    margin-right: 30px
}

.contact--line .contact-item .icon {
    top: .3em
}

.contact--line .contact-item:first-of-type {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.contact--line .contact-item:last-child {
    margin-right: 0
}

.popup {
    position: relative;
    width: auto;
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .5)
}

.popup.sm {
    max-width: 320px
}

.popup.md {
    max-width: 640px
}

.popup.lg {
    max-width: 960px
}

.popup.gallery {
    max-width: 1200px;
    background: transparent;
    box-shadow: none
}

.mfp-close,
.mfp-close:hover {
    color: #fff;
    background: transparent
}

.mfp-close:hover {
    box-shadow: none
}

.popup-header {
    padding: 20px 25px;
    color: #4a4a4a
}

.popup-title {
    padding: 0;
    margin: 0;
    font-size: 1.875em;
    font-weight: 300;
    letter-spacing: -.1px;
    line-height: 1.2
}

.popup-content {
    padding: 15px 25px 20px
}

.popup-footer {
    padding: 0 25px 15px
}

.popup.title--md .popup-title {
    font-size: 2em
}

.slick-slide img {
    display: inline!important
}

.slick-next,
.slick-prev {
    position: absolute;
    z-index: 2;
    display: block;
    top: 50%;
    width: 36px;
    height: 60px;
    margin-top: -30px;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    border: 0
}

.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    outline: none;
    background: transparent;
    box-shadow: none
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,
.slick-prev:before {
    font-size: 50px;
    line-height: 1;
    opacity: .75;
    color: #aaa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -35px
}

.slick-prev:before {
    content: 'ă';
    margin-left: -20px
}

.slick-next {
    right: -40px
}

.slick-next:before {
    content: 'ă'
}

.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -30px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0
}

.slick-dots li,
.slick-dots li button {
    width: 10px;
    height: 10px;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(171, 171, 171, .4);
    border-radius: 50%;
    box-shadow: none
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none
}

.slick-dots li.slick-active button {
    background-color: #aaa
}

.slick-white .slick-next:before,
.slick-white .slick-prev:before,
.slick.white .slick-next:before,
.slick.white .slick-prev:before {
    color: #fff
}

.slick-white .slick-dots li button,
.slick.white .slick-dots li button {
    background: rgba(255, 255, 255, .4)
}

.slick-white .slick-dots li.slick-active button,
.slick.white .slick-dots li.slick-active button {
    background-color: #fff
}

.slick-white .pic img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    transition: all .3s ease-out
}

.slick-white .pic:hover img {
    -webkit-filter: none;
    filter: none
}

@media(min-width:767px) {
    .container {
        padding-left: 10px;
        padding-right: 10px
    }
}

.nenagl {
    display: none;
}