.content-loader {
    height: 1em
}

.content-loader:after {
    animation-direction: normal;
    animation-duration: 1.5s;
    animation-fill-mode: none;
    animation-iteration-count: infinite;
    animation-name: сontent-loader-animation;
    animation-play-state: running;
    animation-timing-function: cubic-bezier(0.75, 0, 0.75, 0.9);
    animation-delay: 1s;
    background: rgba(0,0,0,0.28);
    content: "";
    display: block;
    height: inherit;
    transform-origin: left
}

@keyframes сontent-loader-animation {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.8)
    }

    100% {
        transform: scaleX(1)
    }
}

html {
    box-sizing: border-box
}

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

/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

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

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

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

progress {
    vertical-align: baseline
}

template,[hidden] {
    display: none
}

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

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

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

b,strong {
    font-weight: inherit
}

b,strong {
    font-weight: bolder
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

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

small {
    font-size: 80%
}

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

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

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

code,kbd,pre,samp {
    font-family: monospace, monospace;
    font-size: 1em
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

button,input,optgroup,select,textarea {
    font: inherit;
    margin: 0
}

optgroup {
    font-weight: bold
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

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

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

button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

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

textarea {
    overflow: auto
}

[type="checkbox"],[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
    height: auto
}

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

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

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54
}

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

.container,.container-fluid {
    position: relative
}

.container .row,.container-fluid .row {
    display: block
}

.container .row::after,.container-fluid .row::after {
    clear: both;
    content: "";
    display: block
}

.container {
    padding: 0 20px;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto
}

.container::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    .container {
        max-width:1220px
    }
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    .container {
        max-width:920px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .container {
        padding:0 30px
    }
}

.container-fluid {
    padding: 0 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

.container-fluid::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .container-fluid {
        padding:0 30px
    }
}

.page-wrapper {
    -webkit-box-align: strech;
    -moz-box-align: strech;
    box-align: strech;
    -webkit-align-items: strech;
    -moz-align-items: strech;
    -ms-align-items: strech;
    -o-align-items: strech;
    align-items: strech;
    -ms-flex-align: strech;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start
}

.page-wrapper .sidebar {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.page-wrapper .sidebar-wrapper {
    width: 260px;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 1219px) {
    .page-wrapper .sidebar-wrapper {
        display:none
    }
}

.page-wrapper .container-wrapper {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 auto;
    -moz-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto
}

@media screen and (max-width: 1219px) {
    .page-wrapper .container-wrapper {
        width:100%
    }
}

.fl-l {
    float: left
}

.fl-r {
    float: right
}

.row {
    display: block
}

.row::after {
    clear: both;
    content: "";
    display: block
}

.clearfix::after {
    clear: both;
    content: "";
    display: block
}

.txt-l {
    text-align: left
}

.txt-r {
    text-align: right
}

.txt-c {
    text-align: center
}

.trans-orig-top {
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top
}

.trans-orig-bottom {
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    transform-origin: bottom
}

.trans-orig-left {
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left
}

.trans-orig-right {
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right
}

.trans-orig-top-left {
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left
}

.trans-orig-top-right {
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    -o-transform-origin: top right;
    transform-origin: top right
}

.trans-orig-bottom-left {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left
}

.trans-orig-bottom-right {
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right
}

.color-red {
    color: #cb1a1a
}

.color-blue {
    color: #006cff
}

.valign-middle {
    vertical-align: middle
}

body {
    background-color: #fff;
    color: rgba(0,0,0,0.87);
    font-family: "Roboto",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

body,html {
    min-width: 320px
}

body,input,textarea,select,button {
    -moz-font-feature-settings: 'liga', 'kern';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: subpixel-antialiased !important;
    text-rendering: optimizeLegibility
}

html {
    -ms-touch-action: manipulation;
    touch-action: manipulation
}

body.mask::before {
    background: rgba(48,48,48,0.9);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    z-index: 5
}

.annotation {
    color: #787878;
    font-size: 12px;
    font-style: italic;
    line-height: 19px
}

ul {
    font-size: 14px
}

hr {
    border: 0;
    border-top: 1px solid #d4d4d4;
    height: 0
}

label {
    font-size: 14px;
    font-weight: 500
}

button::-moz-focus-inner {
    border: 0
}

.line-highlight {
    background: rgba(255,84,91,0.15);
    border-radius: 3px;
    color: #d44950;
    padding: 0 3px
}

strong,b {
    font-weight: 500
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

button:focus,a:focus {
    outline: none
}

button:hover {
    cursor: pointer
}

.icon {
    display: inline-block;
    fill: #a8a8a8;
    height: 1em;
    vertical-align: middle;
    width: 1em;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease
}

.icon.c-white {
    fill: #fff
}

.icon.c-orange {
    fill: #f2470f
}

.icon.c-blue {
    fill: #006cff
}

.icon.icon-reply-dims,.icon.icon-reply {
    height: 1.5em;
    width: 1.5em
}

.icon-circle {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    display: inline-block;
    line-height: 20px;
    text-align: center
}

.icon-circle .icon {
    font-size: 12px
}

.flag {
    border: 3px solid #d3d2d2;
    border-radius: 50%;
    height: 23px;
    width: 23px
}

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

.user-pic {
    height: 54px;
    width: 54px;
    border: 3px solid #ebebeb;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top
}

.user-pic img,.user-pic .no-photo {
    height: 48px;
    width: 48px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block
}

.user-pic .no-photo {
    display: block;
    overflow: hidden
}

.user-pic .no-photo .icon {
    height: 100%;
    width: 100%;
    margin-top: 14%;
    vertical-align: bottom
}

.profile-picture {
    border: solid #ebebeb;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    border-width: 3px
}

.profile-picture .profile-picture-image {
    border-width: 1px;
    height: 48px;
    width: 48px
}

.profile-picture-image {
    background: #fff;
    border: solid #fff;
    border-radius: 50%;
    display: block;
    overflow: hidden
}

.profile-picture-image img {
    display: block;
    height: 100%;
    width: 100%
}

.profile-picture-image .icon {
    fill: rgba(0,0,0,0.28);
    margin-top: 13%;
    vertical-align: bottom;
    height: 100%;
    width: 100%
}

.profile-picture.large {
    border-width: 3px
}

.profile-picture.large .profile-picture-image {
    border-width: 2px;
    height: 104px;
    width: 104px
}

.profile-picture.small {
    border-width: 2px
}

.profile-picture.small .profile-picture-image {
    border-width: 1px;
    height: 24px;
    width: 24px
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    margin: 0
}

h1,.h1 {
    font-size: 44px;
    line-height: 53px;
    font-weight: 700
}

h2,.h2 {
    font-size: 34px;
    line-height: 41px;
    font-weight: 700
}

h3,.h3 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700
}

h4,h5,h6,.h4,.h5,.h6 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

@media screen and (max-width: 767px) {
    h1,.h1 {
        font-size:34px;
        line-height: 41px;
        font-weight: 700
    }

    h2,.h2 {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }
}

ul.bullet-list {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    list-style: none;
    margin: 0
}

ul.bullet-list>li {
    margin: 12px 0;
    padding-left: 13px;
    position: relative
}

ul.bullet-list>li:before {
    height: 5px;
    width: 5px;
    background: #a8a8a8;
    border-radius: 1px;
    content: '';
    display: block;
    position: absolute;
    top: .5em;
    left: 0
}

ul.bullet-list.big,ul.bullet-list.large {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    list-style: none;
    margin: 0
}

ul.bullet-list.big>li,ul.bullet-list.large>li {
    margin: 16px 0;
    padding-left: 24px;
    position: relative
}

ul.bullet-list.big>li:before,ul.bullet-list.large>li:before {
    height: 9px;
    width: 9px;
    background: #a8a8a8;
    border-radius: 2px;
    content: '';
    display: block;
    position: absolute;
    top: .5em;
    left: 0
}

ul.bullet-list.medium,ul.bullet-list.regular {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    list-style: none;
    margin: 0
}

ul.bullet-list.medium>li,ul.bullet-list.regular>li {
    margin: 14px 0;
    padding-left: 19px;
    position: relative
}

ul.bullet-list.medium>li:before,ul.bullet-list.regular>li:before {
    height: 7px;
    width: 7px;
    background: #a8a8a8;
    border-radius: 2px;
    content: '';
    display: block;
    position: absolute;
    top: .5em;
    left: 0
}

ul.bullet-list.small {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    list-style: none;
    margin: 0
}

ul.bullet-list.small>li {
    margin: 12px 0;
    padding-left: 13px;
    position: relative
}

ul.bullet-list.small>li:before {
    height: 5px;
    width: 5px;
    background: #a8a8a8;
    border-radius: 1px;
    content: '';
    display: block;
    position: absolute;
    top: .5em;
    left: 0
}

ol.number-list {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    list-style-type: decimal;
    margin: 0
}

ol.number-list>li {
    margin: 12px 0;
    padding-left: 4px
}

ol.number-list.big,ol.number-list.large {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    list-style-type: decimal;
    margin: 0
}

ol.number-list.big>li,ol.number-list.large>li {
    margin: 16px 0;
    padding-left: 8px
}

ol.number-list.medium,ol.number-list.regular {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    list-style-type: decimal;
    margin: 0
}

ol.number-list.medium>li,ol.number-list.regular>li {
    margin: 14px 0;
    padding-left: 6px
}

ol.number-list.small {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    list-style-type: decimal;
    margin: 0
}

ol.number-list.small>li {
    margin: 12px 0;
    padding-left: 4px
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px
}

p.big {
    font-size: 23px;
    font-weight: 400;
    line-height: 33px;
    margin: 0 0 25px
}

p.medium {
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 20px
}

p.small {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px
}

.section-headline {
    font-size: 23px;
    font-weight: 500;
    line-height: 29px;
    margin: 0
}

.section-headline.medium {
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    margin: 0
}

.card {
    background: #fff;
    border: 1px solid #e0e0e0;
    -webkit-transition: box-shadow .2s;
    -moz-transition: box-shadow .2s;
    transition: box-shadow .2s;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 20px;
    position: relative
}

.card:hover {
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2)
}

.card:active {
    box-shadow: none
}

.card a {
    color: inherit;
    display: block
}

.card .corner-ribbon-wrapper {
    height: 88px;
    width: 88px;
    overflow: hidden;
    position: absolute;
    top: -3px;
    right: -3px;
    z-index: 1
}

.card .corner-ribbon {
    background-color: #006cff;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    top: 18px;
    left: -5px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    width: 120px
}

.card .corner-ribbon.orange {
    background-color: #f2470f
}

.card .corner-ribbon.blue {
    background-color: #006cff
}

.card .corner-ribbon.red {
    background-color: #cb1a1a
}

.card .corner-ribbon.green {
    background-color: #65b449
}

.card .corner-ribbon.yellow {
    background-color: #fa8c19
}

.card .corner-ribbon.light-sea-green {
    background-color: #1aa3a9
}

.card .card-image {
    border-bottom: 1px solid #e0e0e0;
    padding: 14px
}

.card .card-image .card-image-valign {
    display: inline-block;
    height: 250px;
    position: relative;
    vertical-align: top;
    width: 100%
}

.card .card-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    width: auto;
    margin: auto;
    max-height: 100%;
    max-width: 100%
}

.card .card-info {
    min-height: 145px;
    padding: 20px;
    position: relative;
    -webkit-transition: -webkit-transform .2s;
    -moz-transition: -moz-transform .2s;
    transition: transform .2s
}

.card .card-info .title {
    color: rgba(0,0,0,0.87);
    font-size: 18px;
    font-weight: 500
}

.card .card-info .category {
    color: rgba(0,0,0,0.54);
    font-size: 12px;
    margin-top: 1px;
    text-transform: uppercase
}

.card .card-info .card-price {
    color: #ababab;
    font-size: 12px;
    text-transform: uppercase;
    position: absolute;
    bottom: 13px
}

.card .card-info .card-price span {
    color: #f2470f;
    display: block;
    font-size: 24px;
    font-weight: 500
}

.card .card-info .card-price span sup {
    font-size: 14px;
    margin-left: 10px
}

.card .card-footer {
    width: 100%
}

.card .card-footer .card-footer-block {
    background: #f5f5f5;
    color: rgba(0,0,0,0.87);
    font-size: 12px;
    min-height: 47px;
    padding: 10px 20px;
    text-transform: uppercase
}

.card .card-footer .card-footer-block .icon {
    font-size: 24px;
    fill: rgba(0,0,0,0.54);
    margin-right: 10px
}

.card .card-footer .card-footer-block .favorite-button {
    color: #444;
    float: right;
    font-weight: 500
}

.card .card-footer .card-footer-block .favorite-button .icon {
    fill: #ffaeae;
    margin-right: 8px
}

.card.card-small {
    width: 100%;
    margin-right: 0
}

.card.card-small::after {
    clear: both;
    content: "";
    display: block
}

.card.card-small .card-image {
    border-bottom: none;
    display: block;
    float: left;
    padding: 15px 20px;
    width: 100px
}

.card.card-small .card-image-valign {
    height: 70px
}

.card.card-small .card-content {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    display: block;
    float: left
}

.card.card-small .card-content .card-info {
    min-height: 100%;
    padding: 15px 25px 15px 0
}

.card.card-small .card-content .card-info .card-header .title {
    font-size: 14px
}

.card.card-small .card-content .card-info .card-header .category {
    display: none
}

.card.card-small .card-content .card-info .card-price {
    bottom: auto;
    margin-top: 13px;
    position: relative
}

.card.card-small .card-content .card-info .card-price span {
    font-size: 18px
}

.card.card-small .card-content .card-info .card-price span sup {
    font-size: 9px;
    margin-left: 5px;
    top: -6px
}

.card.card-small .card-content .card-footer {
    display: none
}

.card.card-small .corner-ribbon {
    bottom: -27px;
    font-size: 9px;
    left: -5px;
    line-height: 21px;
    top: auto;
    width: 85px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.card.card-small .corner-ribbon-wrapper {
    bottom: -3px;
    top: auto;
    height: 61px;
    width: 61px
}

.Card__base {
    background: #fff;
    border: 1px solid #e0e0e0;
    min-height: 320px;
    position: relative;
    -webkit-transition: box-shadow .2s;
    -moz-transition: box-shadow .2s;
    transition: box-shadow .2s
}

.Card__base:hover {
    box-shadow: 0 3px 9px 1px rgba(0,0,0,0.2)
}

.Card__base:hover .Card__wishlist {
    display: block
}

.Card__media {
    position: relative;
    text-align: center;
    height: 157px
}

.Card__media-lootbox {
    width: 80%;
    z-index: 2;
    position: absolute;
    bottom: -34px;
    left: 10%;
    -webkit-transition: width .3s ease-in,bottom .3s ease-in,left .3s ease-in;
    -moz-transition: width .3s ease-in,bottom .3s ease-in,left .3s ease-in;
    transition: width .3s ease-in,bottom .3s ease-in,left .3s ease-in
}

.Card__base:hover .Card__media-lootbox {
    width: 30%;
    left: 6%;
    bottom: -25px
}

.Card__media-control {
    background: #fff;
    border: none;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    position: absolute;
    top: 40%;
    z-index: 2;
    opacity: 0;
    height: 30px;
    width: 30px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-transition: background .2s,opacity .2s,-webkit-transform .2s;
    -moz-transition: background .2s,opacity .2s,-moz-transform .2s;
    transition: background .2s,opacity .2s,transform .2s
}

.Card__media-control:hover {
    background: #2f82fb
}

.Card__media-control:hover .icon {
    fill: #fff
}

.Card__media-control .icon {
    font-size: 24px;
    fill: rgba(0,0,0,0.54);
    height: 100%
}

.Card__media-control--left {
    left: 20px;
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px)
}

.Card__media-control--right {
    right: 20px;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px)
}

.Card__wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 32px;
    width: 32px;
    background: rgba(0,0,0,0.54);
    border-radius: 50%;
    display: none;
    z-index: 2
}

.Card__wishlist .icon {
    position: absolute;
    top: 50%;
    right: 50%;
    font-size: 24px;
    margin-top: -11px;
    margin-right: -12px
}

.Card__wishlist .icon-favourite {
    fill: transparent
}

.Card__wishlist .icon-favourite_border {
    fill: #e0e0e0
}

.Card__wishlist--active .icon-favourite_border,.Card__wishlist:active .icon-favourite_border {
    fill: transparent
}

.Card__wishlist--active .icon-favourite,.Card__wishlist:active .icon-favourite {
    fill: #dd301c
}

.Card__base:hover .Card__media-control {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none
}

.Card__thumbnail {
    fill: rgba(0,0,0,0.28);
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 96px;
    position: absolute;
    right: 0;
    left: 0
}

.Card__picture {
    display: block;
    height: 100%;
    padding: 15px;
    position: relative;
    z-index: 1
}

.Card--skin .Card__picture {
    background: #f5f5f5
}

.Card__picture--gallery {
    padding: 0;
    position: relative
}

.Card__picture--gallery .Card__image {
    position: absolute;
    top: 0;
    left: 0
}

.Card__image {
    background: center/cover no-repeat;
    background-color: inherit;
    opacity: 0;
    height: 100%;
    width: 100%
}

.Card__image:first-child {
    opacity: 1
}

.Card__image--contain {
    background-size: contain
}

.Card__picture--gallery[data-count="3"]:hover .Card__image:nth-child(1) {
    -webkit-animation: fadeThreeItemsFirst 3s infinite;
    -moz-animation: fadeThreeItemsFirst 3s infinite;
    animation: fadeThreeItemsFirst 3s infinite
}

.Card__picture--gallery[data-count="3"]:hover .Card__image:nth-child(2) {
    -webkit-animation: fadeThreeItemsSecond 3s infinite;
    -moz-animation: fadeThreeItemsSecond 3s infinite;
    animation: fadeThreeItemsSecond 3s infinite
}

.Card__picture--gallery[data-count="3"]:hover .Card__image:nth-child(3) {
    -webkit-animation: fadeThreeItemsThird 3s infinite;
    -moz-animation: fadeThreeItemsThird 3s infinite;
    animation: fadeThreeItemsThird 3s infinite
}

.Card__picture--gallery[data-count="2"]:hover .Card__image:nth-child(1) {
    -webkit-animation: fadeTwoItemsFirst 2s infinite;
    -moz-animation: fadeTwoItemsFirst 2s infinite;
    animation: fadeTwoItemsFirst 2s infinite
}

.Card__picture--gallery[data-count="2"]:hover .Card__image:nth-child(2) {
    -webkit-animation: fadeTwoItemsSecond 2s infinite;
    -moz-animation: fadeTwoItemsSecond 2s infinite;
    animation: fadeTwoItemsSecond 2s infinite
}

.Card__stickers {
    z-index: 1;
    position: absolute;
    bottom: -11px;
    left: 10px
}

.Card__stickers img {
    vertical-align: middle
}

.Card__cover {
    border: 1px solid #fff;
    margin: -74px 0 -4px 20px;
    height: 90px;
    max-width: 65px;
    position: relative;
    z-index: 1
}

.Card__cover img {
    height: 100%;
    width: 100%
}

.Card__body {
    padding: 20px
}

.Card--loot .Card__body {
    padding-top: 30px
}

.Card__head {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row
}

.Card__headings {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.Card__search {
    font-size: 24px;
    margin-right: -5px
}

.Card__search:hover .icon {
    fill: #2f82fb
}

.Card__skin-exterior {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
    margin: 10px 0
}

.Card__skin-exterior-abbr {
    background: #dd301c;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    padding: 4px 8px
}

.Card__skin-exterior-type {
    color: rgba(0,0,0,0.87);
    font-weight: 700;
    margin: 0 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.Card__skin-exterior-type[data-value]:after {
    content: " (" attr(data-value) ")"
}

.Card__skin-exterior-value {
    height: 9px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
    -ms-flex-align: stretch;
    background-color: #29b474;
    background-image: -webkit-linear-gradient(left, #29b474 7%,#1b995f 7%,#1b995f 15%,#29b474 15%,#ffb400 15%,#ffb400 37%,#dd301c 37%,#dd301c 44%,#c91800 44%);
    background-image: linear-gradient(to right,#29b474 7%,#1b995f 7%,#1b995f 15%,#29b474 15%,#ffb400 15%,#ffb400 37%,#dd301c 37%,#dd301c 44%,#c91800 44%)
}

.Card__skin-exterior-value span {
    position: relative
}

.Card__skin-exterior-value span:after {
    color: rgba(0,0,0,0.28);
    content: "\25b2";
    font-size: 16px;
    position: absolute;
    top: 100%;
    right: -8px
}

.Card__skin-exterior-value:after {
    background: rgba(255,255,255,0.7);
    content: "";
    display: block;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.Card__title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: rgba(0,0,0,0.87);
    display: -webkit-box;
    font-weight: 700;
    line-height: 20px;
    max-height: 4.5em;
    overflow: hidden
}

.Card__description {
    color: rgba(0,0,0,0.87)
}

.Card--loot .Card__description {
    color: rgba(0,0,0,0.54);
    line-height: 20px
}

.Card__picture--loot {
    background: #fff;
    overflow: hidden;
    padding: 0
}

.Card__loot-picture {
    max-height: 100%;
    opacity: 0.3;
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s
}

.Card__base:hover .Card__loot-picture {
    opacity: 1
}

.Card__footer {
    bottom: 20px;
    left: 0;
    padding-left: inherit;
    padding-right: inherit;
    position: absolute;
    width: 100%
}

.Card__price {
    color: rgba(0,0,0,0.28);
    font-size: 11px;
    text-transform: uppercase
}

.Card__loot-points {
    color: rgba(0,0,0,0.87);
    font-size: 18px;
    font-weight: 700;
    line-height: 25px
}

.Card__loot-points:before {
    background: #29b474;
    border-radius: 50%;
    display: inline-block;
    content: "LP";
    color: #fff;
    font-size: 12px;
    text-align: center;
    vertical-align: top;
    margin-right: 6px;
    height: 24px;
    width: 24px
}

.Card__price-cost {
    color: rgba(0,0,0,0.87);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px
}

.Card__price-cost sup {
    font-size: 14px;
    font-weight: 500;
    left: 4px;
    line-height: 19px;
    top: -3px
}

.Card__release-date {
    color: rgba(0,0,0,0.28);
    font-size: 12px;
    padding: 0.3em 0
}

.Card__ribbon {
    position: absolute;
    top: -2px;
    left: -2px;
    height: 70px;
    width: 70px;
    overflow: hidden;
    z-index: 1
}

.Card__ribbon span {
    background: #e14400;
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    position: absolute;
    right: -29px;
    text-align: center;
    text-transform: uppercase;
    top: 18px;
    width: 140px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.Card__sticker {
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 38px;
    width: 38px;
    background: #dd301c;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-weight: 500;
    flex-direction: column;
    justify-content: center;
    line-height: 0.9em;
    text-align: center
}

.Card__sticker span {
    font-size: 12px
}

.Card__sticker .small {
    font-size: 10px
}

.Card__discount {
    display: flex;
    font-size: 14px
}

.Card__discount .old-price {
    color: rgba(0,0,0,0.28);
    padding-right: 10px;
    position: relative
}

.Card__discount .old-price sup {
    left: 3px;
    top: -0.2em
}

.Card__discount .old-price:before {
    position: absolute;
    top: 50%;
    right: 6px;
    left: 0;
    background: rgba(0,0,0,0.28);
    content: "";
    height: 1px
}

.Card__discount .percent {
    color: #f05f00;
    font-weight: 700;
    padding-left: 10px;
    position: relative
}

.Card__discount .percent:before {
    position: absolute;
    top: 1px;
    left: 0;
    background: rgba(0,0,0,0.09);
    content: "";
    height: 12px;
    width: 1px
}

.Card__loader {
    width: 100%;
    height: 10px;
    margin-bottom: 15px
}

.Card__loader:nth-of-type(1) {
    width: 95%
}

.Card__loader:nth-of-type(1):after {
    animation-name: card-loader-first-line
}

.Card__loader:nth-of-type(2) {
    width: 80%
}

.Card__loader:nth-of-type(2):after {
    animation-name: card-loader-second-line
}

.Card__loader:nth-of-type(3) {
    width: 40%
}

.Card__loader:nth-of-type(3):after {
    animation-name: card-loader-third-line
}

.Card__footer .Card__loader:first-of-type {
    width: 25%
}

.Card__footer .Card__loader:first-of-type:after {
    animation-name: card-loader-fourth-line
}

@-webkit-keyframes fadeThreeItemsFirst {
    0% {
        opacity: 1
    }

    33.333% {
        opacity: 0
    }

    66.666% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeThreeItemsFirst {
    0% {
        opacity: 1
    }

    33.333% {
        opacity: 0
    }

    66.666% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeThreeItemsFirst {
    0% {
        opacity: 1
    }

    33.333% {
        opacity: 0
    }

    66.666% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeThreeItemsSecond {
    0% {
        opacity: 0
    }

    33.333% {
        opacity: 1
    }

    66.666% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes fadeThreeItemsSecond {
    0% {
        opacity: 0
    }

    33.333% {
        opacity: 1
    }

    66.666% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeThreeItemsSecond {
    0% {
        opacity: 0
    }

    33.333% {
        opacity: 1
    }

    66.666% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes fadeThreeItemsThird {
    0% {
        opacity: 0
    }

    33.333% {
        opacity: 0
    }

    66.666% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes fadeThreeItemsThird {
    0% {
        opacity: 0
    }

    33.333% {
        opacity: 0
    }

    66.666% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeThreeItemsThird {
    0% {
        opacity: 0
    }

    33.333% {
        opacity: 0
    }

    66.666% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes fadeTwoItemsFirst {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeTwoItemsFirst {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeTwoItemsFirst {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeTwoItemsSecond {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes fadeTwoItemsSecond {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeTwoItemsSecond {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes card-loader-first-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.8)
    }

    70% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@-moz-keyframes card-loader-first-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.8)
    }

    70% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@keyframes card-loader-first-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.8)
    }

    70% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@-webkit-keyframes card-loader-second-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.7)
    }

    80% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@-moz-keyframes card-loader-second-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.7)
    }

    80% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@keyframes card-loader-second-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.7)
    }

    80% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@-webkit-keyframes card-loader-third-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.6)
    }

    90% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@-moz-keyframes card-loader-third-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.6)
    }

    90% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@keyframes card-loader-third-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.6)
    }

    90% {
        transform: scaleX(1)
    }

    100% {
        transform: scaleX(1)
    }
}

@-webkit-keyframes card-loader-fourth-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.5)
    }

    100% {
        transform: scaleX(1)
    }
}

@-moz-keyframes card-loader-fourth-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.5)
    }

    100% {
        transform: scaleX(1)
    }
}

@keyframes card-loader-fourth-line {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(0.5)
    }

    100% {
        transform: scaleX(1)
    }
}

.Card--small {
    min-height: auto;
    padding: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row
}

.Card--small.Card--skin .Card__picture {
    background: transparent
}

.Card--small .Card__skin-exterior {
    margin: 0;
    position: absolute;
    bottom: -20px;
    left: -125px
}

.Card--small .Card__skin-exterior-abbr {
    font-size: 12px;
    padding: 3px 6px
}

.Card--small .Card__skin-exterior-type {
    color: rgba(0,0,0,0.54);
    font-size: 12px;
    font-weight: 500
}

.Card--small .Card__skin-exterior-type[data-value]:after {
    content: attr(data-value)
}

.Card--small .Card__skin-exterior-type span {
    display: none
}

.Card--small .Card__skin-exterior-value {
    display: none
}

.Card--small .Card__stickers {
    display: none
}

.Card--small .Card__picture {
    padding: 0 15px 0 0
}

.Card--small .Card__media {
    height: 90px;
    width: 105px
}

.Card--small .Card__picture--gallery {
    display: none
}

.Card--small .Card__cover {
    border: none;
    margin: 0 15px 0 0;
    max-height: none;
    max-width: none;
    text-align: center;
    height: 90px;
    width: 90px
}

.Card--small .Card__cover img {
    vertical-align: middle
}

.Card--small .Card__body {
    padding: 0;
    position: relative;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column
}

.Card--small .Card__title {
    -webkit-line-clamp: 2;
    max-height: 2.8em
}

.Card--small.Card--skin .Card__description {
    font-size: 12px
}

.Card--small .Card__thumbnail {
    height: 96px;
    width: 96px;
    margin-right: 10px
}

.Card--small .Card__image {
    height: 90px;
    width: 90px
}

.Card--small .Card__footer {
    bottom: 0;
    left: auto
}

.popover {
    display: inline-block;
    position: relative;
    -webkit-transform: translate3d(0, 0, 0)
}

.popover[data-toggle='false'] .popover-content {
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    visibility: hidden
}

.popover[data-toggle='true'] {
    z-index: 1
}

.popover[data-toggle='true'] .popover-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s
}

.popover-content {
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 16px 40px 0 rgba(4,4,4,0.13);
    margin-top: 16px;
    outline: 0;
    padding: 10px 0;
    position: absolute;
    text-align: left;
    z-index: 1;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-transition: -webkit-transform .2s,opacity .2s,.2s visibility .2s;
    -moz-transition: -moz-transform .2s,opacity .2s,.2s visibility .2s;
    transition: transform .2s,opacity .2s,.2s visibility .2s
}

