/*!
 * Cropper v4.0.0
 * https://github.com/fengyuanchen/cropper
 *
 * Copyright (c) 2014-2018 Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2018-04-01T06:26:32.417Z
 */

.cropper-container {
    direction: ltr;
    font-size: 0;
    line-height: 0;
    position: relative;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cropper-container img {/*Avoid margin top issue (Occur only when margin-top <= -height)
 */
    display: block;
    height: 100%;
    image-orientation: 0deg;
    max-height: none !important;
    max-width: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: 100%;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
    overflow: hidden;
}

.cropper-drag-box {
    background-color: #fff;
    opacity: 0;
}

.cropper-modal {
    background-color: #000;
    opacity: .5;
}

.cropper-view-box {
    display: block;
    height: 100%;
    outline-color: rgba(51, 153, 255, 0.75);
    outline: 1px solid #39f;
    overflow: hidden;
    width: 100%;
}

.cropper-dashed {
    border: 0 dashed #eee;
    display: block;
    opacity: .5;
    position: absolute;
}

.cropper-dashed.dashed-h {
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: 33.33333%;
    left: 0;
    top: 33.33333%;
    width: 100%;
}

.cropper-dashed.dashed-v {
    border-left-width: 1px;
    border-right-width: 1px;
    height: 100%;
    left: 33.33333%;
    top: 0;
    width: 33.33333%;
}

.cropper-center {
    display: block;
    height: 0;
    left: 50%;
    opacity: .75;
    position: absolute;
    top: 50%;
    width: 0;
}

.cropper-center:before,
.cropper-center:after {
    background-color: #eee;
    content: ' ';
    display: block;
    position: absolute;
}

.cropper-center:before {
    height: 1px;
    left: -3px;
    top: 0;
    width: 7px;
}

.cropper-center:after {
    height: 7px;
    left: 0;
    top: -3px;
    width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
    display: block;
    height: 100%;
    opacity: .1;
    position: absolute;
    width: 100%;
}

.cropper-face {
    background-color: #fff;
    left: 0;
    top: 0;
}

.cropper-line {
    background-color: #39f;
}

.cropper-line.line-e {
    cursor: ew-resize;
    right: -3px;
    top: 0;
    width: 5px;
}

.cropper-line.line-n {
    cursor: ns-resize;
    height: 5px;
    left: 0;
    top: -3px;
}

.cropper-line.line-w {
    cursor: ew-resize;
    left: -3px;
    top: 0;
    width: 5px;
}

.cropper-line.line-s {
    bottom: -3px;
    cursor: ns-resize;
    height: 5px;
    left: 0;
}

.cropper-point {
    background-color: #39f;
    height: 5px;
    opacity: .75;
    width: 5px;
}

.cropper-point.point-e {
    cursor: ew-resize;
    margin-top: -3px;
    right: -3px;
    top: 50%;
}

.cropper-point.point-n {
    cursor: ns-resize;
    left: 50%;
    margin-left: -3px;
    top: -3px;
}

.cropper-point.point-w {
    cursor: ew-resize;
    left: -3px;
    margin-top: -3px;
    top: 50%;
}

.cropper-point.point-s {
    bottom: -3px;
    cursor: s-resize;
    left: 50%;
    margin-left: -3px;
}

.cropper-point.point-ne {
    cursor: nesw-resize;
    right: -3px;
    top: -3px;
}

.cropper-point.point-nw {
    cursor: nwse-resize;
    left: -3px;
    top: -3px;
}

.cropper-point.point-sw {
    bottom: -3px;
    cursor: nesw-resize;
    left: -3px;
}

.cropper-point.point-se {
    bottom: -3px;
    cursor: nwse-resize;
    height: 20px;
    opacity: 1;
    right: -3px;
    width: 20px;
}

@media (min-width: 768px) {
    .cropper-point.point-se {
        height: 15px;
        width: 15px;
    }
}

@media (min-width: 992px) {
    .cropper-point.point-se {
        height: 10px;
        width: 10px;
    }
}

@media (min-width: 1200px) {
    .cropper-point.point-se {
        height: 5px;
        opacity: .75;
        width: 5px;
    }
}

.cropper-point.point-se:before {
    background-color: #39f;
    bottom: -50%;
    content: ' ';
    display: block;
    height: 200%;
    opacity: 0;
    position: absolute;
    right: -50%;
    width: 200%;
}

.cropper-invisible {
    opacity: 0;
}

.cropper-bg {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
    display: block;
    height: 0;
    position: absolute;
    width: 0;
}

.cropper-hidden {
    display: none !important;
}

.cropper-move {
    cursor: move;
}

.cropper-crop {
    cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
    cursor: not-allowed;
}
.datepicker--cells{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.datepicker--cell{border-radius:4px;box-sizing:border-box;cursor:pointer;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;height:32px;z-index:1}.datepicker--cell.-focus-{background:#f0f0f0}.datepicker--cell.-current-{color:#4EB5E6}.datepicker--cell.-current-.-focus-{color:#4a4a4a}.datepicker--cell.-current-.-in-range-{color:#4EB5E6}.datepicker--cell.-in-range-{background:rgba(92,196,239,.1);color:#4a4a4a;border-radius:0}.datepicker--cell.-in-range-.-focus-{background-color:rgba(92,196,239,.2)}.datepicker--cell.-disabled-{cursor:default;color:#aeaeae}.datepicker--cell.-disabled-.-focus-{color:#aeaeae}.datepicker--cell.-disabled-.-in-range-{color:#a1a1a1}.datepicker--cell.-disabled-.-current-.-focus-{color:#aeaeae}.datepicker--cell.-range-from-{border:1px solid rgba(92,196,239,.5);background-color:rgba(92,196,239,.1);border-radius:4px 0 0 4px}.datepicker--cell.-range-to-{border:1px solid rgba(92,196,239,.5);background-color:rgba(92,196,239,.1);border-radius:0 4px 4px 0}.datepicker--cell.-selected-,.datepicker--cell.-selected-.-current-{color:#fff;background:#5cc4ef}.datepicker--cell.-range-from-.-range-to-{border-radius:4px}.datepicker--cell.-selected-{border:none}.datepicker--cell.-selected-.-focus-{background:#45bced}.datepicker--cell:empty{cursor:default}.datepicker--days-names{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:8px 0 3px}.datepicker--day-name{color:#FF9A19;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-flex:1;-ms-flex:1;flex:1;text-align:center;text-transform:uppercase;font-size:.8em}.-only-timepicker- .datepicker--content,.datepicker--body,.datepicker-inline .datepicker--pointer{display:none}.datepicker--cell-day{width:14.28571%}.datepicker--cells-months{height:170px}.datepicker--cell-month{width:33.33%;height:25%}.datepicker--cells-years,.datepicker--years{height:170px}.datepicker--cell-year{width:25%;height:33.33%}.datepickers-container{position:absolute;left:0;top:0}@media print{.datepickers-container{display:none}}.datepicker{background:#fff;border:1px solid #dbdbdb;box-shadow:0 4px 12px rgba(0,0,0,.15);border-radius:4px;box-sizing:content-box;font-family:Tahoma,sans-serif;font-size:14px;color:#4a4a4a;width:250px;position:absolute;left:-100000px;opacity:0;transition:opacity .3s ease,left 0s .3s,-webkit-transform .3s ease;transition:opacity .3s ease,transform .3s ease,left 0s .3s;transition:opacity .3s ease,transform .3s ease,left 0s .3s,-webkit-transform .3s ease;z-index:100}.datepicker.-from-top-{-webkit-transform:translateY(-8px);transform:translateY(-8px)}.datepicker.-from-right-{-webkit-transform:translateX(8px);transform:translateX(8px)}.datepicker.-from-bottom-{-webkit-transform:translateY(8px);transform:translateY(8px)}.datepicker.-from-left-{-webkit-transform:translateX(-8px);transform:translateX(-8px)}.datepicker.active{opacity:1;-webkit-transform:translate(0);transform:translate(0);transition:opacity .3s ease,left 0s 0s,-webkit-transform .3s ease;transition:opacity .3s ease,transform .3s ease,left 0s 0s;transition:opacity .3s ease,transform .3s ease,left 0s 0s,-webkit-transform .3s ease}.datepicker-inline .datepicker{border-color:#d7d7d7;box-shadow:none;position:static;left:auto;right:auto;opacity:1;-webkit-transform:none;transform:none}.datepicker--content{box-sizing:content-box;padding:4px}.datepicker--pointer{position:absolute;background:#fff;border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;width:10px;height:10px;z-index:-1}.datepicker--nav-action:hover,.datepicker--nav-title:hover{background:#f0f0f0}.-top-center- .datepicker--pointer,.-top-left- .datepicker--pointer,.-top-right- .datepicker--pointer{top:calc(100% - 4px);-webkit-transform:rotate(135deg);transform:rotate(135deg)}.-right-bottom- .datepicker--pointer,.-right-center- .datepicker--pointer,.-right-top- .datepicker--pointer{right:calc(100% - 4px);-webkit-transform:rotate(225deg);transform:rotate(225deg)}.-bottom-center- .datepicker--pointer,.-bottom-left- .datepicker--pointer,.-bottom-right- .datepicker--pointer{bottom:calc(100% - 4px);-webkit-transform:rotate(315deg);transform:rotate(315deg)}.-left-bottom- .datepicker--pointer,.-left-center- .datepicker--pointer,.-left-top- .datepicker--pointer{left:calc(100% - 4px);-webkit-transform:rotate(45deg);transform:rotate(45deg)}.-bottom-left- .datepicker--pointer,.-top-left- .datepicker--pointer{left:10px}.-bottom-right- .datepicker--pointer,.-top-right- .datepicker--pointer{right:10px}.-bottom-center- .datepicker--pointer,.-top-center- .datepicker--pointer{left:calc(50% - 10px / 2)}.-left-top- .datepicker--pointer,.-right-top- .datepicker--pointer{top:10px}.-left-bottom- .datepicker--pointer,.-right-bottom- .datepicker--pointer{bottom:10px}.-left-center- .datepicker--pointer,.-right-center- .datepicker--pointer{top:calc(50% - 10px / 2)}.datepicker--body.active{display:block}.datepicker--nav{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #efefef;min-height:32px;padding:4px}.-only-timepicker- .datepicker--nav{display:none}.datepicker--nav-action,.datepicker--nav-title{display:-webkit-flex;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.datepicker--nav-action{width:32px;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker--nav-action.-disabled-{visibility:hidden}.datepicker--nav-action svg{width:32px;height:32px}.datepicker--nav-action path{fill:none;stroke:#9c9c9c;stroke-width:2px}.datepicker--nav-title{border-radius:4px;padding:0 8px}.datepicker--buttons,.datepicker--time{border-top:1px solid #efefef;padding:4px}.datepicker--nav-title i{font-style:normal;color:#9c9c9c;margin-left:5px}.datepicker--nav-title.-disabled-{cursor:default;background:0 0}.datepicker--buttons{display:-webkit-flex;display:-ms-flexbox;display:flex}.datepicker--button{color:#4EB5E6;cursor:pointer;border-radius:4px;-webkit-flex:1;-ms-flex:1;flex:1;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:32px}.datepicker--button:hover{color:#4a4a4a;background:#f0f0f0}.datepicker--time{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;position:relative}.datepicker--time.-am-pm- .datepicker--time-sliders{-webkit-flex:0 1 138px;-ms-flex:0 1 138px;flex:0 1 138px;max-width:138px}.-only-timepicker- .datepicker--time{border-top:none}.datepicker--time-sliders{-webkit-flex:0 1 153px;-ms-flex:0 1 153px;flex:0 1 153px;margin-right:10px;max-width:153px}.datepicker--time-label{display:none;font-size:12px}.datepicker--time-current{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex:1;-ms-flex:1;flex:1;font-size:14px;text-align:center;margin:0 0 0 10px}.datepicker--time-current-colon{margin:0 2px 3px;line-height:1}.datepicker--time-current-hours,.datepicker--time-current-minutes{line-height:1;font-size:19px;font-family:"Century Gothic",CenturyGothic,AppleGothic,sans-serif;position:relative;z-index:1}.datepicker--time-current-hours:after,.datepicker--time-current-minutes:after{content:'';background:#f0f0f0;border-radius:4px;position:absolute;left:-2px;top:-3px;right:-2px;bottom:-2px;z-index:-1;opacity:0}.datepicker--time-current-hours.-focus-:after,.datepicker--time-current-minutes.-focus-:after{opacity:1}.datepicker--time-current-ampm{text-transform:uppercase;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;color:#9c9c9c;margin-left:6px;font-size:11px;margin-bottom:1px}.datepicker--time-row{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;font-size:11px;height:17px;background:linear-gradient(to right,#dedede,#dedede) left 50%/100% 1px no-repeat}.datepicker--time-row:first-child{margin-bottom:4px}.datepicker--time-row input[type=range]{background:0 0;cursor:pointer;-webkit-flex:1;-ms-flex:1;flex:1;height:100%;padding:0;margin:0;-webkit-appearance:none}.datepicker--time-row input[type=range]::-ms-tooltip{display:none}.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb{border-color:#b8b8b8}.datepicker--time-row input[type=range]:hover::-moz-range-thumb{border-color:#b8b8b8}.datepicker--time-row input[type=range]:hover::-ms-thumb{border-color:#b8b8b8}.datepicker--time-row input[type=range]:focus{outline:0}.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb{background:#5cc4ef;border-color:#5cc4ef}.datepicker--time-row input[type=range]:focus::-moz-range-thumb{background:#5cc4ef;border-color:#5cc4ef}.datepicker--time-row input[type=range]:focus::-ms-thumb{background:#5cc4ef;border-color:#5cc4ef}.datepicker--time-row input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid #dedede;background:#fff;cursor:pointer;transition:background .2s;margin-top:-6px}.datepicker--time-row input[type=range]::-moz-range-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid #dedede;background:#fff;cursor:pointer;transition:background .2s}.datepicker--time-row input[type=range]::-ms-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid #dedede;background:#fff;cursor:pointer;transition:background .2s}.datepicker--time-row input[type=range]::-webkit-slider-runnable-track{border:none;height:1px;cursor:pointer;color:transparent;background:0 0}.datepicker--time-row input[type=range]::-moz-range-track{border:none;height:1px;cursor:pointer;color:transparent;background:0 0}.datepicker--time-row input[type=range]::-ms-track{border:none;height:1px;cursor:pointer;color:transparent;background:0 0}.datepicker--time-row input[type=range]::-ms-fill-lower{background:0 0}.datepicker--time-row input[type=range]::-ms-fill-upper{background:0 0}.datepicker--time-row span{padding:0 12px}.datepicker--time-icon{color:#9c9c9c;border:1px solid;border-radius:50%;font-size:16px;position:relative;margin:0 5px -1px 0;width:1em;height:1em}.datepicker--time-icon:after,.datepicker--time-icon:before{content:'';background:currentColor;position:absolute}.datepicker--time-icon:after{height:.4em;width:1px;left:calc(50% - 1px);top:calc(50% + 1px);-webkit-transform:translateY(-100%);transform:translateY(-100%)}.datepicker--time-icon:before{width:.4em;height:1px;top:calc(50% + 1px);left:calc(50% - 1px)}.datepicker--cell-day.-other-month-,.datepicker--cell-year.-other-decade-{color:#dedede}.datepicker--cell-day.-other-month-:hover,.datepicker--cell-year.-other-decade-:hover{color:#c5c5c5}.-disabled-.-focus-.datepicker--cell-day.-other-month-,.-disabled-.-focus-.datepicker--cell-year.-other-decade-{color:#dedede}.-selected-.datepicker--cell-day.-other-month-,.-selected-.datepicker--cell-year.-other-decade-{color:#fff;background:#a2ddf6}.-selected-.-focus-.datepicker--cell-day.-other-month-,.-selected-.-focus-.datepicker--cell-year.-other-decade-{background:#8ad5f4}.-in-range-.datepicker--cell-day.-other-month-,.-in-range-.datepicker--cell-year.-other-decade-{background-color:rgba(92,196,239,.1);color:#ccc}.-in-range-.-focus-.datepicker--cell-day.-other-month-,.-in-range-.-focus-.datepicker--cell-year.-other-decade-{background-color:rgba(92,196,239,.2)}.datepicker--cell-day.-other-month-:empty,.datepicker--cell-year.-other-decade-:empty{background:0 0;border:none}
/*!
 * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

@-ms-viewport {
  width: device-width; }
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff; }

[tabindex="-1"]:focus {
  outline: 0 !important; }

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

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

dfn {
  font-style: italic; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

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

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }
  a:hover {
    color: #0056b3;
    text-decoration: underline; }

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none; }
  a:not([href]):not([tabindex]):focus {
    outline: 0; }

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em; }

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle;
  border-style: none; }

svg {
  overflow: hidden;
  vertical-align: middle; }

table {
  border-collapse: collapse; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit; }

label {
  display: inline-block;
  margin-bottom: 0.5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

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 {
  padding: 0;
  border-style: none; }

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

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox; }

textarea {
  overflow: auto;
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal; }

progress {
  vertical-align: baseline; }

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

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

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

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

output {
  display: inline-block; }

summary {
  display: list-item;
  cursor: pointer; }

template {
  display: none; }

[hidden] {
  display: none !important; }

/*!
 * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width; }
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

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

.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 720px) {
    .container {
      max-width: 700px; } }
  @media (min-width: 1000px) {
    .container {
      max-width: 1010px; } }
  @media (min-width: 1140px) {
    .container {
      max-width: 1160px; } }
  @media (min-width: 1360px) {
    .container {
      max-width: 1380px; } }

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px; }

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

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%; }

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%; }

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%; }

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%; }

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.3333333333%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.offset-11 {
  margin-left: 91.6666666667%; }

@media (min-width: 720px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }

  .order-sm-first {
    order: -1; }

  .order-sm-last {
    order: 13; }

  .order-sm-0 {
    order: 0; }

  .order-sm-1 {
    order: 1; }

  .order-sm-2 {
    order: 2; }

  .order-sm-3 {
    order: 3; }

  .order-sm-4 {
    order: 4; }

  .order-sm-5 {
    order: 5; }

  .order-sm-6 {
    order: 6; }

  .order-sm-7 {
    order: 7; }

  .order-sm-8 {
    order: 8; }

  .order-sm-9 {
    order: 9; }

  .order-sm-10 {
    order: 10; }

  .order-sm-11 {
    order: 11; }

  .order-sm-12 {
    order: 12; }

  .offset-sm-0 {
    margin-left: 0; }

  .offset-sm-1 {
    margin-left: 8.3333333333%; }

  .offset-sm-2 {
    margin-left: 16.6666666667%; }

  .offset-sm-3 {
    margin-left: 25%; }

  .offset-sm-4 {
    margin-left: 33.3333333333%; }

  .offset-sm-5 {
    margin-left: 41.6666666667%; }

  .offset-sm-6 {
    margin-left: 50%; }

  .offset-sm-7 {
    margin-left: 58.3333333333%; }

  .offset-sm-8 {
    margin-left: 66.6666666667%; }

  .offset-sm-9 {
    margin-left: 75%; }

  .offset-sm-10 {
    margin-left: 83.3333333333%; }

  .offset-sm-11 {
    margin-left: 91.6666666667%; } }
@media (min-width: 1000px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }

  .order-md-first {
    order: -1; }

  .order-md-last {
    order: 13; }

  .order-md-0 {
    order: 0; }

  .order-md-1 {
    order: 1; }

  .order-md-2 {
    order: 2; }

  .order-md-3 {
    order: 3; }

  .order-md-4 {
    order: 4; }

  .order-md-5 {
    order: 5; }

  .order-md-6 {
    order: 6; }

  .order-md-7 {
    order: 7; }

  .order-md-8 {
    order: 8; }

  .order-md-9 {
    order: 9; }

  .order-md-10 {
    order: 10; }

  .order-md-11 {
    order: 11; }

  .order-md-12 {
    order: 12; }

  .offset-md-0 {
    margin-left: 0; }

  .offset-md-1 {
    margin-left: 8.3333333333%; }

  .offset-md-2 {
    margin-left: 16.6666666667%; }

  .offset-md-3 {
    margin-left: 25%; }

  .offset-md-4 {
    margin-left: 33.3333333333%; }

  .offset-md-5 {
    margin-left: 41.6666666667%; }

  .offset-md-6 {
    margin-left: 50%; }

  .offset-md-7 {
    margin-left: 58.3333333333%; }

  .offset-md-8 {
    margin-left: 66.6666666667%; }

  .offset-md-9 {
    margin-left: 75%; }

  .offset-md-10 {
    margin-left: 83.3333333333%; }

  .offset-md-11 {
    margin-left: 91.6666666667%; } }
@media (min-width: 1140px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }

  .order-lg-first {
    order: -1; }

  .order-lg-last {
    order: 13; }

  .order-lg-0 {
    order: 0; }

  .order-lg-1 {
    order: 1; }

  .order-lg-2 {
    order: 2; }

  .order-lg-3 {
    order: 3; }

  .order-lg-4 {
    order: 4; }

  .order-lg-5 {
    order: 5; }

  .order-lg-6 {
    order: 6; }

  .order-lg-7 {
    order: 7; }

  .order-lg-8 {
    order: 8; }

  .order-lg-9 {
    order: 9; }

  .order-lg-10 {
    order: 10; }

  .order-lg-11 {
    order: 11; }

  .order-lg-12 {
    order: 12; }

  .offset-lg-0 {
    margin-left: 0; }

  .offset-lg-1 {
    margin-left: 8.3333333333%; }

  .offset-lg-2 {
    margin-left: 16.6666666667%; }

  .offset-lg-3 {
    margin-left: 25%; }

  .offset-lg-4 {
    margin-left: 33.3333333333%; }

  .offset-lg-5 {
    margin-left: 41.6666666667%; }

  .offset-lg-6 {
    margin-left: 50%; }

  .offset-lg-7 {
    margin-left: 58.3333333333%; }

  .offset-lg-8 {
    margin-left: 66.6666666667%; }

  .offset-lg-9 {
    margin-left: 75%; }

  .offset-lg-10 {
    margin-left: 83.3333333333%; }

  .offset-lg-11 {
    margin-left: 91.6666666667%; } }
@media (min-width: 1360px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }

  .order-xl-first {
    order: -1; }

  .order-xl-last {
    order: 13; }

  .order-xl-0 {
    order: 0; }

  .order-xl-1 {
    order: 1; }

  .order-xl-2 {
    order: 2; }

  .order-xl-3 {
    order: 3; }

  .order-xl-4 {
    order: 4; }

  .order-xl-5 {
    order: 5; }

  .order-xl-6 {
    order: 6; }

  .order-xl-7 {
    order: 7; }

  .order-xl-8 {
    order: 8; }

  .order-xl-9 {
    order: 9; }

  .order-xl-10 {
    order: 10; }

  .order-xl-11 {
    order: 11; }

  .order-xl-12 {
    order: 12; }

  .offset-xl-0 {
    margin-left: 0; }

  .offset-xl-1 {
    margin-left: 8.3333333333%; }

  .offset-xl-2 {
    margin-left: 16.6666666667%; }

  .offset-xl-3 {
    margin-left: 25%; }

  .offset-xl-4 {
    margin-left: 33.3333333333%; }

  .offset-xl-5 {
    margin-left: 41.6666666667%; }

  .offset-xl-6 {
    margin-left: 50%; }

  .offset-xl-7 {
    margin-left: 58.3333333333%; }

  .offset-xl-8 {
    margin-left: 66.6666666667%; }

  .offset-xl-9 {
    margin-left: 75%; }

  .offset-xl-10 {
    margin-left: 83.3333333333%; }

  .offset-xl-11 {
    margin-left: 91.6666666667%; } }
.d-none {
  display: none !important; }

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

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

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

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

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

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

@media (min-width: 720px) {
  .d-sm-none {
    display: none !important; }

  .d-sm-inline {
    display: inline !important; }

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

  .d-sm-block {
    display: block !important; }

  .d-sm-table {
    display: table !important; }

  .d-sm-table-row {
    display: table-row !important; }

  .d-sm-table-cell {
    display: table-cell !important; }

  .d-sm-flex {
    display: flex !important; }

  .d-sm-inline-flex {
    display: inline-flex !important; } }
@media (min-width: 1000px) {
  .d-md-none {
    display: none !important; }

  .d-md-inline {
    display: inline !important; }

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

  .d-md-block {
    display: block !important; }

  .d-md-table {
    display: table !important; }

  .d-md-table-row {
    display: table-row !important; }

  .d-md-table-cell {
    display: table-cell !important; }

  .d-md-flex {
    display: flex !important; }

  .d-md-inline-flex {
    display: inline-flex !important; } }
@media (min-width: 1140px) {
  .d-lg-none {
    display: none !important; }

  .d-lg-inline {
    display: inline !important; }

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

  .d-lg-block {
    display: block !important; }

  .d-lg-table {
    display: table !important; }

  .d-lg-table-row {
    display: table-row !important; }

  .d-lg-table-cell {
    display: table-cell !important; }

  .d-lg-flex {
    display: flex !important; }

  .d-lg-inline-flex {
    display: inline-flex !important; } }
@media (min-width: 1360px) {
  .d-xl-none {
    display: none !important; }

  .d-xl-inline {
    display: inline !important; }

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

  .d-xl-block {
    display: block !important; }

  .d-xl-table {
    display: table !important; }

  .d-xl-table-row {
    display: table-row !important; }

  .d-xl-table-cell {
    display: table-cell !important; }

  .d-xl-flex {
    display: flex !important; }

  .d-xl-inline-flex {
    display: inline-flex !important; } }
@media print {
  .d-print-none {
    display: none !important; }

  .d-print-inline {
    display: inline !important; }

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

  .d-print-block {
    display: block !important; }

  .d-print-table {
    display: table !important; }

  .d-print-table-row {
    display: table-row !important; }

  .d-print-table-cell {
    display: table-cell !important; }

  .d-print-flex {
    display: flex !important; }

  .d-print-inline-flex {
    display: inline-flex !important; } }
.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  flex: 1 1 auto !important; }

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

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

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

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

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 720px) {
  .flex-sm-row {
    flex-direction: row !important; }

  .flex-sm-column {
    flex-direction: column !important; }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }

  .flex-sm-wrap {
    flex-wrap: wrap !important; }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }

  .flex-sm-fill {
    flex: 1 1 auto !important; }

  .flex-sm-grow-0 {
    flex-grow: 0 !important; }

  .flex-sm-grow-1 {
    flex-grow: 1 !important; }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }

  .justify-content-sm-start {
    justify-content: flex-start !important; }

  .justify-content-sm-end {
    justify-content: flex-end !important; }

  .justify-content-sm-center {
    justify-content: center !important; }

  .justify-content-sm-between {
    justify-content: space-between !important; }

  .justify-content-sm-around {
    justify-content: space-around !important; }

  .align-items-sm-start {
    align-items: flex-start !important; }

  .align-items-sm-end {
    align-items: flex-end !important; }

  .align-items-sm-center {
    align-items: center !important; }

  .align-items-sm-baseline {
    align-items: baseline !important; }

  .align-items-sm-stretch {
    align-items: stretch !important; }

  .align-content-sm-start {
    align-content: flex-start !important; }

  .align-content-sm-end {
    align-content: flex-end !important; }

  .align-content-sm-center {
    align-content: center !important; }

  .align-content-sm-between {
    align-content: space-between !important; }

  .align-content-sm-around {
    align-content: space-around !important; }

  .align-content-sm-stretch {
    align-content: stretch !important; }

  .align-self-sm-auto {
    align-self: auto !important; }

  .align-self-sm-start {
    align-self: flex-start !important; }

  .align-self-sm-end {
    align-self: flex-end !important; }

  .align-self-sm-center {
    align-self: center !important; }

  .align-self-sm-baseline {
    align-self: baseline !important; }

  .align-self-sm-stretch {
    align-self: stretch !important; } }
@media (min-width: 1000px) {
  .flex-md-row {
    flex-direction: row !important; }

  .flex-md-column {
    flex-direction: column !important; }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }

  .flex-md-wrap {
    flex-wrap: wrap !important; }

  .flex-md-nowrap {
    flex-wrap: nowrap !important; }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }

  .flex-md-fill {
    flex: 1 1 auto !important; }

  .flex-md-grow-0 {
    flex-grow: 0 !important; }

  .flex-md-grow-1 {
    flex-grow: 1 !important; }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }

  .justify-content-md-start {
    justify-content: flex-start !important; }

  .justify-content-md-end {
    justify-content: flex-end !important; }

  .justify-content-md-center {
    justify-content: center !important; }

  .justify-content-md-between {
    justify-content: space-between !important; }

  .justify-content-md-around {
    justify-content: space-around !important; }

  .align-items-md-start {
    align-items: flex-start !important; }

  .align-items-md-end {
    align-items: flex-end !important; }

  .align-items-md-center {
    align-items: center !important; }

  .align-items-md-baseline {
    align-items: baseline !important; }

  .align-items-md-stretch {
    align-items: stretch !important; }

  .align-content-md-start {
    align-content: flex-start !important; }

  .align-content-md-end {
    align-content: flex-end !important; }

  .align-content-md-center {
    align-content: center !important; }

  .align-content-md-between {
    align-content: space-between !important; }

  .align-content-md-around {
    align-content: space-around !important; }

  .align-content-md-stretch {
    align-content: stretch !important; }

  .align-self-md-auto {
    align-self: auto !important; }

  .align-self-md-start {
    align-self: flex-start !important; }

  .align-self-md-end {
    align-self: flex-end !important; }

  .align-self-md-center {
    align-self: center !important; }

  .align-self-md-baseline {
    align-self: baseline !important; }

  .align-self-md-stretch {
    align-self: stretch !important; } }
@media (min-width: 1140px) {
  .flex-lg-row {
    flex-direction: row !important; }

  .flex-lg-column {
    flex-direction: column !important; }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }

  .flex-lg-wrap {
    flex-wrap: wrap !important; }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }

  .flex-lg-fill {
    flex: 1 1 auto !important; }

  .flex-lg-grow-0 {
    flex-grow: 0 !important; }

  .flex-lg-grow-1 {
    flex-grow: 1 !important; }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }

  .justify-content-lg-start {
    justify-content: flex-start !important; }

  .justify-content-lg-end {
    justify-content: flex-end !important; }

  .justify-content-lg-center {
    justify-content: center !important; }

  .justify-content-lg-between {
    justify-content: space-between !important; }

  .justify-content-lg-around {
    justify-content: space-around !important; }

  .align-items-lg-start {
    align-items: flex-start !important; }

  .align-items-lg-end {
    align-items: flex-end !important; }

  .align-items-lg-center {
    align-items: center !important; }

  .align-items-lg-baseline {
    align-items: baseline !important; }

  .align-items-lg-stretch {
    align-items: stretch !important; }

  .align-content-lg-start {
    align-content: flex-start !important; }

  .align-content-lg-end {
    align-content: flex-end !important; }

  .align-content-lg-center {
    align-content: center !important; }

  .align-content-lg-between {
    align-content: space-between !important; }

  .align-content-lg-around {
    align-content: space-around !important; }

  .align-content-lg-stretch {
    align-content: stretch !important; }

  .align-self-lg-auto {
    align-self: auto !important; }

  .align-self-lg-start {
    align-self: flex-start !important; }

  .align-self-lg-end {
    align-self: flex-end !important; }

  .align-self-lg-center {
    align-self: center !important; }

  .align-self-lg-baseline {
    align-self: baseline !important; }

  .align-self-lg-stretch {
    align-self: stretch !important; } }
@media (min-width: 1360px) {
  .flex-xl-row {
    flex-direction: row !important; }

  .flex-xl-column {
    flex-direction: column !important; }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }

  .flex-xl-wrap {
    flex-wrap: wrap !important; }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }

  .flex-xl-fill {
    flex: 1 1 auto !important; }

  .flex-xl-grow-0 {
    flex-grow: 0 !important; }

  .flex-xl-grow-1 {
    flex-grow: 1 !important; }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }

  .justify-content-xl-start {
    justify-content: flex-start !important; }

  .justify-content-xl-end {
    justify-content: flex-end !important; }

  .justify-content-xl-center {
    justify-content: center !important; }

  .justify-content-xl-between {
    justify-content: space-between !important; }

  .justify-content-xl-around {
    justify-content: space-around !important; }

  .align-items-xl-start {
    align-items: flex-start !important; }

  .align-items-xl-end {
    align-items: flex-end !important; }

  .align-items-xl-center {
    align-items: center !important; }

  .align-items-xl-baseline {
    align-items: baseline !important; }

  .align-items-xl-stretch {
    align-items: stretch !important; }

  .align-content-xl-start {
    align-content: flex-start !important; }

  .align-content-xl-end {
    align-content: flex-end !important; }

  .align-content-xl-center {
    align-content: center !important; }

  .align-content-xl-between {
    align-content: space-between !important; }

  .align-content-xl-around {
    align-content: space-around !important; }

  .align-content-xl-stretch {
    align-content: stretch !important; }

  .align-self-xl-auto {
    align-self: auto !important; }

  .align-self-xl-start {
    align-self: flex-start !important; }

  .align-self-xl-end {
    align-self: flex-end !important; }

  .align-self-xl-center {
    align-self: center !important; }

  .align-self-xl-baseline {
    align-self: baseline !important; }

  .align-self-xl-stretch {
    align-self: stretch !important; } }
.modal-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -25%); }
    @media screen and (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
  .modal.show .modal-dialog {
    transform: translate(0, 0); }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2)); }
  .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - (0.5rem * 2));
    content: ""; }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem; }
  .modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef; }
  .modal-footer > :not(:first-child) {
    margin-left: .25rem; }
  .modal-footer > :not(:last-child) {
    margin-right: .25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 720px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2)); }
    .modal-dialog-centered::before {
      height: calc(100vh - (1.75rem * 2)); }

  .modal-sm {
    max-width: 300px; } }
@media (min-width: 1140px) {
  .modal-lg {
    max-width: 800px; } }
.m-0 {
  margin: 0 !important; }

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

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

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

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

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

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

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

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

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

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-auto {
  margin: auto !important; }

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

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

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

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

@media (min-width: 720px) {
  .m-sm-0 {
    margin: 0 !important; }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }

  .m-sm-1 {
    margin: 0.25rem !important; }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }

  .m-sm-2 {
    margin: 0.5rem !important; }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }

  .m-sm-3 {
    margin: 1rem !important; }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }

  .m-sm-4 {
    margin: 1.5rem !important; }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }

  .m-sm-5 {
    margin: 3rem !important; }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }

  .p-sm-0 {
    padding: 0 !important; }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }

  .p-sm-1 {
    padding: 0.25rem !important; }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }

  .p-sm-2 {
    padding: 0.5rem !important; }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }

  .p-sm-3 {
    padding: 1rem !important; }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }

  .p-sm-4 {
    padding: 1.5rem !important; }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }

  .p-sm-5 {
    padding: 3rem !important; }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }

  .m-sm-auto {
    margin: auto !important; }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }
@media (min-width: 1000px) {
  .m-md-0 {
    margin: 0 !important; }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }

  .m-md-1 {
    margin: 0.25rem !important; }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }

  .m-md-2 {
    margin: 0.5rem !important; }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }

  .m-md-3 {
    margin: 1rem !important; }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }

  .m-md-4 {
    margin: 1.5rem !important; }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }

  .m-md-5 {
    margin: 3rem !important; }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }

  .p-md-0 {
    padding: 0 !important; }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }

  .p-md-1 {
    padding: 0.25rem !important; }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }

  .p-md-2 {
    padding: 0.5rem !important; }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }

  .p-md-3 {
    padding: 1rem !important; }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }

  .p-md-4 {
    padding: 1.5rem !important; }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }

  .p-md-5 {
    padding: 3rem !important; }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }

  .m-md-auto {
    margin: auto !important; }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }
@media (min-width: 1140px) {
  .m-lg-0 {
    margin: 0 !important; }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }

  .m-lg-1 {
    margin: 0.25rem !important; }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }

  .m-lg-2 {
    margin: 0.5rem !important; }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }

  .m-lg-3 {
    margin: 1rem !important; }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }

  .m-lg-4 {
    margin: 1.5rem !important; }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }

  .m-lg-5 {
    margin: 3rem !important; }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }

  .p-lg-0 {
    padding: 0 !important; }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }

  .p-lg-1 {
    padding: 0.25rem !important; }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }

  .p-lg-2 {
    padding: 0.5rem !important; }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }

  .p-lg-3 {
    padding: 1rem !important; }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }

  .p-lg-4 {
    padding: 1.5rem !important; }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }

  .p-lg-5 {
    padding: 3rem !important; }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }

  .m-lg-auto {
    margin: auto !important; }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }
@media (min-width: 1360px) {
  .m-xl-0 {
    margin: 0 !important; }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }

  .m-xl-1 {
    margin: 0.25rem !important; }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }

  .m-xl-2 {
    margin: 0.5rem !important; }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }

  .m-xl-3 {
    margin: 1rem !important; }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }

  .m-xl-4 {
    margin: 1.5rem !important; }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }

  .m-xl-5 {
    margin: 3rem !important; }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }

  .p-xl-0 {
    padding: 0 !important; }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }

  .p-xl-1 {
    padding: 0.25rem !important; }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }

  .p-xl-2 {
    padding: 0.5rem !important; }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }

  .p-xl-3 {
    padding: 1rem !important; }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }

  .p-xl-4 {
    padding: 1.5rem !important; }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }

  .p-xl-5 {
    padding: 3rem !important; }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }

  .m-xl-auto {
    margin: auto !important; }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }
.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

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

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

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

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

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

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

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

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

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

  .text-sm-center {
    text-align: center !important; } }
@media (min-width: 1000px) {
  .text-md-left {
    text-align: left !important; }

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

  .text-md-center {
    text-align: center !important; } }
@media (min-width: 1140px) {
  .text-lg-left {
    text-align: left !important; }

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

  .text-lg-center {
    text-align: center !important; } }
@media (min-width: 1360px) {
  .text-xl-left {
    text-align: left !important; }

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

  .text-xl-center {
    text-align: center !important; } }
.text-lowercase {
  text-transform: lowercase !important; }

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

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

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

.font-weight-normal {
  font-weight: 400 !important; }

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

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

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

.text-primary {
  color: #007bff !important; }

a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important; }

.text-secondary {
  color: #6c757d !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important; }

.text-info {
  color: #17a2b8 !important; }

a.text-info:hover, a.text-info:focus {
  color: #117a8b !important; }

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

a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important; }

.text-body {
  color: #212529 !important; }

.text-muted {
  color: #6c757d !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -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); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 0.25rem;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: calc(2.25rem + 2px);
  line-height: calc(2.25rem + 2px)-2;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(0.75) translateY(-calc(2.25rem + 2px)/2);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: calc(2.25rem + 2px)-2;
    list-style: none;
    min-height: calc(2.25rem + 2px)-2;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }
.no-csspointerevents .nice-select.open .list {
  display: block; }

@font-face {
  font-family: 'icomoon';
  src: url("../bundles/index/icomoon/fonts/icomoon.eot?jtrqms7");
  src: url("../bundles/index/icomoon/fonts/icomoon.eot?jtrqms7#iefix") format("embedded-opentype"), url("../bundles/index/icomoon/fonts/icomoon.ttf?jtrqms7") format("truetype"), url("../bundles/index/icomoon/fonts/icomoon.woff?jtrqms7") format("woff"), url("../bundles/index/icomoon/fonts/icomoon.svg?jtrqms7#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-like-done:before {
  content: "\e90a"; }

.icon-eye:before {
  content: "\e909"; }

.icon-edit:before {
  content: "\e907"; }

.icon-avatar:before {
  content: "\e906"; }

.icon-warning:before {
  content: "\e904"; }

.icon-correct:before {
  content: "\e905"; }

.icon-delete:before {
  content: "\e900"; }

.icon-home:before {
  content: "\e901"; }

.icon-like:before {
  content: "\e902"; }

.icon-clone:before {
  content: "\e903"; }

.icon-play:before {
  content: "\e908"; }

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

.header--h1,
.header--h2,
.header--h3,
.header--h4,
.header--h5,
.header--h6 {
  color: #fff;
  font-weight: 400;
  margin: 0;
  line-height: 1.2; }
  .header--h1.-primary,
  .header--h2.-primary,
  .header--h3.-primary,
  .header--h4.-primary,
  .header--h5.-primary,
  .header--h6.-primary {
    color: #ffab1a; }
  .header--h1.-bold,
  .header--h2.-bold,
  .header--h3.-bold,
  .header--h4.-bold,
  .header--h5.-bold,
  .header--h6.-bold {
    font-weight: bold; }
  .header--h1.-error,
  .header--h2.-error,
  .header--h3.-error,
  .header--h4.-error,
  .header--h5.-error,
  .header--h6.-error {
    color: #f24444; }

.header--h2 {
  font-size: 25px; }

.header--h3 {
  font-size: 15px; }
  .header--h3 > .accent {
    color: #fff; }
  .header--h3.-white {
    color: #fff; }
  .header--h3.-gallery {
    color: #fff;
    padding-top: 2px;
    padding-bottom: 1px; }

@media (min-width: 1000px) {
  .header--h2 {
    font-size: 32px; }

  .header--h3 {
    font-size: 21px; }
    .header--h3.-gallery {
      padding-bottom: 14px; } }
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #222222;
  color: #777777;
  padding-top: 65px; }

body.navOpen, html.navOpen {
  overflow: hidden; }

.line--seperator {
  margin: 42px 0 32px;
  padding: 0;
  height: 2px;
  width: 100%;
  background: #303030;
  border: none; }

@media (min-width: 1000px) {
  body {
    padding-top: 80px; } }
/*
 *
 * Notify colors
 *
 */
.notify--container {
  position: fixed;
  padding: 28px 61px 27px;
  top: 20px;
  right: 0;
  left: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 626px;
  z-index: 10001;
  box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.14);
  background-color: #b2e4ff;
  color: #122463;
  font-size: 16px;
  line-height: 1.2;
  border-width: 2px;
  border-style: solid;
  letter-spacing: 0.025em; }
  .notify--container > .notify > .zmdi {
    position: absolute;
    top: 50%;
    left: 23px;
    transform: translateY(-50%);
    font-size: 24px; }
  .notify--container > .closebtn {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
    font-size: 24px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    appearance: none;
    border: none;
    padding: 0;
    color: #fff;
    cursor: pointer; }
    .notify--container > .closebtn:focus, .notify--container > .closebtn:hover {
      text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3); }
  .notify--container.alert-info {
    background-color: #b2e4ff;
    color: #122463;
    border-color: #122463; }
  .notify--container.alert-warning {
    background-color: #feedc5;
    color: #EB9316;
    border-color: #EB9316; }
  .notify--container.alert-error, .notify--container.alert-danger {
    background-color: #ffd7e4;
    color: #f70d5a;
    border-color: #f70d5a; }
  .notify--container.alert-success {
    background-color: #e0f8c0;
    color: #77af2a;
    border-color: #77af2a; }
  .notify--container a {
    display: block;
    color: #000;
    margin: 10px 0 0;
    text-align: center; }

.modal--component.-noheader .modal-content {
  padding-top: 13px; }
.modal--component .modal-content {
  border-radius: 0;
  background-color: #222222; }
.modal--component .modal-header,
.modal--component .modal-footer {
  border: none; }
.modal--component .modal-footer {
  justify-content: center;
  padding-bottom: 40px; }

.modal--buttons {
  max-width: 454px;
  width: 100%;
  margin: 0 auto; }

.modal--message {
  text-align: center;
  font-size: 21px;
  color: #fff; }

.modal-backdrop.show {
  opacity: 0.9; }

@media (min-width: 1140px) {
  .modal--component .modal-lg {
    max-width: 680px; } }
.datepicker {
  background-color: #444444;
  color: #fff;
  border-color: transparent; }

.datepicker--cell-day.-other-month- {
  color: #777777; }

.datepicker--cell.-current-,
.datepicker--day-name {
  color: #ffab1a; }

.datepicker--pointer {
  background: #444444;
  border-top: 1px solid #444444;
  border-right: 1px solid #444444; }

.datepicker--nav-action path {
  stroke: #fff; }

.datepicker--cell.-focus-,
.datepicker--nav-action:hover, .datepicker--nav-title:hover,
.datepicker--time-current-hours.-focus-:after, .datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-hours.-focus-:after, .datepicker--time-current-minutes.-focus-:after {
  background: #ffab1a; }

.btn--common {
  padding: 0;
  display: inline-block;
  line-height: 1;
  background-color: transparent;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease; }
  .btn--common:hover, .btn--common:focus, .btn--common:active, .btn--common.nice-select.open {
    text-decoration: none; }

.video--btn {
  padding: 0;
  display: inline-block;
  line-height: 1;
  background-color: transparent;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center;
  display: block;
  width: 100px;
  height: 100px; }
  .video--btn:before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #000;
    opacity: .6;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0; }
  .video--btn > .icon {
    font-size: 60px;
    color: #ffab1a;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-41%) translateY(-50%); }

.btn--burger {
  padding: 0;
  display: inline-block;
  line-height: 1;
  background-color: transparent;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: 70px;
  height: 65px;
  padding: 20px;
  background: #000;
  transition: background 0.3s ease; }
  .btn--burger:focus, .btn--burger:hover {
    text-decoration: none;
    outline: none; }
  .btn--burger.-active {
    background: #00d7c5; }
  .btn--burger > .bar {
    display: block;
    height: 1px;
    background: #fff; }
    .btn--burger > .bar:nth-child(2) {
      margin: 8px 0; }

.link--primary {
  color: #ffab1a; }
  .link--primary:hover, .link--primary:focus, .link--primary:active, .link--primary.nice-select.open {
    color: #ffab1a;
    text-decoration: none; }

.link--default {
  color: #6c6c6c; }
  .link--default:hover, .link--default:focus, .link--default:active, .link--default.nice-select.open {
    color: #ffab1a;
    text-decoration: none; }

.btn--primary {
  padding: 0;
  display: inline-block;
  line-height: 1;
  background-color: transparent;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background-color: #ffab1a;
  color: #000;
  width: 100%;
  font-size: 17px;
  font-weight: bold;
  padding: 17px 10px;
  border-radius: 4px;
  text-align: center; }
  .btn--primary:hover, .btn--primary:focus, .btn--primary:active, .btn--primary.nice-select.open {
    outline: none;
    color: #000;
    text-decoration: none; }
  .btn--primary.-unimportant {
    background-color: #777777; }
  .btn--primary.-choosetype {
    height: 60px;
    width: 100%;
    display: inline-block;
    line-height: 58px;
    padding: 0px; }
    .btn--primary.-choosetype > span {
      display: inline-block;
      line-height: 1.1;
      vertical-align: middle; }
    .btn--primary.-choosetype.-active {
      background-color: #777777; }
  .btn--primary.-uploadcontent {
    padding: 0;
    height: 100%; }
  .btn--primary.-fullheight {
    height: 100%;
    padding: 0 10px; }
  .btn--primary.-disabled {
    cursor: not-allowed;
    position: relative; }
    .btn--primary.-disabled:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: .75; }
  .btn--primary.-secondary {
    background-color: #00d7c5; }

.btn--content--nav {
  position: absolute;
  top: 50%;
  padding: 0;
  display: inline-block;
  line-height: 1;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: #ffab1a;
  width: 40px;
  height: 150px;
  min-width: 40px;
  color: transparent;
  transform: translateY(-50%);
  z-index: 1;
  transition: all .2s ease; }
  .btn--content--nav.-disabled:not(.-hasmore), .btn--content--nav.slick-disabled:not(.-hasmore) {
    background: #444444;
    cursor: auto; }
  .btn--content--nav:before {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center; }
  .btn--content--nav.-prev {
    left: 0px; }
    .btn--content--nav.-prev:before {
      border-top: 3px solid #000;
      border-right: 3px solid #000;
      transform: translate(-30%, -50%) rotate(-135deg); }
  .btn--content--nav.-next {
    right: 0px; }
    .btn--content--nav.-next:before {
      border-top: 3px solid #000;
      border-right: 3px solid #000;
      transform: translate(-70%, -50%) rotate(45deg); }

@media (max-width: 679px) {
  .btn--primary.-choosetype {
    font-size: 13px; }
  .btn--primary.-mobilefirst {
    margin-bottom: 15px; }

  .btn--content--nav {
    width: 30px;
    height: 114px;
    min-width: 30px; }
    .btn--content--nav.-prev {
      left: -10px; }
    .btn--content--nav.-next {
      right: -10px; } }
.cookie--bar {
  position: fixed;
  z-index: 4000;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 0 14px;
  text-align: left;
  line-height: 1.5;
  background: #fff;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.025em; }
  .cookie--bar a {
    color: #3f3f3f;
    text-decoration: none; }
    .cookie--bar a:hover {
      text-decoration: underline;
      color: #3f3f3f; }
  .cookie--bar .buttonwrapper {
    text-align: center;
    margin-top: 10px; }

.invalid-feedback {
  margin: 0;
  color: #f24444;
  font-size: 11px;
  position: absolute; }

input {
  -webkit-appearance: none; }

@media (max-width: 999px) {
  .invalid-feedback {
    position: relative; } }
.checkbox--component {
  padding-left: 40px;
  position: relative; }
  .checkbox--component > .label {
    display: block;
    position: absolute;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    left: 0; }
  .checkbox--component > .label > .input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .checkbox--component > .label > .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: transparent;
    border: 2px solid #ffab1a; }
    .checkbox--component > .label > .checkmark:after {
      content: "";
      position: absolute;
      display: none; }
  .checkbox--component > .label input:checked ~ .checkmark:after {
    display: block;
    border-bottom: 2px solid #ffab1a;
    border-right: 2px solid #ffab1a;
    left: 8px;
    top: 3px;
    width: 7px;
    height: 12px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .checkbox--component > .name {
    color: #777777;
    font-size: 17px;
    padding-top: 2px;
    letter-spacing: -0.1px; }
  .checkbox--component > .name > .clickable {
    cursor: pointer; }
  .checkbox--component > .name > .info {
    font-size: 13px;
    padding-top: 5px; }
  .checkbox--component > .name > .link {
    color: #ffab1a;
    text-decoration: none; }
    .checkbox--component > .name > .link:hover, .checkbox--component > .name > .link:focus, .checkbox--component > .name > .link:active, .checkbox--component > .name > .link.nice-select.open {
      color: #ffab1a;
      text-decoration: none; }
  .checkbox--component.-error > .label > .checkmark {
    border: 2px solid #f24444; }
  .checkbox--component.-secondary {
    padding-left: 0px; }
    .checkbox--component.-secondary > .label {
      padding-left: 40px;
      position: relative; }
    .checkbox--component.-secondary > .label > .text {
      color: #fff; }
    .checkbox--component.-secondary > .label > .checkmark {
      width: 16px;
      height: 16px;
      border: 2px solid #444444; }
    .checkbox--component.-secondary > .label input:checked ~ .checkmark {
      border: 2px solid #ffab1a; }
      .checkbox--component.-secondary > .label input:checked ~ .checkmark:after {
        display: block;
        width: 8px;
        height: 8px;
        left: 50%;
        top: 50%;
        border: none;
        background-color: #ffab1a;
        transform: translate(-50%, -50%); }
    .checkbox--component.-secondary.-head > .label > .text {
      color: #ffab1a; }
    .checkbox--component.-secondary.-head > .label > .checkmark {
      border: 2px solid #ffab1a; }

.radio--component {
  display: block;
  position: relative;
  padding-left: 43px;
  margin-bottom: 12px;
  font-size: 17px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .radio--component.-lighter {
    color: #fff; }
  .radio--component > .input {
    position: absolute;
    opacity: 0;
    cursor: pointer; }
  .radio--component > .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 2px solid #ffab1a;
    border-radius: 50%; }
    .radio--component > .checkmark:after {
      content: "";
      position: absolute;
      display: none;
      top: 5px;
      left: 5px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #ffab1a; }
  .radio--component input:checked ~ .checkmark:after {
    display: block; }

.input--standard {
  position: relative; }
  .input--standard > .input {
    border: 2px solid #fff;
    font-size: 17px;
    color: #000;
    padding: 7px 13px;
    border-radius: 3px;
    width: 100%;
    outline: none;
    padding-right: 40px;
    line-height: 1; }
    .input--standard > .input:focus, .input--standard > .input:active, .input--standard > .input.nice-select.open {
      border: 2px solid #ffab1a; }
  .input--standard > .icon {
    display: none; }
  .input--standard ::-webkit-input-placeholder {
    color: #afafaf;
    opacity: 1; }
  .input--standard ::-moz-placeholder {
    color: #afafaf;
    opacity: 1; }
  .input--standard :-ms-input-placeholder {
    color: #afafaf;
    opacity: 1; }
  .input--standard ::-ms-input-placeholder {
    opacity: 1;
    color: #afafaf; }
  .input--standard ::placeholder {
    opacity: 1;
    color: #afafaf; }
  .input--standard.-error > .input {
    border: 2px solid #f24444; }
  .input--standard.-error > .icon.-error {
    display: block;
    position: absolute;
    right: 15px;
    top: 35%;
    transform: translateY(-50%);
    color: #f24444;
    font-size: 20px; }
  .input--standard.-correct > .input {
    border: 2px solid #30dd4c; }
  .input--standard.-correct > .icon.-correct {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #30dd4c;
    font-size: 20px; }
  .input--standard.-pagenumber > .input {
    padding: 10px 15px;
    border-radius: 3px;
    max-width: 52px;
    height: 51px;
    text-align: center;
    color: #000;
    font-weight: bold; }
  .input--standard.-withselect > .input {
    padding-right: 30%; }

.input--wrapper {
  margin-bottom: 32px; }
  .input--wrapper::after {
    display: block;
    clear: both;
    content: ""; }

@media (min-width: 1000px) {
  .input--standard.-error > .icon.-error {
    top: 50%; } }
.input--file--component {
  height: 100%; }
  .input--file--component > .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1; }
  .input--file--component label {
    height: 75.5px;
    line-height: 70px;
    display: inline-block;
    background-color: #ffab1a;
    color: #000;
    width: 100%;
    font-size: 17px;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    padding: 0px 10px; }
    .input--file--component label span {
      display: inline-block;
      line-height: 1.1;
      vertical-align: middle; }
  .input--file--component label {
    cursor: pointer;
    /* "hand" cursor */ }

@media (max-width: 679px) {
  .input--file--component label {
    font-size: 13px;
    padding: 0px;
    line-height: 72px; } }
.main--footer {
  text-align: center; }
  .main--footer > .title {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: -0.1px;
    position: relative;
    display: inline-block;
    padding-bottom: 27px;
    margin-bottom: 18px; }
    .main--footer > .title:before {
      content: '';
      width: 100%;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: #303030;
      position: absolute; }
  .main--footer > .info {
    color: #343434;
    font-size: 13px;
    letter-spacing: -0.08px;
    padding-top: 24px;
    padding-bottom: 35px; }

.footer--wrapper {
  background: #000;
  padding-top: 33px; }

.footer--menu {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  align-items: center; }
  .footer--menu > .element {
    padding: 0 8px;
    position: relative;
    line-height: 1.7; }
    .footer--menu > .element:before {
      content: '';
      width: 2px;
      height: 2px;
      border-radius: 50%;
      top: 50%;
      left: -1px;
      transform: translateY(-50%);
      background: #777777;
      position: absolute; }
    .footer--menu > .element.-recommended {
      color: #777777;
      font-size: 13px; }
      .footer--menu > .element.-recommended:before {
        display: none; }
    .footer--menu > .element:first-child:before {
      display: none; }
  .footer--menu > .element > .link {
    color: #ffab1a;
    font-size: 13px;
    font-weight: bold;
    display: inline-block; }
    .footer--menu > .element > .link:hover, .footer--menu > .element > .link:focus, .footer--menu > .element > .link:active, .footer--menu > .element > .link.nice-select.open {
      text-decoration: none;
      color: #ffab1a; }

.footer--page--descr {
  font-size: 13px;
  color: #777777;
  text-align: center;
  padding-top: 0;
  padding-bottom: 35px; }

@media (max-width: 679px) {
  .footer--page--descr {
    padding-top: 27px;
    padding-bottom: 25px; }

  .footer--wrapper {
    padding-top: 22px; } }
.body__ad-spons--collapsed.body__ad-spons--desktop.body__ad-spons--sticky.body__ad-spons--hidden .stickycol.is-affixed .inner-wrapper-sticky {
  padding-top: 0; }

.body__ad-spons--desktop .inner-wrapper-sticky {
  -webkit-transition: top .6s ease;
  -moz-transition: top .6s ease;
  -o-transition: top .6s ease;
  transition: top .6s ease; }

.body__ad-spons--hidden .inner-wrapper-sticky {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none; }

.page--wrapper {
  padding-top: 0;
  -webkit-transition: padding-top .6s ease;
  -moz-transition: padding-top .6s ease;
  -o-transition: padding-top .6s ease;
  transition: padding-top .6s ease; }

.body__ad-spons--desktop.body__ad-spons--transitioned.body__ad-spons--expanded .page--wrapper {
  padding-top: 65px; }

.body__ad-spons--desktop.body__ad-spons--transitioned.body__ad-spons--expanded .main--header {
  top: 500px; }

.body__ad-spons--collapsed.body__ad-spons--desktop .main--header {
  top: 150px; }

.body__ad-spons--collapsed.body__ad-spons--desktop.body__ad-spons--sticky .main--header {
  top: 75px; }

.body__ad-spons--collapsed.body__ad-spons--desktop.body__ad-spons--sticky.body__ad-spons--hidden .main--header {
  top: 0px; }

.body__ad-spons--mobile.body__ad-spons--collapsed.body__ad-spons--sticky .main--header,
.body__ad-spons--mobile.body__ad-spons--collapsed .main--header {
  top: 60px; }

.body__ad-spons--mobile.body__ad-spons--transitioned.body__ad-spons--expanded .main--header {
  top: 300px; }

.body__ad-spons--mobile.body__ad-spons--collapsed.body__ad-spons--sticky.body__ad-spons--hidden .main--header {
  top: 0; }

.body__ad-spons--expanded.body__ad-spons--mobile {
  padding-top: 365px; }

.body__ad-spons--collapsed.body__ad-spons--mobile {
  padding-top: 105px !important; }

.main--header {
  position: fixed;
  z-index: 1030;
  top: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, top .6s ease;
  transform: translateY(0%); }
  .main--header > .mobilelogo {
    width: 136px;
    padding-left: 20px; }
  .main--header > .nav {
    flex-grow: 1;
    text-align: right; }

.page--logo {
  display: inline-block;
  text-decoration: none; }
  .page--logo:focus, .page--logo:hover {
    text-decoration: none; }
    .page--logo:focus > .logo, .page--logo:hover > .logo {
      text-decoration: none; }
  .page--logo > .logo {
    max-width: 100%;
    height: auto; }

.username--in--header {
  display: block;
  width: 100%;
  background: #000;
  padding: 15px 19px 13px; }
  .username--in--header > .link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }

.btn--add {
  display: block;
  text-transform: uppercase;
  background: #ffab1a;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  width: 172px;
  height: 80px;
  line-height: 80px;
  text-decoration: none;
  text-align: center;
  padding: 0 15px;
  letter-spacing: -0.02em; }
  .btn--add:hover {
    text-decoration: none;
    color: #000; }

@media (max-width: 999px) {
  .main--header.-scrollingdown {
    transform: translateY(-100%); } }
@media (min-width: 1000px) {
  body.body__ad-spons--desktop.body__ad-spons--transitioned.body__ad-spons--expanded .page--wrapper {
    padding-top: 80px; }

  .body__ad-spons--collapsed {
    padding-top: 225px !important; }

  .main--header {
    height: 80px; }
    .main--header > .mobilelogo {
      display: none; }

  .username--in--header {
    background: #00d7c5;
    padding: 26px 40px 23px; }
    .username--in--header > .link {
      font-size: 21px;
      color: #000;
      font-weight: 700; }

  .btn--user--menu {
    padding: 0;
    display: inline-block;
    line-height: 1;
    background-color: transparent;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    height: 80px;
    line-height: 79px;
    width: 116px;
    background: #000;
    font-size: 40px;
    color: #fff;
    transition: all 0.3s ease; }
    .btn--user--menu:hover, .btn--user--menu:focus {
      outline: none; }
    .btn--user--menu.-active {
      color: #303030;
      background: #00d7c5; }
    .btn--user--menu > .icon {
      display: inline-block;
      vertical-align: middle;
      margin-top: -4px; } }
.main--nav {
  position: relative; }
  .main--nav > .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    text-align: left;
    height: calc(100vh - 65px);
    overflow-y: auto; }
  .main--nav > .nav > .desktoplogo {
    display: none; }

.admin--nav,
.secondary--nav,
.primary--nav {
  margin: 0;
  padding: 9px 0 7px;
  list-style: none; }

.primary--nav {
  background: #ffab1a; }

.secondary--nav {
  background: #fff; }
  .secondary--nav > .item.-logout {
    position: relative;
    margin-top: 7px;
    padding-top: 11px; }
    .secondary--nav > .item.-logout:before {
      content: "";
      height: 2px;
      position: absolute;
      top: 0;
      left: 20px;
      right: 20px;
      background: #dddddd; }

.admin--nav {
  background: #efefef; }

.nav--link {
  display: block;
  padding: 6px 19px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em; }
  .nav--link:hover, .nav--link:focus {
    color: #000;
    text-decoration: none; }
  .nav--link.-logout, .nav--link.-active {
    font-weight: 700; }
  .nav--link.-indent {
    padding: 6px 35px; }
  .nav--link.-signup > .icon {
    display: none; }

@media (max-width: 999px) {
  .main--nav > .nav.-active {
    display: block; } }
@media (min-width: 1000px) {
  .main--nav > .nav {
    display: inline-flex;
    position: static;
    width: 100%;
    height: auto;
    overflow-y: hidden; }
  .main--nav > .nav > .desktoplogo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 197px;
    text-align: center; }
  .main--nav > .nav > .primary {
    display: block;
    width: 50%; }
  .main--nav > .nav > .secondary {
    max-width: 50%;
    width: 50%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    padding-left: 10%; }
  .main--nav > .burger {
    display: none; }

  .secondary--nav--wrapper {
    display: none;
    text-align: left;
    width: 283px;
    position: absolute;
    top: 100%;
    right: 172px; }
    .secondary--nav--wrapper.-active {
      display: block; }

  .primary--nav {
    background: transparent;
    padding: 0 0 0 25px;
    overflow: hidden; }
    .primary--nav > .item {
      display: inline-block;
      position: relative;
      padding: 0 22px 0 15px; }
      .primary--nav > .item:after {
        content: "";
        width: 2px;
        height: 16px;
        background: #303030;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0; }
      .primary--nav > .item:last-child:after {
        display: none; }

  .nav--link {
    font-size: 21px;
    letter-spacing: -0.02em;
    padding: 4px 40px 6px; }
    .nav--link.-primarynav {
      color: #ffab1a; }
    .nav--link.-indent {
      padding: 4px 40px 6px; }
    .nav--link.-signup > .icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 40px;
      color: #303030;
      margin-left: 18px;
      margin-right: 18px;
      margin-top: -2px; }
    .nav--link.-notlogged {
      color: #ffab1a;
      height: 80px;
      line-height: 79px;
      padding: 2px 0 0 0; }
    .nav--link.-primarynav {
      height: 80px;
      line-height: 79px;
      padding: 2px 0 0 0;
      position: relative;
      font-weight: 400; }
      .nav--link.-primarynav:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 0px;
        width: 100%;
        background: #ffab1a;
        transition: height 0.1s ease; }
      .nav--link.-primarynav:hover:after, .nav--link.-primarynav.-active:after {
        height: 3px; }
      .nav--link.-primarynav .icon {
        font-size: 28px;
        display: inline-block;
        vertical-align: middle;
        margin-top: -4px; }

  .admin--nav {
    padding: 20px 0 12px; }

  .secondary--nav.-notlogged {
    padding: 0;
    background: #000; }
    .secondary--nav.-notlogged > .item {
      display: inline-block;
      position: relative;
      padding: 0 22px 0 15px; }
      .secondary--nav.-notlogged > .item:after {
        content: "";
        width: 2px;
        height: 16px;
        background: #303030;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0; }
      .secondary--nav.-notlogged > .item:last-child:after {
        display: none; }
  .secondary--nav.-logged {
    padding: 9px 0 16px; }
  .secondary--nav > .item.-logout {
    margin-top: 9px;
    padding-top: 13px; }
    .secondary--nav > .item.-logout:before {
      left: 40px;
      right: 40px; } }
@media (max-height: 689px) and (min-width: 1000px) {
  .secondary--nav--wrapper.-active {
    height: calc(100vh - 85px);
    overflow-y: auto; } }
.content--wrapper {
  margin-top: 10px; }
  .content--wrapper > .col-top {
    width: 100%;
    text-align: center;
    margin-bottom: 20px; }
  .content--wrapper .content {
    max-width: 680px;
    width: 100%;
    margin: 0 auto; }
  .content--wrapper.-nomargin {
    margin-top: 0; }

@media (max-width: 999px) {
  .content--wrapper .stickycol {
    display: none; } }
@media (min-width: 1000px) {
  .ad--horiz--component {
    height: 150px; }

  .content--wrapper {
    display: flex;
    margin-top: 19px;
    flex-wrap: wrap; }
    .content--wrapper.-minimargin {
      margin-top: 13px; }
    .content--wrapper.-nomargin {
      margin-top: 0; }
    .content--wrapper .stickycol {
      flex-basis: 0;
      flex-grow: 1;
      text-align: center; }
      .content--wrapper .stickycol.-left {
        text-align: left; }
        .content--wrapper .stickycol.-left .col--component {
          padding-left: 5px;
          height: 621px; }
      .content--wrapper .stickycol.-right {
        text-align: right; }
        .content--wrapper .stickycol.-right .col--component {
          padding-right: 5px;
          height: 621px; }
    .content--wrapper > .col-content {
      width: 100%;
      display: flex;
      flex-wrap: wrap; }
      .content--wrapper > .col-content > div {
        width: 100%; }
    .content--wrapper .content {
      width: 680px;
      flex: 0 0 680px;
      padding-top: 20px; }
      .content--wrapper .content.-nopadding {
        padding-top: 0; } }
@media (min-width: 1140px) {
  .content--wrapper .stickycol {
    text-align: left; }
    .content--wrapper .stickycol.-left .col--component {
      text-align: right; }
    .content--wrapper .stickycol .col--component {
      width: 165px;
      display: inline-block;
      text-align: left; }
      .content--wrapper .stickycol .col--component .-side {
        display: inline-block; }

  .ad--horiz--component {
    height: 221px; } }
@media (min-width: 1360px) {
  .content--wrapper .stickycol {
    text-align: left; }
    .content--wrapper .stickycol.-left .col--component {
      text-align: right; }
    .content--wrapper .stickycol .col--component {
      width: 305px;
      display: inline-block;
      text-align: left; }
      .content--wrapper .stickycol .col--component .-side {
        display: inline-block; } }
.col--component {
  display: inline-block; }
  .col--component > .lg, .col--component > .xl {
    display: none; }
  .col--component > .md.-side {
    width: 120px;
    height: 600px; }
  .col--component > .lg.-side {
    width: 160px;
    height: 600px; }
  .col--component > .xl.-side {
    width: 300px;
    height: 600px; }

.col--component--header {
  text-align: left;
  font-weight: 100;
  font-size: 11px;
  color: #777777;
  text-transform: uppercase;
  margin-bottom: 5px; }

@media (min-width: 1140px) {
  .col--component > .md, .col--component > .xl {
    display: none; }
  .col--component > .lg {
    display: block; } }
@media (min-width: 1360px) {
  .col--component > .md, .col--component > .lg {
    display: none; }
  .col--component > .xl {
    display: block; } }
.advert-container .wrapper:before {
  content: 'REKLAMA';
  position: absolute;
  margin-top: -6px;
  letter-spacing: .5px;
  line-height: 17px;
  text-align: center;
  font-weight: 100;
  font-size: 11px;
  color: #777777;
  text-transform: uppercase; }
.advert-container#adxFixedAdMainCont .wrapper:before {
  color: #ffffff;
  margin-top: 0; }

.ad--horiz--component {
  margin: 0 auto;
  margin-top: 17px;
  max-width: 100%;
  display: inline-block; }

@media (min-width: 1000px) {
  .ad--horiz--component {
    margin-top: 18px; }
    .ad--horiz--component > .md {
      display: none; }
    .ad--horiz--component > .lg {
      display: block; } }
.single--post--component {
  background: #000;
  border-radius: 4px;
  margin-bottom: 40px;
  display: block;
  text-align: center;
  padding-bottom: 19px;
  position: relative; }
  .single--post--component.-nomargin {
    margin-bottom: 0; }
  .single--post--component iframe {
    max-width: calc(100% - 40px); }
  .single--post--component.-lodaingprogress .carousel--img--wrap img {
    opacity: 0; }
  .single--post--component > .title {
    text-align: center;
    color: #ffab1a;
    padding-top: 30px;
    padding-bottom: 6px;
    display: inline-block;
    text-align: center; }
    .single--post--component > .title:hover, .single--post--component > .title:focus, .single--post--component > .title:active, .single--post--component > .title.nice-select.open {
      text-decoration: none;
      color: #ffab1a; }
  .single--post--component > .imgwrap > .image {
    text-align: center;
    display: block;
    margin: 0px auto;
    padding: 10px 40px;
    max-width: 100%;
    position: relative;
    padding-bottom: 0;
    overflow: hidden; }
    .single--post--component > .imgwrap > .image > img {
      max-width: 100%;
      margin-bottom: -5.2vw; }
  .single--post--component > .imgwrap {
    position: relative;
    display: block; }
    .single--post--component > .imgwrap:hover, .single--post--component > .imgwrap:focus, .single--post--component > .imgwrap:active, .single--post--component > .imgwrap.nice-select.open {
      text-decoration: none;
      outline: none; }
  .single--post--component > .like {
    padding-top: 15px;
    background: #000;
    position: relative;
    padding-bottom: 15px; }
  .single--post--component.-gallery > .imgwrap {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .single--post--component.-gallery > .imgwrap:before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      background: #000;
      opacity: .6;
      top: 0;
      left: 0; }
  .single--post--component.-detailgallery {
    margin-bottom: 0; }
  .single--post--component.-joke > .imgwrap > .image {
    margin: 0 auto; }

.single--post--component.-joke > .imgwrap > .image > img {
  margin-bottom: 0; }

.like--component {
  font-size: 17px;
  color: #ffab1a;
  display: flex;
  justify-content: center; }
  .like--component.-done > .link {
    cursor: auto; }
  .like--component > .link {
    padding-right: 48px;
    position: relative;
    display: inline-block;
    color: #ffab1a; }
    .like--component > .link:hover, .like--component > .link:focus, .like--component > .link:active, .like--component > .link.nice-select.open {
      color: #ffab1a;
      text-decoration: none; }
  .like--component > .link > .icon {
    position: absolute;
    top: -2px;
    right: 10px;
    font-size: 24px; }
  .like--component > .quantity {
    color: #777777; }

.edit--component {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6px; }
  .edit--component > .option,
  .edit--component > .wrapper > .option {
    padding-right: 22px;
    margin-right: 20px;
    position: relative;
    color: #ffab1a; }
    .edit--component > .option:before,
    .edit--component > .wrapper > .option:before {
      content: '';
      height: 16px;
      width: 2px;
      background: #303030;
      position: absolute;
      top: 3px;
      right: 0; }
    .edit--component > .option:last-child,
    .edit--component > .wrapper > .option:last-child {
      padding: 0;
      margin: 0; }
      .edit--component > .option:last-child:before,
      .edit--component > .wrapper > .option:last-child:before {
        display: none; }
  .edit--component > .wrapper {
    display: flex; }

.option--component {
  display: block;
  color: #ffab1a;
  letter-spacing: .6px;
  padding-right: 24px;
  position: relative; }
  .option--component:hover, .option--component:focus, .option--component:active, .option--component.nice-select.open {
    color: #ffab1a;
    text-decoration: none; }
  .option--component > .icon {
    padding-left: 3px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0; }
  .option--component.-edit {
    padding-right: 30px; }
    .option--component.-edit > .icon {
      margin-top: -3px;
      font-size: 22px; }
  .option--component.-clone {
    padding-right: 35px; }
    .option--component.-clone > .icon {
      font-size: 22px; }

.post--gallery--info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 201px;
  height: 231px;
  z-index: 1; }
  .post--gallery--info.-small {
    width: 130.65px;
    height: 150.15px; }
    .post--gallery--info.-small > .galleryinfo > .text {
      padding: 0; }
      .post--gallery--info.-small > .galleryinfo > .text:before {
        display: none; }
  .post--gallery--info.-mirror > .galleryinfo {
    background: url("../bundles/index/i/gallery-sign-ok.png");
    background-size: contain;
    background-repeat: no-repeat; }
  .post--gallery--info > .galleryinfo {
    background: url("../bundles/index/i/gallery-sign.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; }
  .post--gallery--info > .galleryinfo > .quantity {
    font-size: 60px;
    color: #fff;
    line-height: 1;
    font-weight: 900; }
  .post--gallery--info > .galleryinfo > .text {
    font-size: 17px;
    color: #fff;
    position: relative;
    padding-bottom: 14px;
    line-height: 1; }
    .post--gallery--info > .galleryinfo > .text:before {
      content: '';
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: #303030; }
    .post--gallery--info > .galleryinfo > .text.-no-before {
      padding-bottom: 0px; }
      .post--gallery--info > .galleryinfo > .text.-no-before:before {
        display: none; }
  .post--gallery--info > .galleryinfo > .see {
    font-size: 21px;
    color: #ffab1a;
    padding-top: 5px; }

.post--detail--info {
  color: #777777;
  display: flex;
  justify-content: center;
  padding-top: 10px; }
  .post--detail--info > .user,
  .post--detail--info > .date {
    padding-right: 20px;
    margin-right: 18px;
    position: relative; }
    .post--detail--info > .user:before,
    .post--detail--info > .date:before {
      content: '';
      height: 16px;
      width: 2px;
      background: #303030;
      position: absolute;
      top: 3px;
      right: 0; }
  .post--detail--info > .user > .name {
    color: #ffab1a; }
  .post--detail--info > .report {
    display: inline-block;
    color: #ffab1a; }
    .post--detail--info > .report:hover, .post--detail--info > .report:focus, .post--detail--info > .report:active, .post--detail--info > .report.nice-select.open {
      color: #ffab1a;
      text-decoration: none; }

@media (max-width: 679px) {
  .single--post--component.-gallery > .imgwrap {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .single--post--component > .imgwrap {
    position: relative;
    display: block; }
  .single--post--component .image {
    position: relative;
    padding-bottom: 0;
    overflow: hidden; }
    .single--post--component .image > img {
      max-width: 100%; }

  .single--post--component.-joke > .imgwrap > .image > img {
    margin-bottom: 0; }

  .post--gallery--info {
    margin-top: 0; }

  .post--gallery--info > .galleryinfo {
    background-size: 80%;
    background-position: center; }
  .post--gallery--info > .galleryinfo > .quantity {
    font-size: 40px; }
  .post--gallery--info > .galleryinfo > .text {
    font-size: 14px;
    padding-bottom: 8px;
    padding-top: 5px; }
  .post--gallery--info > .galleryinfo > .see {
    font-size: 16px; }

  .single--post--component {
    padding-bottom: 16px; }
    .single--post--component > .imgwrap > .image {
      padding: 10px 30px; }
    .single--post--component > .title {
      padding-top: 15px;
      padding-bottom: 5px; }

  .post--detail--info {
    display: block; }
    .post--detail--info > .date {
      padding-right: 0;
      margin-right: 0;
      padding-top: 3px;
      padding-bottom: 8px; }
      .post--detail--info > .date:before {
        display: none; }
    .post--detail--info > .user {
      display: inline-block; }

  .edit--component {
    display: block; }
    .edit--component > .wrapper {
      justify-content: center; }
    .edit--component > .wrapper > .option {
      padding-right: 17px;
      margin-right: 15px; }
    .edit--component > .option.like--component, .edit--component > .option.-like {
      padding-right: 0;
      margin-right: 0;
      padding-bottom: 15px; }
      .edit--component > .option.like--component:before, .edit--component > .option.-like:before {
        display: none; }

  .single--post--component:not(.-detailgallery) {
    padding-bottom: 0; }
  .single--post--component > .imgwrap > .image {
    margin: 0 auto;
    padding: 0 30px 0; }
  .single--post--component > .title {
    padding: 15px 5px; }
  .single--post--component > .like {
    padding-bottom: 15px; }

  .post--gallery--info {
    z-index: 1; } }
@media (max-width: 500px) {
  .single--post--component > .imgwrap > .image > img {
    margin-bottom: -5.1vw; } }
@media (max-width: 370px) {
  .single--post--component > .imgwrap > .image > img {
    margin-bottom: -4.8vw; } }
@media (min-width: 680px) {
  .single--post--component > .imgwrap > .image > img {
    margin-bottom: -35px; } }
.btn--next {
  padding: 0;
  display: inline-block;
  line-height: 1;
  background-color: transparent;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  background: #ffab1a;
  color: #000;
  font-weight: bold;
  font-size: 17px;
  padding: 17px 10px;
  border-radius: 3px;
  text-align: center; }
  .btn--next:hover, .btn--next:focus, .btn--next:active, .btn--next.nice-select.open {
    outline: none;
    color: #000;
    text-decoration: none; }
  .btn--next.-disabled {
    background: #444444;
    cursor: auto; }

.pagination--component > .next {
  margin-bottom: 20px; }

.pages--pagination {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }

.pagination--list {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center; }
  .pagination--list > .element {
    margin: 0 3px; }

.pagination--component {
  max-width: 680px;
  margin: 40px auto 0; }

.pagination--btn {
  padding: 0;
  display: inline-block;
  line-height: 1;
  background-color: transparent;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: #ffab1a;
  font-weight: bold;
  font-size: 17px;
  padding: 17px 15px;
  border-radius: 3px;
  min-width: 52px;
  color: #000;
  text-align: center; }
  .pagination--btn:hover, .pagination--btn:focus, .pagination--btn:active, .pagination--btn.nice-select.open {
    outline: none;
    color: #000;
    text-decoration: none; }
  .pagination--btn.-prev, .pagination--btn.-next {
    max-width: auto;
    min-width: 120px; }
  .pagination--btn.-next {
    margin-right: 0; }
  .pagination--btn.-prev {
    margin-left: 0; }
  .pagination--btn.-disabled {
    background: #444444;
    cursor: auto; }

.pagination--mobile {
  display: none; }

@media (max-width: 679px) {
  .pagination--component > .next {
    display: none; }

  .pagination--list {
    display: none; }

  .pagination--mobile {
    display: flex;
    align-items: center; }
    .pagination--mobile > .number {
      margin-right: 14px; }
    .pagination--mobile > .text {
      color: #fff; }

  .pagination--btn {
    padding: 17px 13px; }
    .pagination--btn.-prev, .pagination--btn.-next {
      min-width: 90px; } }
.page--header {
  text-align: center;
  margin: 16px 0 14px; }

@media (min-width: 1000px) {
  .page--header {
    margin-top: -4px;
    margin-bottom: 31px; } }
.error--component {
  padding-top: 122px; }
  .error--component > .imgwrapper {
    text-align: center;
    margin-bottom: 22px;
    padding-left: 7%; }
  .error--component > .imgwrapper > .image {
    max-width: 100%; }
  .error--component > .text {
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-bottom: 50px; }
  .error--component > .btnwrapper {
    max-width: 240px;
    margin: 0 auto; }

@media (max-width: 679px) {
  .error--component {
    padding-top: 50px; }
    .error--component > .text {
      font-size: 20px; }
    .error--component > .imgwrapper {
      padding-left: 5%; } }
.select--wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  padding-left: 33px; }

.select--component {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 17px;
  display: flex;
  align-items: center;
  padding-left: 4px;
  letter-spacing: .2px; }
  .select--component .list {
    background-color: #222222; }
    .select--component .list > .option {
      background-color: #222222;
      padding-top: 5px;
      padding-bottom: 5px; }
      .select--component .list > .option:hover, .select--component .list > .option:focus, .select--component .list > .option:active, .select--component .list > .option.nice-select.open {
        background-color: #777777; }
      .select--component .list > .option.selected {
        background-color: #777777; }
      .select--component .list > .option.focus {
        background-color: #777777; }
  .select--component:after {
    border-color: #ffab1a;
    height: 13px;
    width: 13px;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center; }
  .select--component.-w100 {
    width: 100%;
    padding-left: 13px; }
    .select--component.-w100 .list {
      width: 100%; }
  .select--component.-light {
    color: #000;
    background: #fff; }
    .select--component.-light .list > .option {
      color: #fff; }

.notify--component {
  position: fixed;
  top: 135px;
  right: 55px;
  border-radius: 10px;
  padding: 15px 25px;
  max-width: 300px;
  z-index: 9999;
  transform: translate(0, -35px);
  opacity: 0;
  transition: .45s opacity, .25s transform .0012s; }
  .notify--component.-show {
    transform: translate(0);
    opacity: 1; }
  .notify--component > p {
    color: #fff;
    margin-bottom: 0;
    letter-spacing: .025em;
    font-size: 15px; }
  .notify--component > button {
    display: inline-block;
    padding: 0;
    line-height: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 100%;
    border: solid 2px #fff;
    padding: 4px;
    position: absolute;
    top: -7px;
    right: -5px;
    font-size: 9px;
    background: #f24444;
    cursor: pointer; }
  .notify--component.-alert {
    background: #f24444; }
    .notify--component.-alert > button {
      background: #f24444; }
  .notify--component.-success {
    background: #40B147; }
    .notify--component.-success > button {
      background: #40B147; }

@media (max-width: 679px) {
  .notify--component {
    bottom: 35px;
    right: 25px;
    max-width: 275px;
    top: initial; }
    .notify--component > p {
      font-size: 14px; } }
.info--box {
  background: #000;
  padding: 15px;
  margin-bottom: 12px; }
  .info--box > .violations {
    margin-top: 11px;
    border-top: 1px solid #252525;
    padding-right: 20px;
    padding-top: 10px;
    position: relative; }
  .info--box > .violations > .button {
    padding: 0;
    display: inline-block;
    line-height: 1;
    background-color: transparent;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    bottom: 10px;
    right: -2px;
    font-size: 10px;
    color: #f24444; }

.info--text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #868686; }
  .info--text.-label {
    min-width: 110px; }
  .info--text.-highlighted {
    color: #ffab1a; }
  .info--text.-violation {
    margin-bottom: 6px; }

.violation--text {
  margin: 0;
  color: #f24444;
  font-size: 11px; }

@media (min-width: 1000px) {
  .info--box {
    padding: 30px 40px 35px 40px; } }
.single--fiche--set-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .single--fiche--set-wrapper > .main-content {
    display: flex;
    width: 100%; }

.col-bottom {
  width: 100%;
  padding-bottom: 40px;
  text-align: center; }

@media (min-width: 1000px) {
  .col-bottom {
    padding-bottom: 0px; }

  .single--fiche--set-wrapper:not(:first-child) {
    margin-top: 40px; } }
@media (min-width: 1140px) {
  .single--fiche--set-wrapper {
    max-width: 1090px;
    margin: 0 auto; } }
@media (min-width: 1360px) {
  .single--fiche--set-wrapper {
    max-width: 1370px; }
    .single--fiche--set-wrapper > .col-bottom {
      width: 680px;
      width: 100%;
      margin: 0 auto; } }
.slick-arrow:hover, .slick-arrow:focus, .slick-arrow:active, .slick-arrow.nice-select.open {
  outline: none; }

.gallery--nav--image {
  width: 50px;
  height: 50px;
  margin: 0px 2px;
  cursor: pointer;
  display: inline-block; }

.gallery--nav--element {
  padding: 0px 3px; }
  .gallery--nav--element > .imgwrap {
    cursor: pointer;
    display: inline-block;
    position: relative; }
    .gallery--nav--element > .imgwrap:before {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      background-color: #000;
      bottom: 0;
      height: 4px; }
    .gallery--nav--element > .imgwrap:after {
      content: '';
      background: #000;
      opacity: .5;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }

.gallery--nav--wrapper {
  padding: 0 96px;
  padding-bottom: 18px;
  transition: opacity 0.3s ease-in, height 0.3s ease-in;
  opacity: 0;
  overflow: hidden;
  height: 50px; }
  .gallery--nav--wrapper.-show {
    opacity: 1;
    height: auto; }
  .gallery--nav--wrapper .slick-current .gallery--nav--element > .imgwrap:before {
    content: '';
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent; }
  .gallery--nav--wrapper .slick-current .gallery--nav--element > .imgwrap:after {
    display: none; }
  .gallery--nav--wrapper .slick-list {
    margin: auto;
    height: 50px; }
    .gallery--nav--wrapper .slick-list.-center {
      margin: auto; }
      .gallery--nav--wrapper .slick-list.-center > .slick-track > .slick-slide {
        padding: 0px 2px; }

.gallery--nav {
  position: relative;
  margin-bottom: 20px; }

.gallery--nav--btns {
  position: absolute;
  top: 0px;
  width: 100%; }
  .gallery--nav--btns .slick-arrow {
    padding: 0;
    display: inline-block;
    line-height: 1;
    background-color: transparent;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: #ffab1a;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 3px;
    color: transparent;
    position: absolute; }
    .gallery--nav--btns .slick-arrow:before {
      content: '';
      width: 13px;
      height: 13px;
      border-top: 3px solid #000;
      border-right: 3px solid #000;
      position: absolute;
      top: 50%;
      left: 50%;
      transform-origin: center; }
    .gallery--nav--btns .slick-arrow.-gallery-disabled.slick-disabled {
      background: #444444;
      cursor: auto; }
  .gallery--nav--btns .slick-prev {
    left: 40px; }
    .gallery--nav--btns .slick-prev:before {
      transform: translate(-35%, -50%) rotate(-135deg); }
  .gallery--nav--btns .slick-next {
    right: 40px; }
    .gallery--nav--btns .slick-next:before {
      transform: translate(-65%, -50%) rotate(45deg); }

.carousel--for--item--wrap {
  padding: 0 40px;
  position: relative; }

.carousel--for--item {
  transition: opacity 0.3s ease-in, height 0.3s ease-in;
  opacity: 0;
  overflow: hidden;
  height: 500px; }
  .carousel--for--item.-show {
    opacity: 1;
    overflow: auto;
    height: auto; }
  .carousel--for--item .item > .like {
    padding-top: 15px;
    background: #000;
    position: relative; }
  .carousel--for--item .slick-arrow {
    padding: 0;
    display: inline-block;
    line-height: 1;
    background-color: transparent;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: #ffab1a;
    width: 40px;
    height: 150px;
    min-width: 40px;
    color: transparent;
    position: relative;
    transform: translateY(-40%); }
    .carousel--for--item .slick-arrow:before {
      content: '';
      width: 18px;
      height: 18px;
      border-top: 3px solid #000;
      border-right: 3px solid #000;
      position: absolute;
      top: 50%;
      left: 50%;
      transform-origin: center; }
  .carousel--for--item .slick-prev:before {
    transform: translate(-35%, -50%) rotate(-135deg); }
  .carousel--for--item .slick-next:before {
    transform: translate(-65%, -50%) rotate(45deg); }
  .carousel--for--item .slick-disabled {
    background: #444444;
    cursor: auto; }

.carousel--img--wrap {
  position: relative;
  display: block;
  overflow: hidden; }
  .carousel--img--wrap:hover, .carousel--img--wrap:focus, .carousel--img--wrap:active, .carousel--img--wrap.nice-select.open {
    text-decoration: none; }
  .carousel--img--wrap.-joke {
    margin-bottom: 0; }
  .carousel--img--wrap > .image {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -5.2vw;
    width: 100%;
    max-width: 100%;
    transition: .2s opacity; }
    .carousel--img--wrap > .image.-lodaingprogress {
      opacity: 0 !important; }

@media (max-width: 1139px) {
  .gallery--nav--wrapper {
    padding: 0 96px; } }
@media (max-width: 679px) {
  .carousel--for--item--wrap {
    padding: 0 20px; }

  .gallery--nav {
    margin-bottom: 10px; }

  .gallery--nav--btns .slick-prev {
    left: 10px; }
  .gallery--nav--btns .slick-next {
    right: 10px; }

  .gallery--nav--wrapper {
    padding: 0 60px; }
    .gallery--nav--wrapper .slick-list {
      margin: auto; }

  .carousel--for--item .slick-arrow {
    width: 30px;
    height: 113px;
    min-width: 30px; }
    .carousel--for--item .slick-arrow:before {
      content: '';
      width: 18px;
      height: 18px;
      border-top: 3px solid #000;
      border-right: 3px solid #000;
      position: absolute;
      top: 50%;
      left: 50%;
      transform-origin: center; } }
@media (max-width: 500px) {
  .carousel--img--wrap > .image {
    margin-bottom: -5.1vw; } }
@media (max-width: 370px) {
  .carousel--img--wrap > .image {
    margin-bottom: -4.8vw; } }
@media (min-width: 680px) {
  .carousel--img--wrap > .image {
    margin-bottom: -35px; } }
.article--link {
  display: block;
  margin-bottom: 33px; }
  .article--link .imgwrap > .image {
    max-width: 100%;
    width: 100%;
    display: block;
    transition: transform .4s ease;
    position: absolute;
    top: 0;
    left: 0; }
  .article--link .imgwrap > .pic {
    width: 100%;
    height: 100%;
    transition: transform .4s ease;
    background-size: cover;
    background-position: center;
    display: block; }
  .article--link .imgwrap {
    overflow: hidden;
    width: 100%;
    height: 205px;
    position: relative;
    display: block; }
  .article--link .title {
    color: #ffab1a;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding-top: 12px; }
  .article--link.-placeholder .imgwrap > .pic {
    display: flex;
    justify-content: center;
    align-items: center; }
  .article--link.-placeholder:hover > a, .article--link.-placeholder:focus > a, .article--link.-placeholder:active > a, .article--link.-placeholder.nice-select.open > a {
    text-decoration: none; }
    .article--link.-placeholder:hover > a > .imgwrap > .image, .article--link.-placeholder:focus > a > .imgwrap > .image, .article--link.-placeholder:active > a > .imgwrap > .image, .article--link.-placeholder.nice-select.open > a > .imgwrap > .image {
      transform: none; }
    .article--link.-placeholder:hover > a > .imgwrap > .pic, .article--link.-placeholder:focus > a > .imgwrap > .pic, .article--link.-placeholder:active > a > .imgwrap > .pic, .article--link.-placeholder.nice-select.open > a > .imgwrap > .pic {
      transform: none; }
  .article--link:hover > a, .article--link:focus > a, .article--link:active > a, .article--link.nice-select.open > a {
    text-decoration: none; }
    .article--link:hover > a > .title, .article--link:focus > a > .title, .article--link:active > a > .title, .article--link.nice-select.open > a > .title {
      color: #ffab1a;
      text-decoration: none; }
    .article--link:hover > a > .imgwrap > .image, .article--link:focus > a > .imgwrap > .image, .article--link:active > a > .imgwrap > .image, .article--link.nice-select.open > a > .imgwrap > .image {
      transform: scale(1.1); }
    .article--link:hover > a > .imgwrap > .pic, .article--link:focus > a > .imgwrap > .pic, .article--link:active > a > .imgwrap > .pic, .article--link.nice-select.open > a > .imgwrap > .pic {
      transform: scale(1.1); }
  .article--link.-sponsored > .sponsored {
    color: #444444;
    display: block;
    font-size: 11px; }
  .article--link.-sponsored:hover > .sponsored, .article--link.-sponsored:focus > .sponsored, .article--link.-sponsored:active > .sponsored, .article--link.-sponsored.nice-select.open > .sponsored {
    color: #444444; }
  .article--link:hover, .article--link:focus, .article--link:active, .article--link.nice-select.open {
    text-decoration: none; }
    .article--link:hover > .title, .article--link:focus > .title, .article--link:active > .title, .article--link.nice-select.open > .title {
      color: #ffab1a;
      text-decoration: none; }
    .article--link:hover > .imgwrap > .image, .article--link:focus > .imgwrap > .image, .article--link:active > .imgwrap > .image, .article--link.nice-select.open > .imgwrap > .image {
      transform: scale(1.1); }
    .article--link:hover > .imgwrap > .pic, .article--link:focus > .imgwrap > .pic, .article--link:active > .imgwrap > .pic, .article--link.nice-select.open > .imgwrap > .pic {
      transform: scale(1.1); }

.post--detail {
  border-bottom: 2px solid #303030;
  padding-bottom: 38px;
  margin-bottom: 40px; }

@media (max-width: 679px) {
  .article--link {
    margin-bottom: 15px; }
    .article--link .title {
      padding-top: 7px; }
    .article--link .imgwrap {
      height: 120px; }
    .article--link.-sponsored .imgwrap {
      height: 205px; } }
.choose--type {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 30px;
  margin: 0 -5px; }
  .choose--type > .type {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0px 5px; }

.add--new--wrapper {
  padding: 10px 115px; }
  .add--new--wrapper > .type {
    text-align: center;
    padding: 24px 0 23px; }

.new--fiche--wrapper > .info,
.new--fiche--wrapper > .type {
  text-align: center;
  font-weight: 500;
  letter-spacing: .6px; }
.new--fiche--wrapper > .info {
  padding-bottom: 23px; }

.add--new--wrapperform > .add {
  padding-top: 41px;
  padding-bottom: 29px; }

.new--fiche--content.-open {
  display: block; }
.new--fiche--content > .info,
.new--fiche--content > .type {
  text-align: center;
  font-weight: 500;
  letter-spacing: .6px; }
.new--fiche--content > .info {
  padding-bottom: 23px;
  padding-top: 17px; }
.new--fiche--content > .color {
  display: flex;
  margin-bottom: 46px; }
.new--fiche--content.-photointernet > .info {
  padding-bottom: 38px;
  line-height: 1.7; }
.new--fiche--content.-photointernet > .info, .new--fiche--content.-text > .info, .new--fiche--content.-photo > .info {
  padding-top: 0; }
.new--fiche--content.-text {
  padding-top: 5px; }
.new--fiche--content.-photo {
  padding-top: 2px; }

.new--fiche--wrapper {
  display: none; }

@media (max-width: 679px) {
  .add--new--wrapper {
    width: 100%;
    padding: 10px; }
    .add--new--wrapper > .add {
      padding-top: 29px;
      padding-bottom: 21px; }
    .add--new--wrapper > .title {
      padding: 0px; }

  .choose--type {
    padding-bottom: 25px;
    margin: 0 -2px; }
    .choose--type > .type {
      padding: 0 2px; } }
.fishka--text--input {
  margin-bottom: 35px;
  color: #fff; }
  .fishka--text--input > .faketext {
    background-color: transparent;
    border: 2px solid #303030;
    border-radius: 2px;
    resize: none;
    color: inherit;
    width: 100%;
    height: auto;
    max-height: 450px;
    font-size: 21px;
    text-align: center;
    box-sizing: border-box; }
  .fishka--text--input > .textarea {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .fishka--text--input > .canvas {
    height: 450px;
    width: 450px;
    border: 1px solid #303030; }
  .fishka--text--input ::-webkit-input-placeholder {
    color: inherit;
    opacity: 1; }
  .fishka--text--input ::-moz-placeholder {
    color: inherit;
    opacity: 1; }
  .fishka--text--input :-ms-input-placeholder {
    color: inherit;
    opacity: 1; }
  .fishka--text--input :-moz-placeholder {
    color: inherit;
    opacity: 1; }

.choose--color {
  position: relative; }
  .choose--color > .btnwrapper {
    padding: 0;
    display: inline-block;
    line-height: 1;
    background-color: transparent;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center; }
    .choose--color > .btnwrapper:hover, .choose--color > .btnwrapper:focus, .choose--color > .btnwrapper:active, .choose--color > .btnwrapper.nice-select.open {
      outline: none; }
  .choose--color > .btnwrapper > .decorator {
    width: 14px;
    height: 14px;
    border-top: 2px solid #777777;
    border-right: 2px solid #777777;
    transform: rotate(-45deg);
    margin-left: 12px;
    margin-right: 20px;
    transition: all .3s ease; }
    .choose--color > .btnwrapper > .decorator.-open {
      transform: rotate(135deg); }

.color--list--wrapper {
  position: absolute;
  bottom: 100%;
  left: -7px;
  margin-bottom: 10px; }
  .color--list--wrapper:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #222222 transparent transparent transparent;
    top: 100%;
    left: 20px; }

.color--list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: #222222;
  padding: 5px 11px;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
  min-width: 160px; }
  .color--list > .element {
    flex: 0 0 33.33%;
    max-width: 33.33%; }

.colors--selector {
  position: relative;
  display: flex;
  align-items: center; }
  .colors--selector > .text {
    margin-right: 11px;
    font-weight: 500;
    letter-spacing: .5px; }

.color--component {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #303030;
  background-color: #ffab1a;
  display: block;
  cursor: pointer; }
  .color--component.-color-black {
    background-color: #000;
    position: relative; }
  .color--component.-color-white {
    background-color: #fff;
    position: relative; }
  .color--component.-inlist {
    margin: 5px auto; }

.colorList {
  display: none; }
  .colorList.-open {
    display: block; }

@media (max-width: 679px) {
  .fishka--text--input > .faketext {
    height: 200px; }

  .new--fiche--content > .color {
    justify-content: center; }

  .colors--selector {
    flex-direction: column;
    margin-right: 10px;
    justify-content: center;
    align-items: flex-start; }
    .colors--selector:last-child {
      margin-right: 0; }
    .colors--selector > .text {
      margin-right: 0;
      margin-bottom: 5px; } }
.add--photos--wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 25px; }
  .add--photos--wrapper > .input,
  .add--photos--wrapper > .imgwrap {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0px 5px;
    height: 76px;
    margin-bottom: 10px; }

.uploaded--image {
  border-radius: 4px;
  border: 2px solid #444444;
  width: 100%;
  height: 100%;
  position: relative; }
  .uploaded--image > .image {
    width: 100% !important;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }

.edit--uploaded--image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between; }
  .edit--uploaded--image.-only-edit {
    z-index: 99;
    justify-content: flex-end; }
    .edit--uploaded--image.-only-edit:before {
      display: none; }
    .edit--uploaded--image.-only-edit > .button {
      font-size: 16px;
      background-color: rgba(0, 0, 0, 0.8); }
      .edit--uploaded--image.-only-edit > .button:last-of-type {
        margin-left: 0px; }
  .edit--uploaded--image:before {
    content: '';
    background-color: #000;
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }
  .edit--uploaded--image > .button {
    padding: 0;
    display: inline-block;
    line-height: 1;
    background-color: transparent;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #ffab1a;
    position: relative;
    z-index: 1;
    font-size: 10px;
    padding: 10px; }
    .edit--uploaded--image > .button:last-of-type {
      margin-left: auto; }

.embed--item {
  width: 100%;
  min-height: 250px; }
  .embed--item .embed-responsive-item {
    width: 100%;
    height: 100%; }

.add--photos--loading {
  display: flex;
  font-size: 13px;
  margin-bottom: 25px; }
  .add--photos--loading .desc {
    color: #fff;
    flex: 0 0 auto;
    margin-right: 20px; }
  .add--photos--loading .loader {
    width: 100%;
    border: solid 2px #777777;
    border-radius: 4px;
    height: 16px;
    overflow: hidden;
    flex: 0 1 auto; }
    .add--photos--loading .loader > .progress {
      background-color: #ffab1a;
      height: 100%;
      transition: width 0.3s; }

.crop--modal {
  background-color: rgba(0, 0, 0, 0.9); }
  .crop--modal .modal-content {
    background-color: transparent; }
  .crop--modal .close {
    position: absolute;
    right: 30px;
    top: 30px;
    color: #fff;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s ease-in;
    z-index: 999; }
    .crop--modal .close:hover {
      color: #ffab1a; }
  .crop--modal .modal-body {
    text-align: center; }
    .crop--modal .modal-body > .image {
      max-width: 100%;
      height: auto;
      width: 100%; }
  .crop--modal .modal-footer {
    border: none;
    display: inline-flex;
    padding-top: 1.1rem; }
  .crop--modal .buttons {
    padding: 16px 21px;
    font-size: 17px;
    letter-spacing: 0.01em;
    width: auto; }
    .crop--modal .buttons.-crop-desc {
      flex: 1 0 auto;
      padding: 16px 18px;
      margin-left: 0px; }
  .crop--modal .image-index {
    height: 100%;
    background-color: #777777;
    color: #fff;
    padding: 11px 19px;
    border-radius: 4px;
    margin-right: auto;
    font-size: 17px; }
  .crop--modal .image {
    max-width: 100%;
    height: auto;
    width: 100%; }

.image--description {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-right: -230px !important;
  padding-right: 230px; }
  .image--description.-center {
    text-align: center; }
  .image--description > .title {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.01em; }
  .image--description > .desc {
    font-size: 15px;
    letter-spacing: 0.014em;
    line-height: 1.4;
    margin-right: 1rem; }
  .image--description > .buttons {
    display: inline-block; }
  .image--description.-no-modal {
    margin-right: 0px;
    padding-right: 0px; }
    .image--description.-no-modal > .title {
      color: #777777;
      margin-bottom: 0.4rem; }

.mini--image {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1.2rem; }
  .mini--image > .wrapper {
    position: relative;
    display: inline-block; }
    .mini--image > .wrapper > .image {
      max-width: 100%;
      height: auto;
      width: 100%; }
  .mini--image > .mini-desc {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.01em;
    padding-top: 0.8rem; }

@media (max-width: 999px) {
  .login--submit--wrap {
    padding: 0px; }

  .crop--modal .buttons {
    padding: 15px 0px;
    font-size: 15px; }
    .crop--modal .buttons:first-of-type {
      flex: 1 1 auto;
      margin-right: 0px; }
    .crop--modal .buttons:not(:first-of-type) {
      margin: 5px 0px 0px 0px;
      width: 100%; }
  .crop--modal .image-index {
    padding: 11px 11px;
    font-size: 16px; }
  .crop--modal .modal-footer {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center; }

  .image--description {
    text-align: center;
    margin-right: 0px !important;
    padding-right: 0px; }
    .image--description > .desc {
      margin-right: 0px; } }
@media (min-width: 679px) {
  .crop--modal .modal-dialog {
    max-width: 875px;
    margin: 1.75rem auto; } }
.upload--link--wrapper {
  display: flex;
  margin: 0 -5px;
  margin-bottom: 20px; }
  .upload--link--wrapper > .input {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0px 5px; }
  .upload--link--wrapper > .upload {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0px 5px; }

.uploaded--images {
  text-align: center; }
  .uploaded--images > .info {
    margin: 1.9rem 0px 1.6rem 0rem;
    font-size: 17px;
    letter-spacing: 0.01em; }
  .uploaded--images > .select-all > a {
    color: #ffab1a;
    letter-spacing: 0.05em; }

.uploaded--gallery {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem; }
  .uploaded--gallery > .img-wrapper {
    position: relative;
    margin: 50px 0px !important; }
    .uploaded--gallery > .img-wrapper:hover > .select-img {
      opacity: 0.8; }
    .uploaded--gallery > .img-wrapper::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 133%;
      height: calc(100% + 80px);
      border: 2px solid #303030;
      transition: opacity 0.2s linear;
      transform: translate(-50%, -50%); }
    .uploaded--gallery > .img-wrapper > .select-img {
      transition: opacity 0.2s linear;
      z-index: 2;
      position: relative; }
      .uploaded--gallery > .img-wrapper > .select-img > .image {
        max-width: 100%;
        height: auto; }

@media (max-width: 679px) {
  .uploaded--gallery {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    .uploaded--gallery > br {
      display: none; }
    .uploaded--gallery > .img-wrapper {
      position: relative;
      margin: 10px 0px;
      padding: 1rem; }
      .uploaded--gallery > .img-wrapper::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 99%;
        height: 99%;
        border: 2px solid #303030;
        transform: translate(-50%, -50%); }
      .uploaded--gallery > .img-wrapper > .select-img {
        z-index: 2;
        position: relative; }
        .uploaded--gallery > .img-wrapper > .select-img > .image {
          max-width: 100%;
          height: auto; } }
.report--post {
  font-weight: 500;
  display: none;
  text-align: left;
  padding: 10px 40px 10px 43px; }
  .report--post.-open {
    display: block; }
  .report--post > .text {
    font-weight: 700;
    letter-spacing: .8px;
    padding-bottom: 17px; }

.report--fiche--form > .radiowrap {
  padding-bottom: 3px; }
.report--fiche--form > .wrapper {
  position: relative; }
.report--fiche--form > .wrapper > .radio {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }
.report--fiche--form > .wrapper > .textinput {
  position: relative;
  right: 0;
  left: 0;
  padding-left: 94px;
  width: 100%;
  top: -9px; }
.report--fiche--form > .btnswrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 11px;
  margin-bottom: -4px; }
  .report--fiche--form > .btnswrap > .btn {
    min-width: 138px;
    margin-left: 14px; }
    .report--fiche--form > .btnswrap > .btn:first-child {
      margin-left: 0; }

@media (max-width: 679px) {
  .report--fiche--form > .wrapper > .radio {
    position: relative; }
  .report--fiche--form > .wrapper > .textinput {
    position: relative;
    padding-left: 0px;
    top: -2px; }
  .report--fiche--form > .btnswrap {
    margin-top: 17px; }
    .report--fiche--form > .btnswrap > .btn {
      min-width: auto;
      width: 100%; }

  .report--post {
    padding: 10px 10px 10px 10px; } }
.form--wrapper--box {
  border-radius: 4px;
  background: #000; }
  .form--wrapper--box.-login, .form--wrapper--box.-remind {
    padding: 0px 40px 40px 41px; }
  .form--wrapper--box.-register {
    padding: 31px 40px 40px 41px; }
  .form--wrapper--box.-remind > .description {
    line-height: 1.6;
    letter-spacing: 0.15px;
    text-align: center;
    font-size: 17px;
    color: #777777;
    padding: 30px 0px 0px; }
  .form--wrapper--box.-activate > .description {
    padding: 30px 40px 32px 41px;
    line-height: 1.6;
    letter-spacing: 0.2px;
    text-align: center;
    font-size: 17px;
    color: #777777; }
  .form--wrapper--box.-activate > .description > .email {
    color: #fff; }

.auth--form {
  position: relative; }
  .auth--form > .wrapper {
    padding: 40px 75px 17px 75px;
    position: relative; }
    .auth--form > .wrapper:before {
      content: '';
      width: 100%;
      background-color: #303030;
      height: 2px;
      position: absolute;
      bottom: 0;
      left: 0; }
  .auth--form > .wrapper > .field {
    margin-bottom: 20px; }
  .auth--form.-login > .wrapper:before, .auth--form.-remind > .wrapper:before, .auth--form.-restore > .wrapper:before {
    display: none; }
  .auth--form.-remind > .wrapper {
    padding: 32px 75px 17px 75px; }
  .auth--form.-restore > .wrapper {
    padding: 40px 75px 17px 75px; }

.auth--header {
  text-align: center;
  margin-bottom: 32px; }
  .auth--header > .title {
    margin-bottom: 8px; }
  .auth--header > .info {
    letter-spacing: .62px; }
  .auth--header.-remind {
    margin-bottom: 26px; }

@media (max-width: 679px) {
  .auth--form > .wrapper {
    padding: 20px 0px 17px 0px; }
  .auth--form.-login > .wrapper, .auth--form.-remind > .wrapper, .auth--form.-restore > .wrapper {
    padding: 20px 0px 13px 0px; }

  .form--wrapper--box.-login, .form--wrapper--box.-remind {
    padding: 0px 20px 20px 20px; }
  .form--wrapper--box.-register {
    padding: 13px 20px 20px 20px; }

  .auth--header {
    margin-bottom: 14px; }
    .auth--header.-login > .info > .link {
      display: block;
      padding-top: 2px; } }
.register--description {
  font-size: 17px;
  color: #777777;
  line-height: 1.6;
  letter-spacing: .11px;
  padding-bottom: 34px;
  position: relative; }
  .register--description:before {
    content: '';
    width: 100%;
    background-color: #303030;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0; }
  .register--description > .name {
    color: #fff;
    font-weight: bold; }

.regulations--register {
  padding: 33px 0px 10px; }
  .regulations--register > .text {
    font-size: 13px;
    color: #777777;
    margin-bottom: 8px; }

.inpl-rodo-registration-info {
  padding: 33px 0px 10px; }
  .inpl-rodo-registration-info p {
    font-size: 13px;
    color: #777777;
    margin-bottom: 8px; }
  .inpl-rodo-registration-info strong {
    font-weight: 400; }
  .inpl-rodo-registration-info br {
    display: none; }
  .inpl-rodo-registration-info a {
    color: #ffab1a; }
    .inpl-rodo-registration-info a:hover, .inpl-rodo-registration-info a:focus, .inpl-rodo-registration-info a:active, .inpl-rodo-registration-info a.nice-select.open {
      color: #ffab1a;
      text-decoration: none; }

.register--submit--wrap {
  padding: 17px 75px 0px 75px; }

@media (max-width: 679px) {
  .register--submit--wrap {
    padding: 17px 0px 0px 0px; }

  .register--description {
    padding-bottom: 14px; }
    .register--description > .hidemob {
      display: none; } }
.captcha--component {
  display: flex;
  align-items: center;
  margin-bottom: 31px;
  margin-top: 20px; }
  .captcha--component > .captcha {
    margin-right: 17px;
    border-radius: 4px;
    max-width: 120px; }
  .captcha--component > .link {
    letter-spacing: 0.05rem; }

.password--forgotten--link > .wrapper {
  letter-spacing: .035rem; }

.login--submit--wrap {
  padding: 17px 75px 0px 75px; }

@media (max-width: 679px) {
  .login--submit--wrap {
    padding: 0px; } }
.remind--submit--wrap,
.restore--submit--wrap {
  padding: 4px 75px 0px 75px; }

.password--changed--wrap {
  padding: 40px 75px 0px 75px; }

@media (max-width: 679px) {
  .remind--submit--wrap,
  .restore--submit--wrap {
    padding: 0px; }

  .password--changed--wrap {
    padding: 40px 0px 20px 0px; } }
.user--account {
  padding: 0 40px; }
  .user--account > .account {
    padding: 30px 75px 10px;
    border-bottom: 2px solid #2d2d2d; }
  .user--account > .links {
    padding: 36px 0px 37px 40px; }

.user--info {
  font-size: 17px;
  padding-bottom: 22px; }
  .user--info.-change {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .user--info > .info > .property {
    color: #fff;
    padding-right: 28px; }
  .user--info > .info > .value {
    color: #777777; }

.manage--account {
  display: flex;
  justify-content: center; }
  .manage--account > .link {
    padding: 0 20px;
    border-right: 2px solid #2d2d2d;
    line-height: 1;
    letter-spacing: .7px; }
    .manage--account > .link:last-child {
      border: none; }

.user--delete--actions {
  display: flex;
  justify-content: center; }
  .user--delete--actions > .link {
    min-width: 215px;
    margin-right: 20px; }
    .user--delete--actions > .link:last-child {
      margin-right: 0; }

.user--account--delete {
  padding: 32px 57px 40px; }
  .user--account--delete > .text {
    padding-bottom: 30px;
    line-height: 1.7; }

@media (max-width: 679px) {
  .user--delete--actions {
    flex-direction: column; }
    .user--delete--actions > .link {
      margin-right: 0;
      margin-bottom: 10px; }

  .user--account--delete {
    padding: 15px 20px; }

  .user--account {
    padding: 0 20px; }
    .user--account > .account {
      padding: 30px 0px 10px; }
    .user--account > .links {
      padding: 36px 0px 37px 0px; }

  .manage--account > .link {
    padding: 0 10px;
    text-align: center; } }
.table--component {
  background-color: #000;
  border-radius: 4px; }
  .table--component > .header {
    padding: 23px 40px 20px; }

.search--table {
  display: flex;
  padding-top: 26px; }
  .search--table > .searchfield {
    flex: 0 0 81%;
    max-width: 81%; }
  .search--table > .btnwrap {
    flex: 0 0 19%;
    max-width: 19%;
    padding-left: 10px; }

.list--table {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .list--table > .element {
    padding: 13px 40px 15px;
    display: flex;
    font-size: 13px;
    font-weight: 500; }
    .list--table > .element:nth-child(even) {
      background-color: #181818; }

.table--element--id {
  flex: 0 0 17%;
  max-width: 17%; }

.table--element--title {
  flex: 0 0 48%;
  max-width: 48%; }
  .table--element--title > .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
    display: block;
    color: #777777;
    text-decoration: none; }
    .table--element--title > .title:hover, .table--element--title > .title:focus, .table--element--title > .title:active, .table--element--title > .title.nice-select.open {
      color: #777777;
      text-decoration: none; }
  .table--element--title > .type {
    color: #ffab1a;
    font-size: 11px; }
  .table--element--title.-head > .title {
    color: #ffab1a; }

.table--element--date {
  flex: 0 0 18%;
  max-width: 18%; }
  .table--element--date > .author {
    color: #ffab1a;
    font-size: 11px; }
  .table--element--date.-head {
    color: #ffab1a; }

.table--element--like {
  flex: 0 0 17%;
  max-width: 17%; }
  .table--element--like > .like {
    color: #ffab1a;
    font-size: 18px; }
  .table--element--like > .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .table--element--like > .wrapper > .see {
    font-size: 12px; }
  .table--element--like > .wrapper > .delete {
    font-size: 9px; }

.textfield--and--select {
  position: relative; }
  .textfield--and--select > .selectwrap {
    position: absolute;
    top: 0;
    right: 14px; }

.configuration--wrapper {
  padding: 35px 115px 40px; }
  .configuration--wrapper > .likes--count--box {
    margin-bottom: 35px; }
  .configuration--wrapper > .btn--box {
    margin-top: 41px; }

.input--label--primary {
  color: #777777;
  font-size: 17px;
  font-weight: 700; }
  .input--label--primary.-bigbottomoffset {
    margin-bottom: 30px; }
  .input--label--primary.-smallbottomoffset {
    margin-bottom: 15px; }

@media (max-width: 679px) {
  .configuration--wrapper {
    padding: 10px; }
    .configuration--wrapper > .btn--box {
      margin-top: 30px; } }

/*# sourceMappingURL=main.css.map */