.popover-content .triangle {
    background: inherit;
    border-left: inherit;
    border-radius: 5px 0 0;
    border-top: inherit;
    height: 16px;
    width: 16px;
    content: '';
    display: block;
    left: 50%;
    margin-left: -8px;
    position: absolute;
    top: -8px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.popover[data-direction="top"] .popover-content {
    bottom: 100%;
    margin-bottom: 16px;
    margin-top: 0;
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    transform-origin: bottom
}

.popover[data-direction="top"] .popover-content .triangle {
    bottom: -8px;
    top: auto;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.popover[data-direction="right"] .popover-content {
    left: 100%;
    margin-left: 16px;
    margin-top: 0;
    top: 0;
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left
}

.popover[data-direction="right"] .popover-content .triangle {
    left: 0;
    margin-top: -8px;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.popover[data-direction="left"] .popover-content {
    margin-right: 16px;
    margin-top: 0;
    right: 100%;
    top: 0;
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right
}

.popover[data-direction="left"] .popover-content .triangle {
    left: auto;
    margin-top: -8px;
    right: -8px;
    top: 50%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg)
}

.popover-title {
    color: rgba(0,0,0,0.54);
    font-size: 12px;
    font-weight: 400;
    padding: 5px 20px;
    text-transform: uppercase
}

.popover-title>.count {
    background: #2f82fb;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    line-height: 15px;
    margin-left: 10px;
    margin-top: -3px;
    padding: 0 5px;
    position: relative;
    vertical-align: middle
}

.popover-title>.count.arrow {
    margin-left: 15px;
    padding-left: 2px;
    z-index: 1
}

.popover-title>.count.arrow::before {
    background: inherit;
    position: absolute;
    top: 2px;
    left: -5px;
    height: 12px;
    width: 12px;
    border-radius: 2px;
    content: '';
    font-size: 12px;
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.popover-text {
    padding: 0 20px
}

.popover-options .option {
    color: rgba(0,0,0,0.87);
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
    position: relative;
    text-align: left;
    white-space: nowrap;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: color .2s,background .2s;
    -moz-transition: color .2s,background .2s;
    transition: color .2s,background .2s
}

.popover-options .option:hover {
    background: rgba(0,0,0,0.09)
}

.popover-form {
    padding: 10px 20px
}

.popover-form .select {
    margin: 10px 0
}

.topbar {
    display: block;
    min-width: 320px;
    width: 100%;
    will-change: transform;
    z-index: 999;
    -webkit-transition: -webkit-transform .2s;
    -moz-transition: -moz-transform .2s;
    transition: transform .2s
}

.topbar-mask {
    background: rgba(48,48,48,0.9);
    content: '';
    opacity: 0;
    visibility: hidden;
    z-index: 990;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: opacity .2s,.2s visibility .2s;
    -moz-transition: opacity .2s,.2s visibility .2s;
    transition: opacity .2s,.2s visibility .2s
}

@media screen and (max-width: 1229px) {
    .topbar-mask[data-breakpoint="mobile"][data-show="true"] {
        opacity:1;
        visibility: visible;
        -webkit-transition: opacity .2s;
        -moz-transition: opacity .2s;
        transition: opacity .2s
    }
}

.topbar-mask[data-breakpoint="all"][data-show="true"] {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

@media screen and (min-width: 1230px) {
    .topbar-mask[data-breakpoint="desktop"][data-show="true"] {
        opacity:1;
        visibility: visible;
        -webkit-transition: opacity .2s;
        -moz-transition: opacity .2s;
        transition: opacity .2s
    }
}

.topbar-fixed {
    position: fixed;
    top: 0;
    left: 0
}

.topbar-fixed .topbar-mask {
    position: absolute;
    top: 0;
    left: 0
}

.topbar:not(.topbar-fixed) {
    position: relative
}

.topbar-component {
    margin-top: 70px
}

@media screen and (max-width: 1229px) {
    .topbar-component {
        margin-top:60px
    }
}

.topbar-container {
    background: #181818;
    height: 70px;
    margin: 0 auto;
    width: 100%;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 1229px) {
    .topbar-container {
        height:60px;
        display: block
    }
}

.topbar-cell {
    display: block;
    float: left;
    height: inherit;
    width: auto;
    margin: 0
}

.topbar-cell:last-child {
    float: right
}

.topbar-cell-hamburger {
    display: none;
    width: 55px
}

@media screen and (max-width: 1229px) {
    .topbar-cell-hamburger {
        display:table-cell
    }
}

.topbar-cell-hamburger .topbar-btn {
    display: block;
    line-height: normal;
    position: relative;
    width: 100%
}

.topbar-cell-hamburger .topbar-btn .icon {
    font-size: 29px;
    vertical-align: initial
}

.topbar-cell-hamburger .topbar-btn[data-count]::after {
    box-shadow: 0 0 0 2px #181818;
    position: absolute;
    top: 20%;
    left: 30px
}

.topbar-cell-logo {
    padding: 0 22px
}

.topbar-cell-logo img {
    height: 23px;
    vertical-align: middle;
    width: 82px
}

.topbar-cell-logo span.logo_label {
    color: #fff;
    font-size: 19px;
    font-weight: 300;
    height: 15px;
    vertical-align: middle;
    width: 30px
}

.topbar-cell-logo span.logo_label::before {
    content: '\00a0\00a0\007C\00a0\00a0';
    display: inline-block;
    font-size: 18px;
    margin-bottom: 3px;
    vertical-align: middle
}

@media screen and (max-width: 1229px) {
    .topbar-cell-logo {
        padding-left:0
    }

    .topbar-cell-logo img {
        height: 21px;
        width: 71px
    }
}

.topbar-cell-logo>a,.topbar-cell-logo>h1 {
    display: inline-block;
    font-size: 0;
    line-height: normal;
    vertical-align: middle;
    white-space: nowrap
}

.topbar-cell-logo:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.topbar-cell-browse {
    margin-right: auto;
    white-space: nowrap
}

.topbar-cell-browse .topbar-btn {
    margin-right: 20px
}

@media screen and (max-width: 1229px) {
    .topbar-cell-browse {
        display:none
    }
}

.topbar-cell-search {
    padding-top: 5px;
    width: 100%
}

.topbar-cell-search::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (max-width: 1229px) {
    .topbar-cell-search {
        display:none
    }
}

.topbar-cell-search .topbar-search-form {
    float: left;
    width: 100%;
    max-width: 520px
}

.topbar-cell-search .topbar-search-form input {
    border: none;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    float: left;
    height: 40px;
    line-height: 40px;
    width: -webkit-calc(100% - 45px);
    width: calc(100% - 45px)
}

.topbar-cell-search .topbar-search-form .submit {
    background: #2f82fb;
    border: none;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    cursor: pointer;
    display: block;
    float: left;
    height: 40px;
    margin: 10px 0;
    width: 45px;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.topbar-cell-search .topbar-search-form .submit:active {
    opacity: 0.8
}

.topbar-cell-search .topbar-search-form .submit .icon {
    fill: #fff;
    font-size: 24px
}

.topbar-btn {
    background: none;
    border: none;
    color: #fff;
    fill: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    height: inherit;
    line-height: 70px;
    padding: 0 12px;
    vertical-align: top;
    -webkit-transition: opacity .2s,color .2s;
    -moz-transition: opacity .2s,color .2s;
    transition: opacity .2s,color .2s;
    -webkit-tap-highlight-color: transparent
}

.topbar-btn:hover {
    color: rgba(255,255,255,0.7);
    fill: rgba(255,255,255,0.7);
    cursor: pointer
}

.topbar-btn.borders {
    border-left: 1px solid #2b2b2b;
    border-right: 1px solid #2b2b2b;
    padding: 0 18px
}

@media screen and (max-width: 1229px) {
    .topbar-btn {
        line-height:60px
    }
}

.topbar-btn .icon {
    font-size: 24px
}

@media screen and (min-width: 1230px) {
    .topbar-btn .icon {
        fill:inherit
    }
}

.topbar-btn .label {
    margin-left: 20px;
    white-space: nowrap
}

.topbar-btn:focus {
    outline: none
}

.topbar-btn:active {
    opacity: 0.5
}

.topbar-btn[data-count]::after {
    box-shadow: 0 0 0 2px #181818
}

.topbar-toolbar {
    float: right;
    height: inherit;
    white-space: nowrap
}

.topbar-widgets {
    text-align: right
}

@media screen and (max-width: 1229px) {
    .topbar-widgets {
        position:absolute;
        top: 0;
        left: -260px;
        background: #fff;
        height: 100vh;
        max-width: 260px;
        overflow: hidden;
        width: 100%
    }
}

.topbar-widget {
    position: absolute;
    top: 100%
}

@media screen and (max-width: 1229px) {
    .topbar-widget {
        height:100%;
        left: 0 !important;
        max-height: 100%;
        opacity: 0;
        overflow: auto;
        position: absolute;
        right: 0 !important;
        top: 0;
        visibility: hidden;
        width: 100% !important;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-transition: opacity .2s,-webkit-transform 1s,.2s visibility .2s;
        -moz-transition: opacity .2s,-moz-transform 1s,.2s visibility .2s;
        transition: opacity .2s,transform 1s,.2s visibility .2s;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    .topbar-widget.mb-widget-opened {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        -webkit-transition: opacity 1s;
        -moz-transition: opacity 1s;
        transition: opacity 1s
    }
}

.topbar-widget .popover {
    display: block;
    top: -25px;
    width: inherit
}

@media screen and (max-width: 1229px) {
    .topbar-widget .popover {
        top:0;
        height: 100%;
        width: 100%
    }
}

.topbar-widget .popover .popover-content {
    width: inherit;
    -webkit-transform-origin: 100px 0%;
    -moz-transform-origin: 100px 0%;
    -ms-transform-origin: 100px 0%;
    -o-transform-origin: 100px 0%;
    transform-origin: 100px 0%
}

@media screen and (max-width: 1229px) {
    .topbar-widget .popover .popover-content {
        background:transparent;
        border: none;
        box-shadow: none;
        height: 100%;
        margin-top: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        opacity: 1;
        padding: 0;
        position: relative;
        visibility: visible
    }
}

@media screen and (max-width: 1229px) and (max-width: 1229px) {
    .topbar-widget .popover .popover-content .popover-options {
        padding:0
    }

    .topbar-widget .popover .popover-content .popover-options .option .icon {
        fill: rgba(0,0,0,0.28)
    }

    .topbar-widget .popover .popover-content .popover-options .option:hover {
        background: initial;
        color: initial
    }

    .topbar-widget .popover .popover-content .popover-options .option:active {
        background: rgba(0,0,0,0.09)
    }

    .topbar-widget .popover .popover-content .popover-options .option.active {
        color: #2f82fb
    }
}

@media screen and (max-width: 1229px) {
    .topbar-widget .popover .popover-content span.triangle {
        display:none
    }
}

.topbar-widget .popover .popover-content .mb-widget-back {
    background: rgba(0,0,0,0.09);
    border-bottom: 1px solid #e0e0e0;
    color: rgba(0,0,0,0.87);
    display: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 20px 20px 18px;
    text-align: left;
    width: 100%
}

.topbar-widget .popover .popover-content .mb-widget-back .icon {
    margin: -3px 2px 0 -8px;
    font-size: 24px;
    fill: rgba(0,0,0,0.54)
}

@media screen and (max-width: 1229px) {
    .topbar-widget .popover .popover-content .mb-widget-back {
        display:block
    }
}

.topbar-widget-footer {
    background: #f5f5f5;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    padding: 14px 20px
}

@media screen and (max-width: 1229px) {
    .topbar-widget-footer {
        background:#fff;
        height: 60px;
        line-height: 59px;
        padding: 0 20px
    }
}

.topbar-widget-footer a,.topbar-widget-footer button {
    color: rgba(0,0,0,0.87);
    font-size: 12px
}

.topbar-widget-footer a:hover,.topbar-widget-footer button:hover {
    color: #2f82fb
}

.topbar-widget-footer .icon {
    fill: rgba(0,0,0,0.54);
    font-size: 24px
}

.topbar-widget .expander {
    border-bottom: 1px solid rgba(0,0,0,0.12)
}

.topbar .popover-title {
    text-align: left
}

@media screen and (max-width: 1229px) {
    .topbar .mobile-hide {
        display:none !important
    }
}

@media screen and (min-width: 1220px) {
    .topbar .desktop-hide {
        display:none !important
    }
}

@media screen and (max-width: 1229px) {
    .topbar[data-mobile-menu-open='true'] {
        -webkit-transform:translatex(260px);
        -moz-transform: translatex(260px);
        -ms-transform: translatex(260px);
        -o-transform: translatex(260px);
        transform: translatex(260px)
    }

    .topbar[data-mobile-menu-open='true'] .topbar-widgets {
        box-shadow: 0 2px 35px 0 rgba(0,0,0,0.17)
    }
}

@-webkit-keyframes notification {
    0% {
        -webkit-transform: scale(0);
        opacity: 0
    }

    50% {
        -webkit-transform: scale(1.4);
        opacity: 1
    }

    100% {
        -webkit-transform: none;
        opacity: 1
    }
}

@-moz-keyframes notification {
    0% {
        -moz-transform: scale(0);
        opacity: 0
    }

    50% {
        -moz-transform: scale(1.4);
        opacity: 1
    }

    100% {
        -moz-transform: none;
        opacity: 1
    }
}

@keyframes notification {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }

    50% {
        -webkit-transform: scale(1.4);
        -moz-transform: scale(1.4);
        -ms-transform: scale(1.4);
        -o-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 1
    }

    100% {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        opacity: 1
    }
}

.topbar-basket {
    background: #f5f5f5;
    height: 100vh;
    width: 320px;
    z-index: 991;
    position: absolute;
    top: 0;
    right: -320px
}

.topbar-basket-close.btn-icon,.topbar-basket-close.modal-close {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    color: rgba(0,0,0,0.87);
    font-size: 11px;
    height: 70px;
    padding: 0 20px;
    text-align: left;
    text-transform: uppercase;
    width: 100%
}

@media screen and (max-width: 1229px) {
    .topbar-basket-close.btn-icon,.topbar-basket-close.modal-close {
        height:60px
    }
}

.topbar-basket-close.btn-icon:after,.topbar-basket-close.modal-close:after {
    margin-left: 10px
}

.topbar-basket-close.btn-icon .icon,.topbar-basket-close.modal-close .icon {
    font-size: 24px;
    fill: rgba(0,0,0,0.54);
    margin: -2px 10px 0 0
}

.topbar-basket-body {
    height: 100%;
    overflow: hidden
}

.topbar-basket-items {
    overflow: auto;
    padding: 20px 20px 0;
    max-height: -webkit-calc(100% - 132px);
    max-height: calc(100% - 132px)
}

@media screen and (max-width: 1229px) {
    .topbar-basket-items {
        max-height:-webkit-calc(100% - 122px);
        max-height: calc(100% - 122px)
    }
}

@media screen and (max-width: 1229px) {
    .topbar-basket-items.uiwebview {
        max-height:-webkit-calc(100% - 182px);
        max-height: calc(100% - 182px)
    }
}

.topbar-basket-items .card.card-small .card-info .card-price {
    margin-top: 0
}

.topbar-basket-items .card.card-small .card-info .card-items-num {
    color: rgba(0,0,0,0.54);
    margin-top: 13px
}

.topbar-basket-items .card.card-small .card-footer {
    clear: both;
    display: block
}

.topbar-basket-items .card.card-small .card-footer-block {
    font-size: 12px;
    font-weight: 400;
    min-height: 40px;
    padding: 0 15px;
    text-align: left;
    width: 100%
}

.topbar-basket-items .card.card-small .card-footer-block:hover .icon {
    fill: #2f82fb
}

.topbar-basket-items .card.card-small .card-footer-block .icon {
    display: inline-block;
    font-size: 18px;
    margin-top: -1px;
    vertical-align: middle
}

.topbar-basket-item {
    max-height: 270px;
    overflow: hidden
}

.topbar-basket-item[data-deleted="true"] {
    max-height: 0;
    -webkit-transition: max-height .4s;
    -moz-transition: max-height .4s;
    transition: max-height .4s
}

.topbar-basket-item[data-deleted="true"] .card {
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s
}

.topbar-basket-footer {
    box-shadow: 0 -18px 20px 0 #f2f2f2;
    height: 62px;
    padding: 0 20px 20px;
    position: relative;
    z-index: 1
}

.topbar-basket-empty {
    font-size: 14px;
    overflow: auto;
    padding: 20px;
    text-align: center
}

@media screen and (max-width: 1229px) {
    .topbar-basket-empty {
        max-height:-webkit-calc(100% - 60px);
        max-height: calc(100% - 60px)
    }
}

.topbar-basket-empty .icon {
    font-size: 100px;
    fill: rgba(0,0,0,0.54);
    margin-bottom: 10px
}

.topbar[data-basket-open='true'] {
    box-shadow: 0 2px 35px 0 rgba(0,0,0,0.17)
}

.topbar[data-basket-open='true'],.topbar[data-basket-open='true']+.topbar-search>* {
    -webkit-transform: translatex(-320px);
    -moz-transform: translatex(-320px);
    -ms-transform: translatex(-320px);
    -o-transform: translatex(-320px);
    transform: translatex(-320px);
    -webkit-transition: -webkit-transform .2s;
    -moz-transition: -moz-transform .2s;
    transition: transform .2s
}

.topbar+.topbar-search .topbar-search-layout,.topbar+.topbar-search .topbar-search-container {
    -webkit-transition: -webkit-transform .2s;
    -moz-transition: -moz-transform .2s;
    transition: transform .2s
}

.topbar-shield {
    display: block;
    margin: -3px 0;
    position: relative
}

.topbar-shield:before {
    background: #f5f5f5;
    height: 13px;
    width: 13px;
    border: 3px solid #f5f5f5;
    border-radius: 50%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -4px
}

.topbar-shield[data-indicator="off"]:before {
    background: #dd301c;
    -webkit-animation: shield-blinker 1.5s linear infinite;
    -moz-animation: shield-blinker 1.5s linear infinite;
    animation: shield-blinker 1.5s linear infinite
}

.topbar-shield[data-indicator="on"]:before {
    background: #29b474
}

.topbar-shield img {
    display: block
}

@media screen and (max-width: 1229px) {
    .topbar-shield {
        margin:17px 0
    }
}

@-webkit-keyframes shield-blinker {
    50% {
        background: #f5f5f5
    }
}

@-moz-keyframes shield-blinker {
    50% {
        background: #f5f5f5
    }
}

@keyframes shield-blinker {
    50% {
        background: #f5f5f5
    }
}

@media screen and (max-width: 1229px) {
    .topbar-toolbar-platforms {
        display:none
    }
}

.topbar-toolbar-notifications {
    padding: 0 8px;
    position: relative
}

@media screen and (max-width: 1229px) {
    .topbar-toolbar-notifications {
        display:none
    }
}

.topbar-toolbar-notifications .icon {
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top
}

.topbar-toolbar-notifications[data-count]::after {
    position: absolute;
    top: 27%;
    left: 20px
}

.topbar-toolbar-notifications[data-count] .icon {
    -webkit-animation: bell 1s ease;
    -moz-animation: bell 1s ease;
    animation: bell 1s ease;
    -webkit-animation-iteration-count: 3;
    -moz-animation-iteration-count: 3;
    animation-iteration-count: 3
}

@-webkit-keyframes bell {
    0% {
        -webkit-transform: rotate(0deg)
    }

    16% {
        -webkit-transform: rotate(15deg)
    }

    36% {
        -webkit-transform: rotate(-15deg)
    }

    50% {
        -webkit-transform: rotate(10deg)
    }

    66% {
        -webkit-transform: rotate(-10deg)
    }

    86% {
        -webkit-transform: rotate(5deg)
    }

    100% {
        -webkit-transform: rotate(0deg)
    }
}

@-moz-keyframes bell {
    0% {
        -moz-transform: rotate(0deg)
    }

    16% {
        -moz-transform: rotate(15deg)
    }

    36% {
        -moz-transform: rotate(-15deg)
    }

    50% {
        -moz-transform: rotate(10deg)
    }

    66% {
        -moz-transform: rotate(-10deg)
    }

    86% {
        -moz-transform: rotate(5deg)
    }

    100% {
        -moz-transform: rotate(0deg)
    }
}

@keyframes bell {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    16% {
        -webkit-transform: rotate(15deg);
        -moz-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        -o-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    36% {
        -webkit-transform: rotate(-15deg);
        -moz-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        -o-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    50% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        transform: rotate(10deg)
    }

    66% {
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    86% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -o-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.topbar-toolbar-notifications[data-count].animate .icon {
    -webkit-animation: 1s bell infinite alternate ease;
    -moz-animation: 1s bell infinite alternate ease;
    animation: 1s bell infinite alternate ease
}

.topbar-toolbar-wallet {
    padding: 0 10px
}

@media screen and (max-width: 1229px) {
    .topbar-toolbar-wallet {
        display:none
    }
}

.topbar-toolbar-wallet .icon {
    font-size: 25px
}

.topbar-toolbar-mymarketplace {
    display: inline-flex;
    border-left: 1px solid #2b2b2b;
    border-right: 1px solid #2b2b2b;
    margin-left: 13px;
    padding: 0 20px
}

@media screen and (max-width: 1229px) {
    .topbar-toolbar-mymarketplace {
        display:none
    }
}

.topbar-toolbar-mymarketplace .label {
    margin-left: 7px
}

.topbar-toolbar-search {
    display: none
}

@media screen and (max-width: 1229px) {
    .topbar-toolbar-search {
        display:inline-block
    }
}

.topbar-toolbar-search .icon {
    font-size: 24px
}

.topbar-toolbar-basket {
    padding: 0 18px;
    position: relative
}

.topbar-toolbar-basket:after {
    position: absolute;
    top: 27%;
    left: 30px
}

@media screen and (max-width: 1229px) {
    .topbar-toolbar-basket {
        padding:0 18px 0 5px
    }

    .topbar-toolbar-basket:after {
        left: 20px
    }

    .topbar-toolbar-basket .icon {
        font-size: 22px
    }
}

.topbar-widget-mymarketplace {
    width: 280px
}

.topbar-widget-mymarketplace .popover .popover-content {
    background: #fff;
    padding: 0
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .popover .popover-content {
        background:#f5f5f5;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate3d(0, 0, 0)
    }
}

.topbar-widget-mymarketplace .panel-mymarketplace-items.hide-on-desktop {
    display: none
}

.topbar-widget-mymarketplace .panel-mymarketplace-items .popover-options>li>a {
    background: #f5f5f5;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    height: 48px;
    line-height: 48px
}

.topbar-widget-mymarketplace .panel-mymarketplace-items .popover-options>li:last-child a {
    border-bottom: 0
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .panel-mymarketplace-items {
        border-top:none
    }

    .topbar-widget-mymarketplace .panel-mymarketplace-items.hide-on-desktop {
        display: block
    }

    .topbar-widget-mymarketplace .panel-mymarketplace-items.categories-panel .popover-options>li>a {
        background: #fff
    }
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .popover .popover-content .popover-options {
        text-align:center
    }

    .topbar-widget-mymarketplace .popover .popover-content .popover-options:not(:last-child):after {
        background: rgba(0,0,0,0.12);
        height: 1px
    }
}

.topbar-widget-mymarketplace .popover .popover-content .popover-options .option>.icon {
    position: absolute;
    top: 10px;
    right: 5px
}

.topbar-widget-mymarketplace .popover .popover-content .popover-options .option:hover .icon {
    fill: #2f82fb
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .popover .popover-content .popover-options .option::after {
        clear:both;
        content: "";
        display: block
    }

    .topbar-widget-mymarketplace .popover .popover-content .popover-options .option.active {
        color: #2f82fb
    }

    .topbar-widget-mymarketplace .popover .popover-content .popover-options .option.active .icon:not(.icon-arrow_right) {
        fill: #2f82fb
    }
}

.topbar-widget-mymarketplace .popover .popover-content .popover-options .option .option-icon {
    display: inline-block;
    margin: 0 10px 0 -5px;
    text-align: center
}

.topbar-widget-mymarketplace .popover .popover-content .popover-options .option.topbar-counter:after {
    display: inline-block;
    margin: -2px 0 0 10px;
    vertical-align: middle
}

.topbar-widget-mymarketplace .popover .popover-content .popover-options .option .icon {
    fill: rgba(0,0,0,0.54);
    font-size: 24px
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .topbar-widget-footer {
        background:transparent
    }
}

.topbar-widget-mymarketplace .panel-mymarketplace-account {
    display: none;
    font-size: 14px;
    padding: 20px;
    position: relative
}

.topbar-widget-mymarketplace .panel-mymarketplace-account::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .panel-mymarketplace-account {
        background:#212121;
        display: flex;
        padding: 20px
    }
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .user-info {
    float: left
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .user-pic {
    float: left;
    margin-right: 10px;
    margin-top: -2px
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .user-pic .no-photo {
    background: #fff
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .panel-mymarketplace-account .user-pic {
        margin-right:17px;
        margin-top: 0
    }
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .account-id {
    color: #2f82fb;
    display: block;
    font-weight: 500;
    line-height: 1.2em;
    margin: 0 0 6px;
    overflow: hidden;
    text-overflow: ellipsis
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .account-id .label {
    color: rgba(0,0,0,0.54);
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .account-id .email {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .panel-mymarketplace-account .account-id .email {
        max-width:160px
    }
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .account-id .email:after {
    content: '\00a0\00BB'
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .wallet-balance {
    color: #29b474;
    display: block;
    font-weight: 500;
    margin-top: 10px
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .wallet-balance .icon {
    font-size: 18px;
    margin: -3px 5px 0 0
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .wallet-balance:after {
    content: '\00a0\00BB'
}

.topbar-widget-mymarketplace .panel-mymarketplace-account .account-settings {
    display: block
}

.topbar-widget-mymarketplace .panel-mymarketplace-login {
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding: 17px;
    position: relative;
    z-index: 1
}

@media screen and (max-width: 1229px) {
    .topbar-widget-mymarketplace .panel-mymarketplace-login {
        background:#fff;
        padding: 20px
    }
}

.topbar-widget-mymarketplace .panel-mymarketplace-login a.btn-primary,.topbar-widget-mymarketplace .panel-mymarketplace-login .btn-group a.btn.active,.btn-group .topbar-widget-mymarketplace .panel-mymarketplace-login a.btn.active {
    margin-bottom: 10px
}

.topbar-widget-mymarketplace .panel-mymarketplace-login a.btn-primary:hover,.topbar-widget-mymarketplace .panel-mymarketplace-login .btn-group a.btn.active:hover,.btn-group .topbar-widget-mymarketplace .panel-mymarketplace-login a.btn.active:hover {
    background: #2f82fb
}

.topbar-widget-mymarketplace .panel-mymarketplace-login a.btn-primary:hover.social_googleplus,.topbar-widget-mymarketplace .panel-mymarketplace-login .btn-group a.btn.active:hover.social_googleplus,.btn-group .topbar-widget-mymarketplace .panel-mymarketplace-login a.btn.active:hover.social_googleplus {
    background: #db5040
}

.topbar-widget-mymarketplace .panel-mymarketplace-login a.btn-primary:hover.social_facebook,.topbar-widget-mymarketplace .panel-mymarketplace-login .btn-group a.btn.active:hover.social_facebook,.btn-group .topbar-widget-mymarketplace .panel-mymarketplace-login a.btn.active:hover.social_facebook {
    background: #4266b2
}

.topbar-widget-mymarketplace .panel-mymarketplace-login a.btn-primary:last-child,.topbar-widget-mymarketplace .panel-mymarketplace-login .btn-group a.btn.active:last-child,.btn-group .topbar-widget-mymarketplace .panel-mymarketplace-login a.btn.active:last-child {
    margin-bottom: 0
}

.topbar-widget-mymarketplace .panel-mymarketplace-login .social_googleplus,.topbar-widget-mymarketplace .panel-mymarketplace-login .social_facebook {
    padding: 0 35px;
    position: relative
}

.topbar-widget-mymarketplace .panel-mymarketplace-login .social_googleplus .icon,.topbar-widget-mymarketplace .panel-mymarketplace-login .social_facebook .icon {
    position: absolute;
    top: 0;
    left: 8px
}

.topbar-widget-mymarketplace .panel-mymarketplace-login .social_googleplus {
    background: #db5040
}

.topbar-widget-mymarketplace .panel-mymarketplace-login .social_googleplus .icon {
    left: 11px
}

.topbar-widget-mymarketplace .panel-mymarketplace-login .social_facebook {
    background: #4266b2
}

.topbar-widget-notifications {
    width: 380px
}

.topbar-widget-notifications .popover-title {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 15px
}

.topbar-widget-notifications .mark-all {
    display: block;
    float: right;
    font-size: 25px;
    margin-top: -5px
}

.topbar-widget-notifications .mark-all:hover .icon {
    fill: #006cff
}

.topbar-widget-notifications .mark-all.mark-all-mobile {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 20px 18px
}

@media screen and (min-width: 1230px) {
    .topbar-widget-notifications .popover[data-toggle="true"] .notifications-box {
        max-height:530px
    }

    .topbar-widget-notifications .popover[data-toggle="true"] .notifications-box-empty .icon {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none
    }
}

.topbar-widget-notifications .popover .popover-content {
    max-height: none;
    padding-bottom: 0;
    width: 100%
}

@media screen and (max-width: 1229px) {
    .topbar-widget-notifications .popover .popover-content {
        background:#fff;
        position: relative
    }
}

@media screen and (max-width: 1229px) {
    .topbar-widget-notifications {
        overflow:hidden
    }

    .topbar-widget-notifications .popover-title {
        display: none
    }
}

.topbar-widget-notifications button.mb-panel-back[data-count]::after {
    display: inline-block;
    margin-left: 8px;
    margin-top: -2px;
    vertical-align: middle
}

.topbar-widget-notifications .notifications-box {
    background: #f2f2f2;
    overflow-y: auto;
    width: 100%
}

@media screen and (max-width: 1229px) {
    .topbar-widget-notifications .notifications-box {
        border:none;
        margin-top: 0;
        max-height: -webkit-calc(100vh - 111px);
        max-height: calc(100vh - 111px)
    }
}

@media screen and (min-width: 1230px) {
    .topbar-widget-notifications .notifications-box {
        border-radius:0 0 5px 5px;
        max-height: 0;
        -webkit-transition: .2s max-height .2s;
        -moz-transition: .2s max-height .2s;
        transition: .2s max-height .2s
    }
}

.topbar-widget-notifications .notifications-box-empty {
    background: #f2f2f2;
    border-radius: 0 0 5px 5px;
    padding: 25px 20px;
    text-align: center
}

@media screen and (max-width: 1229px) {
    .topbar-widget-notifications .notifications-box-empty {
        height:-webkit-calc(100vh - 57px);
        height: calc(100vh - 57px)
    }
}

.topbar-widget-notifications .notifications-box-empty .icon {
    font-size: 100px;
    margin-bottom: 8px;
    -webkit-transition: .2s transform .2s cubic-bezier(0.175, 0.885, 0.32, 1.275),.2s opacity .2s;
    -moz-transition: .2s transform .2s cubic-bezier(0.175, 0.885, 0.32, 1.275),.2s opacity .2s;
    transition: .2s transform .2s cubic-bezier(0.175, 0.885, 0.32, 1.275),.2s opacity .2s
}

@media screen and (min-width: 1230px) {
    .topbar-widget-notifications .notifications-box-empty .icon {
        opacity:0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5)
    }
}

.topbar-widget-notifications .notification-item {
    background: #fff;
    border-bottom: 1px solid #d4d4d4;
    color: inherit;
    display: block;
    font-size: 14px;
    line-height: 19px;
    max-height: 200px;
    overflow: hidden;
    padding: 13px 15px 15px 50px;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    transition: background .2s;
    -webkit-animation: pushNotificationMsg .4s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-animation: pushNotificationMsg .4s cubic-bezier(0.39, 0.575, 0.565, 1);
    animation: pushNotificationMsg .4s cubic-bezier(0.39, 0.575, 0.565, 1);
    position: relative
}

.topbar-widget-notifications .notification-item::before {
    background: #e6e6e6;
    position: absolute;
    top: 0;
    left: 22px;
    content: '';
    height: 100%;
    width: 6px
}

.topbar-widget-notifications .notification-item::after {
    background: #a8a8a8;
    position: absolute;
    top: 18px;
    left: 19px;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #fff;
    content: '';
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    transition: background .2s
}

.topbar-widget-notifications .notification-item .notif-date {
    font-size: 12px;
    font-style: italic;
    line-height: 12px;
    margin-top: 10px
}

.topbar-widget-notifications .notification-item:last-child {
    border: none
}

.topbar-widget-notifications .notification-item:hover {
    background: #fafafa
}

.topbar-widget-notifications .notification-item:hover::after {
    box-shadow: 0 0 0 5px #fafafa
}

.topbar-widget-notifications .notification-item.primary::after {
    background: #006cff
}

.topbar-widget-notifications .notification-item.danger::after {
    background: #cb1a1a
}

.topbar-widget-notifications .notification-item.warning::after {
    background: #fa8c19
}

.topbar-widget-notifications .notification-item.success::after {
    background: #65b449
}

.topbar-widget-notifications .notification-item[data-read="true"]::after {
    background: #a8a8a8
}

.topbar-widget-notifications .notification-item[data-read="true"] .notif-date,.topbar-widget-notifications .notification-item[data-read="true"] .notif-text {
    opacity: 0.5;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.topbar-widget-notifications .notification-item[data-read="true"]:hover .notif-date,.topbar-widget-notifications .notification-item[data-read="true"]:hover .notif-text {
    opacity: 1
}

.topbar-widget-notifications .notification-item[data-disabled="true"] {
    cursor: default
}

.topbar-widget-notifications .notif-all {
    background: #f2f2f2;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    border-top: 1px solid #d4d4d4;
    color: #787878;
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 17px 20px
}

@media screen and (max-width: 1229px) {
    .topbar-widget-notifications .without-all-link .notifications-box {
        max-height:-webkit-calc(100vh - 57px);
        max-height: calc(100vh - 57px)
    }
}

@-webkit-keyframes pushNotificationMsg {
    0% {
        max-height: 0;
        opacity: 0;
        -webkit-transform: scale(0.8)
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(0.8)
    }

    80% {
        max-height: 200px
    }

    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@-moz-keyframes pushNotificationMsg {
    0% {
        max-height: 0;
        opacity: 0;
        -moz-transform: scale(0.8)
    }

    50% {
        opacity: 0;
        -moz-transform: scale(0.8)
    }

    80% {
        max-height: 200px
    }

    100% {
        opacity: 1;
        -moz-transform: none
    }
}

@keyframes pushNotificationMsg {
    0% {
        max-height: 0;
        opacity: 0;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8)
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8)
    }

    80% {
        max-height: 200px
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none
    }
}

.topbar-widget-platforms {
    width: 245px
}

.topbar-widget-platforms .popover-content {
    padding: 0
}

.topbar-widget-platforms .popover-content li {
    border-bottom: 1px solid #d4d4d4;
    clear: both;
    color: inherit;
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 52px;
    line-height: 52px;
    padding: 0 20px;
    text-align: left;
    white-space: nowrap;
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    transition: background .2s
}

.topbar-widget-platforms .popover-content li a {
    color: inherit;
    height: inherit
}

.topbar-widget-platforms .popover-content li .logo {
    float: left;
    height: inherit;
    margin-right: 13px;
    text-align: center;
    width: 60px
}

.topbar-widget-platforms .popover-content li .logo:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.topbar-widget-platforms .popover-content li .logo img {
    vertical-align: middle
}

.topbar-widget-platforms .popover-content li:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.topbar-widget-platforms .popover-content li:last-child {
    border: none;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit
}

.topbar-widget-platforms .popover-content li .icon {
    display: block;
    float: right;
    font-size: 24px;
    height: inherit;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s;
    opacity: 0
}

.topbar-widget-platforms .popover-content li:hover {
    background: #fafafa
}

.topbar-widget-platforms .popover-content li:hover .icon {
    opacity: 1
}

.topbar-widget-wallet {
    width: 280px
}

@media screen and (max-width: 1229px) {
    .topbar-widget-wallet .popover-title {
        display:none
    }

    .topbar-widget-wallet .popover .popover-content .mb-panel-back {
        border: none
    }
}

.topbar-widget-wallet .wallet-balance {
    border-bottom: 1px solid rgba(0,0,0,0.12);
    color: rgba(0,0,0,0.54);
    display: block;
    font-size: 11px;
    margin-bottom: 10px;
    padding: 0 0 25px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

@media screen and (max-width: 1229px) {
    .topbar-widget-wallet .wallet-balance {
        background:#fff;
        margin-bottom: 20px
    }
}

.topbar-widget-wallet .wallet-balance .balance {
    color: #29b474;
    font-size: 24px;
    font-weight: 500;
    margin: 8px 0
}

.topbar-widget-wallet .wallet-balance .balance-pending {
    color: rgba(0,0,0,0.87);
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px
}

.topbar-widget-wallet .wallet-balance .balance-pending .icon {
    fill: rgba(0,0,0,0.28);
    font-size: 20px;
    margin: -2px 5px 0 0;
    vertical-align: middle
}

.topbar-widget-wallet .wallet-balance .wallet-icon {
    padding: 23px 0 25px
}

.topbar-widget-wallet .wallet-balance:active {
    opacity: 0.8
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories[data-subcategories="false"] .popover-template {
        -webkit-transition:width 0s .2s;
        -moz-transition: width 0s .2s;
        transition: width 0s .2s
    }
}

@media screen and (max-width: 1229px) {
    .topbar-widget-categories[data-subcategories="false"] .popover-categories {
        opacity:1;
        -webkit-transition: opacity 1s;
        -moz-transition: opacity 1s;
        transition: opacity 1s
    }
}

@media screen and (max-width: 1229px) {
    .topbar-widget-categories[data-subcategories="false"] .popover-subcategories {
        -webkit-transform:translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: opacity .2s,-webkit-transform 1s;
        -moz-transition: opacity .2s,-moz-transform 1s;
        transition: opacity .2s,transform 1s
    }
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories[data-subcategories="false"] .popover-subcategories {
        -webkit-transition:width 0s .2s,max-height 0s .2s;
        -moz-transition: width 0s .2s,max-height 0s .2s;
        transition: width 0s .2s,max-height 0s .2s
    }

    .topbar-widget-categories[data-subcategories="false"] .popover-subcategories .popover-options {
        -webkit-transition: max-height .2s .2s;
        -moz-transition: max-height .2s .2s;
        transition: max-height .2s .2s
    }
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories[data-subcategories="true"] .popover-template {
        width:630px;
        -webkit-transition: width .2s 0s;
        -moz-transition: width .2s 0s;
        transition: width .2s 0s
    }
}

@media screen and (max-width: 1229px) {
    .topbar-widget-categories[data-subcategories="true"] .popover-categories {
        opacity:0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: opacity .2s,-webkit-transform 1s;
        -moz-transition: opacity .2s,-moz-transform 1s;
        transition: opacity .2s,transform 1s
    }
}

@media screen and (max-width: 1229px) {
    .topbar-widget-categories[data-subcategories="true"] .popover-subcategories {
        opacity:1;
        -webkit-transition: opacity 1s;
        -moz-transition: opacity 1s;
        transition: opacity 1s
    }
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories[data-subcategories="true"] .popover-subcategories {
        border-left:1px solid #d4d4d4;
        max-height: 1000px;
        width: 400px;
        -webkit-transition: width .2s 0s,max-height .2s 0s;
        -moz-transition: width .2s 0s,max-height .2s 0s;
        transition: width .2s 0s,max-height .2s 0s
    }
}

.topbar-widget-categories .popover-content {
    padding: 0
}

.topbar-widget-categories .popover-content .triangle {
    background: #fff;
    z-index: 2
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories .popover-template {
        font-size:0;
        overflow: hidden;
        width: 230px;
        -webkit-transition: width .2s;
        -moz-transition: width .2s;
        transition: width .2s
    }
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories .popover-categories {
        display:inline-block;
        font-size: 14px;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        position: relative;
        vertical-align: top;
        width: 230px
    }

    .topbar-widget-categories .popover-categories .popover-options {
        padding-bottom: 10px
    }
}

.topbar-widget-categories .popover-categories .popover-title {
    padding-bottom: 10px
}

.topbar-widget-categories .popover-categories a {
    display: inline-block;
    padding-right: 0;
    vertical-align: middle;
    width: -webkit-calc(100% - 44px);
    width: calc(100% - 44px)
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories .popover-categories a {
        width:100%
    }

    .topbar-widget-categories .popover-categories a.active {
        background: #006cff;
        color: #fff
    }
}

.topbar-widget-categories .popover-categories .btn {
    height: 44px;
    width: 44px;
    border-bottom: 1px solid #d4d4d4;
    border-left: 1px solid #d4d4d4;
    border-radius: 0
}

.topbar-widget-categories .popover-categories .btn .icon {
    display: inline-block;
    font-size: 22px;
    text-align: center
}

@media screen and (max-width: 1229px) {
    .topbar-widget-categories .popover-subcategories {
        opacity:0;
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%
    }

    .topbar-widget-categories .popover-subcategories-panel {
        overflow: auto;
        height: -webkit-calc(100% - 57px);
        height: calc(100% - 57px)
    }
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories .popover-subcategories {
        display:inline-block;
        font-size: 14px;
        max-height: 0;
        vertical-align: top;
        width: 0;
        -webkit-transition: width .2s;
        -moz-transition: width .2s;
        transition: width .2s
    }

    .topbar-widget-categories .popover-subcategories .popover-options {
        max-height: 0;
        overflow: hidden;
        width: 400px
    }

    .topbar-widget-categories .popover-subcategories .popover-options.opened {
        max-height: 1000px;
        overflow: visible
    }
}

.topbar-widget-categories .popover-subcategories .picture {
    display: block;
    font-size: 0;
    line-height: 0
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories .popover-column {
        display:inline-block;
        padding-right: 20px;
        vertical-align: top;
        width: 30%
    }

    .topbar-widget-categories .popover-column:first-child {
        margin-left: 20px
    }
}

.topbar-widget-categories .popover-column a {
    color: #444;
    display: block
}

@media screen and (max-width: 1229px) {
    .topbar-widget-categories .popover-column a {
        border-bottom:1px solid #d4d4d4;
        height: 44px;
        line-height: 44px;
        padding-left: 20px
    }
}

@media screen and (min-width: 1230px) {
    .topbar-widget-categories .popover-column a {
        margin-bottom:15px
    }
}

.topbar-widget-categories .popover-column a:hover {
    color: #006cff
}

.topbar-widget-categories .popover-title {
    color: #787878;
    padding: 20px
}

.topbar-counter:after {
    background: #2f82fb;
    border-radius: 3px;
    color: #fff;
    content: attr(data-count);
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    line-height: 15px;
    padding: 0 5px;
    -webkit-animation: notification .4s ease;
    -moz-animation: notification .4s ease;
    animation: notification .4s ease
}

.fullscreen-search {
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    height: 100%;
    width: 100%;
    -webkit-transition: visibility 0s linear .2s,opacity .2s linear;
    -moz-transition: visibility 0s linear .2s,opacity .2s linear;
    transition: visibility 0s linear .2s,opacity .2s linear;
    position: fixed;
    top: 0;
    left: 0
}

@media screen and (min-width: 1230px) {
    .fullscreen-search {
        background:rgba(48,48,48,0.8)
    }
}

.fullscreen-search[data-search="true"] {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s
}

.fullscreen-search-container {
    background: #fff;
    box-shadow: 0 6px 12.75px 2.25px rgba(0,0,0,0.2);
    position: relative
}

@media screen and (max-width: 1229px) {
    .fullscreen-search-container {
        height:100%;
        width: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-direction: normal;
        box-direction: normal;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -ms-flex-direction: column
    }
}

@media screen and (min-width: 1230px) {
    .fullscreen-search-container {
        top:0;
        left: 126px;
        width: 521px;
        display: inline-block
    }
}

.fullscreen-search-form {
    position: relative;
    background: #fff;
    box-shadow: 0 1px 4.75px 0.25px rgba(0,0,0,0.2);
    padding: 50px 15px 0;
    width: 100%;
    min-height: 170px;
    z-index: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column
}

@media screen and (min-width: 1230px) {
    .fullscreen-search-form {
        padding-top:7px;
        min-height: auto
    }
}

.fullscreen-search-form-fields {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center
}

.fullscreen-search-form .results {
    font-size: 14px;
    height: 0;
    line-height: 24px;
    margin-bottom: 0;
    visibility: hidden
}

@media screen and (min-width: 1230px) {
    .fullscreen-search-form .results {
        margin-bottom:15px
    }
}

.fullscreen-search-form .results a,.fullscreen-search-form .results .btn-link {
    display: none;
    font-weight: 700;
    height: auto;
    line-height: normal;
    padding: 0
}

.fullscreen-search-input {
    background: transparent;
    border: none;
    box-sizing: border-box;
    color: #f05f00;
    display: block;
    line-height: 53px;
    font-size: 40px;
    margin: 0;
    min-width: 0;
    padding: 0;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-tap-highlight-color: transparent
}

.fullscreen-search-input:focus {
    box-shadow: none;
    outline: none
}

.fullscreen-search-input::-ms-clear {
    display: none
}

.fullscreen-search-input::-webkit-input-placeholder {
    color: rgba(0,0,0,0.54)
}

.fullscreen-search-input::-moz-placeholder {
    color: rgba(0,0,0,0.54)
}

.fullscreen-search-input:-moz-placeholder {
    color: rgba(0,0,0,0.54)
}

.fullscreen-search-input:-ms-input-placeholder {
    color: rgba(0,0,0,0.54)
}

.fullscreen-search-submit {
    background: transparent;
    border: none;
    cursor: pointer;
    display: block;
    padding: 0;
    text-align: right;
    height: 40px;
    width: 40px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-tap-highlight-color: transparent
}

.fullscreen-search-submit:active {
    opacity: 0.9
}

.fullscreen-search-submit:focus {
    outline: none
}

.fullscreen-search-submit .icon {
    fill: rgba(0,0,0,0.54);
    font-size: 24px
}

.fullscreen-search-submit .icon:hover {
    fill: #2f82fb
}

.fullscreen-search-close.btn-icon,.fullscreen-search-close.modal-close {
    text-align: center;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    height: 48px;
    width: 48px
}

@media screen and (min-width: 1230px) {
    .fullscreen-search-close.btn-icon,.fullscreen-search-close.modal-close {
        display:none
    }
}

.fullscreen-search-close.btn-icon .icon,.fullscreen-search-close.modal-close .icon {
    display: inline-block;
    fill: rgba(0,0,0,0.54);
    font-size: 24px
}

.fullscreen-search-close.btn-icon:hover .icon,.fullscreen-search-close.modal-close:hover .icon {
    fill: #2f82fb
}

.fullscreen-search-preloader {
    z-index: 1;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 10px;
    height: 25px;
    width: 25px
}

.fullscreen-search-preloader .spinner {
    display: none;
    height: 100%;
    width: 100%
}

.fullscreen-search-results {
    display: none;
    width: 100%;
    border-top: 1px solid #fafafa;
    padding: 0 15px;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%
}

@media screen and (max-width: 1229px) {
    .fullscreen-search-results {
        -webkit-overflow-scrolling:touch;
        overflow-y: scroll
    }
}

.fullscreen-search-results.noResults {
    background: #fff;
    border-top: none;
    padding: 20px 0
}

.fullscreen-search-results .Card__base {
    margin: 10px 0;
    min-height: auto;
    padding: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row
}

.fullscreen-search-results .Card__base.Card--skin .Card__picture {
    background: transparent
}

.fullscreen-search-results .Card__base .Card__skin-exterior {
    margin: 0;
    position: absolute;
    bottom: -20px;
    left: -125px
}

.fullscreen-search-results .Card__base .Card__skin-exterior-abbr {
    font-size: 12px;
    padding: 3px 6px
}

.fullscreen-search-results .Card__base .Card__skin-exterior-type {
    color: rgba(0,0,0,0.54);
    font-size: 12px;
    font-weight: 500
}

.fullscreen-search-results .Card__base .Card__skin-exterior-type[data-value]:after {
    content: attr(data-value)
}

.fullscreen-search-results .Card__base .Card__skin-exterior-type span {
    display: none
}

.fullscreen-search-results .Card__base .Card__skin-exterior-value {
    display: none
}

.fullscreen-search-results .Card__base .Card__stickers {
    display: none
}

.fullscreen-search-results .Card__base .Card__picture {
    padding: 0 15px 0 0
}

.fullscreen-search-results .Card__base .Card__media {
    height: 90px;
    width: 105px
}

.fullscreen-search-results .Card__base .Card__picture--gallery {
    display: none
}

.fullscreen-search-results .Card__base .Card__cover {
    border: none;
    margin: 0 15px 0 0;
    max-height: none;
    max-width: none;
    text-align: center;
    height: 90px;
    width: 90px
}

.fullscreen-search-results .Card__base .Card__cover img {
    vertical-align: middle
}

.fullscreen-search-results .Card__base .Card__body {
    padding: 0;
    position: relative;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column
}

.fullscreen-search-results .Card__base .Card__title {
    -webkit-line-clamp: 2;
    max-height: 2.8em
}

.fullscreen-search-results .Card__base.Card--skin .Card__description {
    font-size: 12px
}

.fullscreen-search-results .Card__base .Card__thumbnail {
    height: 96px;
    width: 96px;
    margin-right: 10px
}

.fullscreen-search-results .Card__base .Card__image {
    height: 90px;
    width: 90px
}

.fullscreen-search-results .Card__base .Card__footer {
    bottom: 0;
    left: auto
}

@media screen and (min-width: 1230px) {
    .fullscreen-search-results .Card__base:nth-of-type(1n+4) {
        display:none
    }
}

.fullscreen-search-results .see-all-results {
    display: block;
    margin-bottom: 25px;
    width: 100%
}

@media screen and (min-width: 1230px) {
    .fullscreen-search-results .see-all-results {
        margin-bottom:15px
    }
}

.fullscreen-search-noresults {
    color: rgba(0,0,0,0.28);
    text-align: center
}

.fullscreen-search-noresults span {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 25px
}

.fullscreen-search[data-loading="true"] .fullscreen-search-preloader .spinner {
    display: block
}

.fullscreen-search[data-results="true"] .fullscreen-search-form .results {
    height: auto;
    margin-top: 10px;
    visibility: visible
}

.fullscreen-search[data-results="true"] .fullscreen-search-results {
    display: block
}

body.fullscreen-search-on {
    overflow: hidden
}

.navbar {
    background: #15526c url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgMDAwMDAwMDAwP/2wBDAQEBAQEBAQEBAQECAgECAgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwP/wgARCAABAAQDAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAAAv/EABQBAQAAAAAAAAAAAAAAAAAAAAb/2gAMAwEAAhADEAAAAQBWf//EABQQAQAAAAAAAAAAAAAAAAAAAEb/2gAIAQEAAQUCKf/EABcRAAMBAAAAAAAAAAAAAAAAAABIhMX/2gAIAQMBAT8BUezZP//EABcRAAMBAAAAAAAAAAAAAAAAAABIhcX/2gAIAQIBAT8BYShgn//EABUQAQEAAAAAAAAAAAAAAAAAAACH/9oACAEBAAY/Ap+//8QAFhAAAwAAAAAAAAAAAAAAAAAAAIHw/9oACAEBAAE/IbZ//9oADAMBAAIAAwAAABAf/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAgBAwEBPxAf/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAgBAgEBPxBf/8QAFBABAAAAAAAAAAAAAAAAAAAAAP/aAAgBAQABPxBf/9k=) center no-repeat;
    background-image: linear-gradient(0deg,#15526c 0%,#54abbe 28%,#f99d2e 72%,#d95937 100%);
    background-image: -webkit-linear-gradient(0deg,#15526c 0%,#54abbe 28%,#f99d2e 72%,#d95937 100%);
    background-image: -moz-linear-gradient(0deg,#15526c 0%,#54abbe 28%,#f99d2e 72%,#d95937 100%);
    background-image: -ms-linear-gradient(0deg,#15526c 0%,#54abbe 28%,#f99d2e 72%,#d95937 100%);
    background-image: -o-linear-gradient(0deg,#15526c 0%,#54abbe 28%,#f99d2e 72%,#d95937 100%);
    background-size: 100% 100%;
    color: #fff;
    height: 55px;
    text-transform: uppercase;
    width: 100%
}

@media screen and (max-width: 1229px) {
    .navbar {
        height:6px
    }
}

.navbar.hide {
    display: none
}

.navbar .navbar-menu {
    display: block;
    height: inherit
}

.navbar .navbar-menu::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (max-width: 1219px) {
    .navbar .navbar-menu {
        display:none
    }
}

.navbar .navbar-menu>li {
    float: left;
    height: inherit
}

.navbar .navbar-menu>li>a {
    border-right: 1px solid rgba(255,255,255,0.2);
    color: inherit;
    display: block;
    font-size: 12px;
    font-weight: 500;
    height: inherit;
    line-height: 55px;
    padding: 0 20px;
    -webkit-transition: background-color .2s,color .2s,border-color .2s;
    -moz-transition: background-color .2s,color .2s,border-color .2s;
    transition: background-color .2s,color .2s,border-color .2s
}

.navbar .navbar-menu>li>a:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: transparent
}

.navbar .navbar-menu>li>a.topbar-counter:after {
    margin: -2px 0 0 10px;
    padding: 0 5px;
    vertical-align: middle
}

.navbar .navbar-menu>li>a.topbar-counter.green:after {
    background: #65b449
}

.navbar .navbar-menu>li>a.topbar-counter.orange:after {
    background: #f2470f
}

.navbar .navbar-menu>li>a.topbar-counter.yellow:after {
    background: #fa8c19
}

.navbar .navbar-menu>li>a.topbar-counter.blue:after {
    background: #006cff
}

.navbar .navbar-menu>li.active>a {
    background-color: #fff;
    color: #444
}

.nav-secondary {
    background: #fff;
    border-bottom: 1px solid #d4d4d4;
    height: 58px;
    position: relative;
    text-transform: uppercase;
    width: 100%
}

.nav-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 44px;
    z-index: 1;
    background-image: -webkit-linear-gradient(right, #fff 30%, rgba(255,255,255,0) 100%);
    background-image: linear-gradient(to left, #fff 30%, rgba(255,255,255,0) 100%)
}

.nav-secondary .nav-secondary-container {
    display: block;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
    height: inherit;
    overflow: auto;
    position: relative;
    width: 100%
}

.nav-secondary .nav-secondary-menu {
    display: inline-block;
    height: inherit;
    white-space: nowrap
}

.nav-secondary .nav-secondary-menu::after {
    clear: both;
    content: "";
    display: block
}

.nav-secondary .nav-secondary-menu>li {
    display: inline-block;
    height: inherit;
    margin: 0 20px
}

.nav-secondary .nav-secondary-menu>li>a {
    border-bottom: 3px solid transparent;
    color: #787878;
    display: block;
    font-size: 12px;
    font-weight: 500;
    height: inherit;
    line-height: 55px;
    -webkit-transition: border-color .2s,color .2s;
    -moz-transition: border-color .2s,color .2s;
    transition: border-color .2s,color .2s
}

.nav-secondary .nav-secondary-menu>li>a::-moz-focus-inner {
    border: 0
}

.nav-secondary .nav-secondary-menu>li>a:focus {
    outline: none
}

.nav-secondary .nav-secondary-menu>li>a.topbar-counter:after {
    margin: -2px 0 0 10px;
    padding: 0 5px;
    vertical-align: middle
}

.nav-secondary .nav-secondary-menu>li>a.topbar-counter.green:after {
    background: #65b449
}

.nav-secondary .nav-secondary-menu>li>a.topbar-counter.orange:after {
    background: #f2470f
}

.nav-secondary .nav-secondary-menu>li>a.topbar-counter.yellow:after {
    background: #fa8c19
}

.nav-secondary .nav-secondary-menu>li>a.topbar-counter.blue:after {
    background: #006cff
}

.nav-secondary .nav-secondary-menu>li.active>a,.nav-secondary .nav-secondary-menu>li>a:hover {
    color: #444
}

.nav-secondary.no-indicator .nav-secondary-menu li.active>a {
    border-color: #f2470f
}

.nav-secondary .indicator {
    background: #f2470f;
    height: 3px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: width .2s,-webkit-transform .2s;
    -moz-transition: width .2s,-moz-transform .2s;
    transition: width .2s,transform .2s
}

.sidebar {
    border-right: 1px solid rgba(0,0,0,0.12)
}

.sidebar-nav {
    padding: 20px 0 0;
    text-align: center
}

.sidebar-nav:after {
    content: '';
    display: inline-block;
    margin-top: 20px;
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px)
}

.sidebar-nav:not(:last-child):after {
    background: rgba(0,0,0,0.12);
    height: 1px
}

.sidebar-nav-btn {
    background: transparent;
    border: none;
    color: rgba(0,0,0,0.87);
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 20px;
    text-align: left;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background .2s,color .2s;
    -moz-transition: background .2s,color .2s;
    transition: background .2s,color .2s
}

.sidebar-nav-btn:hover {
    background: rgba(0,0,0,0.09);
    color: initial
}

.sidebar-nav-btn:hover .icon:not(.icon-arrow_down) {
    fill: #2f82fb
}

.sidebar-nav-btn.active {
    color: #2f82fb
}

.sidebar-nav-btn.active .icon:not(.icon-arrow_down) {
    fill: #2f82fb
}

.sidebar-nav-btn .icon {
    fill: rgba(0,0,0,0.54);
    font-size: 24px;
    margin: -3px 13px 0 0
}

.sidebar-nav-btn .icon.icon-arrow_down {
    float: right;
    font-size: 0.9em;
    margin-top: 0
}

.sidebar-nav-btn[data-expanded="true"] .icon-arrow_down {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.sidebar-nav-btn[data-expanded="true"]+.sidebar-nav-second_level {
    max-height: 300px
}

.sidebar-nav-second_level {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px 0 70px;
    text-align: left;
    -webkit-transition: max-height .2s;
    -moz-transition: max-height .2s;
    transition: max-height .2s
}

.sidebar-nav-second_level a {
    color: rgba(0,0,0,0.54);
    display: inline-block;
    font-size: 15px;
    line-height: 2em;
    -webkit-transition: color .2s;
    -moz-transition: color .2s;
    transition: color .2s
}

.sidebar-nav-second_level a:hover {
    color: #2f82fb
}

.sidebar-nav-second_level a.active {
    color: #2f82fb;
    font-weight: 500
}

.sidebar.dark {
    background: #212121;
    border-right: transparent
}

.sidebar.dark .sidebar-nav:not(:last-child):after {
    background: rgba(255,255,255,0.12)
}

.sidebar.dark .sidebar-nav-btn {
    color: #fff
}

.sidebar.dark .sidebar-nav-btn .icon {
    fill: rgba(255,255,255,0.7)
}

.sidebar.dark .sidebar-nav-btn:hover {
    background: rgba(255,255,255,0.09)
}

.sidebar.dark .sidebar-nav-btn:hover .icon:not(.icon-arrow_down) {
    fill: #2f82fb
}

.sidebar.dark .sidebar-nav-btn.active {
    color: #2f82fb
}

.sidebar.dark .sidebar-nav-btn.active .icon:not(.icon-arrow_down) {
    fill: #2f82fb
}

.sidebar.dark .sidebar-nav-second_level a {
    color: rgba(255,255,255,0.7)
}

.sidebar.dark .sidebar-nav-second_level a:hover,.sidebar.dark .sidebar-nav-second_level a.active {
    color: #2f82fb
}

.btn {
    border: none;
    border-radius: 3px;
    clear: both;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    position: relative;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background .2s ease,color .2s ease,border-color .2s ease;
    -moz-transition: background .2s ease,color .2s ease,border-color .2s ease;
    transition: background .2s ease,color .2s ease,border-color .2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    font-size: 14px;
    height: 42px;
    line-height: 42px;
    padding: 0 20px
}

.btn.btn-secondary,.btn-group .btn,.btn.btn-secondary-dark {
    height: 44px
}

.btn .icon {
    font-size: 24px
}

.btn .icon.fl-l {
    margin: 0 9px 0 -11px
}

.btn .icon.fl-r {
    margin: 0 -11px 0 9px
}

.btn:hover {
    text-decoration: none
}

.btn:focus {
    outline: none
}

.btn::-moz-focus-inner {
    border: 0
}

.btn .icon {
    display: block;
    height: 100%
}

.btn-loader {
    display: none;
    left: 50%;
    margin: -14px 0 0 -14px;
    top: 50%
}

.btn-loader {
    clip: rect(0, 28px, 28px, 14px);
    position: absolute;
    height: 28px;
    width: 28px;
    -webkit-animation: spinnerOuter .75s linear infinite;
    -moz-animation: spinnerOuter .75s linear infinite;
    animation: spinnerOuter .75s linear infinite
}

@-webkit-keyframes spinnerOuter {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(220deg)
    }
}

@-moz-keyframes spinnerOuter {
    0% {
        -moz-transform: rotate(0deg)
    }

    100% {
        -moz-transform: rotate(220deg)
    }
}

@keyframes spinnerOuter {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(220deg);
        -moz-transform: rotate(220deg);
        -ms-transform: rotate(220deg);
        -o-transform: rotate(220deg);
        transform: rotate(220deg)
    }
}

.btn-loader:after {
    border: 3px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    clip: rect(0, 28px, 28px, 14px);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-animation: spinnerInner .75s ease-in-out infinite;
    -moz-animation: spinnerInner .75s ease-in-out infinite;
    animation: spinnerInner .75s ease-in-out infinite
}

@-webkit-keyframes spinnerInner {
    0% {
        -webkit-transform: rotate(-140deg)
    }

    100% {
        -webkit-transform: rotate(140deg)
    }
}

@-moz-keyframes spinnerInner {
    0% {
        -moz-transform: rotate(-140deg)
    }

    100% {
        -moz-transform: rotate(140deg)
    }
}

@keyframes spinnerInner {
    0% {
        -webkit-transform: rotate(-140deg);
        -moz-transform: rotate(-140deg);
        -ms-transform: rotate(-140deg);
        -o-transform: rotate(-140deg);
        transform: rotate(-140deg)
    }

    100% {
        -webkit-transform: rotate(140deg);
        -moz-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
        -o-transform: rotate(140deg);
        transform: rotate(140deg)
    }
}

.btn-label {
    height: 100%
}

.btn[data-loading="true"] .btn-loader {
    display: block
}

.btn[data-loading="true"] .btn-label {
    opacity: 0
}

.btn.btn-primary,.btn-group .btn.active {
    background: #2f82fb;
    color: #fff
}

.btn.btn-primary:hover,.btn-group .btn.active:hover {
    background: #0868f3
}

.btn.btn-primary:active,.btn-group .btn.active:active {
    background: #2f82fb
}

.btn.btn-primary .icon,.btn-group .btn.active .icon {
    fill: #fff
}

.btn.btn-secondary,.btn-group .btn {
    background: transparent;
    border: 1px solid #90c7ff;
    color: #2f82fb
}

.btn.btn-secondary:hover,.btn-group .btn:hover {
    border-color: #0868f3;
    color: #0868f3
}

.btn.btn-secondary:hover .icon,.btn-group .btn:hover .icon {
    fill: #0868f3
}

.btn.btn-secondary:active,.btn-group .btn:active {
    background: transparent;
    border-color: #2f82fb;
    color: #2f82fb
}

.btn.btn-secondary:active .icon,.btn-group .btn:active .icon {
    fill: #2f82fb
}

.btn.btn-secondary .icon,.btn-group .btn .icon {
    fill: #2f82fb
}

.btn.btn-secondary .btn-loader:after,.btn-group .btn .btn-loader:after {
    border-color: #2f82fb
}

.btn.btn-secondary-dark {
    background: rgba(0,0,0,0.2);
    border: 1px solid #fff;
    color: #fff
}

.btn.btn-secondary-dark:hover {
    background: rgba(245,245,245,0.1)
}

.btn.btn-secondary-dark:active {
    background: rgba(0,0,0,0.2)
}

.btn.btn-secondary-dark .icon {
    fill: #fff
}

.btn.btn-success {
    background: #29b474;
    color: #fff
}

.btn.btn-success:hover {
    background: #1b995f
}

.btn.btn-success:active {
    background: #29b474
}

.btn.btn-success .icon {
    fill: #fff
}

.btn.btn-danger {
    background: #dd301c;
    color: #fff
}

.btn.btn-danger:hover {
    background: #c91800
}

.btn.btn-danger:active {
    background: #dd301c
}

.btn.btn-danger .icon {
    fill: #fff
}

.btn.btn-link {
    background: transparent;
    color: #2f82fb;
    -webkit-transition: color .2s;
    -moz-transition: color .2s;
    transition: color .2s
}

.btn.btn-link:hover {
    color: #0868f3
}

.btn.btn-link:hover .icon {
    fill: #0868f3
}

.btn.btn-link .icon {
    fill: #2f82fb
}

.btn.btn-large {
    font-size: 18px;
    height: 52px;
    line-height: 52px;
    padding: 0 25px
}

.btn.btn-large.btn-secondary,.btn-group .btn.btn-large,.btn.btn-large.btn-secondary-dark {
    height: 54px
}

.btn.btn-large .icon {
    font-size: 24px
}

.btn.btn-large .icon.fl-l {
    margin: 0 14px 0 -11px
}

.btn.btn-large .icon.fl-r {
    margin: 0 -11px 0 14px
}

.btn.btn-small {
    font-size: 12px;
    height: 26px;
    line-height: 26px;
    padding: 0 10px
}

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

.btn.btn-small .icon.fl-r {
    margin: 0 -6px 0 4px
}

.btn.btn-small .icon.fl-l {
    margin: 0 4px 0 -6px
}

.btn.btn-small .btn-loader {
    margin: -9px 0 0 -9px
}

.btn.btn-small .btn-loader {
    clip: rect(0, 18px, 18px, 9px);
    height: 18px;
    width: 18px
}

.btn.btn-small .btn-loader:after {
    clip: rect(0, 18px, 18px, 9px)
}

.btn.btn-small .btn-loader:after {
    border-width: 2px
}

.btn.btn-small.btn-secondary,.btn-group .btn.btn-small,.btn.btn-small.btn-secondary-dark {
    line-height: 24px
}

.btn.btn-block {
    display: block;
    width: 100%
}

button[disabled].btn,.btn.disabled {
    cursor: not-allowed;
    opacity: 0.5
}

button.icon-button,.btn-icon,.modal-close {
    background: none;
    border: none;
    padding: 0
}

.btn-group {
    display: inline-block
}

.btn-group::after {
    clear: both;
    content: "";
    display: block
}

.btn-group .btn {
    border-radius: 0;
    border-right-color: transparent;
    clear: none;
    display: block;
    float: left
}

.btn-group .btn:hover {
    border-right-color: transparent
}

.btn-group .btn:first-child {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.btn-group .btn:last-child {
    border-bottom-right-radius: 3px;
    border-right-color: #2f82fb;
    border-top-right-radius: 3px
}

.btn-group .btn.active {
    border: 1px solid #2f82fb
}

.btn-group .btn.active:hover {
    border-color: transparent;
    color: #fff
}

.btn-group .btn.active+.btn {
    border-left-color: transparent
}

.btn-group-small .btn {
    font-size: 12px;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    line-height: 23px
}

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

.btn-group-small .btn .icon.fl-r {
    margin: 0 -6px 0 4px
}

.btn-group-small .btn .icon.fl-l {
    margin: 0 4px 0 -6px
}

.btn-group-small .btn .btn-loader {
    margin: -9px 0 0 -9px
}

.btn-group-small .btn .btn-loader {
    clip: rect(0, 18px, 18px, 9px);
    height: 18px;
    width: 18px
}

.btn-group-small .btn .btn-loader:after {
    clip: rect(0, 18px, 18px, 9px)
}

.btn-group-small .btn .btn-loader:after {
    border-width: 2px
}

.btn-group-small .btn.btn-secondary,.btn-group-small .btn-group .btn,.btn-group .btn-group-small .btn,.btn-group-small .btn.btn-secondary-dark {
    line-height: 24px
}

.btn-group-large .btn {
    font-size: 18px;
    height: 52px;
    line-height: 52px;
    padding: 0 25px;
    height: 54px
}

.btn-group-large .btn.btn-secondary,.btn-group-large .btn-group .btn,.btn-group .btn-group-large .btn,.btn-group-large .btn.btn-secondary-dark {
    height: 54px
}

.btn-group-large .btn .icon {
    font-size: 24px
}

.btn-group-large .btn .icon.fl-l {
    margin: 0 14px 0 -11px
}

.btn-group-large .btn .icon.fl-r {
    margin: 0 -11px 0 14px
}

.checkbox {
    display: inline-block
}

.checkbox label {
    color: inherit;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    -webkit-tap-highlight-color: transparent
}

.checkbox label::after {
    clear: both;
    content: "";
    display: block
}

.checkbox input {
    position: absolute;
    visibility: hidden;
    height: 0;
    width: 0
}

.checkbox input+label i {
    background: #fff;
    border: 1px solid #e0e0e0;
    height: 14px;
    width: 14px;
    border-radius: 3px;
    display: block;
    float: left;
    margin-right: 7px;
    margin-top: 1px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.checkbox input+label i:after,.checkbox input+label i:before {
    background: #fff;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none
}

.checkbox input+label i:before {
    left: 2.7px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
    top: 6.1px;
    width: 0
}

.checkbox input+label i:after {
    right: 7.9px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
    top: 8px;
    width: 0
}

.checkbox input:checked+label i {
    background: #2f82fb;
    border-color: #2f82fb
}

.checkbox input:checked+label i:after,.checkbox input:checked+label i:before {
    -webkit-transition: width 0.1s;
    -moz-transition: width 0.1s;
    transition: width 0.1s
}

.checkbox input:checked+label i:before {
    width: 4px
}

.checkbox input:checked+label i:after {
    width: 8px;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    transition-delay: 0.1s
}

.checkbox input:disabled+label {
    cursor: not-allowed;
    color: rgba(0,0,0,0.54)
}

.checkbox input:disabled+label i {
    opacity: 0.5
}

.checkbox:hover input:not(:checked):not(:disabled)+label i {
    border-color: #90c7ff
}

.checkbox.checkbox-error input:not(:checked)+label i {
    border-color: #dd301c
}

.checkbox .checkbox-body {
    display: block;
    float: left;
    width: -webkit-calc(100% - 28px);
    width: calc(100% - 28px)
}

.checkbox.checkbox-large label {
    font-size: 14px;
    line-height: 21px
}

.checkbox.checkbox-large input+label i {
    height: 21px;
    width: 21px;
    margin-top: 0
}

.checkbox.checkbox-large input+label i:before {
    left: 6px;
    top: 9px
}

.checkbox.checkbox-large input+label i:after {
    right: 11px;
    top: 11px
}

.checkbox.checkbox-large input:checked+label i:before {
    width: 4px
}

.checkbox.checkbox-large input:checked+label i:after {
    width: 8px
}

.selectbox {
    cursor: pointer;
    display: inline-block;
    position: relative;
    vertical-align: top;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-tap-highlight-color: transparent
}

.selectbox input {
    position: absolute;
    top: 0;
    right: 0;
    visibility: hidden
}

.selectbox .selectbox-wrap {
    background: #fff;
    height: 110px;
    width: 110px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 5px;
    text-align: center;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease
}

.selectbox .selectbox-wrap::after {
    clear: both;
    content: "";
    display: block
}

.selectbox .selectbox-wrap .label {
    display: block;
    font-weight: 400;
    margin: 26px 0 0
}

.selectbox .selectbox-wrap .icon {
    margin-top: 15px;
    width: 100%
}

.selectbox input[type="checkbox"]+.selectbox-wrap .selectbox-icon {
    background: #fff;
    border: 1px solid #e0e0e0;
    height: 21px;
    width: 21px;
    border-radius: 3px;
    display: block;
    margin-right: 7px;
    margin-top: 1px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease
}

.selectbox input[type="checkbox"]+.selectbox-wrap .selectbox-icon:after,.selectbox input[type="checkbox"]+.selectbox-wrap .selectbox-icon:before {
    background: #fff;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none
}

.selectbox input[type="checkbox"]+.selectbox-wrap .selectbox-icon:before {
    left: 6px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
    top: 9px;
    width: 0
}

.selectbox input[type="checkbox"]+.selectbox-wrap .selectbox-icon:after {
    right: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
    top: 11px;
    width: 0
}

.selectbox input[type="radio"]+.selectbox-wrap .selectbox-icon {
    background: #fff;
    border: 1px solid #e0e0e0;
    height: 21px;
    width: 21px;
    border-radius: 50%;
    display: block;
    margin-right: 7px;
    margin-top: 1px;
    overflow: hidden;
    padding-top: 4px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    position: relative;
    text-align: center
}

.selectbox input[type="radio"]+.selectbox-wrap .selectbox-icon:before {
    background: #2f82fb;
    border-radius: 50%;
    content: '';
    height: 11px;
    width: 11px;
    display: inline-block;
    opacity: 0;
    vertical-align: top;
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5)
}

.selectbox:hover input+.selectbox-wrap {
    border-color: #90c7ff
}

.selectbox:hover input+.selectbox-wrap .selectbox-icon {
    border-color: #90c7ff
}

.selectbox input:checked+.selectbox-wrap {
    border-color: #2f82fb
}

.selectbox input:checked+.selectbox-wrap .icon {
    fill: #2f82fb
}

.selectbox input:checked+.selectbox-wrap .selectbox-icon {
    background: #2f82fb;
    border-color: #2f82fb
}

.selectbox input[type="checkbox"]:checked+.selectbox-wrap .selectbox-icon:after,.selectbox input[type="checkbox"]:checked+.selectbox-wrap .selectbox-icon:before {
    -webkit-transition: width 0.1s;
    -moz-transition: width 0.1s;
    transition: width 0.1s
}

.selectbox input[type="checkbox"]:checked+.selectbox-wrap .selectbox-icon:before {
    width: 4px
}

.selectbox input[type="checkbox"]:checked+.selectbox-wrap .selectbox-icon:after {
    width: 8px;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    transition-delay: 0.1s
}

.selectbox input[type="radio"]:checked+.selectbox-wrap .selectbox-icon {
    background: transparent;
    border-color: #2f82fb
}

.selectbox input[type="radio"]:checked+.selectbox-wrap .selectbox-icon:before {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.selectbox input[disabled]+.selectbox-wrap {
    cursor: not-allowed;
    opacity: 0.5
}

.form-control,.select-button {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    display: block;
    font-family: "Roboto",sans-serif;
    font-weight: 400;
    line-height: normal;
    margin: 10px 0;
    width: 100%;
    font-size: 18px;
    height: 54px;
    padding: 0 17px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-transition: border-color .2s,box-shadow .2s;
    -moz-transition: border-color .2s,box-shadow .2s;
    transition: border-color .2s,box-shadow .2s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

@media screen and (max-width: 767px) {
    .form-control,.select-button {
        font-size:14px;
        height: 44px;
        padding: 0 14px
    }
}

.form-control:-webkit-autofill,.select-button:-webkit-autofill,.form-control:-webkit-autofill:hover,.select-button:-webkit-autofill:hover,.form-control:-webkit-autofill:focus,.select-button:-webkit-autofill:focus,.form-control:-webkit-autofill:active,.select-button:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fafafa inset !important
}

.form-control[type="search"]::-webkit-search-decoration,.select-button[type="search"]::-webkit-search-decoration,.form-control[type="search"]::-webkit-search-cancel-button,.select-button[type="search"]::-webkit-search-cancel-button,.form-control[type="search"]::-webkit-search-results-button,.select-button[type="search"]::-webkit-search-results-button,.form-control[type="search"]::-webkit-search-results-decoration,.select-button[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none
}

.form-control::-ms-clear,.select-button::-ms-clear,.form-control::-ms-reveal,.select-button::-ms-reveal {
    display: none
}

.form-control[type="search"],.select-button[type="search"] {
    box-sizing: border-box
}

.form-control.success,.success.select-button {
    border-color: #b4e5ce
}

.form-control.error,.error.select-button {
    border-color: #f3b7b0
}

.form-control::-webkit-input-placeholder,.select-button::-webkit-input-placeholder {
    color: rgba(0,0,0,0.54);
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.form-control::-moz-placeholder,.select-button::-moz-placeholder {
    color: rgba(0,0,0,0.54);
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.form-control:-moz-placeholder,.select-button:-moz-placeholder {
    color: rgba(0,0,0,0.54);
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.form-control:-ms-input-placeholder,.select-button:-ms-input-placeholder {
    color: rgba(0,0,0,0.54);
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.form-control.form-medium,.form-medium.select-button {
    font-size: 14px;
    height: 44px;
    padding: 0 14px
}

.form-control.form-small,.form-small.select-button {
    font-size: 12px;
    height: 26px;
    padding: 0 6px
}

.form-control:focus,.select-button:focus,.form-control.focus,.focus.select-button {
    border-color: #90c7ff;
    box-shadow: 0 0 4px rgba(144,199,255,0.87);
    outline: none
}

.form-control:focus.success,.select-button:focus.success,.form-control.focus.success,.focus.success.select-button {
    border-color: #b4e5ce;
    box-shadow: 0 0 4px rgba(180,229,206,0.87)
}

.form-control:focus.error,.select-button:focus.error,.form-control.focus.error,.focus.error.select-button {
    border-color: #f3b7b0;
    box-shadow: 0 0 4px rgba(243,183,176,0.87)
}

.form-control:focus::-webkit-input-placeholder,.select-button:focus::-webkit-input-placeholder,.form-control.focus::-webkit-input-placeholder,.focus.select-button::-webkit-input-placeholder {
    opacity: 0.5
}

.form-control:focus::-moz-placeholder,.select-button:focus::-moz-placeholder,.form-control.focus::-moz-placeholder,.focus.select-button::-moz-placeholder {
    opacity: 0.5
}

.form-control:focus:-moz-placeholder,.select-button:focus:-moz-placeholder,.form-control.focus:-moz-placeholder,.focus.select-button:-moz-placeholder {
    opacity: 0.5
}

.form-control:focus:-ms-input-placeholder,.select-button:focus:-ms-input-placeholder,.form-control.focus:-ms-input-placeholder,.focus.select-button:-ms-input-placeholder {
    opacity: 0.5
}

.form-control[disabled],.select-button[disabled],.form-control.disabled,.disabled.select-button {
    background: #f5f5f5;
    cursor: not-allowed
}

textarea.form-control,textarea.select-button {
    height: auto;
    line-height: 26px;
    padding: 17px 20px;
    resize: none
}

textarea.form-control.form-medium,textarea.form-medium.select-button {
    height: auto;
    line-height: 24px;
    padding: 12px 20px
}

textarea.form-control.form-small,textarea.form-small.select-button {
    height: auto;
    line-height: 21px;
    padding: 0 10px
}

input[type="number"].form-control,input.select-button[type="number"] {
    padding-right: 0 !important
}

.form-control-error {
    color: #dd301c;
    font-size: 12px;
    margin: 7px 0 0
}

.form-group {
    display: block;
    margin: 40px 0
}

.form-group::after {
    clear: both;
    content: "";
    display: block
}

.form-group>label {
    float: left;
    display: block;
    margin-right: 1.35135%;
    width: 18.91892%;
    padding: 20px 30px 20px 0;
    text-align: right;
    vertical-align: top
}

.form-group>label:last-child {
    margin-right: 0
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    .form-group>label {
        float:left;
        display: block;
        margin-right: 1.69492%;
        width: 23.72881%
    }

    .form-group>label:last-child {
        margin-right: 0
    }
}

@media screen and (max-width: 1219px) {
    .form-group>label {
        padding:5px 0
    }
}

.form-group>label.required::after {
    color: #dd301c;
    content: '*'
}

.form-group .form-group-action {
    margin-right: 5px
}

@media screen and (max-width: 767px) {
    .form-group .form-group-action {
        display:block;
        margin: 10px 0;
        width: 100%
    }
}

.form-group.form-group-medium {
    margin: 20px 0
}

.form-group.form-group-medium>label {
    padding-bottom: 13px;
    padding-top: 13px
}

@media screen and (max-width: 1219px) {
    .form-group.form-group-medium>label {
        padding:5px 0
    }
}

.form-group .form-control-input {
    float: left;
    display: block;
    margin-right: 1.35135%;
    width: 59.45946%;
    vertical-align: middle
}

.form-group .form-control-input:last-child {
    margin-right: 0
}

.form-group .form-control-input.shift {
    margin-left: 20.27027%
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    .form-group .form-control-input {
        float:left;
        display: block;
        margin-right: 1.69492%;
        width: 74.57627%
    }

    .form-group .form-control-input:last-child {
        margin-right: 0
    }

    .form-group .form-control-input.shift {
        margin-left: 25.42373%
    }
}

@media screen and (max-width: 1219px) {
    .form-group {
        margin:15px 0
    }

    .form-group>label,.form-group .form-control-input,.form-group .form-control-input.shift {
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%;
        margin: 0;
        text-align: left
    }

    .form-group>label:last-child,.form-group .form-control-input:last-child,.form-group .form-control-input.shift:last-child {
        margin-right: 0
    }
}

.form-group .form-control,.form-group .select-button {
    margin: 0
}

.form-group .select-button {
    margin-bottom: 5px
}

.form-group .input-group {
    margin: 0
}

.input-group {
    margin: 10px 0;
    position: relative
}

.input-group .input-group-addon {
    margin-top: -0.5em;
    position: absolute;
    top: 47%;
    z-index: 1
}

.input-group .input-group-addon.flag {
    margin-top: -11px;
    top: 50%
}

.input-group .input-group-addon .icon {
    fill: rgba(0,0,0,0.54)
}

.input-group .input-group-addon .icon-button {
    padding: 0
}

.input-group .input-group-addon .icon-button:hover .icon {
    fill: #2f82fb
}

.input-group.input-group-focus .form-control,.input-group.input-group-focus .select-button {
    border-color: #90c7ff;
    box-shadow: 0 0 4px rgba(144,199,255,0.87);
    outline: none
}

.input-group.input-group-focus .form-control.success,.input-group.input-group-focus .success.select-button {
    border-color: #b4e5ce;
    box-shadow: 0 0 4px rgba(180,229,206,0.87)
}

.input-group.input-group-focus .form-control.error,.input-group.input-group-focus .error.select-button {
    border-color: #f3b7b0;
    box-shadow: 0 0 4px rgba(243,183,176,0.87)
}

.input-group.input-group-focus .form-control::-webkit-input-placeholder,.input-group.input-group-focus .select-button::-webkit-input-placeholder {
    opacity: 0.5
}

.input-group.input-group-focus .form-control::-moz-placeholder,.input-group.input-group-focus .select-button::-moz-placeholder {
    opacity: 0.5
}

.input-group.input-group-focus .form-control:-moz-placeholder,.input-group.input-group-focus .select-button:-moz-placeholder {
    opacity: 0.5
}

.input-group.input-group-focus .form-control:-ms-input-placeholder,.input-group.input-group-focus .select-button:-ms-input-placeholder {
    opacity: 0.5
}

.input-group.input-group-focus .icon {
    fill: #2f82fb
}

.input-group.input-group-error .form-control,.input-group.input-group-error .select-button {
    border-color: #f3b7b0
}

.input-group.input-group-error .icon {
    fill: #dd301c
}

.input-group.input-group-success .form-control,.input-group.input-group-success .select-button {
    border-color: #b4e5ce
}

.input-group.input-group-success .icon {
    fill: #29b474
}

.input-group.input-group-small .input-group-addon {
    font-size: 18px;
    left: 6px
}

.input-group.input-group-small .input-group-addon ~ .form-control,.input-group.input-group-small .input-group-addon ~ .select-button {
    padding-left: 30px;
    padding-right: 6px
}

.input-group.input-group-small .form-control,.input-group.input-group-small .select-button {
    font-size: 12px;
    height: 26px;
    padding: 0 6px;
    padding-right: 24px
}

.input-group.input-group-small .form-control ~ .input-group-addon,.input-group.input-group-small .select-button ~ .input-group-addon {
    left: auto;
    right: 6px
}

.input-group.input-group-medium .input-group-addon {
    font-size: 24px;
    left: 14px
}

.input-group.input-group-medium .input-group-addon.flag {
    left: 10px
}

.input-group.input-group-medium .input-group-addon ~ .form-control,.input-group.input-group-medium .input-group-addon ~ .select-button {
    padding-left: 42px;
    padding-right: 14px
}

.input-group.input-group-medium .form-control,.input-group.input-group-medium .select-button {
    font-size: 14px;
    height: 44px;
    padding: 0 14px;
    padding-right: 42px
}

.input-group.input-group-medium .form-control ~ .input-group-addon,.input-group.input-group-medium .select-button ~ .input-group-addon {
    left: auto;
    right: 14px
}

.input-group.input-group-large .input-group-addon {
    font-size: 24px;
    left: 17px
}

.input-group.input-group-large .input-group-addon.flag {
    left: 13px
}

.input-group.input-group-large .input-group-addon ~ .form-control,.input-group.input-group-large .input-group-addon ~ .select-button {
    padding-left: 52px;
    padding-right: 17px
}

.input-group.input-group-large .form-control,.input-group.input-group-large .select-button {
    font-size: 18px;
    height: 54px;
    padding: 0 17px;
    padding-right: 52px
}

@media screen and (max-width: 767px) {
    .input-group.input-group-large .form-control,.input-group.input-group-large .select-button {
        font-size:14px;
        height: 44px;
        padding: 0 14px
    }
}

.input-group.input-group-large .form-control ~ .input-group-addon,.input-group.input-group-large .select-button ~ .input-group-addon {
    left: auto;
    right: 17px
}

.input-group .form-control,.input-group .select-button {
    margin: 0
}

.input-group.input-group-phone {
    display: block
}

.input-group.input-group-phone::after {
    clear: both;
    content: "";
    display: block
}

.input-group.input-group-phone .form-control,.input-group.input-group-phone .select-button {
    display: block;
    float: left
}

.input-group.input-group-phone .form-control.input-group-code,.input-group.input-group-phone .input-group-code.select-button {
    border-bottom-right-radius: 0;
    border-right: none;
    border-top-right-radius: 0;
    padding-right: 12px;
    text-align: center;
    width: 110px
}

.input-group.input-group-phone .form-control.input-group-number,.input-group.input-group-phone .input-group-number.select-button {
    width: -webkit-calc(100% - 110px);
    width: calc(100% - 110px);
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding-left: 12px
}

@media screen and (max-width: 919px) {
    .input-group.input-group-phone .form-control.input-group-code,.input-group.input-group-phone .input-group-code.select-button {
        padding-right:7px;
        width: 92px
    }

    .input-group.input-group-phone .form-control.input-group-number,.input-group.input-group-phone .input-group-number.select-button {
        width: -webkit-calc(100% - 92px);
        width: calc(100% - 92px);
        padding-left: 7px
    }
}

.input-group.input-group-medium.input-group-phone .form-control.input-group-code,.input-group.input-group-medium.input-group-phone .input-group-code.select-button {
    padding-right: 7px;
    width: 92px
}

.input-group.input-group-medium.input-group-phone .form-control.input-group-number,.input-group.input-group-medium.input-group-phone .input-group-number.select-button {
    width: -webkit-calc(100% - 92px);
    width: calc(100% - 92px);
    padding-left: 7px
}

.reply-group {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    margin: 10px 0;
    overflow: hidden
}

.reply-group.error {
    border-color: #dd301c
}

.reply-group .alert.alert-icon {
    border-radius: 2px 2px 0 0
}

.reply-group .alert.alert-icon .alert-content {
    background: #f3b7b0;
    padding-left: 0
}

.reply-group .form-control,.reply-group .select-button {
    background: none;
    border-color: transparent;
    box-shadow: none;
    margin: 0
}

.reply-group .reply-group-body {
    background: #fff
}

.reply-group .att-file {
    background: #f5f5f5;
    border-radius: 2px;
    margin: 10px;
    max-width: 260px
}

.reply-group .att-file::after {
    clear: both;
    content: "";
    display: block
}

.reply-group .att-file .file-name {
    float: left;
    width: -webkit-calc(100% - 110px);
    width: calc(100% - 110px);
    font-size: 11px;
    overflow: hidden;
    padding: 2px 10px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.reply-group .att-file .progress {
    background: rgba(0,0,0,0.12);
    float: right;
    height: 5px;
    margin: 7px 10px;
    width: 88px
}

.reply-group .att-file .progress span {
    background: #2f82fb;
    display: block;
    height: 5px;
    width: 0;
    -webkit-transition: width .2s;
    -moz-transition: width .2s;
    transition: width .2s
}

.reply-group .att-file .remove-button .icon {
    height: 10px;
    width: 10px
}

.reply-group .att-file:not(.uploaded) .remove-button {
    display: none
}

.reply-group .att-file.uploaded .progress {
    display: none
}

.reply-group .att-file.uploaded .file-name {
    width: -webkit-calc(100% - 22px);
    width: calc(100% - 22px)
}

.reply-group .reply-group-actions {
    background: #f5f5f5;
    padding: 10px
}

.reply-group .reply-group-actions .icon-button {
    font-size: 22px;
    margin: 0 10px
}

.reply-group .reply-group-actions .reply-btn-att {
    background: transparent;
    border: none;
    margin: 0 5px;
    padding: 0 8px
}

.reply-group .reply-group-actions .reply-btn-att .icon {
    font-size: 26px;
    fill: rgba(0,0,0,0.54)
}

.reply-group .reply-group-actions .reply-btn-att:hover .icon {
    fill: #2f82fb
}

.reply-group .reply-group-actions .reply-att-file-info {
    color: rgba(0,0,0,0.54);
    display: inline-block;
    font-size: 12px
}

@media screen and (max-width: 639px) {
    .reply-group .reply-group-actions .reply-att-file-info {
        display:none
    }
}

.radio {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin: 7px 0;
    position: relative;
    -webkit-tap-highlight-color: transparent
}

.radio::after {
    clear: both;
    content: "";
    display: block
}

.radio input[type='checkbox'],.radio input[type='radio'] {
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0
}

.radio i {
    height: 21px;
    width: 21px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: -4px;
    padding-top: 4px;
    -webkit-transition: border-color .2s ease,background .2s ease;
    -moz-transition: border-color .2s ease,background .2s ease;
    transition: border-color .2s ease,background .2s ease;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    position: relative;
    text-align: center
}

.radio i:before {
    background: #2f82fb;
    border-radius: 50%;
    content: '';
    height: 11px;
    width: 11px;
    display: inline-block;
    opacity: 0;
    vertical-align: top;
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5)
}

.radio:hover i {
    border-color: #90c7ff
}

.radio .radio-body {
    display: block;
    float: left;
    width: -webkit-calc(100% - 31px);
    width: calc(100% - 31px)
}

.radio input:checked+i {
    border-color: #2f82fb
}

.radio input:checked+i:before {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.radio input[disabled]+i {
    opacity: 0.5
}

.radio input[disabled]+i+* {
    color: rgba(0,0,0,0.54)
}

.optionbox {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 3px;
    display: inline-block;
    overflow: hidden
}

.optionbox .optionbox-item span {
    font-size: 14px;
    height: 44px;
    padding: 0 14px;
    line-height: 42px
}

.optionbox::after {
    clear: both;
    content: "";
    display: block
}

.optionbox-large .optionbox-item span {
    font-size: 18px;
    height: 54px;
    padding: 0 17px;
    line-height: 52px;
    padding: 0 22px
}

@media screen and (max-width: 767px) {
    .optionbox-large .optionbox-item span {
        font-size:14px;
        height: 44px;
        padding: 0 14px
    }
}

.optionbox-small .optionbox-item span {
    font-size: 12px;
    height: 26px;
    padding: 0 6px;
    line-height: 24px
}

@media screen and (max-width: 767px) {
    .optionbox-large .optionbox-item span {
        line-height:42px
    }
}

.optionbox-item {
    border-right: 1px solid #d4d4d4;
    cursor: pointer;
    display: block;
    float: left;
    position: relative;
    -webkit-tap-highlight-color: transparent
}

.optionbox-item:last-child {
    border-right: none
}

.optionbox-item span {
    color: #787878;
    display: inline-block;
    font-weight: 400;
    -webkit-transition: background .2s,color .2s;
    -moz-transition: background .2s,color .2s;
    transition: background .2s,color .2s
}

.optionbox-item input[type="radio"],.optionbox-item input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0
}

.optionbox-item input[type="radio"]:checked ~ span,.optionbox-item input[type="checkbox"]:checked ~ span {
    background: #006cff;
    color: #fff
}

.switch {
    cursor: pointer;
    display: inline-block;
    height: 24px;
    position: relative;
    -webkit-tap-highlight-color: transparent
}

.switch input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0
}

.switch input[type="checkbox"]+.switch-label {
    background: rgba(0,0,0,0.54);
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    height: 24px;
    line-height: 25px;
    padding: 0 10px;
    position: relative;
    width: 55px;
    -webkit-transition: background .2s ease;
    -moz-transition: background .2s ease;
    transition: background .2s ease
}

.switch input[type="checkbox"]+.switch-label::after {
    clear: both;
    content: "";
    display: block
}

.switch input[type="checkbox"]+.switch-label::before,.switch input[type="checkbox"]+.switch-label::after {
    color: #fff;
    display: block;
    font-size: 11px;
    text-transform: uppercase
}

.switch input[type="checkbox"]+.switch-label::before {
    content: attr(data-on);
    display: none;
    float: left
}

.switch input[type="checkbox"]+.switch-label::after {
    content: attr(data-off);
    float: right
}

.switch input[type="checkbox"]+.switch-label i {
    position: absolute;
    top: 2px;
    right: 2px;
    height: 20px;
    width: 20px;
    background: #fff;
    border-radius: 20px;
    -webkit-transform: translateX(-31px);
    -moz-transform: translateX(-31px);
    -ms-transform: translateX(-31px);
    -o-transform: translateX(-31px);
    transform: translateX(-31px);
    -webkit-transition: -webkit-transform .2s ease,opacity .2s ease;
    -moz-transition: -moz-transform .2s ease,opacity .2s ease;
    transition: transform .2s ease,opacity .2s ease
}

.switch input[type="checkbox"]+.switch-label:not([data-on]):not([data-off]) {
    width: 45px
}

.switch input[type="checkbox"]+.switch-label:not([data-on]):not([data-off]) i {
    -webkit-transform: translateX(-21px);
    -moz-transform: translateX(-21px);
    -ms-transform: translateX(-21px);
    -o-transform: translateX(-21px);
    transform: translateX(-21px)
}

.switch input[type="checkbox"]:checked+.switch-label {
    background: #2f82fb
}

.switch input[type="checkbox"]:checked+.switch-label::before {
    display: block
}

.switch input[type="checkbox"]:checked+.switch-label::after {
    display: none
}

.switch input[type="checkbox"]:checked+.switch-label i {
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important
}

.switch input[type="checkbox"]:disabled+.switch-label {
    cursor: not-allowed;
    opacity: 0.5
}

.switch:active .switch-label i {
    opacity: 0.75
}

.switch-shield {
    cursor: pointer;
    display: inline-block;
    height: 24px;
    position: relative;
    -webkit-tap-highlight-color: transparent
}

.switch-shield input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0
}

.switch-shield input[type="checkbox"]+.switch-label {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    display: inline-block;
    font-weight: 500;
    height: 18px;
    line-height: 17px;
    outline: none;
    padding: 0 5px 0 4px;
    position: relative;
    width: 42px;
    -webkit-transition: background .2s ease;
    -moz-transition: background .2s ease;
    transition: background .2s ease
}

.switch-shield input[type="checkbox"]+.switch-label::after {
    clear: both;
    content: "";
    display: block
}

.switch-shield input[type="checkbox"]+.switch-label::before,.switch-shield input[type="checkbox"]+.switch-label::after {
    color: #858585;
    display: block;
    font-size: 11px;
    text-transform: uppercase
}

.switch-shield input[type="checkbox"]+.switch-label::before {
    content: attr(data-on);
    display: none;
    float: right
}

.switch-shield input[type="checkbox"]+.switch-label::after {
    content: attr(data-off);
    float: left
}

.switch-shield input[type="checkbox"]+.switch-label i {
    position: absolute;
    top: -4px;
    left: -3px;
    border-radius: 20px;
    height: 25px;
    width: 20px;
    -webkit-transform: translateX(28px);
    -moz-transform: translateX(28px);
    -ms-transform: translateX(28px);
    -o-transform: translateX(28px);
    transform: translateX(28px);
    -webkit-transition: -webkit-transform .2s ease,opacity .2s ease;
    -moz-transition: -moz-transform .2s ease,opacity .2s ease;
    transition: transform .2s ease,opacity .2s ease
}

.switch-shield input[type="checkbox"]+.switch-label i img {
    height: 100%;
    width: 100%
}

.switch-shield input[type="checkbox"]+.switch-label i img.shield-off {
    display: block
}

.switch-shield input[type="checkbox"]+.switch-label i img.shield-on {
    display: none
}

.switch-shield input[type="checkbox"]+.switch-label:not([data-on]):not([data-off]) {
    width: 45px
}

.switch-shield input[type="checkbox"]+.switch-label:not([data-on]):not([data-off]) i {
    -webkit-transform: translateX(-21px);
    -moz-transform: translateX(-21px);
    -ms-transform: translateX(-21px);
    -o-transform: translateX(-21px);
    transform: translateX(-21px)
}

.switch-shield input[type="checkbox"]:checked+.switch-label::before {
    display: block
}

.switch-shield input[type="checkbox"]:checked+.switch-label::after {
    display: none
}

.switch-shield input[type="checkbox"]:checked+.switch-label i {
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important
}

.switch-shield input[type="checkbox"]:checked+.switch-label i img.shield-off {
    display: none
}

.switch-shield input[type="checkbox"]:checked+.switch-label i img.shield-on {
    display: block
}

.switch-shield:active .switch-label i {
    opacity: 0.75
}

.noUi-horizontal {
    height: 5px
}

.noUi-target,.noUi-background,.noUi-connect {
    background: #e0e0e0;
    border: none;
    border-radius: 0;
    box-shadow: none
}

.noUi-connect {
    background: #2f82fb
}

.noUi-horizontal .noUi-handle {
    border: none;
    border-radius: 50%;
    box-shadow: 0 1px 6px 0 rgba(32,37,38,0.4);
    cursor: pointer;
    height: 17px;
    left: -9px;
    width: 17px
}

.noUi-horizontal .noUi-handle:after,.noUi-horizontal .noUi-handle:before {
    display: none
}

.select {
    position: relative
}

.select>select {
    display: none
}

@media screen and (max-width: 1219px) {
    .select>select {
        display:block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
        z-index: 1
    }
}

.select .options,.select-options,.datalist .options {
    background: #fafafa;
    border: 1px solid #d4d4d4;
    border-radius: 3px;
    box-shadow: 0 7px 9px 0 rgba(4,4,4,0.13);
    height: 0;
    max-height: 450px;
    opacity: 0;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    -webkit-transition: -webkit-transform .2s,opacity .2s,.2s visibility .2s;
    -moz-transition: -moz-transform .2s,opacity .2s,.2s visibility .2s;
    transition: transform .2s,opacity .2s,.2s visibility .2s;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px)
}

.select .options .option,.select-options .option,.datalist .options .option {
    border-bottom: 1px solid #d4d4d4;
    cursor: pointer;
    display: block;
    font-size: 14px;
    line-height: 18px;
    padding: 6px 11px 5px;
    -webkit-transition: background .2s,color .2s;
    -moz-transition: background .2s,color .2s;
    transition: background .2s,color .2s
}

.select .options .option:last-child,.select-options .option:last-child,.datalist .options .option:last-child {
    border-bottom: none
}

.select .options .option.selected,.select .options .option.active,.select-options .option.selected,.datalist .options .option.selected,.select-options .option.active,.datalist .options .option.active {
    background: #2f82fb;
    color: #fff
}

.select .options .option:not(.disabled):not(.selected):not(.active):hover,.select-options .option:not(.disabled):not(.selected):not(.active):hover,.datalist .options .option:not(.disabled):not(.selected):not(.active):hover {
    background: rgba(0,0,0,0.09)
}

.select .options .option.focus,.select-options .option.focus,.datalist .options .option.focus {
    background: #90c7ff;
    color: #fff
}

.select .options .option.disabled,.select-options .option.disabled,.datalist .options .option.disabled {
    cursor: default
}

.select.autowidth {
    display: inline-block
}

.select.autowidth .select-button,.select.autowidth .options {
    max-width: none;
    width: auto
}

.select.autowidth .option {
    white-space: nowrap
}

.select.opened .select-button:active {
    color: #444
}

.select.opened .select-button .icon {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.select.opened .options {
    height: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s
}

.select-button {
    cursor: pointer;
    margin-bottom: 5px;
    padding-right: 55px;
    position: relative;
    text-align: left;
    font-size: 18px;
    height: 54px;
    padding: 0 17px;
    line-height: 52px;
    padding-right: 52px
}

@media screen and (max-width: 767px) {
    .select-button {
        font-size:14px;
        height: 44px;
        padding: 0 14px
    }
}

.select-button .icon {
    font-size: 24px;
    right: 20px
}

@media screen and (max-width: 767px) {
    .select-button {
        font-size:14px;
        height: 44px;
        padding: 0 14px;
        line-height: 42px;
        padding-right: 42px
    }

    .select-button .icon {
        font-size: 24px;
        right: 20px
    }
}

.select-button:active {
    color: #444
}

.select-button[disabled] {
    background: #f5f5f5;
    cursor: not-allowed
}

.select-button.autowidth {
    display: inline-block;
    margin: 0 5px;
    max-width: none;
    width: auto
}

.select-button .icon {
    display: block;
    margin-top: -0.5em;
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s;
    position: absolute;
    top: 50%
}

.select-button span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select-button.form-medium {
    font-size: 14px;
    height: 44px;
    padding: 0 14px;
    line-height: 42px;
    padding-right: 42px
}

.select-button.form-medium .icon {
    font-size: 24px;
    right: 20px
}

.select-button.form-small {
    font-size: 12px;
    height: 26px;
    padding: 0 6px;
    line-height: 24px;
    padding-right: 18px
}

.select-button.form-small .icon {
    font-size: 18px;
    right: 3px
}

.select-button.form-small+.options .option {
    font-size: 13px;
    padding: 3px 11px
}

.select-button.select-flag {
    padding-left: 10px
}

@media screen and (min-width: 768px) {
    .select-button.select-flag {
        padding-left:17px
    }
}

.select-button.select-flag .flag,.select-button.select-flag span {
    display: inline-block;
    vertical-align: middle;
    width: -webkit-calc(100% - 42px);
    width: calc(100% - 42px)
}

.select-button.select-flag .flag {
    margin-right: 10px;
    height: 26px;
    width: 26px
}

.datalist {
    position: relative
}

.datalist .input-group {
    margin: 5px 0
}

.datalist .icon {
    font-size: 24px
}

.datalist .options .option.focus {
    background: #f0f0f0;
    color: #444
}

.datalist[data-open="true"] .options {
    height: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s
}

.datalist[data-open="true"] .input-group-addon .icon {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.datalist-responsive .btn-clear {
    display: none
}

@media screen and (max-width: 919px) {
    .datalist-responsive[data-open="true"] {
        background:#fff;
        display: block;
        width: 100%;
        z-index: 6;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%
    }

    .datalist-responsive[data-open="true"] .btn-clear {
        display: inline-block;
        font-size: 20px;
        padding: 10px 10px 10px 20px
    }

    .datalist-responsive[data-open="true"] .datalist-body {
        padding: 20px 0 0;
        position: relative;
        z-index: 6
    }

    .datalist-responsive[data-open="true"] .datalist-mask {
        display: block
    }

    .datalist-responsive[data-open="true"] .input-group {
        display: inline-block;
        margin: 0;
        width: -webkit-calc(100% - 70px);
        width: calc(100% - 70px)
    }

    .datalist-responsive[data-open="true"] .input-group-addon {
        display: none
    }

    .datalist-responsive[data-open="true"] .options {
        border-radius: 0;
        box-shadow: none;
        left: 0;
        margin-top: 20px;
        position: relative;
        max-height: -webkit-calc(100vh - 84px);
        max-height: calc(100vh - 84px)
    }

    .datalist-responsive[data-open="true"] .options .option {
        height: 42px;
        line-height: 42px;
        padding: 0 20px
    }

    .datalist-responsive[data-open="true"] .options .option:not(.disabled):hover {
        background: transparent;
        color: #444
    }
}

.select-sort {
    display: inline-block
}

.select-sort .select-sort-mask {
    background: rgba(48,48,48,0.9);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    visibility: hidden;
    z-index: 1
}

@media screen and (min-width: 920px) {
    .select-sort .select-button {
        display:none
    }
}

.select-sort .select-button {
    font-size: 12px;
    height: 26px;
    padding: 0 6px;
    line-height: 24px;
    padding-right: 18px
}

.select-sort .select-button .icon {
    font-size: 18px;
    right: 3px
}

.select-sort .select-sort-body {
    display: none;
    left: 0;
    max-height: 100%;
    overflow: auto;
    padding: 0 20px;
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    z-index: 2
}

.select-sort .select-sort-options {
    background: #fafafa;
    border-radius: 3px;
    box-shadow: 0 7px 9px 0 rgba(4,4,4,0.13);
    margin: 20px 0;
    overflow: hidden
}

.select-sort .select-sort-options .select-sort-option {
    float: left;
    font-size: 13px;
    font-weight: 500;
    padding: 0 15px;
    text-align: left;
    width: 55%
}

.select-sort .select-sort-options li {
    border-bottom: 1px solid #d4d4d4;
    padding: 10px 0;
    position: relative
}

.select-sort .select-sort-options li::after {
    clear: both;
    content: "";
    display: block
}

.select-sort .select-sort-options li.active::before {
    background: #006cff;
    content: '';
    display: block;
    height: 100%;
    width: 3px;
    position: absolute;
    top: 0;
    left: 0
}

.select-sort .select-sort-options .sort-type {
    float: left;
    width: 45%
}

.select-sort .select-sort-options .sort-type .sort-type-item {
    display: block
}

.select-sort .select-sort-options .sort-type .sort-type-item .icon {
    fill: #006cff;
    margin-right: 10px;
    visibility: hidden
}

.select-sort .select-sort-options .sort-type .sort-type-item.active {
    font-weight: 500
}

.select-sort .select-sort-options .sort-type .sort-type-item.active .icon {
    visibility: visible
}

.select-sort .select-sort-options li:last-child .select-sort-option {
    border-bottom: none
}

.select-sort.opened .select-sort-mask {
    visibility: visible
}

.select-sort.opened .select-sort-body {
    display: block
}

.pagination {
    display: inline-block;
    position: relative;
    text-align: left
}

.pagination .pagination-page {
    display: none;
    line-height: 42px;
    text-align: center
}

.pagination ul {
    display: inline-block;
    text-align: center;
    vertical-align: top
}

.pagination ul>li {
    display: block;
    float: left;
    line-height: 40px
}

.pagination ul>li>a {
    background: #fff;
    border: 1px solid #90c7ff;
    border-radius: 3px;
    color: #2f82fb;
    display: inline-block;
    font-weight: 400;
    height: 42px;
    line-height: 42px;
    min-width: 45px;
    padding: 0 10px;
    -webkit-transition: background .2s ease;
    -moz-transition: background .2s ease;
    transition: background .2s ease
}

.pagination ul>li>a:hover {
    background: #90c7ff
}

.pagination ul>li>a.active,.pagination ul>li>a:active {
    background: #2f82fb;
    color: #fff
}

.pagination ul>li:nth-of-type(-n+4):not(:last-child) a {
    border-right: 0
}

.pagination ul>li:nth-of-type(-n+5):not(:first-child) a {
    border-left: 0
}

.pagination ul>li:nth-of-type(-n+5):not(:first-child) a {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.pagination ul>li:not(:last-of-type):not(:nth-of-type(5)) a {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.pagination ul>li.ellipsis {
    text-align: center;
    width: 30px
}

.pagination .control {
    display: inline-block;
    font-weight: 700
}

.pagination .control .icon {
    fill: #2f82fb;
    font-size: 24px
}

.pagination .control:first-child {
    margin-right: 20px
}

.pagination .control:last-child {
    margin-left: 20px
}

@media screen and (max-width: 639px) {
    .pagination {
        display:block
    }

    .pagination .pagination-page {
        display: inline-block;
        left: 50%;
        position: absolute;
        transform: translateX(-50%)
    }

    .pagination ul {
        display: none
    }

    .pagination .control:last-child {
        float: right
    }

    .pagination .control:first-child,.pagination .control:last-child {
        margin: 0
    }
}

.tabs-nav {
    height: 47px;
    position: relative;
    z-index: 0;
    -webkit-box-align: strech;
    -moz-box-align: strech;
    box-align: strech;
    -webkit-align-items: strech;
    -moz-align-items: strech;
    -ms-align-items: strech;
    -o-align-items: strech;
    align-items: strech;
    -ms-flex-align: strech;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start
}

.tabs-button {
    background: transparent;
    border: none;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-tap-highlight-color: transparent
}

.tabs-button span {
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-right: none;
    color: #787878;
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 46px;
    padding-top: 11px;
    text-align: center;
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -o-transform: translateY(6px);
    transform: translateY(6px);
    -webkit-transition: background .2s,-webkit-transform .2s,padding .2s;
    -moz-transition: background .2s,-moz-transform .2s,padding .2s;
    transition: background .2s,transform .2s,padding .2s
}

.tabs-button:after {
    background: #d4d4d4;
    content: '';
    display: block;
    height: 1px;
    position: relative;
    z-index: 1;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.tabs-button:hover span {
    background: #fff
}

.tabs-button:last-child span {
    border-right: 1px solid #d4d4d4
}

.tabs-button.active span {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    color: #444;
    height: 100%;
    padding-top: 13px;
    position: relative;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none
}

.tabs-button.active:after {
    opacity: 0
}

.tabs-button.active+.tabs-button span {
    border-left: none
}

.tabs-content {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-top: none;
    overflow: hidden;
    padding: 20px;
    position: relative;
    z-index: 1
}

.alert {
    border-radius: 3px;
    color: rgba(0,0,0,0.87);
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    overflow: hidden;
    padding: 16px 23px;
    text-align: left;
    width: 100%
}

.alert:not(.alert-no-border) {
    border: 1px solid transparent
}

.alert.alert-inline {
    display: inline-block;
    width: auto
}

.alert h1,.alert h2,.alert h3,.alert h4,.alert h5,.alert h6,.alert .h1,.alert .h2,.alert .h3,.alert .h4,.alert .h5,.alert .h6 {
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 8px
}

.alert.alert-icon {
    display: table;
    padding: 0
}

.alert.alert-icon .alert-label {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 40px
}

.alert.alert-icon .alert-label .alert-svg {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    display: inline-block;
    padding: 2px 0 0
}

.alert.alert-icon .alert-label .alert-svg .icon {
    font-size: 18px;
    line-height: 21px
}

.alert.alert-icon .alert-content {
    display: table-cell;
    line-height: 17px;
    padding: 15px
}

.alert.alert-icon .alert-content ul,.alert.alert-icon .alert-content li {
    font-size: inherit;
    margin: 0;
    padding: 0
}

@media screen and (max-width: 767px) {
    .alert.alert-icon .alert-content {
        display:block;
        padding: 16px 23px
    }
}

.alert.alert-icon .alert-links {
    margin-top: 10px
}

.alert.alert-icon .alert-links a:not(:last-child) {
    margin-right: 15px
}

.alert.alert-danger {
    border-color: #dd301c
}

.alert.alert-danger .alert-label {
    background: #f3b7b0
}

.alert.alert-danger .alert-label .alert-svg {
    background: #dd301c
}

.alert.alert-danger .alert-label .icon {
    fill: #f3b7b0
}

.alert.alert-success {
    border-color: #29b474
}

.alert.alert-success .alert-label {
    background: #b4e5ce
}

.alert.alert-success .alert-label .alert-svg {
    background: #29b474
}

.alert.alert-success .alert-label .icon {
    fill: #b4e5ce
}

.alert.alert-warning {
    border-color: #ffb400
}

.alert.alert-warning .alert-label {
    background: #ffe5a6
}

.alert.alert-warning .alert-label .alert-svg {
    background: #ffb400
}

.alert.alert-warning .alert-label .icon {
    fill: #ffe5a6
}

.alert.alert-info {
    border-color: #2f82fb
}

.alert.alert-info .alert-label {
    background: #90c7ff
}

.alert.alert-info .alert-label .alert-svg {
    background: #2f82fb
}

.alert.alert-info .alert-label .icon {
    fill: #90c7ff
}

.snackbar {
    background-color: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    box-shadow: 0 16px 40px 0 rgba(4,4,4,0.13);
    color: #444;
    display: block;
    font-size: 14px;
    margin: 24px;
    max-width: 360px;
    min-height: 14px;
    min-width: 288px;
    opacity: 0;
    padding: 18px 57px 18px 64px;
    position: fixed;
    right: 0;
    bottom: -100px;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity,bottom,left,right,width,margin,border-radius;
    -moz-transition-property: opacity,bottom,left,right,width,margin,border-radius;
    transition-property: opacity,bottom,left,right,width,margin,border-radius;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    transition-timing-function: ease
}

.snackbar:hover {
    color: #444
}

.snackbar.clickable {
    cursor: pointer
}

.snackbar.success {
    background: #65b449;
    border-color: #65b449;
    color: #fff
}

.snackbar.success .snackbar-close .icon {
    fill: #fff;
    opacity: .5
}

.snackbar.success .snackbar-icon {
    background: rgba(255,255,255,0.5)
}

.snackbar.success .snackbar-icon .icon {
    fill: #65b449
}

.snackbar.error {
    background: #cb1a1a;
    border-color: #cb1a1a;
    color: #fff
}

.snackbar.error .snackbar-close .icon {
    fill: #fff;
    opacity: .5
}

.snackbar.error .snackbar-icon {
    background: rgba(255,255,255,0.5)
}

.snackbar.error .snackbar-icon .icon {
    fill: #cb1a1a
}

.snackbar .snackbar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer
}

.snackbar .snackbar-close:focus {
    outline: none
}

.snackbar .snackbar-close:active {
    opacity: .5
}

.snackbar .snackbar-title {
    font-weight: 500;
    margin-top: 5px
}

.snackbar .snackbar-body {
    margin-top: 10px
}

.snackbar>.icon-bell {
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-animation: bell 1s ease;
    -moz-animation: bell 1s ease;
    animation: bell 1s ease;
    -webkit-animation-iteration-count: 3;
    -moz-animation-iteration-count: 3;
    animation-iteration-count: 3
}

.snackbar .snackbar-icon {
    position: absolute;
    left: 24px
}

.snackbar .snackbar-icon:not(.icon-circle) {
    font-size: 25px
}

.snackbar .snackbar-icon .icon {
    fill: #006cff
}

.tooltip {
    display: inline-block;
    position: absolute;
    visibility: hidden;
    z-index: 1000;
    -webkit-transition: .2s visibility .2s;
    -moz-transition: .2s visibility .2s;
    transition: .2s visibility .2s
}

.tooltip[data-direction="top"] {
    margin-top: -13px;
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    -o-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%)
}

.tooltip[data-direction="top"] .tooltip-body {
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    transform-origin: bottom
}

.tooltip[data-direction="top"] .tooltip-body .tooltip-arrow {
    bottom: -9.5px;
    left: 50%;
    margin-left: -10px
}

.tooltip[data-direction="top"] .tooltip-body .tooltip-arrow:after {
    border-radius: 0 0 5px;
    margin-left: -9px;
    top: -10px
}

.tooltip[data-direction="right"] {
    margin-left: 13px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.tooltip[data-direction="right"] .tooltip-body {
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left
}

.tooltip[data-direction="right"] .tooltip-body .tooltip-arrow {
    height: 20px;
    left: -10px;
    margin-top: -10px;
    top: 50%;
    width: 10px
}

.tooltip[data-direction="right"] .tooltip-body .tooltip-arrow:after {
    border-radius: 0 0 0 5px;
    bottom: 1px;
    left: 5px
}

.tooltip[data-direction="bottom"] {
    margin-top: 13px;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%)
}

.tooltip[data-direction="bottom"] .tooltip-body {
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top
}

.tooltip[data-direction="bottom"] .tooltip-body .tooltip-arrow {
    left: 50%;
    margin-left: -10px;
    top: -10px
}

.tooltip[data-direction="bottom"] .tooltip-body .tooltip-arrow:after {
    border-radius: 5px 0 0;
    bottom: -10px;
    margin-left: -9px
}

.tooltip[data-direction="left"] {
    margin-left: -13px;
    -webkit-transform: translate(-100%, -50%);
    -moz-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    -o-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%)
}

.tooltip[data-direction="left"] .tooltip-body {
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right
}

.tooltip[data-direction="left"] .tooltip-body .tooltip-arrow {
    height: 20px;
    margin-top: -10px;
    right: -10px;
    top: 50%;
    width: 10px
}

.tooltip[data-direction="left"] .tooltip-body .tooltip-arrow:after {
    border-radius: 0 5px;
    bottom: 1px;
    left: -11px
}

.tooltip[data-open="true"] {
    visibility: visible;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s
}

.tooltip[data-open="true"] .tooltip-body {
    font-size: 12px;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none
}

.tooltip-body {
    background-color: rgba(68,68,68,0.9);
    color: #fff;
    font-size: 12px;
    left: 0;
    max-width: 240px;
    min-height: 32px;
    min-width: 50px;
    opacity: 0;
    padding: 10px;
    position: relative;
    text-align: left;
    top: 0;
    white-space: normal;
    will-change: transform;
    z-index: 1;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    -moz-transition: -moz-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.tooltip-body .tooltip-content {
    display: block;
    line-height: 15px;
    overflow: hidden
}

.tooltip-body .tooltip-title {
    color: #fff;
    font-size: inherit;
    font-weight: 500;
    line-height: normal;
    margin: 0
}

.tooltip-body .tooltip-arrow {
    display: block;
    height: 10px;
    overflow: hidden;
    position: absolute;
    width: 20px;
    z-index: 1
}

.tooltip-body .tooltip-arrow:after {
    background: rgba(68,68,68,0.9);
    border-radius: 5px 0 0;
    content: "";
    display: block;
    height: 16px;
    width: 16px;
    left: 11px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.tooltip.light .tooltip-body {
    background-color: #fff;
    border: 1px solid #d4d4d4;
    box-shadow: 0 2px 5px rgba(0,0,0,0.13);
    color: #444
}

.tooltip.light .tooltip-body .tooltip-title {
    color: #444
}

.tooltip.light .tooltip-body .tooltip-arrow:after {
    background: #fff;
    border: 1px solid #d4d4d4
}

.datetime-picker {
    padding: 30px;
    width: 310px;
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left
}

.datetime-picker::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (max-width: 639px) {
    .datetime-picker {
        padding:20px;
        width: 280px
    }
}

.datetime-picker .triangle {
    left: 52px
}

.datetime-picker-title {
    margin-bottom: 20px;
    position: relative;
    text-align: center
}

.datetime-picker-title select {
    cursor: pointer;
    margin: 0;
    opacity: 0;
    z-index: 9998;
    position: absolute;
    top: 5px;
    left: 0
}

.datetime-picker-label {
    color: #444;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    overflow: hidden;
    padding: 5px 3px;
    position: relative;
    z-index: 9999
}

.datetime-picker-prev,.datetime-picker-next {
    background: transparent center/100% no-repeat;
    border: 0;
    cursor: pointer;
    display: block;
    height: 21px;
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-indent: 20px;
    white-space: nowrap;
    width: 20px
}

.datetime-picker-prev.is-disabled,.datetime-picker-next.is-disabled {
    cursor: default;
    opacity: 0.2
}

.datetime-picker-prev,.is-rtl .datetime-picker-next,.datetime-picker-next,.is-rtl .datetime-picker-prev {
    -webkit-transition: background-image .2s;
    -moz-transition: background-image .2s;
    transition: background-image .2s
}

.datetime-picker-prev,.is-rtl .datetime-picker-next {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTI4IDEyOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTI4IDEyOCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZmlsbD0iI2E4YThhOCIgZD0iTTk2LDExOS40YzQtMy44LDQtMTAsMC0xMy45TDUzLjQsNjRMOTYsMjIuNWM0LTMuOCw0LTEwLDAtMTMuOWMtNC0zLjgtMTAuMi0zLjgtMTQuMiwwTDMyLDU3LjFjLTQsMy44LTQsMTAsMCwxMy45bDQ5LjksNDguNUM4NS44LDEyMy4yLDkyLjIsMTIzLjIsOTYsMTE5LjR6Ii8+PC9zdmc+");
    float: left
}

.datetime-picker-prev:hover,.is-rtl .datetime-picker-next:hover {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTI4IDEyOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTI4IDEyOCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZmlsbD0iIzAwNmNmZiIgZD0iTTk2LDExOS40YzQtMy44LDQtMTAsMC0xMy45TDUzLjQsNjRMOTYsMjIuNWM0LTMuOCw0LTEwLDAtMTMuOWMtNC0zLjgtMTAuMi0zLjgtMTQuMiwwTDMyLDU3LjFjLTQsMy44LTQsMTAsMCwxMy45bDQ5LjksNDguNUM4NS44LDEyMy4yLDkyLjIsMTIzLjIsOTYsMTE5LjR6Ii8+PC9zdmc+")
}

.datetime-picker-next,.is-rtl .datetime-picker-prev {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTI4IDEyOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTI4IDEyOCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZmlsbD0iI2E4YThhOCIgZD0iTTQ2LjEsMTE5LjVMOTYsNzFjNC0zLjksNC0xMC4xLDAtMTMuOUw0Ni4yLDguNmMtNC0zLjgtMTAuMi0zLjgtMTQuMiwwYy00LDMuOS00LDEwLjEsMCwxMy45TDc0LjYsNjRMMzIsMTA1LjVjLTQsMy45LTQsMTAuMSwwLDEzLjlDMzUuOCwxMjMuMiw0Mi4yLDEyMy4yLDQ2LjEsMTE5LjV6Ii8+PC9zdmc+");
    float: right
}

.datetime-picker-next:hover,.is-rtl .datetime-picker-prev:hover {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTI4IDEyOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTI4IDEyOCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZmlsbD0iIzAwNmNmZiIgZD0iTTQ2LjEsMTE5LjVMOTYsNzFjNC0zLjksNC0xMC4xLDAtMTMuOUw0Ni4yLDguNmMtNC0zLjgtMTAuMi0zLjgtMTQuMiwwYy00LDMuOS00LDEwLjEsMCwxMy45TDc0LjYsNjRMMzIsMTA1LjVjLTQsMy45LTQsMTAuMSwwLDEzLjlDMzUuOCwxMjMuMiw0Mi4yLDEyMy4yLDQ2LjEsMTE5LjV6Ii8+PC9zdmc+")
}

.datetime-picker-select {
    display: inline-block
}

.datetime-picker-table {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%
}

.datetime-picker-table th,.datetime-picker-table td {
    padding: 0;
    text-align: center;
    width: 14.29%
}

.datetime-picker-table th {
    color: #444;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
    text-align: center
}

.datetime-picker-table abbr {
    border-bottom: none;
    text-decoration: none
}

.datetime-picker-button {
    background: transparent;
    border: 0;
    border-radius: 3px;
    color: #444;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 15px;
    margin: 3px 0;
    outline: none;
    padding: 5px;
    text-align: center;
    width: 25px;
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    transition: background .2s
}

.is-today .datetime-picker-button {
    font-weight: 500
}

.is-selected .datetime-picker-button,.is-selected .datetime-picker-button:hover {
    background: #006cff;
    color: #fff
}

.is-disabled .datetime-picker-button,.is-outside-current-month .datetime-picker-button {
    color: #ababab;
    cursor: default;
    pointer-events: none
}

.datetime-picker-button:hover {
    background: #fafafa
}

.datetime-picker-time {
    margin-top: 12px
}

.datetime-picker-time .form-control,.datetime-picker-time .select-button {
    display: inline-block;
    font-size: 30px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    width: 65px
}

.datetime-picker-time .colon {
    display: inline-block;
    font-size: 30px;
    padding: 0 5px;
    -webkit-animation: blink 2s linear infinite;
    -moz-animation: blink 2s linear infinite;
    animation: blink 2s linear infinite
}

@-webkit-keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.datetime-picker-time .time-period {
    float: right;
    margin: 5px 30px 0 0
}

.datetime-picker-time .time-period label {
    display: block;
    margin: 10px 0
}

.datetime-picker-time .btn {
    margin-top: 10px
}

.datetime-picker-week {
    font-size: 11px
}

.is-inrange .datetime-picker-button,.is-startrange .datetime-picker-button,.is-endrange .datetime-picker-button {
    background: #006cff;
    color: #fff
}

.is-inrange .datetime-picker-button {
    border-radius: 0;
    width: 100%
}

.is-startrange:not(.is-endrange) .datetime-picker-button {
    border-radius: 3px 0 0 3px;
    margin-left: 5px;
    width: 30px
}

.is-endrange:not(.is-startrange) .datetime-picker-button {
    border-radius: 0 3px 3px 0;
    margin-right: 5px;
    width: 30px
}

@-webkit-keyframes colors {
    0%,75% {
        stroke: #f7931d
    }

    25% {
        stroke: #ef4e22
    }

    50% {
        stroke: #1b99d6
    }

    100% {
        stroke: #1268b2
    }
}

@-moz-keyframes colors {
    0%,75% {
        stroke: #f7931d
    }

    25% {
        stroke: #ef4e22
    }

    50% {
        stroke: #1b99d6
    }

    100% {
        stroke: #1268b2
    }
}

@keyframes colors {
    0%,75% {
        stroke: #f7931d
    }

    25% {
        stroke: #ef4e22
    }

    50% {
        stroke: #1b99d6
    }

    100% {
        stroke: #1268b2
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 187;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 186, 187;
        stroke-dashoffset: -46.75
    }

    100% {
        stroke-dasharray: 186, 187;
        stroke-dashoffset: -186
    }
}

@-moz-keyframes dash {
    0% {
        stroke-dasharray: 1, 187;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 186, 187;
        stroke-dashoffset: -46.75
    }

    100% {
        stroke-dasharray: 186, 187;
        stroke-dashoffset: -186
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 187;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 186, 187;
        stroke-dashoffset: -46.75
    }

    100% {
        stroke-dasharray: 186, 187;
        stroke-dashoffset: -186
    }
}

@-webkit-keyframes rotator {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotator {
    100% {
        -moz-transform: rotate(360deg)
    }
}

@keyframes rotator {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    -moz-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite
}

.spinner .path {
    stroke: #1268b2;
    stroke-dasharray: 1, 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite,colors 5.6s ease-in-out infinite;
    -moz-animation: dash 1.4s ease-in-out infinite,colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite,colors 5.6s ease-in-out infinite
}

.spinner.orange .path {
    stroke: #f2470f;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    -moz-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite
}

html.no-svg .spinner,html.no-smil .spinner,html.no-cssanimations .spinner {
    height: 66px;
    width: 66px;
    background: url("../img/spinner.gif");
    background-size: 100%;
    -webkit-animation: none;
    -moz-animation: none;
    animation: none
}

html.no-svg .spinner.small,html.no-smil .spinner.small,html.no-cssanimations .spinner.small {
    height: 40px;
    width: 40px
}

html.no-svg .spinner .path,html.no-smil .spinner .path,html.no-cssanimations .spinner .path {
    display: none
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(48,48,48,0.9);
    opacity: 0;
    overflow-y: auto;
    padding: 20px;
    text-align: center;
    visibility: hidden;
    white-space: nowrap;
    will-change: opacity;
    z-index: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity .3s,visibility 0s linear .3s;
    -moz-transition: opacity .3s,visibility 0s linear .3s;
    transition: opacity .3s,visibility 0s linear .3s
}

.modal::-moz-selection {
    background-color: transparent
}

.modal::selection {
    background-color: transparent
}

.modal[data-open="true"] {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    margin-right: -0.3em;
    vertical-align: middle
}

.modal-window {
    background: #fff;
    box-shadow: 0 7px 9px 0 rgba(4,4,4,0.13);
    display: inline-block;
    font-size: 14px;
    min-width: 280px;
    overflow: hidden;
    padding: 30px 20px;
    position: relative;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    width: 100%;
    will-change: transform, opacity;
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s;
    -webkit-transform: translate3d(0, -25px, 0);
    -moz-transform: translate3d(0, -25px, 0);
    -ms-transform: translate3d(0, -25px, 0);
    -o-transform: translate3d(0, -25px, 0);
    transform: translate3d(0, -25px, 0)
}

@media screen and (min-width: 768px) {
    .modal-window {
        padding:40px 30px
    }
}

.modal-window.no-padding {
    padding: 0
}

.modal-padding {
    padding: 30px 20px
}

@media screen and (min-width: 768px) {
    .modal-padding {
        padding:40px 30px
    }
}

.modal[data-open="true"] .modal-window {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.modal-close {
    float: right;
    margin: -25px -15px 0 0
}

@media screen and (max-width: 767px) {
    .modal-close {
        margin:-15px -5px 0 0
    }
}

.modal-close .icon {
    font-size: 24px
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .modal-responsive .modal-window {
        width:600px
    }
}

@media screen and (min-width: 768px) {
    .modal-responsive .modal-window {
        width:708px
    }
}

.modal .form-group {
    margin: 15px 0
}

.modal .form-group>label {
    padding: 5px 0
}

.modal .form-group>label,.modal .form-group .form-control-input,.modal .form-group .form-control-input.shift {
    float: left;
    display: block;
    margin-right: 15.38462%;
    width: 100%;
    margin: 0;
    text-align: left
}

.modal .form-group>label:last-child,.modal .form-group .form-control-input:last-child,.modal .form-group .form-control-input.shift:last-child {
    margin-right: 0
}

.modal .form-group.form-dual-buttons {
    margin: 0
}

@media screen and (max-width: 767px) {
    .modal .form-group .form-group-action {
        font-size:14px;
        height: 42px;
        line-height: 42px;
        padding: 0 14px
    }

    .modal .form-group .form-group-action.btn-secondary,.modal .form-group .btn-group .form-group-action.btn,.btn-group .modal .form-group .form-group-action.btn,.modal .form-group .form-group-action.btn-secondary-dark {
        height: 44px
    }

    .modal .form-group .form-group-action .icon {
        font-size: 24px
    }

    .modal .form-group .form-group-action .icon.fl-l {
        margin: 0 9px 0 -11px
    }

    .modal .form-group .form-group-action .icon.fl-r {
        margin: 0 -11px 0 9px
    }
}

.modal-choice .modal-window {
    background: transparent;
    box-shadow: none;
    color: #fff;
    text-align: center
}

.modal-choice .modal-window h1,.modal-choice .modal-window h2,.modal-choice .modal-window h3,.modal-choice .modal-window h4,.modal-choice .modal-window h5,.modal-choice .modal-window h6,.modal-choice .modal-window .h1,.modal-choice .modal-window .h2,.modal-choice .modal-window .h3,.modal-choice .modal-window .h4,.modal-choice .modal-window .h5,.modal-choice .modal-window .h6 {
    color: inherit
}

.modal-choice .modal-window .icon {
    fill: #fff
}

.modal-choice .modal-window .modal-icon {
    font-size: 50px;
    margin: 10px 0
}

.modal-button {
    margin: 30px 5px 0
}

@media screen and (max-width: 767px) {
    .modal-button.btn-large {
        font-size:14px;
        height: 42px;
        line-height: 42px;
        padding: 0 14px
    }

    .modal-button.btn-large.btn-secondary,.btn-group .modal-button.btn-large.btn,.modal-button.btn-large.btn-secondary-dark {
        height: 44px
    }

    .modal-button.btn-large .icon {
        font-size: 24px
    }

    .modal-button.btn-large .icon.fl-l {
        margin: 0 9px 0 -11px
    }

    .modal-button.btn-large .icon.fl-r {
        margin: 0 -11px 0 9px
    }
}

.modal-footer {
    background-color: #f5f5f5;
    padding: 18px 0
}

.modal-pagination {
    text-align: center
}

.modal-pagination .pagination-bullet {
    background-color: rgba(0,0,0,0.28);
    border: none;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    height: 10px;
    width: 10px;
    -webkit-transition: background-color .2s;
    -moz-transition: background-color .2s;
    transition: background-color .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none
}

.modal-pagination .pagination-bullet:hover {
    background-color: rgba(0,0,0,0.54)
}

.modal-pagination .pagination-bullet.active {
    background-color: #2f82fb
}

body.modal-opened {
    overflow: hidden
}

.table {
    background: #fff;
    border: 1px solid #d1d1d1;
    margin: 10px 0;
    overflow: hidden
}

.table>.table-body {
    display: table;
    width: 100%;
    table-layout: fixed;
    font-size: 14px
}

.table>.table-body>.tr {
    display: table-row
}

.table>.table-body>.tr>.td,.table>.table-body>.tr>.th {
    border-bottom: 1px solid #d1d1d1;
    display: table-cell;
    padding: 20px
}

.table>.table-body>.tr>.td:last-child,.table>.table-body>.tr>.th:last-child {
    padding-right: 20px
}

.table>.table-body>.tr>.th {
    background: #f5f5f5;
    color: rgba(0,0,0,0.54);
    font-weight: 500
}

.table>.table-body>.tr>.th a {
    color: inherit
}

.table>.table-body>.tr>.th .icon {
    margin-left: 13px;
    font-size: 24px
}

.table>.table-body>.tr>.td.td-actions {
    padding-bottom: 15px;
    padding-top: 15px;
    text-align: right;
    vertical-align: middle
}

.table>.table-body>.tr>.td.td-actions>.icon-button .icon {
    font-size: 22px
}

.table>.table-body>.tr>.td.td-actions>.icon-button .icon:hover {
    fill: #006cff
}

.table>.table-body>.tr>.td.td-actions .td-actions-item {
    margin: 0 6px
}

.table>.table-body>.tr>.td.td-actions .td-actions-item:last-child {
    margin-right: 0
}

.table>.table-body>.tr>.td.th-key {
    color: #006cff;
    font-weight: 500
}

.table>.table-body>.tr:last-child>.td,.table>.table-body>.tr:last-child>.th {
    border-bottom: none
}

.table .tr-empty {
    border-top: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 20px;
    text-align: center
}

@media screen and (max-width: 919px) {
    .table .tr-empty {
        border:1px solid #d1d1d1
    }
}

@media screen and (max-width: 919px) {
    .table.table-responsive {
        background:transparent;
        border: none
    }

    .table.table-responsive>.table-body {
        display: block
    }

    .table.table-responsive>.table-body>.tr {
        background: #fff;
        border: 1px solid #d1d1d1;
        display: block;
        margin: 10px 0;
        overflow: hidden
    }

    .table.table-responsive>.table-body>.tr.thead {
        display: none
    }

    .table.table-responsive>.table-body>.tr>.td {
        border-bottom: none;
        width: 100%;
        display: block;
        padding: 13px 20px
    }

    .table.table-responsive>.table-body>.tr>.td.th-side {
        border-bottom: 1px solid #d1d1d1;
        margin-bottom: 10px
    }

    .table.table-responsive>.table-body>.tr>.td:not(.th-side) {
        padding: 5px 20px
    }

    .table.table-responsive>.table-body>.tr>.td[data-title] {
        display: table
    }

    .table.table-responsive>.table-body>.tr>.td[data-title]::before {
        content: attr(data-title);
        display: table-cell;
        font-weight: 500;
        padding-right: 35px;
        width: 30%
    }

    .table.table-responsive>.table-body>.tr>.td[data-title].td-content {
        display: table-cell
    }

    .table.table-responsive>.table-body>.tr>.td:last-child {
        border: none
    }

    .table.table-responsive>.table-body>.tr>.td.td-actions {
        background: #f5f5f5;
        margin-top: 10px;
        padding: 12px 10px
    }
}

.table-filters {
    background: #f5f5f5;
    border-bottom: 1px solid #d1d1d1;
    display: none
}

.table-filters.opened {
    display: block
}

.table-filters .table-filters-head {
    background: #f5f5f5;
    display: none;
    padding: 16px 20px
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .table-filters .table-filters-head {
        padding:16px 30px
    }
}

@media screen and (max-width: 919px) {
    .table-filters .table-filters-head {
        display:block
    }
}

.table-filters .table-filters-head span {
    font-size: 11px;
    text-transform: uppercase
}

.table-filters .table-filters-body {
    padding: 20px
}

.table-filters .table-filters-body::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .table-filters .table-filters-body {
        padding:20px 30px
    }
}

.table-filters .btn-mobile {
    display: none
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .table-filters .btn-mobile {
        font-size:18px;
        height: 52px;
        line-height: 52px;
        padding: 0 22px
    }

    .table-filters .btn-mobile.btn-secondary,.table-filters .btn-group .btn-mobile.btn,.btn-group .table-filters .btn-mobile.btn,.table-filters .btn-mobile.btn-secondary-dark {
        height: 54px
    }

    .table-filters .btn-mobile .icon {
        font-size: 24px
    }

    .table-filters .btn-mobile .icon.fl-l {
        margin: 0 14px 0 -11px
    }

    .table-filters .btn-mobile .icon.fl-r {
        margin: 0 -11px 0 14px
    }
}

@media screen and (max-width: 919px) {
    .table-filters {
        background:#fff;
        display: block;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        z-index: 6;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        -o-transform-origin: top;
        transform-origin: top;
        -webkit-transition: -webkit-transform .2s,opacity .2s;
        -moz-transition: -moz-transform .2s,opacity .2s;
        transition: transform .2s,opacity .2s
    }

    .table-filters.opened {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none
    }

    .table-filters .btn-mobile {
        display: inline-block
    }

    .table-filters .btn-mobile.fl-l,.table-filters .btn-mobile.fl-r {
        display: block
    }
}

.table-filters .table-filter {
    margin-right: 20px;
    width: 130px
}

@media screen and (max-width: 919px) {
    .table-filters .table-filter {
        margin:0 0 10px;
        width: 100%
    }
}

.table-filters .table-filter:not(.fl-r) {
    float: left
}

.table-filters .table-filter .table-filter-clear {
    display: inline-block;
    font-size: 14px;
    margin-top: 26px
}

@media screen and (max-width: 919px) {
    .table-filters .table-filter .table-filter-clear {
        display:none
    }
}

.table-filters .select .select-button {
    margin: 5px 0
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .table-filters .select .select-button {
        font-size:18px;
        height: 54px;
        padding: 0 17px;
        line-height: 52px;
        padding-right: 52px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) and (max-width: 767px) {
    .table-filters .select .select-button {
        font-size:14px;
        height: 44px;
        padding: 0 14px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .table-filters .select .select-button .icon {
        font-size:24px;
        right: 20px
    }
}

@media screen and (max-width: 767px) {
    .table-filters .select .select-button {
        font-size:14px;
        height: 44px;
        padding: 0 14px;
        line-height: 42px;
        padding-right: 42px
    }

    .table-filters .select .select-button .icon {
        font-size: 24px;
        right: 20px
    }
}

.table-filters-mask {
    display: none
}

@media screen and (max-width: 919px) {
    .table-filters-mask {
        background:rgba(48,48,48,0.9);
        content: '';
        z-index: 5;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%
    }
}

.table-filters.opened+.table-filters-mask {
    display: block
}

.star-rating {
    display: inline-block;
    font-size: 0;
    position: relative;
    vertical-align: top;
    white-space: nowrap
}

.star-rating .icon {
    fill: #d9d9d9;
    font-size: 17px
}

.star-rating .star-rating-progress {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 0;
    -webkit-transition: width .2s;
    -moz-transition: width .2s;
    transition: width .2s
}

.star-rating .star-rating-progress .icon {
    fill: #fa8c19
}

.user-widget {
    display: flex;
    white-space: nowrap
}

.user-widget .user-pic {
    margin: -4px 9px 0 0
}

.user-widget .user-info {
    display: inline-block;
    vertical-align: top
}

.user-widget .user-name {
    display: inline-block;
    height: 16px;
    line-height: 16px;
    margin-bottom: 6px;
    overflow: hidden;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap
}

.user-widget .user-badge {
    color: rgba(0,0,0,0.54)
}

.user-widget .user-badge .icon {
    fill: rgba(0,0,0,0.54);
    vertical-align: top
}

.user-widget .user-rating {
    display: block
}

.user-widget .user-rating .star-rating {
    margin-top: -3px;
    vertical-align: middle
}

.user-widget .user-rating .rating-data {
    color: rgba(0,0,0,0.54);
    display: flex;
    font-weight: 700;
    line-height: 17px;
    vertical-align: middle
}

.user-widget .user-rating .rating-data span {
    color: rgba(0,0,0,0.54)
}

.user-widget .user-rating .rating-data>span:not(.separator):not(.percent) {
    color: rgba(0,0,0,0.54);
    font-weight: 400
}

.user-widget .user-rating .rating-data .icon {
    font-size: 17px;
    margin: 0 5px
}

.user-widget .user-rating .rating-data .separator {
    color: #ebebeb;
    margin: 0 0 0 8px
}

.user-widget .user-rating .rating-data .percent {
    color: #29b474;
    font-weight: 700;
    margin-right: 6px
}

.user-widget.direct .user-name,.user-widget.trusted .user-name {
    border-radius: 11px;
    display: inline-flex;
    height: 22px;
    line-height: 22px;
    padding: 0 6px
}

.user-widget.direct .user-pic {
    border-color: #ffb400
}

.user-widget.direct .user-name {
    border: 1px solid #ffb400
}

.user-widget.direct .user-name .icon {
    font-size: 12px;
    margin-left: 5px
}

.user-widget.trusted .user-pic {
    border-color: #29b474
}

.user-widget.trusted .user-name {
    border: 1px solid #29b474
}

.user-widget.trusted .user-name .green {
    color: #29b474;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    text-transform: uppercase
}

.user-widget.small .user-pic {
    height: 28px;
    width: 28px;
    border-width: 2px;
    margin-right: 5px;
    margin-top: 0
}

.user-widget.small .user-pic img,.user-widget.small .user-pic .no-photo {
    height: 24px;
    width: 24px
}

.user-widget.small .user-name {
    margin-bottom: 3px
}

.user-widget.small .user-badge {
    font-size: 12px
}

.user-widget.small .user-badge .icon {
    font-size: 10px;
    margin-right: 2px
}

.user-widget.small .user-rating {
    margin-left: 0
}

.user-widget.small .rating-data {
    font-size: 12px
}

.user-widget.small .rating-data .icon {
    font-size: 14px
}

.user-widget.small .rating-data .separator {
    margin-left: 0
}

.user-widget.small .rating-data .positive-feedback {
    display: none
}

.user-widget.small .rating-data .no-feedback {
    margin-right: 4px
}

.user-widget.large .user-pic {
    height: 110px;
    width: 110px
}

.user-widget.large .user-pic img,.user-widget.large .user-pic .no-photo {
    height: 104px;
    width: 104px;
    border-width: 2px
}

.user-widget.large .user-info {
    align-self: center
}

.pswp {
    z-index: 10001
}

.pswp__bg {
    background-color: #303030
}

.pswp__img:not(.pswp__img--placeholder) {
    box-shadow: 0 6px 27px rgba(0,0,0,0.43)
}

.pswp__top-bar {
    height: 70px
}

@media screen and (min-width: 768px) and (max-width: 1219px) {
    .pswp__top-bar {
        height:60px
    }
}

.pswp__top-bar {
    background: #282828 !important;
    z-index: 1
}

.pswp__button {
    margin-top: 16px
}

@media screen and (min-width: 768px) and (max-width: 1219px) {
    .pswp__button {
        margin-top:12px
    }
}

.pswp__counter {
    color: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.pswp__button--arrow--left:before,.pswp__button--arrow--right:before {
    display: none
}

.pswp__button--arrow--left,.pswp__button--arrow--right {
    background: no-repeat center;
    height: 100%;
    margin: 0;
    top: 0;
    width: 180px
}

@media screen and (max-width: 1519px) {
    .pswp__button--arrow--left,.pswp__button--arrow--right {
        width:110px
    }
}

.pswp__button--arrow--left {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjdweCIgaGVpZ2h0PSIyN3B4IgoJIHZpZXdCb3g9IjAgMCAxMjggMTI4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjggMTI4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTTk2LDExOS40YzQtMy44LDQtMTAsMC0xMy45TDUzLjQsNjRMOTYsMjIuNWM0LTMuOCw0LTEwLDAtMTMuOWMtNC0zLjgtMTAuMi0zLjgtMTQuMiwwTDMyLDU3LjFjLTQsMy44LTQsMTAsMCwxMy45CglsNDkuOSw0OC41Qzg1LjgsMTIzLjIsOTIuMiwxMjMuMiw5NiwxMTkuNHoiLz4KPC9zdmc+Cg==")
}

.pswp__button--arrow--right {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjdweCIgaGVpZ2h0PSIyN3B4IgoJIHZpZXdCb3g9IjAgMCAxMjggMTI4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjggMTI4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTTQ2LjEsMTE5LjVMOTYsNzFjNC0zLjksNC0xMC4xLDAtMTMuOUw0Ni4yLDguNmMtNC0zLjgtMTAuMi0zLjgtMTQuMiwwYy00LDMuOS00LDEwLjEsMCwxMy45TDc0LjYsNjRMMzIsMTA1LjUKCWMtNCwzLjktNCwxMC4xLDAsMTMuOUMzNS44LDEyMy4yLDQyLjIsMTIzLjIsNDYuMSwxMTkuNXoiLz4KPC9zdmc+Cg==")
}

.pswp__zoom-wrap {
    text-align: center
}

.pswp__zoom-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.pswp__error-msg {
    width: 100% !important
}

.pswp .wrapper {
    display: inline-block;
    line-height: 0;
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    text-align: left;
    vertical-align: middle;
    width: 100%;
    z-index: 1045
}

.pswp .video-wrapper {
    height: 0;
    padding-bottom: 56.25%;
    padding-top: 25px;
    position: relative;
    width: 100%
}

.pswp .video-wrapper iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.pswp video {
    height: auto !important;
    width: 100% !important
}

.drag-and-drop {
    border: 2px dashed #90c7ff;
    border-radius: 5px;
    display: block;
    -webkit-transition: border-color .2s;
    -moz-transition: border-color .2s;
    transition: border-color .2s;
    min-height: 195px;
    text-align: center
}

.drag-and-drop:hover,.drag-and-drop.active {
    border-color: #2f82fb
}

.drag-and-drop.active {
    cursor: default
}

.drag-and-drop.drag-action {
    border-color: #2f82fb
}

.drag-and-drop.error {
    border-color: #dd301c
}

.drag-and-drop .alert {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

@media screen and (max-width: 767px) {
    .drag-and-drop .alert .alert-label {
        display:none
    }
}

.drag-and-drop .alert .alert-content {
    background: #f3b7b0
}

@media screen and (min-width: 768px) {
    .drag-and-drop .alert .alert-content {
        padding-left:0
    }
}

.drag-and-drop .drag-and-drop-empty {
    color: rgba(0,0,0,0.54);
    cursor: pointer;
    font-size: 14px;
    padding: 33px 0
}

.drag-and-drop .drag-and-drop-empty .icon-upload_cloud {
    fill: #2f82fb;
    height: 42px;
    margin-bottom: 13px;
    width: 66px
}

.drag-and-drop .drag-and-drop-empty .dropfiles {
    color: rgba(0,0,0,0.87);
    display: inline-block;
    font-size: 18px
}

@media screen and (max-width: 639px) {
    .drag-and-drop .drag-and-drop-empty .dropfiles {
        display:none
    }
}

.drag-and-drop .drag-and-drop-empty .mobile-select {
    display: none
}

@media screen and (max-width: 639px) {
    .drag-and-drop .drag-and-drop-empty .mobile-select {
        display:inline-block;
        margin-top: 20px
    }
}

.drag-and-drop .drag-and-drop-empty .btn {
    margin-left: 10px
}

.drag-and-drop .drag-and-drop-empty .extensions {
    margin-top: 5px;
    text-transform: uppercase
}

.drag-and-drop .drag-and-drop-empty .button_block {
    margin-bottom: 15px
}

.drag-and-drop .drag-and-drop-files {
    padding: 5px;
    text-align: left
}

.drag-and-drop .add-file,.drag-and-drop .drag-and-drop-file {
    border: 2px dashed #90c7ff;
    border-radius: 3px;
    display: inline-block;
    margin: 10px;
    height: 108px;
    width: 108px;
    -webkit-animation: dagAddFile .4s;
    -moz-animation: dagAddFile .4s;
    animation: dagAddFile .4s;
    -webkit-transition: border .2s;
    -moz-transition: border .2s;
    transition: border .2s
}

.drag-and-drop .add-file .icon {
    height: 34px;
    width: 34px;
    fill: rgba(0,0,0,0.54)
}

.drag-and-drop .add-file:hover {
    border-color: #2f82fb
}

.drag-and-drop .drag-and-drop-file {
    padding: 0 9px;
    position: relative;
    text-align: center;
    vertical-align: top
}

.drag-and-drop .drag-and-drop-file.uploaded:hover {
    border-color: #2f82fb
}

.drag-and-drop .drag-and-drop-file .file-preview {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s;
    background-repeat: no-repeat;
    opacity: 0
}

.drag-and-drop .drag-and-drop-file.uploaded.uploaded .file-preview {
    opacity: 1
}

.drag-and-drop .drag-and-drop-file .progress {
    background: rgba(0,0,0,0.09);
    height: 5px;
    margin-top: 40px;
    width: 100%
}

.drag-and-drop .drag-and-drop-file .progress span {
    background: #2f82fb;
    display: block;
    height: 5px;
    width: 0;
    -webkit-transition: width .2s;
    -moz-transition: width .2s;
    transition: width .2s
}

.drag-and-drop .drag-and-drop-file.uploaded .progress {
    display: none
}

.drag-and-drop .drag-and-drop-file:before,.drag-and-drop .drag-and-drop-file:after {
    background: rgba(0,0,0,0.09);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    visibility: hidden;
    z-index: 1
}

.drag-and-drop .drag-and-drop-file.uploaded:before {
    visibility: visible;
    -webkit-animation: .2s fadeOut 1s linear both;
    -moz-animation: .2s fadeOut 1s linear both;
    animation: .2s fadeOut 1s linear both
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.drag-and-drop .drag-and-drop-file:after {
    opacity: 0;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.drag-and-drop .drag-and-drop-file.uploaded.type-image:hover .file-preview {
    opacity: .28
}

.drag-and-drop .drag-and-drop-file.uploaded.type-image:hover::after {
    opacity: 1;
    visibility: visible
}

.drag-and-drop .drag-and-drop-file .file-button,.drag-and-drop .drag-and-drop-file .remove-file {
    border-radius: 50%;
    height: 43px;
    width: 43px;
    margin-left: -22px
}

.drag-and-drop .drag-and-drop-file .file-button .icon,.drag-and-drop .drag-and-drop-file .remove-file .icon {
    fill: #fff
}

.drag-and-drop .drag-and-drop-file .remove-file {
    position: absolute;
    top: 32px;
    left: 50%;
    background: rgba(0,0,0,0.54);
    font-size: 20px;
    -webkit-transition: -webkit-transform .2s,opacity .2s,1s visibility 1s linear;
    -moz-transition: -moz-transform .2s,opacity .2s,1s visibility 1s linear;
    transition: transform .2s,opacity .2s,1s visibility 1s linear;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 3
}

.drag-and-drop .drag-and-drop-file.uploaded .remove-file {
    visibility: visible
}

.drag-and-drop .drag-and-drop-file.uploaded:not(.type-image) .remove-file {
    top: 25px
}

.drag-and-drop .drag-and-drop-file.uploaded:hover .remove-file {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    opacity: 1
}

.drag-and-drop .drag-and-drop-file .file-button {
    background: rgba(0,0,0,0.54);
    position: absolute;
    top: 35px;
    left: 50%;
    -webkit-transform: scale(0.5) translateY(25px);
    -moz-transform: scale(0.5) translateY(25px);
    -ms-transform: scale(0.5) translateY(25px);
    -o-transform: scale(0.5) translateY(25px);
    transform: scale(0.5) translateY(25px);
    z-index: 2;
    -webkit-transition: -webkit-transform .2s,background .2s;
    -moz-transition: -moz-transform .2s,background .2s;
    transition: transform .2s,background .2s
}

.drag-and-drop .drag-and-drop-file .file-button button {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 25px
}

.drag-and-drop .drag-and-drop-file .file-button .success-tick {
    display: none
}

.drag-and-drop .drag-and-drop-file.uploaded .file-button {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    background: #2f82fb;
    -webkit-animation: .2s fadeOut 1s linear both;
    -moz-animation: .2s fadeOut 1s linear both;
    animation: .2s fadeOut 1s linear both
}

.drag-and-drop .drag-and-drop-file.uploaded .file-button .cancel-button {
    display: none
}

.drag-and-drop .drag-and-drop-file.uploaded .file-button .success-tick {
    display: block
}

.drag-and-drop .drag-and-drop-file .file-info {
    padding-top: 15px;
    visibility: hidden;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.drag-and-drop .drag-and-drop-file .file-info .icon {
    fill: rgba(0,0,0,0.54);
    font-size: 54px
}

.drag-and-drop .drag-and-drop-file .file-info .file-name {
    color: rgba(0,0,0,0.87);
    font-size: 12px;
    margin-top: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    z-index: 3
}

.drag-and-drop .drag-and-drop-file .file-info .file-extension {
    position: absolute;
    top: 45px;
    left: 0;
    color: rgba(0,0,0,0.54);
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    width: 100%
}

.drag-and-drop .drag-and-drop-file.uploaded:not(.type-image):hover .file-info .icon,.drag-and-drop .drag-and-drop-file.uploaded:not(.type-image):hover .file-info .file-extension {
    opacity: 0
}

.drag-and-drop .drag-and-drop-file.uploaded .file-info {
    visibility: visible
}

.drag-and-drop .drag-and-drop-file.type-image .file-info {
    display: none
}

.drag-and-drop .drag-and-drop-file.uploaded {
    background: #fff;
    border: 1px solid #e0e0e0
}

@-webkit-keyframes dagAddFile {
    0% {
        -webkit-transform: scale(0)
    }

    50% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: none
    }
}

@-moz-keyframes dagAddFile {
    0% {
        -moz-transform: scale(0)
    }

    50% {
        -moz-transform: scale(0)
    }

    100% {
        -moz-transform: none
    }
}

@keyframes dagAddFile {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none
    }
}

.stepper {
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start
}

.stepper-responsive .stepper-container {
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px)
}

.stepper-responsive .stepper-container ul li {
    background: transparent;
    display: block;
    float: left;
    max-width: 100%;
    padding: 0;
    text-align: center;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    flex-shrink: 0;
    -ms-flex-negative: 0
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    .stepper-responsive .stepper-container ul li {
        width:260px
    }
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    .stepper-responsive .stepper-container ul li {
        width:265px
    }
}

@media screen and (min-width: 1520px) {
    .stepper-responsive .stepper-container ul li {
        width:268px
    }
}

.stepper-responsive .stepper-item {
    background: #fff;
    display: inline-block;
    padding: 20px
}

@media screen and (max-width: 919px) {
    .stepper-responsive .stepper-arrow_left,.stepper-responsive .stepper-arrow_right {
        display:none
    }

    .stepper-responsive .stepper-item {
        max-width: 100%
    }

    .stepper-responsive .stepper-container:before {
        border: none
    }

    .stepper-responsive .stepper-container ul {
        transform: none !important
    }

    .stepper-responsive .stepper-container ul li {
        margin: 0;
        padding: 0;
        text-align: left;
        width: 100%
    }

    .stepper-responsive .stepper-container ul li:not([data-state="active"]) {
        display: none
    }

    .stepper-responsive .stepper-container ul li .stepper-item {
        padding-left: 0
    }
}

.stepper-container {
    padding: 30px 0;
    position: relative;
    width: 100%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 auto;
    -moz-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto
}

@media screen and (max-width: 1219px) {
    .stepper-container {
        padding-bottom:25px;
        padding-top: 25px
    }
}

.stepper-container:before {
    border-top: 1px solid #e0e0e0;
    content: "";
    margin: 0 auto;
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0
}

.stepper-container ul {
    position: relative;
    width: 100%;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
    -ms-flex-align: stretch;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-transition: -webkit-transform .2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: -moz-transform .2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform .2s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.stepper-container ul li {
    background: #fff;
    margin-right: 20px;
    max-width: 248px;
    padding: 0 10px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
}

.stepper-container ul li:first-child {
    padding-left: 0;
    text-align: left
}

.stepper-container ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    text-align: right
}

.stepper-container ul li[data-state="active"] .stepper-item {
    color: rgba(0,0,0,0.87);
    font-weight: 700
}

.stepper-container ul li[data-state="active"] .stepper-item .stepper-icon {
    background: #2f82fb
}

.stepper-container ul li[data-state="completed"] .stepper-item {
    color: rgba(0,0,0,0.87)
}

.stepper-container ul li[data-state="completed"] .stepper-item .stepper-icon {
    background: #2f82fb
}

.stepper-container ul li[data-state="completed"] .stepper-item .stepper-icon:after,.stepper-container ul li[data-state="completed"] .stepper-item .stepper-icon:before {
    -webkit-transition: width .1s;
    -moz-transition: width .1s;
    transition: width .1s
}

.stepper-container ul li[data-state="completed"] .stepper-item .stepper-icon:before {
    width: 6px
}

.stepper-container ul li[data-state="completed"] .stepper-item .stepper-icon:after {
    width: 9px;
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    transition-delay: .1s
}

.stepper-container ul li[data-state="completed"] .stepper-item .stepper-icon span {
    -webkit-transform: scale(0) rotate(-180deg);
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg)
}

.stepper-steps {
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%
}

.stepper-counter {
    color: rgba(0,0,0,0.54);
    text-align: right;
    width: 60px;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none
}

.stepper-counter strong {
    font-weight: 700
}

.stepper-icon {
    background: rgba(0,0,0,0.28);
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-weight: 300;
    line-height: 28px;
    margin-right: 10px;
    overflow: hidden;
    position: relative;
    text-align: center;
    vertical-align: middle;
    height: 28px;
    width: 28px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease
}

.stepper-icon:after,.stepper-icon:before {
    background: #fff;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none
}

.stepper-icon:before {
    left: 10px;
    top: 12px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
    width: 0
}

.stepper-icon:after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
    right: 15px;
    top: 15px;
    width: 0
}

.stepper-icon span {
    display: inline-block;
    -webkit-transition: -webkit-transform .2s;
    -moz-transition: -moz-transform .2s;
    transition: transform .2s
}

.stepper-label {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    width: -webkit-calc(100% - 38px);
    width: calc(100% - 38px)
}

.stepper-item {
    background: none;
    border: none;
    color: rgba(0,0,0,0.54);
    cursor: default;
    display: block;
    font-size: 14px;
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.stepper-arrow_left,.stepper-arrow_right {
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1;
    position: absolute;
    top: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.stepper-arrow_left.disabled,.stepper-arrow_right.disabled {
    opacity: 0;
    visibility: hidden
}

.stepper-arrow_left .icon,.stepper-arrow_right .icon {
    fill: rgba(0,0,0,0.54);
    font-size: 24px
}

.stepper-arrow_left {
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.stepper-arrow_right {
    right: -20px;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
}

.slider[type='range'] {
    -webkit-appearance: none;
    margin: 9px 0;
    width: 100%
}

.slider[type='range']:focus {
    outline: 0
}

.slider[type='range']::-webkit-slider-runnable-track {
    cursor: pointer;
    height: 5px;
    width: 100%;
    background: #2f82fb;
    border: none
}

.slider[type='range']::-webkit-slider-thumb {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.12);
    cursor: pointer;
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    margin-top: -6.5px
}

.slider[type='range']::-moz-range-track {
    cursor: pointer;
    height: 5px;
    width: 100%;
    background: #2f82fb;
    border: none
}

.slider[type='range']::-moz-range-thumb {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.12);
    cursor: pointer;
    height: 18px;
    width: 18px
}

.slider[type='range']::-ms-track {
    cursor: pointer;
    height: 5px;
    width: 100%;
    background: transparent;
    border-color: transparent;
    border-width: 9px 0;
    color: transparent
}

.slider[type='range']::-ms-fill-lower {
    background: #2f82fb;
    border: none
}

.slider[type='range']::-ms-fill-upper {
    background: #2f82fb;
    border: none
}

.slider[type='range']::-ms-thumb {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.12);
    cursor: pointer;
    height: 18px;
    width: 18px;
    margin-top: 0
}

.image-crop {
    display: inline-block
}

.image-crop canvas {
    border-radius: 3px
}

.image-crop canvas:hover {
    cursor: move
}

.image-crop-tools {
    margin-top: 15px;
    text-align: center
}

.image-crop-zoom {
    display: inline-block
}

.image-crop-zoom .slider {
    margin: 0 10px;
    width: 225px
}

.image-crop-zoom .icon {
    margin-top: 2px;
    font-size: 18px
}

.image-crop-zoom .icon:last-child {
    font-size: 24px
}

.footer-main {
    border-top: 1px solid #d4d4d4
}

.footer-padding {
    padding-bottom: 20px;
    padding-top: 10px
}

.footer-padding::after {
    clear: both;
    content: "";
    display: block
}

.footer-margin-top {
    margin-top: 15px
}

.footer-payments {
    padding: 0 20px;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto
}

.footer-payments::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    .footer-payments {
        max-width:1220px
    }
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    .footer-payments {
        max-width:920px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .footer-payments {
        padding:0 30px
    }
}

.footer-payments .logo-payments {
    display: inline-block;
    height: 17px;
    margin-top: 10px;
    overflow: hidden;
    vertical-align: middle
}

.footer-payments .logo-payments div {
    width: 5px;
    display: inline-block
}

.footer-payments .logo-payments img {
    display: inline-block;
    height: 17px;
    margin-right: 15px;
    vertical-align: middle
}

.footer-payments .more {
    display: inline-block;
    margin-top: 10px;
    vertical-align: middle
}

.footer-wrap {
    background: #f7f7f7;
    padding: 10px 0 30px;
    position: relative
}

@media screen and (min-width: 768px) {
    .footer-wrap {
        padding:10px 0 50px
    }
}

.footer-header {
    line-height: 0
}

@media screen and (min-width: 640px) {
    .footer-header hr {
        display:none
    }
}

@media screen and (min-width: 768px) {
    .footer-header {
        padding:0 20px;
        max-width: 1520px;
        margin-left: auto;
        margin-right: auto
    }

    .footer-header::after {
        clear: both;
        content: "";
        display: block
    }
}

@media screen and (min-width: 768px) and (min-width: 1220px) and (max-width: 1519px) {
    .footer-header {
        max-width:1220px
    }
}

@media screen and (min-width: 768px) and (min-width: 920px) and (max-width: 1219px) {
    .footer-header {
        max-width:920px
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 919px) {
    .footer-header {
        padding:0 30px
    }
}

@media screen and (min-width: 1220px) {
    .footer-header .footer-padding {
        border-bottom:1px solid #d4d4d4
    }
}

.footer-socials {
    margin-bottom: 20px
}

@media screen and (max-width: 767px) {
    .footer-socials {
        padding:0 20px;
        max-width: 1520px;
        margin-left: auto;
        margin-right: auto
    }

    .footer-socials::after {
        clear: both;
        content: "";
        display: block
    }
}

@media screen and (max-width: 767px) and (min-width: 1220px) and (max-width: 1519px) {
    .footer-socials {
        max-width:1220px
    }
}

@media screen and (max-width: 767px) and (min-width: 920px) and (max-width: 1219px) {
    .footer-socials {
        max-width:920px
    }
}

@media screen and (max-width: 767px) and (min-width: 768px) and (max-width: 919px) {
    .footer-socials {
        padding:0 30px
    }
}

@media screen and (min-width: 640px) {
    .footer-socials {
        border:none;
        float: left;
        margin-bottom: 0
    }
}

.footer-socials .logo {
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    padding: 5px 0;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: -webkit-transform .2s ease;
    -moz-transition: -moz-transform .2s ease;
    transition: transform .2s ease;
    height: 30px;
    width: 30px
}

.footer-socials .logo .icon {
    fill: #fff
}

.footer-socials .logo:last-child {
    margin-right: 0
}

.footer-socials .logo.facebook {
    background-color: #3b5999;
    font-size: 16px;
    padding: 7px 0
}

.footer-socials .logo.twitter {
    background-color: #2eacf6;
    font-size: 16px;
    padding: 7px 0
}

.footer-socials .logo.youtube {
    background-color: #de1f2b
}

.footer-socials .logo.instagram {
    background: -webkit-linear-gradient(-317deg, #f69b5e 1%, #e54c57 37%, #d42884 73%, #914598 99%);
    background: linear-gradient(47deg, #f69b5e 1%, #e54c57 37%, #d42884 73%, #914598 99%)
}

.footer-socials .logo.vk {
    background-color: #4c76a4
}

.footer-socials .logo.linkedin {
    background-color: #0575b4;
    font-size: 18px;
    padding: 5px 0 8px
}

.footer-socials .logo.pinterest {
    background: #bd081c;
    font-size: 19px;
    padding: 5px 0
}

.footer-socials .logo.twitch {
    background-color: #6441a4;
    font-size: 17px;
    padding: 7px 0
}

.footer-socials .logo:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2)
}

.footer-region {
    display: block;
    margin: 20px 20px 0
}

@media screen and (min-width: 640px) {
    .footer-region {
        float:right;
        margin: 3px 0
    }
}

.footer-region .flag {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle
}

.footer-region span {
    display: inline-block;
    vertical-align: middle
}

.footer-region.btn.btn-small {
    clear: none;
    font-size: 14px;
    font-weight: 400;
    padding: 0
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .footer-region.btn.btn-small {
        padding:0 20px
    }
}

.footer hr {
    margin: 0;
    width: 100%
}

.footer-body {
    padding-bottom: 20px;
    padding-top: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    padding: 0 20px;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto
}

.footer-body::after {
    clear: both;
    content: "";
    display: block
}

.footer-body::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    .footer-body {
        max-width:1220px
    }
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    .footer-body {
        max-width:920px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .footer-body {
        padding:0 30px
    }
}

@media screen and (min-width: 1220px) {
    .footer-body {
        -webkit-box-orient:horizontal;
        -moz-box-orient: horizontal;
        box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-direction: normal;
        box-direction: normal;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        flex-direction: row;
        -ms-flex-direction: row
    }
}

.footer-links {
    border-bottom: 1px solid #d4d4d4;
    border-top: 1px solid #d4d4d4;
    margin-right: auto;
    padding-top: 5px;
    width: 100%
}

@media screen and (min-width: 768px) {
    .footer-links {
        border-top:1px solid #d4d4d4;
        padding: 30px 0 10px
    }
}

@media screen and (min-width: 1220px) {
    .footer-links {
        border:none;
        width: 45%
    }
}

.footer-links-column {
    border-bottom: 1px solid #d4d4d4;
    font-size: 12px
}

.footer-links-column::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 768px) {
    .footer-links-column {
        border:none;
        display: inline-block;
        margin-bottom: 20px;
        margin-right: 60px;
        padding: 0;
        vertical-align: top
    }
}

.footer-links-column:last-child {
    border: none;
    margin-right: 0
}

@media screen and (max-width: 767px) {
    .footer-links-column ul {
        max-height:0;
        opacity: 0;
        overflow: hidden;
        -webkit-transition: max-height .2s,opacity .2s;
        -moz-transition: max-height .2s,opacity .2s;
        transition: max-height .2s,opacity .2s
    }
}

.footer-links-column li:last-child a {
    margin: 0;
    padding-bottom: 20px
}

@media screen and (min-width: 768px) {
    .footer-links-column li:last-child a {
        padding:0
    }
}

.footer-links-column li a {
    color: #ababab;
    display: inline-block;
    font-size: 12px;
    margin-bottom: 8px;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    transition: color .2s ease
}

.footer-links-column li a:hover {
    color: #787878
}

.footer-links-column strong {
    text-transform: uppercase
}

.footer-links-column label {
    display: inline-block;
    font-size: 12px;
    padding: 15px 0;
    text-transform: uppercase;
    width: 100%;
    -webkit-tap-highlight-color: transparent
}

@media screen and (min-width: 768px) {
    .footer-links-column label {
        padding:0 0 15px
    }
}

.footer-links-column label .icon {
    display: block;
    float: right
}

@media screen and (min-width: 768px) {
    .footer-links-column label .icon {
        display:none
    }
}

.footer-links-column input[type="checkbox"] {
    height: 0;
    position: absolute;
    visibility: hidden;
    width: 0
}

.footer-links-column input[type="checkbox"]:checked+label .icon {
    transform: rotate(180deg)
}

.footer-links-column input[type="checkbox"]:checked ~ ul {
    max-height: 300px;
    opacity: 1;
    overflow: visible;
    -webkit-transition: max-height .2s,opacity .2s;
    -moz-transition: max-height .2s,opacity .2s;
    transition: max-height .2s,opacity .2s
}

.footer-apps {
    padding-bottom: 30px;
    width: 100%
}

.footer-apps::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 640px) {
    .footer-apps {
        padding:30px 0
    }
}

@media screen and (min-width: 1220px) {
    .footer-apps {
        text-align:right;
        width: 55%
    }
}

.footer-apps ul {
    display: inline-block
}

.footer-apps .store {
    display: inline-block;
    margin-right: 27px;
    text-align: center;
    vertical-align: top
}

@media screen and (min-width: 640px) {
    .footer-apps .store {
        margin-right:40px
    }
}

.footer-apps .store:last-child {
    margin-right: 0
}

.footer-apps .store .description,.footer-apps .store div,.footer-apps .store span {
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    transition: color .2s ease;
    color: #ababab;
    font-size: 12px;
    vertical-align: middle
}

.footer-apps .store .description span,.footer-apps .store div span,.footer-apps .store span span {
    font-size: inherit
}

.footer-apps .store span {
    color: #ababab;
    display: block
}

.footer-apps .store:hover span {
    color: #787878
}

.footer-apps .google-play img {
    margin: 3px 0 11px;
    height: 29px;
    width: 27px
}

.footer-apps .app-store .icon {
    fill: #000;
    font-size: 36px;
    margin-bottom: 9px
}

.footer-apps .microsoft .icon {
    fill: #269fd9;
    font-size: 36px;
    margin-bottom: 9px
}

.footer-apps .g2a-app {
    margin-right: 0;
    padding: 30px 0 20px;
    text-align: left;
    width: 100%
}

@media screen and (min-width: 640px) {
    .footer-apps .g2a-app {
        margin-right:50px;
        padding: 0;
        width: auto
    }
}

.footer-apps .g2a-app .logo {
    background-color: #ff7800;
    border-radius: 13px;
    display: inline-block;
    margin: 0 10px 0 0;
    text-align: center;
    vertical-align: middle;
    height: 70px;
    width: 70px
}

.footer-apps .g2a-app .icon {
    fill: #fff;
    font-size: 70px;
    padding: 7px
}

.footer-apps .g2a-app div {
    color: #444;
    display: inline-block;
    font-size: 14px
}

.footer-apps .g2a-app p {
    line-height: 16px;
    font-size: 12px;
    margin: 0;
    padding-top: 7px;
    width: 160px
}

.footer-g2a-adres {
    color: #ababab;
    font-size: 10px;
    position: relative;
    padding: 0 20px;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto
}

.footer-g2a-adres::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    .footer-g2a-adres {
        max-width:1220px
    }
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    .footer-g2a-adres {
        max-width:920px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .footer-g2a-adres {
        padding:0 30px
    }
}

.footer-adres {
    display: inline-block;
    padding-bottom: 20px
}

@media screen and (min-width: 768px) {
    .footer-adres {
        padding:0
    }
}

@media screen and (min-width: 768px) and (max-width: 1219px) {
    .footer-adres {
        max-width:540px
    }
}

@media screen and (min-width: 920px) and (max-width: 1519px) {
    .footer-adres {
        max-width:718px
    }
}

@media screen and (min-width: 1220px) {
    .footer-adres {
        max-width:778px
    }
}

.footer .award {
    display: block;
    width: 87px;
    height: 51px
}

@media screen and (min-width: 768px) {
    .footer .award {
        position:absolute;
        right: 70px;
        bottom: 0
    }
}

@media screen and (min-width: 1660px) {
    .footer .award {
        right:0
    }
}

.footer .modal .form-group:first-of-type {
    margin-top: 0
}

.footer .modal .form-group:last-of-type {
    margin-bottom: 0
}

.go-to-top-arrow {
    background: #181818;
    border: none;
    border-radius: 42px;
    display: block;
    opacity: 0.5;
    z-index: 2;
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 42px;
    width: 42px;
    -webkit-transition: opacity .2s ease-in-out,-webkit-transform .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out,-moz-transform .2s ease-in-out;
    transition: opacity .2s ease-in-out,transform .2s ease-in-out
}

.go-to-top-arrow .icon {
    font-size: 19px
}

.go-to-top-arrow:hover .icon {
    fill: #fff
}

.go-to-top-arrow:not(.go-to-top-arrow--visible) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

html,body {
    background: #fff;
    height: 100%
}

html.instruction,body.instruction {
    height: auto
}

.hide {
    display: none
}

.show {
    display: block
}

.navbar.hide {
    display: block
}

.navbar {
    height: 0px !important;
    overflow: hidden
}

.topics-container .load-more {
    padding: 40px 0 0 0
}

@media screen and (max-width: 639px) {
    .topics-container .load-more {
        padding:17px 0
    }
}

.overflow-hidden {
    overflow: hidden
}

.topbar-cell-logo img {
    display: block;
    height: 27px;
    width: 230px
}

.clear {
    clear: both;
    width: 100%
}

.clearfixTable::after {
    display: table
}

.topbar .topbar-panels .tooltip .tooltip-content span.triangle {
    left: 50%
}

.placeholder {
    color: #424242
}

.loader {
    align-items: center;
    background-color: #fff;
    display: flex;
    height: 100%;
    justify-content: center;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%
}

.loader img {
    height: 25px
}

.topbar-widget-footer a[data-mobile-label='Help'],.topbar-shield {
    display: none
}

footer {
    z-index: 1;
    line-height: 1em;
    position: relative;
    background: #fff
}

footer .modal-window {
    overflow: initial
}

footer .select .options {
    max-height: 200px
}

footer.instruction {
    width: 100%;
    font-size: 12px;
    min-width: 300px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #f5f5f5
}

footer.instruction>div.clearfix {
    border-top: 1px solid #ccc;
    margin: 0 auto;
    padding: 15px 20px 22px 20px
}

footer.instruction .copyright {
    display: block;
    float: right;
    height: 19px;
    line-height: 19px;
    margin: 12px 0 0 0
}

@media screen and (max-width: 768px) {
    footer.instruction>div {
        padding-bottom:10px
    }

    footer.instruction .copyright {
        float: none;
        text-align: center;
        margin: 0
    }
}

.modal-visible .modal-window {
    overflow: visible
}

#content-page .set-empty-container-height {
    min-height: 300px
}

.set-space {
    margin-top: 1em
}

body {
    overflow-x: hidden;
    line-height: 1.2
}

#topbar {
    width: 100%;
    height: 70px;
    background: #181818
}

#topbar div {
    padding: 22px 22px 0 22px;
    height: 70px
}

#topbar a {
    display: inline-block;
    vertical-align: middle
}

#topbar img {
    width: 230px;
    height: 27px;
    display: block
}

#webinars-list .webinar-category-container .head h2 {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400
}

#webinars-list .webinar-category-container:nth-child(2n+1) {
    background-color: #f5f5f5
}

#webinars-list .title {
    position: relative
}

#webinars-list .title a.back-btn {
    position: absolute;
    height: 40px;
    color: #424242;
    font-size: 17px;
    top: -5px
}

#webinars-list .title a.back-btn svg {
    font-size: 50px;
    fill: rgba(0,0,0,0.54)
}

#webinars-list .title h2 {
    text-align: center;
    font-size: 34px;
    line-height: 41px;
    font-weight: 700
}

#webinars-list .body .card {
    cursor: pointer;
    min-height: 300px;
    border-radius: 0
}

#webinars-list .body div.card-image {
    border-bottom: 0
}

#webinars-list .body div.card-image .card-image-valign {
    height: 160px
}

#webinars-list .body div.card-image img {
    width: 100%;
    height: 100%
}

#webinars-list .body div.card-image .card-content {
    padding-top: 0
}

#webinars-list .body div.card-image .card-content .card-header .title {
    font-size: 16px
}

#webinars-list .body .card-info {
    padding: 0;
    min-height: initial;
    position: static
}

#webinars-list .body .card-info .card-price {
    text-transform: inherit;
    bottom: 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

#webinars-list .body .card-info .title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-weight: bold
}

.content-page {
    position: relative
}

#content-page header {
    color: white
}

#newsbar-container {
    min-height: 70px;
    vertical-align: middle;
    color: #fff;
    word-wrap: break-word;
    display: block;
    -webkit-transition: all 0.2s;
    transition: all 0.2s
}

#newsbar-container>div.container {
    padding: 0
}

#newsbar-container>div.container>div {
    padding: 0 20px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.12)
}

#newsbar-container .newsbar-label {
    text-align: center;
    margin-top: 25px;
    float: left
}

#newsbar-container .newsbar-label .newsbar-icon {
    border-radius: 50%;
    height: 22px;
    width: 22px;
    background-color: #f05f00
}

#newsbar-container .newsbar-label .newsbar-icon svg {
    margin-top: 4px
}

#newsbar-container .newsbar-title {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400
}

#newsbar-container .newsbar-message {
    padding: 22px 0
}

#newsbar-container .newsbar-content .newsbar-text,#newsbar-container p {
    overflow: hidden;
    color: #bbb;
    margin: 0;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

#newsbar-container .newsbar-text {
    padding-top: 10px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s
}

#newsbar-container .newsbar-text.animate {
    height: 0
}

#newsbar-container .expand {
    font-size: 1em;
    font-weight: bold;
    position: absolute;
    height: 23px;
    width: 23px;
    bottom: 20px;
    right: 20px
}

#newsbar-container .expand span {
    padding-right: 0
}

#newsbar-container .expand svg {
    font-size: 33px;
    fill: #bbb;
    margin: -6px 0 0 -5px;
    vertical-align: -12px
}

#newsbar-container .expand use {
    fill: #bbb
}

#newsbar-container .expand:not(.active) {
    top: 25px
}

#newsbar-container .active.expand>svg {
    transform-origin: center center;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    fill: #bbb
}

#search-container {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

#search-container .container {
    height: 100%
}

#search-container .container .search-row .welcome-text {
    text-align: center
}

#search-container .container .search-row .search-title {
    text-align: center;
    color: white;
    font-weight: 100
}

#search-container .container .search-row .search-buttons {
    margin: 25px 0 35px 0;
    text-align: center
}

#search-container .container .search-row .search-buttons .btn-group {
    vertical-align: top
}

#search-container .container .search-row .search-buttons .btn {
    padding: 0 30px;
    background: transparent;
    color: #fff;
    border-color: #fff
}

#search-container .container .search-row .search-buttons .btn:last-child {
    border-right-color: #fff
}

#search-container .container .search-row .search-buttons .btn.active {
    background: white;
    color: black;
    mix-blend-mode: screen
}

#search-container .container .search-row .search-input .input-group-addon-search {
    top: 43%;
    left: 20px;
    z-index: 1;
    position: absolute;
    margin-top: -0.5em
}

#search-container .container .search-row .search-input .input-group-addon-search .icon {
    fill: rgba(0,0,0,0.28)
}

#search-container .container .search-row .search-input .input-group-medium input[type='text'] {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

#search-container .container .search-row .search-input .search-button svg {
    display: none
}

#search-container .container .search-row .search-input .search-phrase {
    padding-right: 130px;
    padding-left: 52px
}

#search-container .container .search-row .search-input .search-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100%;
    background-color: #e14400;
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    border: 0;
    border-radius: 0 3px 3px 0
}

#search-container .datalist .options {
    color: #424242;
    background-color: #fff;
    overflow-y: hidden;
    z-index: 2
}

#search-container .datalist .options .no-result {
    text-align: center
}

#search-container .datalist .options .see-all {
    text-align: center;
    color: #2f82fb
}

#search-container .datalist .options .see-all:hover {
    color: #fff
}

#search-container .datalist .options .option {
    min-height: 40px;
    font-size: 14px;
    padding-top: 12px;
    padding-bottom: 9px;
    position: relative
}

#search-container .datalist .options .option:not(.see-all):not(.no-result) {
    padding-left: 45px
}

#search-container .datalist .options .youtube {
    display: inline-block;
    position: absolute;
    left: 8px;
    top: 7px
}

#search-container .datalist .options .youtube svg {
    height: 24px;
    width: 24px;
    margin-top: 2px
}

.right-menu .right-menu-container {
    background-color: #fafafa;
    padding-bottom: 10000px;
    margin-bottom: -10000px
}

.right-menu .right-menu-container .tags-menu {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: #212121;
    padding-bottom: 50px
}

.right-menu .right-menu-container .tags-menu .row {
    text-align: center
}

.right-menu .right-menu-container .tags-menu>div:first-child {
    margin-bottom: 40px;
    text-align: center
}

.right-menu .right-menu-container .tags-menu .menu-item a {
    margin-bottom: 40px
}

.right-menu .right-menu-container .tags-menu .menu-item a .category-icon {
    margin-bottom: 10px
}

.right-menu .right-menu-container .tags-menu .menu-item a img {
    border-radius: 3px
}

.right-menu .right-menu-container .tags-menu .menu-item a.clicked img {
    -webkit-box-shadow: 0 6px 11px 0 #787878;
    -moz-box-shadow: 0 6px 11px 0 #787878;
    box-shadow: 0 6px 11px 0 #787878;
    background-color: #bababa
}

.top-menu .category-tags-container {
    background-color: #fafafa
}

.top-menu .category-tags-container .tags-menu {
    padding: 0 20px;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 40px;
    height: 100%
}

.top-menu .category-tags-container .tags-menu::after {
    clear: both;
    content: "";
    display: block
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    .top-menu .category-tags-container .tags-menu {
        max-width:1220px
    }
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    .top-menu .category-tags-container .tags-menu {
        max-width:920px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .top-menu .category-tags-container .tags-menu {
        padding:0 30px
    }
}

.top-menu .category-tags-container .tags-menu>div:first-child {
    display: none
}

.top-menu .category-tags-container .tags-menu .menu-item a {
    margin-top: 10px
}

.top-menu .category-tags-container .tags-menu .menu-item a>div {
    height: 75px;
    border: #e0e0e0 1px solid;
    border-radius: 3px;
    background-color: #fff
}

.top-menu .category-tags-container .tags-menu .menu-item a>div .category-icon {
    display: inline-block;
    width: 55px;
    vertical-align: middle;
    margin: 10px 20px 10px 10px
}

.no-menu #search-result-container a.back-btn svg {
    font-size: 40px;
    margin-left: -10px
}

.no-menu #search-result-container ul {
    margin-top: 30px
}

.no-menu #search-result-container .results-info {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400
}

.no-menu #search-result-container .results-info b {
    margin-right: 5px
}

.no-menu #search-result-container .show-more-container {
    text-align: center
}

a.back-btn {
    left: -15px
}

a.back-btn>div {
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: middle
}

a.back-btn svg {
    font-size: 50px
}

.category-tags-container .tags-menu .menu-item a {
    cursor: pointer;
    display: block
}

.category-tags-container .tags-menu .menu-item a>div {
    color: #212121;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.category-tags-container .tags-menu .menu-item a>div .category-icon {
    height: 60px
}

.category-tags-container .tags-menu .menu-item a>div .category-icon img {
    height: 55px;
    width: 55px
}

.topics-container {
    text-align: center
}

.topics-container h1 {
    font-size: 34px
}

.topics-container>div {
    width: 100%;
    top: 0
}

.topics-container>div>h1,.topics-container>div>h2 {
    text-align: center;
    padding-left: 130px;
    padding-right: 130px;
    margin-bottom: 50px
}

.topics-container ul {
    text-align: left
}

.topics-container .category-description {
    text-align: left;
    line-height: 1em;
    padding-top: 1em;
    padding-left: 30px;
    padding-right: 30px;
    color: rgba(0,0,0,0.54)
}

#category-container {
    position: relative
}

#category-container a.back-btn {
    position: absolute
}

#category-container .topic-view-content img {
    max-width: 100%
}

.topic-list {
    margin-top: 55px;
    margin-bottom: -1px
}

.topic-list a {
    padding: 20px 0;
    min-height: 65px;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    position: relative
}

.topic-list li {
    border-bottom: 1px solid #e0e0e0;
    height: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.topic-list li:hover {
    background-color: #f5f5f5;
    -webkit-transition: background-color .2s ease;
    -moz-transition: background-color .2s ease;
    transition: background-color .2s ease
}

.topic-list li div.question {
    padding: 0 110px 0 30px;
    word-wrap: break-word;
    color: #424242;
    width: 100%
}

.topic-list li div.question h2 {
    display: inline;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px
}

.topic-list li div.youtube {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #424242
}

.topic-list li div.youtube span {
    margin-left: 5px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

.btn.show-more {
    cursor: pointer;
    display: inline-block;
    width: 280px;
    height: 45px;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    padding: 2px
}

.btn.show-more svg {
    fill: #fff;
    position: absolute;
    height: 30px;
    width: 30px;
    top: 8px
}

.btn.show-more svg:first-child {
    left: 20px
}

.btn.show-more svg:last-child {
    right: 20px
}

.btn.show-more use {
    fill: #fff
}

.related-topics {
    margin: 60px 65px 0;
    padding-bottom: 30px
}

.related-topics>div {
    margin-top: 20px
}

.related-topics li {
    display: inline
}

.related-topics li ~ li:before {
    content: '.';
    font-size: 105px;
    height: 20px;
    display: inline-block;
    padding-left: 5px;
    padding-right: 10px;
    margin-top: -90px
}

#logotypes {
    text-align: center
}

#logotypes .content a {
    display: inline-block;
    width: 20%;
    height: 100%;
    vertical-align: middle
}

#logotypes .content a img {
    width: 70%
}

#activate-container {
    width: 100%;
    height: 385px;
    background: url("/img/images/activate_product_background.jpg?1") no-repeat center #032b45;
    background-size: auto 100%;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    position: relative;
    z-index: 2
}

#activate-container .datalist {
    width: 580px;
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle
}

#activate-container .datalist input {
    height: 40px
}

#activate-container .input-group-medium {
    vertical-align: middle
}

#activate-container .download-activation-instruction {
    margin: 25px auto 20px
}

#activate-container .title {
    color: #fff;
    text-align: center
}

#webinars {
    background-color: #f5f5f5
}

#webinars .title {
    text-align: center
}

#webinars .head {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 30px
}

#webinars .card {
    cursor: pointer
}

#webinars .card .corner-ribbon-wrapper {
    right: -1px;
    top: -2px
}

#webinars .card .title {
    text-align: left
}

#webinars .card .title img {
    display: none
}

#webinars .card .card-image {
    border-bottom: none
}

#webinars .card .card-info {
    text-transform: none
}

#webinars .card .card-image img {
    height: 100%
}

#webinars .card .card-image .card-image-valign {
    height: 160px
}

#webinars .card.card-small figure {
    margin: 0
}

#webinars .card.card-small .corner-ribbon {
    top: 13px;
    transform: rotate(45deg)
}

#webinars .card.card-small .corner-ribbon-wrapper {
    right: -2px;
    top: -2px
}

#webinars .card.card-small .card-image {
    width: 230px
}

#webinars .card.card-small .card-image-valign {
    height: 143px
}

#webinars .card.card-small .card-content {
    width: calc(100% - 230px)
}

@media screen and (max-width: 639px) {
    #webinars .card.card-small .card-image {
        padding-top:20px;
        width: 100%;
        float: none
    }

    #webinars .card.card-small .card-image img {
        width: 100%;
        position: relative
    }

    #webinars .card.card-small .card-image .card-image-valign {
        height: auto
    }

    #webinars .card.card-small .card-content {
        width: 100%;
        padding: 0 20px 20px 20px
    }

    #webinars .card.card-small .card-content .card-info {
        padding: 0
    }
}

#webinars .btn-primary,#webinars .btn-group .btn.active,.btn-group #webinars .btn.active {
    display: block;
    width: 150px;
    margin-left: auto;
    margin-right: auto
}

#contact-container {
    text-align: center
}

#contact-container .menu-item {
    display: inline-block
}

#contact-container .contact-item {
    vertical-align: top;
    display: inline-block
}

#contact-container .contact-item.width-100 {
    width: 100%
}

#contact-container .contact-item.width-35 {
    width: 35%
}

#contact-container .contact-item.width-33 {
    width: 33%
}

#contact-container .contact-item a {
    color: #61b0e4;
    display: inline-block;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px
}

#contact-container .contact-item a span {
    display: block
}

#contact-container .contact-item a span.title {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #424242
}

#contact-container .contact-item a span.description {
    font-weight: normal;
    font-size: 12px;
    color: #424242
}

#contact-container .contact-item a img {
    width: 60px;
    height: 60px
}

.title-center h2 {
    text-align: center;
    font-size: 44px;
    line-height: 53px;
    font-weight: 700
}

.expand,.expand-text {
    cursor: pointer
}

.g2aui-loader {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.8);
    height: 100%;
    width: 100%;
    z-index: 1000;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.g2aui-loader svg {
    display: block;
    top: 50%;
    left: 50%;
    position: relative;
    margin-top: -103px;
    margin-left: -33px
}

.g2aui-loader.visible {
    visibility: visible;
    opacity: 1
}

.snackbar {
    z-index: 10
}

body.instruction {
    background-color: #f5f5f5
}

#instruction-container {
    padding-top: 50px;
    padding-bottom: 40px
}

#instruction-container .logo {
    width: 200px;
    height: 60px;
    margin: 0 auto;
    background: url("/img/images/logo_g2a.png") no-repeat
}

#instruction-container .instruction {
    margin: 0 auto;
    max-width: 940px
}

#instruction-container .instruction>h1,#instruction-container .instruction h2,#instruction-container .instruction h3 {
    text-align: center;
    margin: 25px auto 0
}

#instruction-container .instruction>h1 strong,#instruction-container .instruction h2 strong,#instruction-container .instruction h3 strong {
    color: #ffb400
}

#instruction-container .instruction h2 {
    font-size: 38px
}

#instruction-container .instruction ul {
    list-style: none;
    margin: 0
}

#instruction-container .instruction ul>li {
    padding-left: 13px;
    position: relative;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    list-style: none;
    margin: 0
}

#instruction-container .instruction ul>li::before {
    height: 6px;
    width: 6px;
    background: #333333;
    border-radius: 3px;
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    left: 0
}

#instruction-container .instruction ol {
    list-style-type: none;
    margin: 45px 10px 0 40px;
    padding: 0;
    counter-reset: li-counter
}

#instruction-container .instruction ol li {
    position: relative;
    padding: 2px 20px 30px 30px;
    word-wrap: break-word;
    font-size: 18px;
    min-height: 130px;
    background-position: 10px 10px;
    background-repeat: no-repeat
}

#instruction-container .instruction ol li:not(:last-child) {
    background-image: url("/img/images/point_line.png")
}

#instruction-container .instruction ol li:last-child {
    background-image: url("/img/images/point_dot.png")
}

#instruction-container .instruction ol li img {
    display: block;
    padding-top: 20px;
    max-width: 100%
}

#instruction-container .instruction ol li:before {
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    font-size: 24px;
    line-height: 1;
    text-align: right;
    color: #464646;
    content: counter(li-counter, decimal-leading-zero);
    counter-increment: li-counter
}

.youtube-player {
    position: relative;
    height: 320px;
    width: 480px;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 5px auto
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent
}

.youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all
}

.youtube-player img:hover {
    -webkit-filter: brightness(75%)
}

.youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url("/img/images/youtube_play.png") no-repeat;
    cursor: pointer
}

.datalist-body .icon-user {
    fill: #a8a8a8;
    height: 1em;
    vertical-align: middle;
    width: 1em
}

.datalist .options {
    color: #424242
}

#container-404 {
    background: url("/img/images/error_bg.png") no-repeat center center;
    position: relative;
    background-size: 100% auto
}

#container-404 span {
    position: absolute
}

#container-404 span.line-1 {
    font-weight: bold
}

#container-404 span.line-2 {
    font-weight: 300
}

#container-404 span.line-4 .btn {
    width: 280px
}

#container-500 {
    background: url("/img/images/error_bg.png") no-repeat center center;
    position: relative;
    background-size: 100% auto
}

#container-500 span {
    position: absolute
}

#container-500 span.line-1 {
    font-weight: bold
}

#container-500 span.line-2 {
    font-weight: 300
}

#container-500 span.line-4 .btn {
    width: 280px
}

.g2asurvey p {
    line-height: 1.5em
}

#main-container {
    position: relative
}

#main-container .icon-social_youtube {
    height: 24px;
    width: 24px;
    vertical-align: -8px
}

#breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0
}

#breadcrumb>li {
    display: inline;
    font-size: 14px
}

#breadcrumb>li a {
    padding-right: 2px;
    vertical-align: middle;
    color: rgba(0,0,0,0.54)
}

#breadcrumb>li span svg {
    width: 20px;
    height: 20px;
    vertical-align: middle
}

#breadcrumb>li:last-child {
    font-weight: bold;
    color: #2f82fb
}

@media screen and (max-width: 919px) {
    .datalist-responsive[data-open="true"] .options .option {
        height:auto;
        line-height: inherit
    }
}

@media screen and (max-width: 639px) {
    #newsbar-container>div.container>div {
        float:left;
        display: block;
        margin-right: 15.38462%;
        width: 100%
    }

    #newsbar-container>div.container>div:last-child {
        margin-right: 0
    }

    #newsbar-container .newsbar-content {
        padding: 0 40px
    }

    #newsbar-container .newsbar-title {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }

    div#search-container {
        height: 230px
    }

    div#search-container .container .search-row {
        margin-top: 40px;
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%
    }

    div#search-container .container .search-row .welcome-text {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 5px
    }

    div#search-container .container .search-row:last-child {
        margin-right: 0
    }

    div#search-container .container .search-row .search-title {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700;
        margin-bottom: 20px
    }

    div#search-container .container .search-row .search-input {
        margin-top: 7px
    }

    div#search-container .container .search-row .search-input .datalist-responsive[data-open='true'] .search-phrase {
        padding-left: 15px
    }

    div#search-container .container .search-row .search-input .datalist-responsive[data-open='true'] .input-group-addon-search {
        display: none
    }

    div#search-container .container .search-row .search-input .input-group>div:first-child.input-group-addon-search {
        display: none
    }

    div#search-container .container .search-row .search-input .input-group input {
        padding-left: 10px;
        padding-right: 45px
    }

    div#search-container .container .search-row .search-input .input-group button.search-button {
        width: 45px
    }

    div#search-container .container .search-row .search-input .input-group button.search-button span {
        display: none
    }

    div#search-container .container .search-row .search-input .input-group button.search-button svg {
        display: inline-block;
        fill: white;
        height: 24px;
        width: 24px
    }

    div#search-container .container .search-row .search-input .input-group-medium input[type='text'] {
        height: 45px
    }

    div#search-container.subPage {
        height: 190px;
        background-size: auto 100%;
        background-position: 100% 0
    }

    div#search-container.subPage .container .search-row {
        margin-top: 50px
    }

    div#search-container.subPage .container .search-row .search-title {
        font-size: 18px;
        line-height: 29px;
        font-weight: 400;
        margin-bottom: 10px
    }

    #webinars-list {
        margin-top: 50px
    }

    #webinars-list .webinar-category-container {
        padding: 45px 20px 60px
    }

    #webinars-list .webinar-category-container .head {
        margin-bottom: 20px
    }

    #webinars-list div.title h2 {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    #webinars-list div.title a.back-btn {
        top: -10px;
        left: 0
    }

    #webinars-list .body .card {
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%
    }

    #webinars-list .body .card:last-child {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(2n) {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(2n+1) {
        clear: left
    }

    #webinars-list .body .card .card-image {
        padding: 0
    }

    #webinars-list .body .card .card-header {
        padding: 15px
    }

    #webinars-list .body .card .card-price {
        left: 15px
    }

    #webinars-list .body .card .title {
        margin-bottom: 30px;
        display: inline-block
    }

    main.right-menu .container {
        padding: 0
    }

    main.right-menu #ui-container {
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%;
        float: none
    }

    main.right-menu #ui-container:last-child {
        margin-right: 0
    }

    main.right-menu #ui-container #category-container {
        border-bottom: 1px solid #e0e0e0;
        background-color: #fff;
        padding-top: 30px
    }

    main.right-menu #ui-container #category-container h1 {
        padding: initial;
        font-size: 24px;
        margin-bottom: 25px
    }

    main.right-menu #ui-container #category-container .back-btn {
        margin-top: -5px;
        left: 0
    }

    main.right-menu #ui-container #category-container .topic-view-content {
        margin-bottom: 40px
    }

    main.right-menu>div>div.container {
        padding: 0 0
    }

    main.right-menu .right-menu-container div.tags-menu {
        padding-top: 40px;
        padding-bottom: 55px;
        height: 100%
    }

    main.right-menu .right-menu-container div.tags-menu>div:first-child {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px
    }

    main.right-menu .right-menu-container div.tags-menu .row {
        padding-left: 20px;
        padding-right: 20px;
        text-align: left
    }

    main.right-menu .right-menu-container div.tags-menu li.menu-item a {
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
        margin-top: 5px;
        margin-bottom: 5px
    }

    main.right-menu .right-menu-container div.tags-menu li.menu-item a:last-child {
        margin-right: 0
    }

    main.right-menu .right-menu-container div.tags-menu li.menu-item a>div {
        height: 40px;
        border: #e0e0e0 1px solid;
        border-radius: 3px;
        background-color: #fff
    }

    main.right-menu .right-menu-container div.tags-menu li.menu-item a>div .category-icon {
        display: inline-block;
        width: 25px;
        height: 25px;
        vertical-align: middle;
        margin: 7px 10px 10px 8px
    }

    main.right-menu .right-menu-container div.tags-menu li.menu-item a>div .category-icon img {
        height: 25px;
        width: 25px
    }

    main.no-menu .container {
        padding: 0
    }

    main.no-menu #search-result-container {
        margin-top: 30px
    }

    main.no-menu #search-result-container .back-btn {
        margin-left: 15px
    }

    main.no-menu #search-result-container .topics-container {
        margin-top: 25px
    }

    main.no-menu #search-result-container .arrow-icon svg {
        margin-top: 15px
    }

    main.top-menu>div>.container {
        padding: 0
    }

    main.top-menu .category-tags-container div.tags-menu {
        padding-top: 30px;
        padding-bottom: 30px;
        height: 100%
    }

    main.top-menu .category-tags-container div.tags-menu>div:first-child {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px
    }

    main.top-menu .category-tags-container div.tags-menu .row {
        text-align: left
    }

    main.top-menu .category-tags-container div.tags-menu li.menu-item a {
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px
    }

    main.top-menu .category-tags-container div.tags-menu li.menu-item a:last-child {
        margin-right: 0
    }

    main.top-menu .category-tags-container div.tags-menu li.menu-item a>div {
        height: 40px;
        border: #e0e0e0 1px solid;
        border-radius: 3px;
        background-color: #fff
    }

    main.top-menu .category-tags-container div.tags-menu li.menu-item a>div .category-icon {
        display: inline-block;
        width: 25px;
        height: 25px;
        vertical-align: middle;
        margin: 7px 10px 10px 8px
    }

    main.top-menu .category-tags-container div.tags-menu li.menu-item a>div .category-icon img {
        height: 25px;
        width: 25px
    }

    main.top-menu .topics-container {
        margin-top: 60px
    }

    .topic-list {
        margin-top: 15px
    }

    .topic-list a {
        padding: 15px 0
    }

    .topic-list li .category-question svg.icon-arrow_right {
        margin-left: 13px;
        font-size: 22px;
        margin-top: -2px
    }

    .topic-list li div.question {
        padding: 0 40px 0 20px
    }

    .topic-list li div.youtube {
        right: 10px
    }

    .topic-list li div.youtube span {
        display: none
    }

    div#logotypes {
        margin-bottom: 30px
    }

    div#logotypes h2 {
        margin-bottom: 25px;
        font-size: 25px
    }

    div#logotypes div.content {
        padding: 0 20px
    }

    div#logotypes div.content a {
        margin-bottom: 15px;
        width: 50%
    }

    #webinars {
        padding-top: 40px;
        padding-bottom: 30px
    }

    #webinars .webinars-gallery {
        margin-top: 25px;
        padding-bottom: 10px
    }

    #activate-container {
        height: 225px
    }

    #activate-container>div {
        width: 100%;
        margin: auto 20px
    }

    #activate-container .datalist {
        width: 100%;
        margin: 0 auto 10px;
        display: block
    }

    #activate-container .datalist[data-open='false']+button {
        width: 100%
    }

    #activate-container .title h2 {
        font-size: 18px;
        line-height: 29px;
        font-weight: 400
    }

    #contact-container {
        padding-top: 50px;
        padding-bottom: 15px;
        background-color: #fff
    }

    #contact-container .contact-div {
        margin-top: 40px;
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%
    }

    #contact-container .contact-div:last-child {
        margin-right: 0
    }

    #contact-container .contact-div .contact-item.width-33 {
        width: 50%
    }

    #contact-container .contact-div .contact-item {
        margin-bottom: 35px
    }

    .title-center h2 {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    a.show-more {
        margin: 35px auto 40px
    }

    datalist {
        z-index: 2
    }

    #container-404 {
        margin-top: 5%;
        height: 400px;
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%
    }

    #container-404:last-child {
        margin-right: 0
    }

    #container-404 span.line-1 {
        font-size: 13px;
        left: 21%;
        top: 36%
    }

    #container-404 span.line-2 {
        font-size: 98px;
        left: 25%;
        top: 40%
    }

    #container-404 span.line-3 {
        font-size: 17px;
        left: 10%;
        top: 68%;
        max-width: 230px;
        text-align: center
    }

    #container-404 span.line-4 {
        top: 81%;
        width: 100%
    }

    #container-404 span.line-4 .btn {
        width: 100% !important
    }

    #container-500 {
        margin-top: 5%;
        height: 400px;
        float: left;
        display: block;
        margin-right: 15.38462%;
        width: 100%
    }

    #container-500:last-child {
        margin-right: 0
    }

    #container-500 span.line-1 {
        font-size: 13px;
        left: 21%;
        top: 36%
    }

    #container-500 span.line-2 {
        font-size: 98px;
        left: 25%;
        top: 40%
    }

    #container-500 span.line-3 {
        font-size: 17px;
        left: 25%;
        top: 68%;
        max-width: 230px;
        text-align: center
    }

    #container-500 span.line-4 {
        top: 81%;
        width: 100%
    }

    #container-500 span.line-4 .btn {
        width: 100% !important
    }

    div#instruction-container div.instruction h2 {
        font-size: 30px
    }

    div#instruction-container div.instruction ol {
        margin-top: 35px;
        margin-left: 35px
    }

    div#instruction-container div.instruction ol li {
        background-position: 5px 6px;
        padding: 0 20px 25px 25px;
        font-size: 15px
    }

    div#instruction-container div.instruction ol li::before {
        left: -22px;
        width: 20px;
        font-size: 18px
    }

    #breadcrumb {
        padding: 0 20px
    }

    .category-description {
        padding-left: 20px !important;
        padding-right: 20px !important
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    #newsbar-container>div.container>div {
        float:left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    #newsbar-container>div.container>div:last-child {
        margin-right: 0
    }

    #newsbar-container .newsbar-content {
        padding: 0 40px
    }

    #newsbar-container .newsbar-title {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }

    div#search-container {
        height: 260px
    }

    div#search-container .container .search-row {
        margin-top: 50px;
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    div#search-container .container .search-row .welcome-text {
        font-size: 18px;
        line-height: 29px;
        font-weight: 400
    }

    div#search-container .container .search-row:last-child {
        margin-right: 0
    }

    div#search-container .container .search-row .search-title {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    div#search-container .container .search-row .search-input {
        margin: 20px 30px
    }

    div#search-container .container .search-row .search-input .datalist-responsive[data-open='true'] .search-phrase {
        padding-left: 15px
    }

    div#search-container .container .search-row .search-input .datalist-responsive[data-open='true'] .input-group-addon-search {
        display: none
    }

    div#search-container .container .search-row .search-input .input-group-medium input[type='text'] {
        height: 45px
    }

    div#search-container.subPage {
        height: 240px;
        background-size: auto 100%;
        background-position: 100% 0
    }

    div#search-container.subPage .container .search-row {
        margin-top: 70px
    }

    div#search-container.subPage .container .search-row .search-title {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    #webinars-list {
        margin-top: 50px
    }

    #webinars-list .webinar-category-container {
        padding: 45px 0 60px
    }

    #webinars-list .webinar-category-container .head {
        margin-bottom: 20px
    }

    #webinars-list div.title h2 {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    #webinars-list div.title a.back-btn {
        top: -10px
    }

    #webinars-list .body .card {
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 46.42857%
    }

    #webinars-list .body .card:last-child {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(2n) {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(2n+1) {
        clear: left
    }

    #webinars-list .body .card .card-image {
        padding: 0
    }

    #webinars-list .body .card .card-header {
        padding: 15px
    }

    #webinars-list .body .card .card-price {
        left: 15px
    }

    #webinars-list .body .card .title {
        margin-bottom: 30px;
        display: inline-block
    }

    main.no-menu #search-result-container {
        margin: 45px auto 40px;
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    main.no-menu #search-result-container .topics-container {
        margin-top: 30px
    }

    main.no-menu #search-result-container:last-child {
        margin-right: 0
    }

    main.no-menu #search-result-container .arrow-icon svg {
        margin-top: 20px
    }

    main.right-menu #ui-container {
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    main.right-menu #ui-container:last-child {
        margin-right: 0
    }

    main.right-menu #ui-container #category-container {
        padding: 50px 20px;
        border-bottom: 1px solid #e0e0e0;
        background-color: #fff;
        margin-bottom: 40px
    }

    main.right-menu #ui-container #category-container .back-btn {
        margin-top: -5px;
        left: 0
    }

    main.right-menu #ui-container #category-container .topic-view-content h1 {
        margin-bottom: 25px;
        font-size: 24px;
        line-height: 29px
    }

    main.right-menu>div>div.container {
        padding: 0 0
    }

    main.right-menu .right-menu-container {
        padding-top: 70px;
        text-align: center
    }

    main.right-menu .right-menu-container .tags-menu>div:first-child {
        font-size: 24px
    }

    main.right-menu .right-menu-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 19.64286%
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:nth-child(4n) {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:nth-child(4n+1) {
        clear: left
    }

    main.top-menu .category-tags-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 46.42857%
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(2n) {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(2n+1) {
        clear: left
    }

    main.top-menu .topics-container {
        margin: 75px auto 70px;
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    main.top-menu .topics-container:last-child {
        margin-right: 0
    }

    .topic-list {
        margin-top: 20px
    }

    .topic-list .youtube {
        right: 10px
    }

    #logotypes {
        margin-bottom: 25px
    }

    #logotypes .content {
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    #logotypes .content:last-child {
        margin-right: 0
    }

    #logotypes h2 {
        margin-bottom: 30px;
        font-size: 35px
    }

    #logotypes a {
        margin-bottom: 20px
    }

    #webinars {
        padding-top: 60px;
        padding-bottom: 50px
    }

    #webinars .webinars-gallery {
        margin-top: 30px;
        padding-bottom: 10px
    }

    #activate-container {
        height: 225px
    }

    #activate-container .datalist {
        width: 380px
    }

    #activate-container .title h2 {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    #contact-container {
        padding-top: 65px;
        padding-bottom: 15px;
        background-color: #fff
    }

    #contact-container .contact-div {
        margin-top: 45px;
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    #contact-container .contact-div:last-child {
        margin-right: 0
    }

    #contact-container .contact-div .contact-item {
        margin-bottom: 40px
    }

    .title-center h2 {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    a.show-more {
        margin-top: 35px
    }

    datalist {
        z-index: 2
    }

    #container-404 {
        margin-top: 5%;
        height: 400px;
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    #container-404:last-child {
        margin-right: 0
    }

    #container-404 span.line-1 {
        top: 22%;
        font-size: 13px;
        left: 35%
    }

    #container-404 span.line-2 {
        font-size: 98px;
        left: 39%;
        top: 30%
    }

    #container-404 span.line-3 {
        font-size: 17px;
        left: 35%;
        max-width: 230px;
        text-align: center;
        top: 62%
    }

    #container-404 span.line-4 {
        left: 31%;
        top: 81%
    }

    #container-500 {
        margin-top: 5%;
        height: 400px;
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 100%
    }

    #container-500:last-child {
        margin-right: 0
    }

    #container-500 span.line-1 {
        top: 22%;
        font-size: 13px;
        left: 35%
    }

    #container-500 span.line-2 {
        font-size: 98px;
        left: 39%;
        top: 30%
    }

    #container-500 span.line-3 {
        font-size: 17px;
        left: 38%;
        max-width: 230px;
        text-align: center;
        top: 62%
    }

    #container-500 span.line-4 {
        left: 31%;
        top: 81%
    }

    div#instruction-container div.instruction h2 {
        font-size: 30px
    }

    div#instruction-container div.instruction ol {
        margin-top: 35px;
        margin-left: 35px
    }

    div#instruction-container div.instruction ol li {
        background-position: 5px 6px;
        padding: 0 20px 25px 25px;
        font-size: 15px
    }

    div#instruction-container div.instruction ol li::before {
        left: -22px;
        width: 20px;
        font-size: 18px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    #newsbar-container>div.container>div {
        float:left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    #newsbar-container>div.container>div:last-child {
        margin-right: 0
    }

    #newsbar-container .newsbar-content {
        padding-left: 40px;
        padding-right: 100px
    }

    #newsbar-container .newsbar-title {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }

    div#search-container {
        height: 285px
    }

    div#search-container .container .search-row {
        margin-top: 65px;
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    div#search-container .container .search-row .welcome-text {
        font-size: 18px;
        line-height: 29px;
        font-weight: 400
    }

    div#search-container .container .search-row:last-child {
        margin-right: 0
    }

    div#search-container .container .search-row .search-title {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    div#search-container .container .search-row .search-input {
        margin: 25px 45px
    }

    div#search-container .container .search-row .search-input .datalist-responsive[data-open='true'] .search-phrase {
        padding-left: 15px
    }

    div#search-container .container .search-row .search-input .datalist-responsive[data-open='true'] .input-group-addon-search {
        display: none
    }

    div#search-container .container .search-row .search-input .input-group-medium input[type='text'] {
        height: 40px
    }

    div#search-container.subPage {
        height: 240px;
        background-size: auto;
        background-position: 100% 0
    }

    div#search-container.subPage .container .search-row {
        margin-top: 75px
    }

    div#search-container.subPage .container .search-row .search-title {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    div#search-container.subPage .container .search-row .search-input {
        margin-top: 23px
    }

    main.no-menu #search-result-container {
        margin: 70px auto 50px;
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    main.no-menu #search-result-container .topics-container {
        margin-top: 30px
    }

    main.no-menu #search-result-container:last-child {
        margin-right: 0
    }

    main.no-menu #search-result-container .arrow-icon svg {
        margin-top: 20px
    }

    main.right-menu>div>div.container {
        padding: 0 0
    }

    main.right-menu .right-menu-container {
        padding-top: 70px;
        text-align: center
    }

    main.right-menu .right-menu-container .tags-menu>div:first-child {
        font-size: 24px
    }

    main.right-menu .right-menu-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 22.41379%
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:nth-child(4n) {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:nth-child(4n+1) {
        clear: left
    }

    main.right-menu #ui-container {
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    main.right-menu #ui-container:last-child {
        margin-right: 0
    }

    main.right-menu #ui-container #category-container {
        padding: 50px 20px 55px;
        border-bottom: 1px solid #e0e0e0;
        background-color: #fff;
        margin-bottom: 40px
    }

    main.right-menu #ui-container #category-container .back-btn {
        left: 0
    }

    main.right-menu #ui-container #category-container .topic-view-content h1 {
        margin-bottom: 30px;
        font-size: 34px;
        line-height: 41px
    }

    main.top-menu .category-tags-container {
        padding-top: 20px;
        padding-bottom: 30px
    }

    main.top-menu .category-tags-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 48.27586%
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(2n) {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(2n+1) {
        clear: left
    }

    main.top-menu .topics-container {
        margin: 80px auto 85px;
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    main.top-menu .topics-container:last-child {
        margin-right: 0
    }

    .topic-list {
        margin-top: 25px
    }

    .topic-list .youtube {
        right: 10px
    }

    #webinars-list {
        margin-top: 50px
    }

    #webinars-list .webinar-category-container {
        padding: 60px 0
    }

    #webinars-list .webinar-category-container .head {
        margin-bottom: 25px
    }

    #webinars-list div.title h2 {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    #webinars-list div.title a.back-btn {
        top: -10px
    }

    #webinars-list .body .card {
        min-height: 325px;
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 48.27586%
    }

    #webinars-list .body .card:last-child {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(2n) {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(2n+1) {
        clear: left
    }

    #webinars-list .body .card .card-image {
        padding: 0
    }

    #webinars-list .body .card div.card-image-valign {
        height: 180px
    }

    #webinars-list .body .card .card-header {
        padding: 20px
    }

    #webinars-list .body .card .card-price {
        left: 20px
    }

    #webinars-list .body .card .title {
        margin-bottom: 30px;
        display: inline-block
    }

    #logotypes {
        margin-bottom: 40px
    }

    #logotypes .content {
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    #logotypes .content:last-child {
        margin-right: 0
    }

    #logotypes h2 {
        margin-bottom: 35px;
        font-size: 35px
    }

    #logotypes a {
        margin-bottom: 25px
    }

    #webinars {
        padding-top: 60px;
        padding-bottom: 50px
    }

    #webinars .webinars-gallery {
        margin-top: 30px;
        padding-bottom: 10px
    }

    #activate-container {
        height: 250px
    }

    #activate-container .title h2 {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    #activate-container .datalist {
        width: 450px
    }

    #contact-container {
        padding-top: 60px;
        padding-bottom: 25px;
        background-color: #fff
    }

    #contact-container .contact-div {
        margin-top: 40px;
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    #contact-container .contact-div:last-child {
        margin-right: 0
    }

    #contact-container .contact-div .contact-item {
        margin-bottom: 45px
    }

    .title-center h2 {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    a.show-more {
        margin-top: 45px
    }

    #container-404 {
        margin-top: 5%;
        height: 450px;
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    #container-404:last-child {
        margin-right: 0
    }

    #container-404 span.line-1 {
        top: 20%;
        font-size: 16px;
        padding-left: 75px;
        margin-left: 25.86207%
    }

    #container-404 span.line-2 {
        top: 25%;
        font-size: 125px;
        left: 10%;
        margin-left: 25.86207%
    }

    #container-404 span.line-3 {
        top: 62%;
        font-size: 16px;
        left: 4%;
        margin-left: 25.86207%
    }

    #container-404 span.line-4 {
        top: 75%;
        margin-left: 25.86207%;
        left: 7%
    }

    #container-500 {
        margin-top: 5%;
        height: 450px;
        float: left;
        display: block;
        margin-right: 3.44828%;
        width: 100%
    }

    #container-500:last-child {
        margin-right: 0
    }

    #container-500 span.line-1 {
        top: 20%;
        font-size: 16px;
        padding-left: 75px;
        margin-left: 25.86207%
    }

    #container-500 span.line-2 {
        top: 25%;
        font-size: 125px;
        left: 10%;
        margin-left: 25.86207%
    }

    #container-500 span.line-3 {
        top: 62%;
        font-size: 16px;
        left: 13%;
        margin-left: 25.86207%
    }

    #container-500 span.line-4 {
        top: 75%;
        margin-left: 25.86207%;
        left: 7%
    }
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    #newsbar-container>div.container>div {
        float:left;
        display: block;
        margin-right: 2.27273%;
        width: 100%
    }

    #newsbar-container>div.container>div:last-child {
        margin-right: 0
    }

    #newsbar-container .newsbar-content {
        padding: 0 40px
    }

    #newsbar-container .newsbar-title {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }

    div#search-container {
        height: 365px
    }

    div#search-container .container .search-row {
        margin-top: 80px;
        margin-left: 17.04545%;
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 65.90909%
    }

    div#search-container .container .search-row .welcome-text {
        font-size: 18px;
        line-height: 29px;
        font-weight: 400;
        margin-bottom: 5px
    }

    div#search-container .container .search-row:last-child {
        margin-right: 0
    }

    div#search-container .container .search-row .search-title {
        font-size: 44px;
        line-height: 53px;
        font-weight: 700
    }

    div#search-container .container .search-row .search-input {
        margin-top: 25px
    }

    div#search-container .container .search-row .search-input .input-group-medium input[type='text'] {
        height: 40px
    }

    div#search-container.subPage {
        height: 300px;
        background-size: auto;
        background-position: 100% 0
    }

    div#search-container.subPage .container .search-row {
        margin-top: 90px
    }

    div#search-container.subPage .container .search-row .search-title {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    div#search-container.subPage .container .search-row .search-input {
        margin-top: 23px
    }

    main.no-menu #search-result-container {
        margin: 70px auto 55px;
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 100%
    }

    main.no-menu #search-result-container .topics-container {
        margin-top: 40px
    }

    main.no-menu #search-result-container:last-child {
        margin-right: 0
    }

    main.no-menu #search-result-container .arrow-icon svg {
        margin-top: 20px
    }

    main.right-menu {
        position: relative
    }

    main.right-menu .main-background {
        position: absolute;
        height: 100%;
        width: 100%
    }

    main.right-menu .main-background>div {
        position: relative;
        height: 100%;
        width: 100%
    }

    main.right-menu .main-background>div::before,main.right-menu .main-background>div::after {
        top: 0;
        content: ' ';
        height: 100%;
        position: absolute
    }

    main.right-menu .main-background>div::before {
        left: 0;
        width: 35%;
        background-color: #fff
    }

    main.right-menu .main-background>div::after {
        right: 0;
        width: 25%;
        background-color: #fafafa
    }

    main.right-menu #ui-container {
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 65.90909%
    }

    main.right-menu #ui-container:last-child {
        margin-right: 0
    }

    main.right-menu #ui-container #category-container {
        padding-bottom: 55px;
        background-color: #fff;
        padding-top: 65px
    }

    main.right-menu #ui-container #category-container .topic-view-content h1 {
        margin-bottom: 40px;
        font-size: 34px;
        line-height: 41px
    }

    main.right-menu #contact-container {
        margin: 50px auto
    }

    main.right-menu #contact-container h2.section-headline {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    main.right-menu #contact-container div.section-headline {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }

    main.right-menu #contact-container div.contact-item {
        width: 100%;
        margin-top: 20px
    }

    main.right-menu #contact-container div.contact-item a {
        padding: 0;
        display: flex;
        display: -webkit-flex;
        display: -ms-flexbox;
        align-items: center;
        -webkit-align-items: center
    }

    main.right-menu #contact-container div.contact-item a>span {
        width: 150px;
        text-align: left;
        margin-left: 20px
    }

    main.right-menu #contact-container div.contact-item a>span .title {
        display: inline-block;
        padding: 0;
        width: 150px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        font-weight: bold
    }

    main.right-menu #contact-container div.contact-item a>span .description {
        display: inline-block;
        width: 150px;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400
    }

    main.top-menu .category-tags-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 31.81818%
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(3n) {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(3n+1) {
        clear: left
    }

    main.top-menu .topics-container {
        margin: 90px auto 95px;
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 100%
    }

    main.top-menu .topics-container:last-child {
        margin-right: 0
    }

    main.top-menu #contact-container {
        padding-top: 80px;
        padding-bottom: 25px
    }

    main.top-menu #contact-container .contact-div {
        margin-top: 60px;
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 100%
    }

    main.top-menu #contact-container .contact-div:last-child {
        margin-right: 0
    }

    main.top-menu #contact-container .contact-div .contact-item {
        margin-bottom: 45px
    }

    .topic-list {
        margin-top: 30px
    }

    .topic-list .youtube {
        right: 10px
    }

    #webinars-list {
        margin-top: 55px
    }

    #webinars-list .webinar-category-container {
        padding: 70px 0
    }

    #webinars-list .webinar-category-container .head {
        margin-bottom: 25px
    }

    #webinars-list div.title h2 {
        font-size: 34px
    }

    #webinars-list .body .card {
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 31.81818%
    }

    #webinars-list .body .card:last-child {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(3n) {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(3n+1) {
        clear: left
    }

    #webinars-list .body .card .card-image {
        padding: 0
    }

    #webinars-list .body .card .card-header {
        padding: 20px
    }

    #webinars-list .body .card .card-price {
        left: 20px
    }

    #webinars-list .body .card .title {
        margin-bottom: 30px;
        display: inline-block
    }

    .right-menu .right-menu-container {
        border-left: 1px solid #e0e0e0;
        padding-top: 70px;
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 31.81818%
    }

    .right-menu .right-menu-container:last-child {
        margin-right: 0
    }

    .right-menu .right-menu-container .tags-menu {
        padding-left: 20px
    }

    .right-menu .right-menu-container .tags-menu>div:first-child {
        font-size: 24px
    }

    .right-menu .right-menu-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 46.42857%
    }

    .right-menu .right-menu-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    .right-menu .right-menu-container .tags-menu .menu-item:nth-child(2n) {
        margin-right: 0
    }

    .right-menu .right-menu-container .tags-menu .menu-item:nth-child(2n+1) {
        clear: left
    }

    #logotypes {
        margin-bottom: 60px
    }

    #logotypes .content {
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 100%
    }

    #logotypes .content:last-child {
        margin-right: 0
    }

    #logotypes h2 {
        margin-bottom: 35px;
        font-size: 35px
    }

    #logotypes a {
        margin-bottom: 25px
    }

    #webinars {
        padding: 70px 0
    }

    #webinars .container .head {
        margin-left: 17.04545%;
        text-align: left;
        margin-bottom: 30px
    }

    #webinars .container .body-front .card {
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 48.86364%
    }

    #webinars .container .body-front .card:last-child {
        margin-right: 0
    }

    #webinars .container .body-front .card:nth-child(2n) {
        margin-right: 0
    }

    #webinars .container .body-front .card:nth-child(2n+1) {
        clear: left
    }

    #webinars .webinars-gallery {
        margin: 40px auto 10px
    }

    #activate-container {
        height: 310px
    }

    #activate-container .title h2 {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    #activate-container .datalist {
        width: 450px
    }

    .title-center h2 {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    a.show-more {
        margin-top: 45px
    }

    #container-404 {
        margin-top: 5%;
        height: 490px;
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 100%
    }

    #container-404:last-child {
        margin-right: 0
    }

    #container-404 span.line-1 {
        top: 18%;
        font-size: 19px;
        padding-left: 120px;
        margin-left: 17.04545%
    }

    #container-404 span.line-2 {
        top: 25%;
        font-size: 152px;
        left: 15px;
        margin-left: 34.09091%
    }

    #container-404 span.line-3 {
        top: 62%;
        font-size: 19px;
        padding-left: 120px;
        margin-left: 17.04545%
    }

    #container-404 span.line-4 {
        top: 74%;
        margin-left: 34.09091%;
        left: 3px
    }

    #container-500 {
        margin-top: 5%;
        height: 490px;
        float: left;
        display: block;
        margin-right: 2.27273%;
        width: 100%
    }

    #container-500:last-child {
        margin-right: 0
    }

    #container-500 span.line-1 {
        top: 18%;
        font-size: 19px;
        padding-left: 120px;
        margin-left: 17.04545%
    }

    #container-500 span.line-2 {
        top: 25%;
        font-size: 152px;
        left: 15px;
        margin-left: 34.09091%
    }

    #container-500 span.line-3 {
        top: 62%;
        font-size: 19px;
        padding-left: 195px;
        margin-left: 17.04545%
    }

    #container-500 span.line-4 {
        top: 74%;
        margin-left: 34.09091%;
        left: 3px
    }
}

@media screen and (min-width: 1220px) and (max-width: 1519px) {
    #newsbar-container>div.container>div {
        float:left;
        display: block;
        margin-right: 1.69492%;
        width: 100%
    }

    #newsbar-container>div.container>div:last-child {
        margin-right: 0
    }

    #newsbar-container .newsbar-content {
        padding: 0 40px
    }

    #search-container {
        height: 470px
    }

    #search-container .container .search-row {
        margin-top: 125px;
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 74.57627%;
        margin-left: 12.71186%
    }

    #search-container .container .search-row:last-child {
        margin-right: 0
    }

    #search-container .container .search-row .welcome-text {
        font-size: 18px;
        line-height: 29px;
        font-weight: 400;
        margin-bottom: 5px
    }

    #search-container .container .search-row .search-title {
        font-size: 44px;
        line-height: 53px;
        font-weight: 700
    }

    #search-container .container .search-row .search-input {
        margin: 30px 35px
    }

    #search-container.subPage {
        height: 300px;
        background-size: auto;
        background-position: 100% 0
    }

    #search-container.subPage .container .search-row {
        margin-top: 90px
    }

    #search-container.subPage .container .search-row .search-title {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    #search-container.subPage .container .search-row .search-input {
        margin-top: 23px
    }

    main.no-menu #search-result-container {
        margin: 70px auto;
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 100%
    }

    main.no-menu #search-result-container .topics-container {
        margin-top: 40px
    }

    main.no-menu #search-result-container:last-child {
        margin-right: 0
    }

    main.no-menu #search-result-container .arrow-icon svg {
        margin-top: 20px
    }

    main.right-menu {
        position: relative
    }

    main.right-menu .main-background {
        position: absolute;
        height: 100%;
        width: 100%
    }

    main.right-menu .main-background>div {
        position: relative;
        height: 100%;
        width: 100%
    }

    main.right-menu .main-background>div::before,main.right-menu .main-background>div::after {
        top: 0;
        content: ' ';
        height: 100%;
        position: absolute
    }

    main.right-menu .main-background>div::before {
        left: 0;
        width: 35%;
        background-color: #fff
    }

    main.right-menu .main-background>div::after {
        right: 0;
        width: 25%;
        background-color: #fafafa
    }

    main.right-menu #ui-container {
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 74.57627%
    }

    main.right-menu #ui-container:last-child {
        margin-right: 0
    }

    main.right-menu #ui-container #category-container {
        background-color: #fff;
        padding-top: 70px;
        padding-bottom: 60px
    }

    main.right-menu #ui-container #category-container .topic-view-content {
        margin-bottom: 70px
    }

    main.right-menu #ui-container #category-container .topic-view-content h1 {
        margin-bottom: 45px;
        font-size: 34px;
        line-height: 41px
    }

    main.right-menu .right-menu-container {
        border-left: 1px solid #e0e0e0;
        padding-top: 70px;
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 23.72881%
    }

    main.right-menu .right-menu-container:last-child {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu {
        padding-left: 20px
    }

    main.right-menu .right-menu-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 46.42857%
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:nth-child(2n) {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:nth-child(2n+1) {
        clear: left
    }

    main.right-menu #contact-container {
        margin: 50px auto
    }

    main.right-menu #contact-container h2.section-headline {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    main.right-menu #contact-container div.section-headline {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }

    main.right-menu #contact-container div.contact-item {
        width: 100%;
        margin-top: 20px
    }

    main.right-menu #contact-container div.contact-item a {
        padding: 0;
        display: flex;
        display: -webkit-flex;
        display: -ms-flexbox;
        align-items: center;
        -webkit-align-items: center
    }

    main.right-menu #contact-container div.contact-item a>span {
        width: 150px;
        text-align: left;
        margin-left: 20px
    }

    main.right-menu #contact-container div.contact-item a>span .title {
        display: inline-block;
        padding: 0;
        width: 150px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        font-weight: bold
    }

    main.right-menu #contact-container div.contact-item a>span .description {
        display: inline-block;
        width: 150px;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400
    }

    main.top-menu .category-tags-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 23.72881%
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(4n) {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(4n+1) {
        clear: left
    }

    main.top-menu .topics-container {
        margin: 90px auto 125px;
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 100%
    }

    main.top-menu .topics-container:last-child {
        margin-right: 0
    }

    main.top-menu #contact-container {
        padding-top: 100px;
        padding-bottom: 35px
    }

    main.top-menu #contact-container .title-center h2 {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    main.top-menu #contact-container div.section-headline {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }

    main.top-menu #contact-container .contact-div {
        margin-top: 50px;
        margin-left: 12.71186%;
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 74.57627%
    }

    main.top-menu #contact-container .contact-div:last-child {
        margin-right: 0
    }

    main.top-menu #contact-container .contact-div .contact-item {
        margin-bottom: 45px
    }

    .topic-list li {
        font-size: 18px;
        line-height: 29px;
        font-weight: 400
    }

    .topic-list li h2 {
        font-size: 18px !important;
        line-height: 29px !important
    }

    a.show-more {
        margin-top: 60px
    }

    #webinars-list {
        margin-top: 55px
    }

    #webinars-list .webinar-category-container {
        padding: 70px 0
    }

    #webinars-list .webinar-category-container .head {
        margin-bottom: 25px
    }

    #webinars-list .body .card {
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 23.72881%
    }

    #webinars-list .body .card:last-child {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(4n) {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(4n+1) {
        clear: left
    }

    #webinars-list .body .card .card-image {
        padding: 0
    }

    #webinars-list .body .card .card-header {
        padding: 20px
    }

    #webinars-list .body .card .card-price {
        left: 20px
    }

    #webinars-list .body .card .title {
        margin-bottom: 30px;
        display: inline-block
    }

    #logotypes {
        margin-bottom: 90px
    }

    #logotypes .content {
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 100%
    }

    #logotypes .content:last-child {
        margin-right: 0
    }

    #logotypes h2 {
        margin-bottom: 60px;
        font-size: 44px
    }

    #logotypes a {
        margin-bottom: 30px
    }

    #webinars {
        padding-top: 80px;
        padding-bottom: 90px
    }

    #webinars .container .head {
        margin-left: 12.71186%;
        text-align: left;
        margin-bottom: 30px
    }

    #webinars .container .body-front .card {
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 49.15254%
    }

    #webinars .container .body-front .card:last-child {
        margin-right: 0
    }

    #webinars .container .body-front .card:nth-child(2n) {
        margin-right: 0
    }

    #webinars .container .body-front .card:nth-child(2n+1) {
        clear: left
    }

    #webinars .webinars-gallery {
        margin: 50px auto 25px
    }

    #activate-container .title h2 {
        font-size: 44px;
        line-height: 53px;
        font-weight: 700
    }

    #container-404 {
        margin-top: 8%;
        height: 580px;
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 100%
    }

    #container-404:last-child {
        margin-right: 0
    }

    #container-404 span.line-1 {
        top: 18%;
        font-size: 24px;
        padding-left: 80px;
        margin-left: 25.42373%
    }

    #container-404 span.line-2 {
        top: 25%;
        font-size: 186px;
        left: -17px;
        margin-left: 38.13559%
    }

    #container-404 span.line-3 {
        top: 62%;
        font-size: 24px;
        padding-left: 70px;
        margin-left: 25.42373%
    }

    #container-404 span.line-4 {
        top: 75%;
        margin-left: 38.13559%;
        left: 3px
    }

    #container-500 {
        margin-top: 8%;
        height: 580px;
        float: left;
        display: block;
        margin-right: 1.69492%;
        width: 100%
    }

    #container-500:last-child {
        margin-right: 0
    }

    #container-500 span.line-1 {
        top: 18%;
        font-size: 24px;
        padding-left: 80px;
        margin-left: 25.42373%
    }

    #container-500 span.line-2 {
        top: 25%;
        font-size: 186px;
        left: -17px;
        margin-left: 38.13559%
    }

    #container-500 span.line-3 {
        top: 62%;
        font-size: 24px;
        padding-left: 165px;
        margin-left: 25.42373%
    }

    #container-500 span.line-4 {
        top: 75%;
        margin-left: 38.13559%;
        left: 3px
    }
}

@media screen and (min-width: 1520px) {
    #newsbar-container>div.container>div {
        margin-left:10.13514%;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 79.72973%
    }

    #newsbar-container>div.container>div:last-child {
        margin-right: 0
    }

    #newsbar-container .newsbar-content {
        padding: 0 40px
    }

    #search-container {
        height: 560px
    }

    #search-container .container .search-row {
        margin-top: 160px;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 59.45946%;
        margin-left: 20.27027%
    }

    #search-container .container .search-row:last-child {
        margin-right: 0
    }

    #search-container .container .search-row .welcome-text {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700;
        font-weight: initial
    }

    #search-container .container .search-row .search-title {
        font-size: 44px;
        line-height: 53px;
        font-weight: 700;
        margin-bottom: 10px
    }

    #search-container .container .search-row .search-input {
        margin: 35px
    }

    #search-container.subPage {
        height: 300px;
        background-size: auto;
        background-position: 100% 0
    }

    #search-container.subPage .container .search-row {
        margin-top: 90px
    }

    #search-container.subPage .container .search-row .search-title {
        font-size: 34px;
        line-height: 41px;
        font-weight: 700
    }

    #search-container.subPage .container .search-row .search-input {
        margin-top: 23px
    }

    main.no-menu #search-result-container {
        margin: 70px auto;
        margin-left: 10.13514%;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 79.72973%
    }

    main.no-menu #search-result-container .topics-container {
        margin-top: 40px
    }

    main.no-menu #search-result-container:last-child {
        margin-right: 0
    }

    main.right-menu {
        position: relative
    }

    main.right-menu .main-background {
        position: absolute;
        height: 100%;
        width: 100%
    }

    main.right-menu .main-background>div {
        position: relative;
        height: 100%;
        width: 100%
    }

    main.right-menu .main-background>div::before,main.right-menu .main-background>div::after {
        top: 0;
        content: ' ';
        height: 100%;
        position: absolute
    }

    main.right-menu .main-background>div::before {
        left: 0;
        width: 35%;
        background-color: #fff
    }

    main.right-menu .main-background>div::after {
        right: 0;
        width: 50%;
        background-color: #fafafa
    }

    main.right-menu #ui-container {
        margin-left: 10.13514%;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 59.45946%
    }

    main.right-menu #ui-container:last-child {
        margin-right: 0
    }

    main.right-menu #ui-container #category-container {
        padding-top: 70px;
        background-color: #fff;
        padding-bottom: 10060px;
        margin-bottom: -10000px
    }

    main.right-menu #ui-container #category-container::after {
        background: #fff;
        bottom: 0;
        content: ' ';
        margin: -19px;
        position: absolute;
        right: 0;
        top: 20px;
        width: 19px
    }

    main.right-menu #ui-container #category-container.topic-view::after {
        top: 30px;
        margin: -29px;
        width: 29px
    }

    main.right-menu #ui-container #category-container .topic-view-content {
        margin-bottom: 85px
    }

    main.right-menu #ui-container #category-container .topic-view-content h1 {
        margin-bottom: 45px;
        font-size: 34px;
        line-height: 41px
    }

    main.right-menu .right-menu-container {
        border-left: 1px solid #e0e0e0;
        padding-top: 70px;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 18.91892%
    }

    main.right-menu .right-menu-container:last-child {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item {
        padding: 0 10px;
        float: left;
        display: block;
        margin-right: 7.14286%;
        width: 46.42857%
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:nth-child(2n) {
        margin-right: 0
    }

    main.right-menu .right-menu-container .tags-menu .menu-item:nth-child(2n+1) {
        clear: left
    }

    main.right-menu #contact-container {
        margin: 50px auto
    }

    main.right-menu #contact-container h2.section-headline {
        font-size: 24px;
        line-height: 29px;
        font-weight: 700
    }

    main.right-menu #contact-container div.section-headline {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }

    main.right-menu #contact-container div.contact-item {
        width: 100%;
        margin-top: 20px
    }

    main.right-menu #contact-container div.contact-item a {
        padding: 0;
        display: flex;
        display: -webkit-flex;
        display: -ms-flexbox;
        align-items: center;
        -webkit-align-items: center
    }

    main.right-menu #contact-container div.contact-item a>span {
        width: 150px;
        text-align: left;
        margin-left: 20px
    }

    main.right-menu #contact-container div.contact-item a>span .title {
        display: inline-block;
        padding: 0;
        width: 150px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        font-weight: bold
    }

    main.right-menu #contact-container div.contact-item a>span .description {
        display: inline-block;
        width: 150px;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400
    }

    main.top-menu .category-tags-container .tags-menu .menu-item {
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 18.91892%
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(4n+1) {
        margin-left: 10.13514%
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:last-child {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(4n) {
        margin-right: 0
    }

    main.top-menu .category-tags-container .tags-menu .menu-item:nth-child(4n+1) {
        clear: left
    }

    main.top-menu .topics-container {
        margin: 90px auto 100px;
        margin-left: 10.13514%;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 79.72973%
    }

    main.top-menu .topics-container:last-child {
        margin-right: 0
    }

    main.top-menu #contact-container {
        padding-top: 90px;
        padding-bottom: 50px
    }

    main.top-menu #contact-container .contact-div {
        margin-top: 60px;
        margin-left: 20.27027%;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 59.45946%
    }

    main.top-menu #contact-container .contact-div:last-child {
        margin-right: 0
    }

    main.top-menu #contact-container .contact-div .contact-item {
        margin-bottom: 50px
    }

    .topic-list li {
        font-size: 18px;
        line-height: 29px;
        font-weight: 400
    }

    .topic-list li h2 {
        font-size: 18px !important;
        line-height: 29px !important
    }

    a.show-more {
        margin-top: 65px
    }

    #webinars-list {
        margin-top: 65px
    }

    #webinars-list .webinar-category-container {
        padding: 70px 0
    }

    #webinars-list .webinar-category-container .head {
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 79.72973%;
        margin-left: 10.13514%;
        margin-bottom: 25px
    }

    #webinars-list .webinar-category-container .head:last-child {
        margin-right: 0
    }

    #webinars-list>.container>.title {
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 79.72973%;
        margin-left: 10.13514%
    }

    #webinars-list>.container>.title:last-child {
        margin-right: 0
    }

    #webinars-list .body .card {
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 18.91892%
    }

    #webinars-list .body .card:last-child {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(4n) {
        margin-right: 0
    }

    #webinars-list .body .card:nth-child(4n+1) {
        clear: left
    }

    #webinars-list .body .card .card-image {
        padding: 0
    }

    #webinars-list .body .card:nth-child(4n+1) {
        margin-left: 10.13514%
    }

    #webinars-list .body .card .card-header {
        padding: 20px
    }

    #webinars-list .body .card .card-price {
        left: 20px
    }

    #webinars-list .body .card .title {
        margin-bottom: 30px;
        display: inline-block
    }

    #logotypes {
        margin-bottom: 100px
    }

    #logotypes h2 {
        margin-bottom: 60px;
        font-size: 44px
    }

    #logotypes .content {
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 79.72973%;
        margin-left: 10.13514%
    }

    #logotypes .content:last-child {
        margin-right: 0
    }

    #logotypes a {
        margin-bottom: 30px
    }

    #webinars {
        padding-top: 80px;
        padding-bottom: 80px
    }

    #webinars .container .head {
        margin-left: 10.13514%;
        text-align: left;
        margin-bottom: 30px
    }

    #webinars .container .body-front .card {
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 39.18919%
    }

    #webinars .container .body-front .card:nth-child(2n+1) {
        margin-left: 10.13514%
    }

    #webinars .container .body-front .card:last-child {
        margin-right: 0
    }

    #webinars .container .body-front .card:nth-child(2n) {
        margin-right: 0
    }

    #webinars .container .body-front .card:nth-child(2n+1) {
        clear: left
    }

    #webinars .webinars-gallery {
        margin: 50px auto 25px
    }

    #activate-container .datalist {
        width: 580px
    }

    #activate-container .title h2 {
        font-size: 44px;
        line-height: 53px;
        font-weight: 700
    }

    #container-404 {
        margin-top: 10%;
        height: 580px;
        margin-left: 10.13514%;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 79.72973%
    }

    #container-404:last-child {
        margin-right: 0
    }

    #container-404 span.line-1 {
        top: 18%;
        font-size: 24px;
        padding-left: 25px;
        margin-left: 30.40541%
    }

    #container-404 span.line-2 {
        top: 25%;
        font-size: 186px;
        left: -45px;
        margin-left: 40.54054%
    }

    #container-404 span.line-3 {
        top: 62%;
        font-size: 24px;
        padding-left: 10px;
        margin-left: 30.40541%
    }

    #container-404 span.line-4 {
        top: 75%;
        margin-left: 40.54054%;
        left: -28px
    }

    #container-500 {
        margin-top: 10%;
        height: 580px;
        margin-left: 10.13514%;
        float: left;
        display: block;
        margin-right: 1.35135%;
        width: 79.72973%
    }

    #container-500:last-child {
        margin-right: 0
    }

    #container-500 span.line-1 {
        top: 18%;
        font-size: 24px;
        padding-left: 25px;
        margin-left: 30.40541%
    }

    #container-500 span.line-2 {
        top: 25%;
        font-size: 186px;
        left: -45px;
        margin-left: 40.54054%
    }

    #container-500 span.line-3 {
        top: 62%;
        font-size: 24px;
        padding-left: 105px;
        margin-left: 30.40541%
    }

    #container-500 span.line-4 {
        top: 75%;
        margin-left: 40.54054%;
        left: -28px
    }
}

.btn.btn-secondary,.btn-group .btn {
    background-color: #fff
}

.datalist .options .option:not(.disabled):not(.selected):not(.active):hover {
    background-color: #2f82fb;
    color: #fff
}

#category-container.topic-view {
    word-wrap: break-word;
    margin-right: 10px
}

@media screen and (max-width: 639px) {
    #category-container.topic-view .topic-view-content {
        padding:0 20px
    }
}

#category-container.topic-view .topic-view-content ul {
    list-style: none;
    margin: 0 0 15px 0
}

#category-container.topic-view .topic-view-content ul>li {
    padding-left: 13px;
    position: relative;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    list-style: none;
    margin: 0
}

#category-container.topic-view .topic-view-content ul>li::before {
    height: 6px;
    width: 6px;
    background: #333333;
    border-radius: 3px;
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    left: 0
}

#category-container.topic-view .topic-view-content ol {
    list-style-type: decimal;
    margin: 0 0 15px 0;
    padding: 0 0 0 30px
}

#category-container.topic-view .topic-view-content ol>li {
    padding-left: 4px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    list-style-type: decimal;
    margin: 0
}

#category-container.topic-view div h1 {
    text-align: left;
    padding: 0;
    margin-top: 1em
}

@media screen and (max-width: 639px) {
    #category-container.topic-view div h1 {
        margin-bottom:25px !important
    }
}

#category-container.topic-view p {
    text-align: left
}

#category-container.topic-view .col {
    text-align: left;
    padding: 5px;
    float: left;
    display: block;
    margin-right: 1.35135%;
    width: 49.32432%
}

#category-container.topic-view .col:last-child {
    margin-right: 0
}

#category-container.topic-view .col.col2 {
    text-align: right
}

#category-container.topic-view .col button {
    padding-left: 20px;
    padding-right: 20px
}

@media screen and (max-width: 639px) {
    #category-container.topic-view .different-mobile .col {
        float:left;
        display: block;
        margin-right: 15.38462%;
        width: 1138.46154%
    }

    #category-container.topic-view .different-mobile .col:last-child {
        margin-right: 0
    }

    #category-container.topic-view .different-mobile .col:nth-child(1n) {
        margin-right: 0
    }

    #category-container.topic-view .different-mobile .col:nth-child(1n+1) {
        clear: left
    }

    #category-container.topic-view .different-mobile .col.col2 {
        text-align: left;
        padding-top: 5px
    }
}

#category-container.topic-view .baners {
    border-radius: 3px;
    border: 1px solid #d1d1d1;
    overflow: hidden;
    padding: 22px;
    margin-top: 20px
}

@media screen and (max-width: 639px) {
    #category-container.topic-view .baners {
        padding:10px !important
    }
}

#category-container.topic-view .was-helpful {
    background: #f5f5f5
}

#category-container.topic-view .was-helpful span.title {
    font-size: 24px;
    line-height: 25px;
    font-weight: bold
}

#category-container.topic-view .positive-review {
    background: #2f82fb
}

#category-container.topic-view .positive-review .col1 {
    float: left;
    display: block;
    margin-right: 1.35135%;
    width: 79.72973%
}

#category-container.topic-view .positive-review .col1:last-child {
    margin-right: 0
}

#category-container.topic-view .positive-review .col2 {
    float: left;
    display: block;
    margin-right: 1.35135%;
    width: 18.91892%
}

#category-container.topic-view .positive-review .col2:last-child {
    margin-right: 0
}

#category-container.topic-view .positive-review .col2 svg {
    font-size: 31px;
    margin-top: -5px;
    fill: #fff
}

#category-container.topic-view .positive-review span.title {
    font-size: 24px;
    color: #fff;
    line-height: 25px;
    font-weight: bold
}

@media screen and (max-width: 639px) {
    #category-container.topic-view .positive-review span.title {
        font-size:14px
    }
}

#category-container.topic-view .negative-review {
    background: #2f82fb;
    padding: 11px 22px
}

#category-container.topic-view .negative-review span.title {
    font-size: 24px;
    color: #fff;
    font-weight: bold
}

#category-container.topic-view .negative-review .col1 div {
    padding-top: 3px;
    color: #fff;
    font-size: 12px
}

#category-container.topic-view .negative-review .col2 span.text {
    padding-right: 5px;
    color: #fff;
    font-size: 12px
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    #category-container.topic-view .negative-review .col2 span.text {
        display:block;
        padding: 0 0 5px 0
    }
}

@media screen and (min-width: 920px) and (max-width: 1219px) {
    #category-container.topic-view .negative-review .col2 {
        padding-top:7px
    }
}

#category-container.topic-view .still-have-question {
    padding: 10px 22px
}

#category-container.topic-view .still-have-question span.title {
    font-size: 24px;
    color: #424242;
    font-weight: bold
}

#category-container.topic-view .still-have-question .col2 {
    padding-top: 7px
}

@media screen and (max-width: 639px) {
    #category-container.topic-view {
        margin:0
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    #category-container.topic-view {
        margin:0;
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    #category-container.topic-view {
        margin:0;
        padding-left: 20px;
        padding-right: 20px
    }
}
