.Select {
  position: relative
}

.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.Select.is-disabled>.Select-control {
  background-color: #f9f9f9
}

.Select.is-disabled>.Select-control:hover {
  box-shadow: none
}

.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: .35
}

.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%
}

.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06)
}

.Select-control .Select-input:focus {
  outline: none
}

.is-searchable.is-open>.Select-control {
  cursor: text
}

.is-open>.Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9
}

.is-open>.Select-control>.Select-arrow {
  border-color: transparent transparent #999;
  border-width: 0 5px 5px
}

.is-searchable.is-focused:not(.is-open)>.Select-control {
  cursor: text
}

.is-focused:not(.is-open)>.Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 3px rgba(0, 126, 255, .1)
}

.Select--single>.Select-control .Select-value,
.Select-placeholder {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label,
.has-value.Select--single>.Select-control .Select-value .Select-value-label {
  color: #333
}

.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label,
.has-value.Select--single>.Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none
}

.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:focus,
.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:hover,
.has-value.Select--single>.Select-control .Select-value a.Select-value-label:focus,
.has-value.Select--single>.Select-control .Select-value a.Select-value-label:hover {
  color: #007eff;
  outline: none;
  text-decoration: underline
}

.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle
}

.Select-input>input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 14px;
  padding: 8px 0 12px;
  -webkit-appearance: none
}

.is-focused .Select-input>input {
  cursor: text
}

.has-value.is-pseudo-focused .Select-input {
  opacity: 0
}

.Select-control:not(.is-searchable)>.Select-input {
  outline: none
}

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  text-align: center
}

.Select-loading,
.Select-loading-zone {
  position: relative;
  vertical-align: middle;
  width: 16px
}

.Select-loading {
  -webkit-animation: Select-animation-spin .4s infinite linear;
  -o-animation: Select-animation-spin .4s infinite linear;
  animation: Select-animation-spin .4s infinite linear;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block
}

.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn .2s;
  -o-animation: Select-animation-fadeIn .2s;
  animation: Select-animation-fadeIn .2s;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px
}

.Select-clear-zone:hover {
  color: #d0021b
}

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1
}

.Select--multi .Select-clear-zone {
  width: 17px
}

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px
}

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0
}

.is-open .Select-arrow,
.Select-arrow-zone:hover>.Select-arrow {
  border-top-color: #666
}

.Select--multi .Select-multi-value-wrapper {
  display: inline-block
}

.Select .Select-aria-only {
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden
}

@-webkit-keyframes Select-animation-fadeIn {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@keyframes Select-animation-fadeIn {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch
}

.Select-menu {
  max-height: 198px;
  overflow-y: auto
}

.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666;
  cursor: pointer;
  display: block;
  padding: 8px 10px
}

.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px
}

.Select-option.is-selected {
  background-color: #f5faff;
  background-color: rgba(0, 126, 255, .04);
  color: #333
}

.Select-option.is-focused {
  background-color: #ebf5ff;
  background-color: rgba(0, 126, 255, .08);
  color: #333
}

.Select-option.is-disabled {
  color: #ccc;
  cursor: default
}

.Select-noresults {
  box-sizing: border-box;
  color: #999;
  cursor: default;
  display: block;
  padding: 8px 10px
}

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0
}

.Select--multi.has-value .Select-input {
  margin-left: 5px
}

.Select--multi .Select-value {
  background-color: #ebf5ff;
  background-color: rgba(0, 126, 255, .08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  border: 1px solid rgba(0, 126, 255, .24);
  color: #007eff;
  display: inline-block;
  font-size: .9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top
}

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle
}

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px
}

.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none
}

.Select--multi a.Select-value-label:hover {
  text-decoration: underline
}

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  border-right: 1px solid rgba(0, 126, 255, .24);
  padding: 1px 5px 3px
}

.Select--multi .Select-value-icon:focus,
.Select--multi .Select-value-icon:hover {
  background-color: #d8eafd;
  background-color: rgba(0, 113, 230, .08);
  color: #0071e6
}

.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  background-color: rgba(0, 126, 255, .24)
}

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333
}

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3
}

.Select--multi.is-disabled .Select-value-icon:active,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:hover {
  background-color: #fcfcfc
}

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn)
  }
}

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn)
  }
}


/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */

html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

article,
aside,
footer,
header,
nav,
section {
  display: block
}

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

figcaption,
figure,
main {
  display: block
}

figure {
  margin: 1em 40px
}

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

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

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

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

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

b,
strong {
  font-weight: inherit;
  font-weight: bolder
}

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

dfn {
  font-style: italic
}

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

small {
  font-size: 80%
}

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

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

audio,
video {
  display: inline-block
}

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

img {
  border-style: none
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

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

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

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

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em
}

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

progress {
  display: inline-block;
  vertical-align: baseline
}

textarea {
  overflow: auto
}

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

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

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

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

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

details,
menu {
  display: block
}

summary {
  display: list-item
}

canvas {
  display: inline-block
}

[hidden],
template {
  display: none
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent
}

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Verdana, Helvetica Neue, Tahoma, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #242582;
  background-color: #fff
}

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

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

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

abbr[data-original-title],
abbr[title] {
  cursor: help
}

address {
  font-style: normal;
  line-height: inherit
}

address,
dl,
ol,
ul {
  margin-bottom: 1rem
}

dl,
ol,
ul {
  margin-top: 0
}

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

dt {
  font-weight: 700
}

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

blockquote {
  margin: 0 0 1rem
}

a {
  color: #0275d8;
  text-decoration: none
}

a:focus,
a:hover {
  color: #014c8c;
  text-decoration: underline
}

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

a:not([href]):not([tabindex]):focus {
  outline: 0
}

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

figure {
  margin: 0 0 1rem
}

img {
  vertical-align: middle
}

[role=button] {
  cursor: pointer
}

[role=button],
a,
area,
button,
input,
label,
select,
summary,
textarea {
  touch-action: manipulation
}

table {
  border-collapse: collapse;
  background-color: transparent
}

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #636c72;
  caption-side: bottom
}

caption,
th {
  text-align: left
}

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

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

button,
input,
select,
textarea {
  line-height: inherit
}

input[type=checkbox]:disabled,
input[type=radio]:disabled {
  cursor: not-allowed
}

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

textarea {
  resize: vertical
}

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

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

input[type=search] {
  -webkit-appearance: none
}

output {
  display: inline-block
}

[hidden] {
  display: none!important
}

@-ms-viewport {
  width: device-width
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar
}

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

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px
}

@media (min-width:576px) {
  .container {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:768px) {
  .container {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:992px) {
  .container {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:1200px) {
  .container {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:576px) {
  .container {
    width: 540px;
    max-width: 100%
  }
}

@media (min-width:768px) {
  .container {
    width: 720px;
    max-width: 100%
  }
}

@media (min-width:992px) {
  .container {
    width: 960px;
    max-width: 100%
  }
}

@media (min-width:1200px) {
  .container {
    width: 1140px;
    max-width: 100%
  }
}

.container-fluid {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px
}

@media (min-width:576px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:768px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:992px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:1200px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px
  }
}

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

@media (min-width:576px) {
  .row {
    margin-right: -15px;
    margin-left: -15px
  }
}

@media (min-width:768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px
  }
}

@media (min-width:992px) {
  .row {
    margin-right: -15px;
    margin-left: -15px
  }
}

@media (min-width:1200px) {
  .row {
    margin-right: -15px;
    margin-left: -15px
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0
}

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

.col,
.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-lg,
.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-md,
.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-sm,
.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-xl,
.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 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px
}

@media (min-width:576px) {
  .col,
  .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-lg,
  .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-md,
  .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-sm,
  .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-xl,
  .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 {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:768px) {
  .col,
  .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-lg,
  .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-md,
  .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-sm,
  .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-xl,
  .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 {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:992px) {
  .col,
  .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-lg,
  .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-md,
  .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-sm,
  .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-xl,
  .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 {
    padding-right: 15px;
    padding-left: 15px
  }
}

@media (min-width:1200px) {
  .col,
  .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-lg,
  .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-md,
  .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-sm,
  .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-xl,
  .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 {
    padding-right: 15px;
    padding-left: 15px
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pull-0 {
  right: auto
}

.pull-1 {
  right: 8.33333%
}

.pull-2 {
  right: 16.66667%
}

.pull-3 {
  right: 25%
}

.pull-4 {
  right: 33.33333%
}

.pull-5 {
  right: 41.66667%
}

.pull-6 {
  right: 50%
}

.pull-7 {
  right: 58.33333%
}

.pull-8 {
  right: 66.66667%
}

.pull-9 {
  right: 75%
}

.pull-10 {
  right: 83.33333%
}

.pull-11 {
  right: 91.66667%
}

.pull-12 {
  right: 100%
}

.push-0 {
  left: auto
}

.push-1 {
  left: 8.33333%
}

.push-2 {
  left: 16.66667%
}

.push-3 {
  left: 25%
}

.push-4 {
  left: 33.33333%
}

.push-5 {
  left: 41.66667%
}

.push-6 {
  left: 50%
}

.push-7 {
  left: 58.33333%
}

.push-8 {
  left: 66.66667%
}

.push-9 {
  left: 75%
}

.push-10 {
  left: 83.33333%
}

.push-11 {
  left: 91.66667%
}

.push-12 {
  left: 100%
}

.offset-1 {
  margin-left: 8.33333%
}

.offset-2 {
  margin-left: 16.66667%
}

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

.offset-4 {
  margin-left: 33.33333%
}

.offset-5 {
  margin-left: 41.66667%
}

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

.offset-7 {
  margin-left: 58.33333%
}

.offset-8 {
  margin-left: 66.66667%
}

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

.offset-10 {
  margin-left: 83.33333%
}

.offset-11 {
  margin-left: 91.66667%
}

@media (min-width:576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto
  }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
  }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%
  }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
  }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%
  }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
  }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%
  }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
  }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%
  }
  .pull-sm-0 {
    right: auto
  }
  .pull-sm-1 {
    right: 8.33333%
  }
  .pull-sm-2 {
    right: 16.66667%
  }
  .pull-sm-3 {
    right: 25%
  }
  .pull-sm-4 {
    right: 33.33333%
  }
  .pull-sm-5 {
    right: 41.66667%
  }
  .pull-sm-6 {
    right: 50%
  }
  .pull-sm-7 {
    right: 58.33333%
  }
  .pull-sm-8 {
    right: 66.66667%
  }
  .pull-sm-9 {
    right: 75%
  }
  .pull-sm-10 {
    right: 83.33333%
  }
  .pull-sm-11 {
    right: 91.66667%
  }
  .pull-sm-12 {
    right: 100%
  }
  .push-sm-0 {
    left: auto
  }
  .push-sm-1 {
    left: 8.33333%
  }
  .push-sm-2 {
    left: 16.66667%
  }
  .push-sm-3 {
    left: 25%
  }
  .push-sm-4 {
    left: 33.33333%
  }
  .push-sm-5 {
    left: 41.66667%
  }
  .push-sm-6 {
    left: 50%
  }
  .push-sm-7 {
    left: 58.33333%
  }
  .push-sm-8 {
    left: 66.66667%
  }
  .push-sm-9 {
    left: 75%
  }
  .push-sm-10 {
    left: 83.33333%
  }
  .push-sm-11 {
    left: 91.66667%
  }
  .push-sm-12 {
    left: 100%
  }
  .offset-sm-0 {
    margin-left: 0
  }
  .offset-sm-1 {
    margin-left: 8.33333%
  }
  .offset-sm-2 {
    margin-left: 16.66667%
  }
  .offset-sm-3 {
    margin-left: 25%
  }
  .offset-sm-4 {
    margin-left: 33.33333%
  }
  .offset-sm-5 {
    margin-left: 41.66667%
  }
  .offset-sm-6 {
    margin-left: 50%
  }
  .offset-sm-7 {
    margin-left: 58.33333%
  }
  .offset-sm-8 {
    margin-left: 66.66667%
  }
  .offset-sm-9 {
    margin-left: 75%
  }
  .offset-sm-10 {
    margin-left: 83.33333%
  }
  .offset-sm-11 {
    margin-left: 91.66667%
  }
}

@media (min-width:768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto
  }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
  }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
  }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%
  }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
  }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%
  }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
  }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%
  }
  .pull-md-0 {
    right: auto
  }
  .pull-md-1 {
    right: 8.33333%
  }
  .pull-md-2 {
    right: 16.66667%
  }
  .pull-md-3 {
    right: 25%
  }
  .pull-md-4 {
    right: 33.33333%
  }
  .pull-md-5 {
    right: 41.66667%
  }
  .pull-md-6 {
    right: 50%
  }
  .pull-md-7 {
    right: 58.33333%
  }
  .pull-md-8 {
    right: 66.66667%
  }
  .pull-md-9 {
    right: 75%
  }
  .pull-md-10 {
    right: 83.33333%
  }
  .pull-md-11 {
    right: 91.66667%
  }
  .pull-md-12 {
    right: 100%
  }
  .push-md-0 {
    left: auto
  }
  .push-md-1 {
    left: 8.33333%
  }
  .push-md-2 {
    left: 16.66667%
  }
  .push-md-3 {
    left: 25%
  }
  .push-md-4 {
    left: 33.33333%
  }
  .push-md-5 {
    left: 41.66667%
  }
  .push-md-6 {
    left: 50%
  }
  .push-md-7 {
    left: 58.33333%
  }
  .push-md-8 {
    left: 66.66667%
  }
  .push-md-9 {
    left: 75%
  }
  .push-md-10 {
    left: 83.33333%
  }
  .push-md-11 {
    left: 91.66667%
  }
  .push-md-12 {
    left: 100%
  }
  .offset-md-0 {
    margin-left: 0
  }
  .offset-md-1 {
    margin-left: 8.33333%
  }
  .offset-md-2 {
    margin-left: 16.66667%
  }
  .offset-md-3 {
    margin-left: 25%
  }
  .offset-md-4 {
    margin-left: 33.33333%
  }
  .offset-md-5 {
    margin-left: 41.66667%
  }
  .offset-md-6 {
    margin-left: 50%
  }
  .offset-md-7 {
    margin-left: 58.33333%
  }
  .offset-md-8 {
    margin-left: 66.66667%
  }
  .offset-md-9 {
    margin-left: 75%
  }
  .offset-md-10 {
    margin-left: 83.33333%
  }
  .offset-md-11 {
    margin-left: 91.66667%
  }
}

@media (min-width:992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto
  }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
  }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
  }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%
  }
  .pull-lg-0 {
    right: auto
  }
  .pull-lg-1 {
    right: 8.33333%
  }
  .pull-lg-2 {
    right: 16.66667%
  }
  .pull-lg-3 {
    right: 25%
  }
  .pull-lg-4 {
    right: 33.33333%
  }
  .pull-lg-5 {
    right: 41.66667%
  }
  .pull-lg-6 {
    right: 50%
  }
  .pull-lg-7 {
    right: 58.33333%
  }
  .pull-lg-8 {
    right: 66.66667%
  }
  .pull-lg-9 {
    right: 75%
  }
  .pull-lg-10 {
    right: 83.33333%
  }
  .pull-lg-11 {
    right: 91.66667%
  }
  .pull-lg-12 {
    right: 100%
  }
  .push-lg-0 {
    left: auto
  }
  .push-lg-1 {
    left: 8.33333%
  }
  .push-lg-2 {
    left: 16.66667%
  }
  .push-lg-3 {
    left: 25%
  }
  .push-lg-4 {
    left: 33.33333%
  }
  .push-lg-5 {
    left: 41.66667%
  }
  .push-lg-6 {
    left: 50%
  }
  .push-lg-7 {
    left: 58.33333%
  }
  .push-lg-8 {
    left: 66.66667%
  }
  .push-lg-9 {
    left: 75%
  }
  .push-lg-10 {
    left: 83.33333%
  }
  .push-lg-11 {
    left: 91.66667%
  }
  .push-lg-12 {
    left: 100%
  }
  .offset-lg-0 {
    margin-left: 0
  }
  .offset-lg-1 {
    margin-left: 8.33333%
  }
  .offset-lg-2 {
    margin-left: 16.66667%
  }
  .offset-lg-3 {
    margin-left: 25%
  }
  .offset-lg-4 {
    margin-left: 33.33333%
  }
  .offset-lg-5 {
    margin-left: 41.66667%
  }
  .offset-lg-6 {
    margin-left: 50%
  }
  .offset-lg-7 {
    margin-left: 58.33333%
  }
  .offset-lg-8 {
    margin-left: 66.66667%
  }
  .offset-lg-9 {
    margin-left: 75%
  }
  .offset-lg-10 {
    margin-left: 83.33333%
  }
  .offset-lg-11 {
    margin-left: 91.66667%
  }
}

@media (min-width:1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto
  }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
  }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%
  }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
  }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%
  }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
  }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%
  }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
  }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%
  }
  .pull-xl-0 {
    right: auto
  }
  .pull-xl-1 {
    right: 8.33333%
  }
  .pull-xl-2 {
    right: 16.66667%
  }
  .pull-xl-3 {
    right: 25%
  }
  .pull-xl-4 {
    right: 33.33333%
  }
  .pull-xl-5 {
    right: 41.66667%
  }
  .pull-xl-6 {
    right: 50%
  }
  .pull-xl-7 {
    right: 58.33333%
  }
  .pull-xl-8 {
    right: 66.66667%
  }
  .pull-xl-9 {
    right: 75%
  }
  .pull-xl-10 {
    right: 83.33333%
  }
  .pull-xl-11 {
    right: 91.66667%
  }
  .pull-xl-12 {
    right: 100%
  }
  .push-xl-0 {
    left: auto
  }
  .push-xl-1 {
    left: 8.33333%
  }
  .push-xl-2 {
    left: 16.66667%
  }
  .push-xl-3 {
    left: 25%
  }
  .push-xl-4 {
    left: 33.33333%
  }
  .push-xl-5 {
    left: 41.66667%
  }
  .push-xl-6 {
    left: 50%
  }
  .push-xl-7 {
    left: 58.33333%
  }
  .push-xl-8 {
    left: 66.66667%
  }
  .push-xl-9 {
    left: 75%
  }
  .push-xl-10 {
    left: 83.33333%
  }
  .push-xl-11 {
    left: 91.66667%
  }
  .push-xl-12 {
    left: 100%
  }
  .offset-xl-0 {
    margin-left: 0
  }
  .offset-xl-1 {
    margin-left: 8.33333%
  }
  .offset-xl-2 {
    margin-left: 16.66667%
  }
  .offset-xl-3 {
    margin-left: 25%
  }
  .offset-xl-4 {
    margin-left: 33.33333%
  }
  .offset-xl-5 {
    margin-left: 41.66667%
  }
  .offset-xl-6 {
    margin-left: 50%
  }
  .offset-xl-7 {
    margin-left: 58.33333%
  }
  .offset-xl-8 {
    margin-left: 66.66667%
  }
  .offset-xl-9 {
    margin-left: 75%
  }
  .offset-xl-10 {
    margin-left: 83.33333%
  }
  .offset-xl-11 {
    margin-left: 91.66667%
  }
}

.invisible {
  visibility: hidden!important
}

.hidden-xs-up {
  display: none!important
}

@media (max-width:575px) {
  .hidden-xs-down {
    display: none!important
  }
}

@media (min-width:576px) {
  .hidden-sm-up {
    display: none!important
  }
}

@media (max-width:767px) {
  .hidden-sm-down {
    display: none!important
  }
}

@media (min-width:768px) {
  .hidden-md-up {
    display: none!important
  }
}

@media (max-width:991px) {
  .hidden-md-down {
    display: none!important
  }
}

@media (min-width:992px) {
  .hidden-lg-up {
    display: none!important
  }
}

@media (max-width:1199px) {
  .hidden-lg-down {
    display: none!important
  }
}

@media (min-width:1200px) {
  .hidden-xl-up {
    display: none!important
  }
}

.hidden-xl-down,
.visible-print-block {
  display: none!important
}

@media print {
  .visible-print-block {
    display: block!important
  }
}

.visible-print-inline {
  display: none!important
}

@media print {
  .visible-print-inline {
    display: inline!important
  }
}

.visible-print-inline-block {
  display: none!important
}

@media print {
  .visible-print-inline-block {
    display: inline-block!important
  }
}

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

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

.float-left {
  float: left!important
}

.float-right {
  float: right!important
}

.float-none {
  float: none!important
}

@media (min-width:576px) {
  .float-sm-left {
    float: left!important
  }
  .float-sm-right {
    float: right!important
  }
  .float-sm-none {
    float: none!important
  }
}

@media (min-width:768px) {
  .float-md-left {
    float: left!important
  }
  .float-md-right {
    float: right!important
  }
  .float-md-none {
    float: none!important
  }
}

@media (min-width:992px) {
  .float-lg-left {
    float: left!important
  }
  .float-lg-right {
    float: right!important
  }
  .float-lg-none {
    float: none!important
  }
}

@media (min-width:1200px) {
  .float-xl-left {
    float: left!important
  }
  .float-xl-right {
    float: right!important
  }
  .float-xl-none {
    float: none!important
  }
}

.flex-first {
  order: -1
}

.flex-last {
  order: 1
}

.flex-unordered {
  order: 0
}

.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
}

.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:576px) {
  .flex-sm-first {
    order: -1
  }
  .flex-sm-last {
    order: 1
  }
  .flex-sm-unordered {
    order: 0
  }
  .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
  }
  .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:768px) {
  .flex-md-first {
    order: -1
  }
  .flex-md-last {
    order: 1
  }
  .flex-md-unordered {
    order: 0
  }
  .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
  }
  .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:992px) {
  .flex-lg-first {
    order: -1
  }
  .flex-lg-last {
    order: 1
  }
  .flex-lg-unordered {
    order: 0
  }
  .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
  }
  .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:1200px) {
  .flex-xl-first {
    order: -1
  }
  .flex-xl-last {
    order: 1
  }
  .flex-xl-unordered {
    order: 0
  }
  .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
  }
  .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
  }
}

.img-fluid {
  display: block;
  max-width: 100%;
  height: auto
}

body {
  background-color: #EDEAE5;
  font-size: 0.9em;
  font-family: Verdana, sans-serif;
  margin: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 0
}

.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color
}

.hvr-sweep-to-right,
.hvr-sweep-to-right:before {
  -webkit-transition-duration: .3s;
  transition-duration: .3s
}

.hvr-sweep-to-right:before {
  border-radius: 2px;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}

.hvr-sweep-to-right:active,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:hover {
  color: #fff
}

.hvr-sweep-to-right:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1)
}

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

.button {
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  line-height: 100%;
  padding: 15px 2rem;
  text-align: center;
  text-decoration: none
}

.button:active,
.button:focus,
.button:hover {
  outline: none;
  text-decoration: none
}

.button.primary {
  background-color: #FCE181;
  color: #242582;
  font-weight: 700;
  text-transform: uppercase
}

.button.primary:hover {
  background-color: #FAD979;
  color: #242582
}

.button.primary.hvr-sweep-to-right:before {
  background: #910617
}

.button.secondary {
  background-color: #FAD979;
  color: #242582;
  font-weight: 700;
  text-transform: uppercase
}

.button.secondary:hover {
  background-color: #FCE181;
  color: #242582;
}

.button[disabled] {
  opacity: .5;
  pointer-events: none
}

.button.full {
  width: 100%
}

@media (max-width:767px) {
  .button.full-sm-down {
    width: 100%
  }
}

.link-button {
  cursor: pointer;
  color: inherit;
  display: inline-block;
  line-height: 100%;
  margin: 15px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.link-button.back:before {
  content: '\AB'
}

.link-button:active,
.link-button:focus,
.link-button:hover {
  border-color: #000;
  color: #000;
  text-decoration: none
}

article {
  min-height: 400px
}

article a {
  border-bottom: 2px solid #FCE181;
  color: inherit
}

article a:active,
article a:focus,
article a:hover {
  border-color: #000;
  color: #000;
  text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: Tahoma, sans-serif;
  font-weight: 400
}

@media (max-width:575px) {
  h1 {
    font-size: 1.4em
  }
}

@media (min-width:576px) {
  h1 {
    font-size: 1.6em
  }
}

@media (min-width:768px) {
  h1 {
    font-size: 2em
  }
}

@media (max-width:575px) {
  h2 {
    font-size: 1.2em
  }
}

@media (min-width:576px) {
  h2 {
    font-size: 1.4em
  }
}

@media (min-width:768px) {
  h2 {
    font-size: 1.6em
  }
}

@media (max-width:575px) {
  h3 {
    font-size: 1em
  }
}

@media (min-width:576px) {
  h3 {
    font-size: 1.2em
  }
}

@media (min-width:768px) {
  h3 {
    font-size: 1.5em
  }
}

@media (min-width:768px) {
  h4 {
    font-size: 1.1em
  }
}

b,
strong {
  font-weight: 700
}

.with-colon:after {
  content: ':'
}

input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
  background-color: #fff!important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset
}

@keyframes hover-color {
  0% {
    border-color: silver
  }
  to {
    border-color: #242582
  }
}

.magic-checkbox,
.magic-radio {
  position: absolute;
  display: none
}

.magic-checkbox[disabled],
.magic-radio[disabled] {
  cursor: not-allowed
}

.magic-checkbox+label,
.magic-radio+label {
  position: relative;
  display: block;
  padding-left: 30px;
  cursor: pointer;
  vertical-align: middle
}

.magic-checkbox+label:hover:before,
.magic-radio+label:hover:before {
  animation-duration: .4s;
  animation-fill-mode: both;
  animation-name: hover-color
}

.magic-checkbox+label:before,
.magic-radio+label:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: '';
  border: 1px solid silver
}

.magic-checkbox+label:after,
.magic-radio+label:after {
  position: absolute;
  display: none;
  content: ''
}

.magic-checkbox[disabled]+label,
.magic-radio[disabled]+label {
  cursor: not-allowed;
  color: #e4e4e4
}

.magic-checkbox[disabled]+label:after,
.magic-checkbox[disabled]+label:before,
.magic-checkbox[disabled]+label:hover,
.magic-radio[disabled]+label:after,
.magic-radio[disabled]+label:before,
.magic-radio[disabled]+label:hover {
  cursor: not-allowed
}

.magic-checkbox[disabled]+label:hover:before,
.magic-radio[disabled]+label:hover:before {
  border: 1px solid #e4e4e4;
  animation-name: none
}

.magic-checkbox[disabled]+label:before,
.magic-radio[disabled]+label:before {
  border-color: #e4e4e4
}

.magic-checkbox:checked+label:before,
.magic-radio:checked+label:before {
  animation-name: none
}

.magic-checkbox:checked+label:after,
.magic-radio:checked+label:after {
  display: block
}

.magic-checkbox+label:before {
  border-radius: 3px
}

.magic-checkbox+label:after {
  top: 2px;
  left: 7px;
  box-sizing: border-box;
  width: 6px;
  height: 12px;
  transform: rotate(45deg);
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0
}

.magic-checkbox:checked+label:before {
  border: #242582;
  background: #242582
}

.magic-checkbox:checked[disabled]+label:before {
  border: #a8cde9;
  background: #a8cde9
}

.magic-checkbox+label:before {
  border: 2px solid #efe9e9;
  border-radius: 2px;
  background-color: #fff
}

.magic-checkbox[disabled]+label {
  color: inherit;
  opacity: .8
}

.CalendarDay {
  position: relative;
  display: table;
  height: 100%;
  width: 100%
}

.CalendarDay__day {
  display: table-cell;
  vertical-align: middle;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none
}

.CalendarMonth {
  text-align: center;
  padding: 0 13px;
  vertical-align: top
}

.CalendarMonth:first-of-type {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none
}

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

.CalendarMonth--horizontal {
  display: inline-block;
  min-height: 100%
}

.CalendarMonth--vertical {
  display: block
}

.CalendarMonth__caption {
  color: #3c3f40;
  margin-top: 7px;
  font-size: 18px;
  padding: 15px 0 35px;
  text-align: center;
  margin-bottom: 2px
}

.CalendarMonth__day {
  border: 1px solid #e4e7e7;
  padding: 0;
  box-sizing: border-box;
  color: #565a5c;
  cursor: pointer;
  width: 39px;
  height: 38px
}

.CalendarMonth__day:active {
  background: #f2f2f2
}

.CalendarMonth__day--highlighted-calendar {
  background: #ffe8bc;
  color: #565a5c;
  cursor: default
}

.CalendarMonth__day--highlighted-calendar:active {
  background: #007a87
}

.CalendarMonth__day--outside {
  border: 0;
  cursor: default
}

.CalendarMonth__day--outside:active {
  background: #fff
}

.CalendarMonth__day--hovered {
  background: #e4e7e7;
  border: 1px double #d4d9d9;
  color: inherit
}

.CalendarMonth__day--blocked-minimum-nights {
  color: #cacccd;
  background: #fff;
  border: 1px solid #e4e7e7;
  cursor: default
}

.CalendarMonth__day--blocked-minimum-nights:active {
  background: #fff
}

.CalendarMonth__day--selected-span {
  background: #7fb5df;
  border: 1px double #7fb5df;
  color: #fff
}

.CalendarMonth__day--selected-span.CalendarMonth__day--hovered,
.CalendarMonth__day--selected-span:active {
  background: #7fb5df;
  border: 1px double #242582
}

.CalendarMonth__day--selected-span.CalendarMonth__day--last-in-range {
  border-right: #242582
}

.CalendarMonth__day--after-hovered-start,
.CalendarMonth__day--hovered-span {
  background: #93c1e4;
  border: 1px double #93c1e4;
  color: #007a87
}

.CalendarMonth__day--selected,
.CalendarMonth__day--selected-end,
.CalendarMonth__day--selected-start {
  background: #242582;
  border: 1px double #242582;
  color: #fff
}

.CalendarMonth__day--selected-end:active,
.CalendarMonth__day--selected-start:active,
.CalendarMonth__day--selected:active {
  background: #242582
}

.CalendarMonth__day--blocked-calendar {
  background: #cacccd;
  color: #82888a;
  cursor: default
}

.CalendarMonth__day--blocked-calendar:active {
  background: #cacccd
}

.CalendarMonth__day--blocked-out-of-range {
  color: #cacccd;
  background: #fff;
  border: 1px solid #e4e7e7;
  cursor: default
}

.CalendarMonth__day--blocked-out-of-range:active {
  background: #fff
}

.CalendarMonthGrid {
  background: #fff;
  z-index: 0
}

.CalendarMonthGrid--animating {
  -webkit-transition: -webkit-transform .2s ease-in-out;
  -moz-transition: -moz-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  z-index: 1
}

.CalendarMonthGrid--horizontal {
  position: absolute;
  left: 9px;
  width: 1200px
}

.CalendarMonthGrid--vertical {
  width: 300px;
  margin: 0 auto
}

.DayPicker {
  background: #fff;
  position: relative
}

.DayPicker--horizontal {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05), 0 0 0 1px rgba(0, 0, 0, .07);
  border-radius: 3px
}

.DayPicker--horizontal.DayPicker--portal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%
}

.DayPicker--vertical.DayPicker--portal {
  position: static
}

.DayPicker__week-headers {
  position: relative
}

.DayPicker--horizontal .DayPicker__week-headers {
  margin-left: 9px
}

.DayPicker__week-header {
  color: #757575;
  position: absolute;
  width: 300px;
  top: 62px;
  z-index: 2;
  padding: 0 13px;
  text-align: left
}

.DayPicker__week-header ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0
}

.DayPicker__week-header li {
  display: inline-block;
  width: 39px;
  text-align: center
}

.DayPicker--vertical .DayPicker__week-header {
  margin-left: -150px;
  left: 50%
}

.transition-container {
  position: relative;
  overflow: hidden;
  border-radius: 3px
}

.transition-container--horizontal {
  transition: height .2s ease-in-out
}

.transition-container--vertical {
  width: 100%
}

.DayPickerNavigation__next,
.DayPickerNavigation__prev {
  cursor: pointer;
  line-height: .78;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.DayPickerNavigation__next--default,
.DayPickerNavigation__prev--default {
  border: 1px solid #dce0e0;
  background-color: #fff;
  color: #757575
}

.DayPickerNavigation__next--default:focus,
.DayPickerNavigation__next--default:hover,
.DayPickerNavigation__prev--default:focus,
.DayPickerNavigation__prev--default:hover {
  border: 1px solid #c4c4c4
}

.DayPickerNavigation__next--default:active,
.DayPickerNavigation__prev--default:active {
  background: #f2f2f2
}

.DayPickerNavigation--horizontal {
  position: relative
}

.DayPickerNavigation--horizontal .DayPickerNavigation__next,
.DayPickerNavigation--horizontal .DayPickerNavigation__prev {
  border-radius: 3px;
  padding: 6px 9px;
  top: 18px;
  z-index: 2;
  position: absolute
}

.DayPickerNavigation--horizontal .DayPickerNavigation__prev {
  left: 22px
}

.DayPickerNavigation--horizontal .DayPickerNavigation__next {
  right: 22px
}

.DayPickerNavigation--horizontal .DayPickerNavigation__next--default svg,
.DayPickerNavigation--horizontal .DayPickerNavigation__prev--default svg {
  height: 19px;
  width: 19px;
  fill: #82888a
}

.DayPickerNavigation--vertical {
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 52px;
  width: 100%;
  z-index: 2
}

.DayPickerNavigation--vertical .DayPickerNavigation__next,
.DayPickerNavigation--vertical .DayPickerNavigation__prev {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 50%
}

.DayPickerNavigation--vertical .DayPickerNavigation__next--default {
  border-left: 0
}

.DayPickerNavigation--vertical .DayPickerNavigation__next--default,
.DayPickerNavigation--vertical .DayPickerNavigation__prev--default {
  text-align: center;
  font-size: 2.5em;
  padding: 5px
}

.DayPickerNavigation--vertical .DayPickerNavigation__next--default svg,
.DayPickerNavigation--vertical .DayPickerNavigation__prev--default svg {
  height: 42px;
  width: 42px;
  fill: #484848
}

.DateInput {
  font-weight: 200;
  font-size: 18px;
  line-height: 24px;
  color: #757575;
  margin: 0;
  padding: 8px;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle
}

.DateInput--with-caret:after,
.DateInput--with-caret:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: auto;
  border: 10px solid transparent;
  border-top: 0;
  left: 22px;
  z-index: 2
}

.DateInput--with-caret:before {
  top: 62px;
  border-bottom-color: rgba(0, 0, 0, .1)
}

.DateInput--with-caret:after {
  top: 63px;
  border-bottom-color: #fff
}

.DateInput--disabled {
  background: #cacccd
}

.DateInput__label {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.DateInput__input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  height: 100%;
  width: 100%
}

.DateInput__display-text {
  padding: 4px 8px;
  white-space: nowrap;
  overflow: hidden
}

.DateInput__display-text--has-input {
  color: #484848
}

.DateInput__display-text--focused {
  background: #99ede6;
  border-color: #99ede6;
  border-radius: 3px;
  color: #007a87
}

.DateInput__display-text--disabled {
  font-style: italic
}

.screen-reader-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.DateRangePicker {
  position: relative;
  display: inline-block;
}

.DateRangePicker__picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  top: 72px
}

.DateRangePicker__picker--show {
  visibility: visible
}

.DateRangePicker__picker--invisible {
  visibility: hidden
}

.DateRangePicker__picker--direction-left {
  left: 0
}

.DateRangePicker__picker--direction-right {
  right: 0
}

.DateRangePicker__picker--portal {
  background-color: rgba(0, 0, 0, .3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.DateRangePicker__picker--full-screen-portal {
  background-color: #fff
}

.DateRangePicker__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}

.DateRangePicker__close svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}

.DateRangePicker__close:focus,
.DateRangePicker__close:hover {
  color: #b0b3b4;
  text-decoration: none
}

.DateRangePickerInput {
  background-color: #fff;
  border: 1px solid #cacccd;
  display: inline-block;
  height: 46px;
}

.DateRangePickerInput--disabled {
  background: #cacccd
}

.DateRangePickerInput__arrow {
  display: inline-block;
  vertical-align: middle
}

.DateRangePickerInput__arrow svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px
}

.DateRangePickerInput__clear-dates {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 10px 0 5px
}

.DateRangePickerInput__clear-dates svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}

.DateRangePickerInput__clear-dates--hide {
  visibility: hidden
}

.DateRangePickerInput__clear-dates--hover,
.DateRangePickerInput__clear-dates:focus {
  background: #dbdbdb;
  border-radius: 50%
}

.SingleDatePicker {
  position: relative;
  display: inline-block
}

.SingleDatePicker__picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  top: 72px
}

.SingleDatePicker__picker--show {
  visibility: visible
}

.SingleDatePicker__picker--invisible {
  visibility: hidden
}

.SingleDatePicker__picker--direction-left {
  left: 0
}

.SingleDatePicker__picker--direction-right {
  right: 0
}

.SingleDatePicker__picker--portal {
  background-color: rgba(0, 0, 0, .3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.SingleDatePicker__picker--full-screen-portal {
  background-color: #fff
}

.SingleDatePicker__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}

.SingleDatePicker__close svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}

.SingleDatePicker__close:focus,
.SingleDatePicker__close:hover {
  color: #b0b3b4;
  text-decoration: none
}

.SingleDatePickerInput {
  background-color: #fff;
  border: 1px solid #dbdbdb
}

.SingleDatePickerInput__clear-date {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 10px 0 5px
}

.SingleDatePickerInput__clear-date svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}

.SingleDatePickerInput__clear-date--hide {
  visibility: hidden
}

.SingleDatePickerInput__clear-date--hover,
.SingleDatePickerInput__clear-date:focus {
  background: #dbdbdb;
  border-radius: 50%
}

.DateRangePicker {
  display: block
}

.DateRangePicker__picker:not(.DateRangePicker__picker--portal) {
  top: 48px
}

.DateRangePicker__picker--direction-left:not(.DateRangePicker__picker--portal) {
  left: 1px!important
}

.DateRangePicker__picker--full-screen-portal {
  background-color: #ffffffee
}

.DateRangePicker__close svg {
  fill: #82888a
}

.DateRangePickerInput {
  border-radius: 2px;
  display: block;
  padding: 5px 0
}

.DateRangePickerInput__arrow {
  text-align: center;
  width: 8%
}

@media (max-width:767px) {
  .DateRangePickerInput__arrow svg {
    width: 22px
  }
}

.DateRangePickerInput__clear-dates {
  margin: 0;
  padding: 0;
  position: relative;
  top: -1px
}

.DateRangePickerInput__clear-dates--hover,
.DateRangePickerInput__clear-dates:focus {
  background-color: #fff;
  outline: none
}

.DateRangePickerInput__clear-dates--hover svg,
.DateRangePickerInput__clear-dates:focus svg {
  fill: #9FEDD7
}

.DateRangePickerInput--disabled {
  background-color: #f9f9f9
}

.DateRangePickerInput--disabled .DateRangePickerInput__clear-dates {
  display: none
}

.DateInput {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0 5px;
  text-align: center;
  width: 41%
}

@media (min-width:768px) {
  .DateInput {
    width: 43%
  }
}

.DateInput--with-caret:after,
.DateInput--with-caret:before {
  display: none
}

.DateInput__input {
  cursor: pointer
}

.DateInput__display-text--has-input {
  color: inherit
}

.DateInput__display-text--focused {
  background: #FFF;
  border-color: #FFF;
  color: inherit
}

.DateInput--disabled {
  background-color: #f9f9f9
}

.DateInput--disabled .DateInput__input {
  cursor: default
}

.DateInput__display-text--disabled {
  font-style: normal
}

.DayPicker--horizontal,
.transition-container {
  border-radius: 2px
}

.CalendarMonth__caption {
  caption-side: top
}

.Select-control {
  border-radius: 2px;
  border: 2px solid #efe9e9;
  color: inherit;
  height: 46px
}

.Select-control:hover {
  box-shadow: none
}

.is-focused:not(.is-open)>.Select-control {
  border-color: #efe9e9;
  box-shadow: none
}

.is-open>.Select-control {
  border-color: #efe9e9;
  border-radius: 2px
}

.Select--single>.Select-control .Select-value,
.Select-placeholder {
  color: inherit;
  line-height: 42px
}

.Select.is-disabled>.Select-control {
  cursor: default
}

.Select.is-disabled .Select-arrow-zone {
  display: none
}

.Select-clear-zone:hover {
  color: #9FEDD7
}

.Select-clear {
  font-size: 30px;
  font-weight: 100
}

.Select-menu-outer {
  border-color: #efe9e9;
  border-radius: 2px;
  margin-top: 1px
}

.Select-option.is-selected {
  background-color: #FFF
}

.select-time {
  width: 100%
}

.select-time .Select-option {
  display: inline-block
}

.select-time-hour {
  padding: 0;
  width: 45%
}

.select-time-hour .Select-menu-outer {
  width: 192px;
  max-height: auto
}

.select-time-hour .Select-menu {
  max-height: auto;
  overflow-y: hidden
}

.select-time-minute {
  padding: 0;
  width: 45%
}

.select-time-minute .Select-menu-outer {
  width: 154px
}

.select-time-separator {
  text-align: center;
  width: 10%
}

.select-time-separator span {
  position: relative;
  top: -1px
}

.form-field {
  padding-bottom: .8rem;
  position: relative
}

.form-field.has-error .form-label {
  color: red
}

.form-field.has-error .form-input {
  border-color: red
}

.form-label {
  color: #777;
  display: block;
  line-height: 100%;
  margin: 0;
  pointer-events: none;
  position: absolute;
  top: 28px;
  left: .75rem;
  transition: all .2s ease-in-out
}

.form-label.required {
  color: #242582
}

.form-input {
  border: 2px solid #efe9e9;
  border-radius: 2px;
  line-height: 42px;
  margin-top: .8rem;
  padding: 0 .75rem;
  width: 100%
}

.form-input:focus {
  outline: none
}

.form-input.has-value+.form-label,
.form-input:focus+.form-label {
  color: #777!important;
  font-size: .8em;
  transform-origin: left top;
  transform: translateY(-30px)
}

.form-error {
  color: #ff8000;
  font-size: .8em;
  padding: 0 .5rem
}

.form-label-static {
  font-size: .8em;
  position: static;
  transition: none
}

.form-input-static {
  border: 0;
  margin-top: 0;
  padding-left: 0
}

.container-fluid {
  max-width: 1400px
}

@media (min-width:1200px) {
  .container {
    width: 960px
  }
}

header,
section {
  margin-bottom: 1rem
}

header {
  border-bottom: 1px solid #efe9e9
}

header .container-fluid {
  position: relative
}

header .row:first-child {
  height: 60px
}

@media (min-width:768px) {
  header .row:first-child {
    height: 100px
  }
}

header .row.hidden-sm-up {
  border-top: 1px solid #aaa;
  padding-bottom: 1rem;
  padding-top: 1rem
}

.header-logo-wrap {
  padding-right: 0
}

.header-logo {
  display: block;
  width: 70px
}

@media (min-width:768px) {
  .header-logo {
    width: 155px
  }
}

.header-nav-wrap {
  text-align: center
}

.header-nav {
  display: inline;
  line-height: 100px
}

.header-nav .nav-li {
  display: inline;
  padding: 1rem
}

.header-nav .nav-a {
  font-weight: bold;
  text-transform: uppercase;
  color: inherit
}

.header-nav .nav-a.active,
.header-nav .nav-a:active,
.header-nav .nav-a:focus,
.header-nav .nav-a:hover {
  border-color: #000;
  color: #000;
  text-decoration: none
}

.header-col3 {
  float: right;
  padding-left: 0;
  position: relative;
  text-align: right
}

.header-col3 .item {
  font-family: Tahoma, sans-serif;
  font-size: .8em;
  line-height: 120%
}

.header-col3 .open {
  color: #242582
}

@media (min-width:768px) {
  .header-col3 {
    padding-left: 45px
  }
  .header-col3 .item {
    font-size: 1rem
  }
}

footer {
  border-top: 1px solid #efe9e9;
  padding: 1rem 0
}

footer:first-child {
  border-top: 2px solid #000
}

footer:last-child {
  margin-bottom: 2rem
}

footer p {
  margin: 0;
  white-space: pre-line
}

@media (max-width:767px) {
  footer .footer-address,
  footer .footer-logo {
    margin-bottom: 1rem
  }
}

.error {
  background: url("/img/icon/chat.svg") no-repeat 1rem 50%;
  background-size: 30px;
  background-color: #242582;
  color: #FCE181;
  margin-top: 1rem;
  min-height: 40px;
  white-space: pre-line;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .4);
  padding: 1rem 1rem 1rem 76px;
  border-radius: 2px;
}

.ReactModal__Body--open {
  overflow: hidden
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(0, 0%, 100%, .9)
}

.modal {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
  position: relative
}

@media (max-width:767px) {
  .modal {
    margin: .5rem
  }
}

@media (min-width:768px) {
  .modal {
    margin: 2rem auto 0;
    width: 600px
  }
}

@media (min-width:992px) {
  .modal {
    margin: 4rem auto 0;
    width: 800px
  }
}

.modal-close {
  background: #fff url("/img/icon/letter-x-gray.svg") no-repeat 50% 50%;
  background-size: 20px;
  cursor: pointer;
  display: block;
  height: 36px;
  padding: 8px;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 36px;
  z-index: 1
}

.modal-content {
  padding: 1rem
}

@media (min-width:768px) {
  .modal-content {
    padding: 3rem
  }
}

.modal-header {
  padding-bottom: 1rem
}

.modal-title {
  margin: 0;
  padding-right: 2rem
}

.modal-footer {
  padding-top: 1rem
}

@media (min-width:768px) {
  .modal-footer {
    padding-top: 2rem
  }
}

.modal-img {
  text-align: center
}

.modal-img .modal-content {
  padding: 1rem
}

.modal-img .img-large {
  display: inline-block
}

.modal-img .img-thumb {
  display: inline-block;
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

.modal-img .img-thumb-wrap {
  background-color: #FFF;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  margin: .5rem .25rem 0;
  max-width: 100px
}

.modal-img .img-thumb-wrap:hover .img-thumb {
  opacity: .5
}

@media (max-width:767px) {
  .modal-img .img-thumb {
    max-width: 80px
  }
}

@media (min-width:576px) {
  .modal-img {
    margin-top: 1rem
  }
}

@media (min-width:768px) {
  .modal-img {
    width: 720px
  }
}

@media (min-width:992px) {
  .modal-img {
    width: 960px
  }
}

.nav {
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-lang {
  left: -50px;
  position: absolute;
  top: 0
}

.nav-lang .nav-a {
  display: block;
  color: #000;
  font-size: 14px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  width: 34px
}

.nav-lang .nav-a:active,
.nav-lang .nav-a:focus,
.nav-lang .nav-a:hover {
  background-color: #242582;
  border-radius: 50%;
  color: #fff;
  text-decoration: none
}

@media (min-width:768px) {
  .nav-lang {
    left: -60px;
    top: 2px
  }
}

.app {
  left: 0;
  position: relative;
  transition: left .3s ease-out
}

.app.drawer-open {
  left: 290px;
  transition: left .3s ease-in
}

.drawer-toggle {
  background: url("/img/icon/bars.svg") no-repeat 50% 0;
  background-size: contain;
  cursor: pointer;
  display: block;
  height: 27px;
  margin-left: 15px;
  width: 27px
}

.drawer {
  background-color: #242582;
  color: #fff;
  height: 100%;
  padding: 50px;
  position: absolute;
  left: -290px;
  top: 0;
  width: 290px;
  z-index: 1000;
  transition: left .3s ease-out
}

.drawer.open {
  left: -290px;
  transition: left .3s ease-in;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
}

.drawer-nav .nav-a {
  color: #fff;
  display: block;
  font-weight: 700;
  padding: 4px 0
}

.drawer-close {
  background: url("/img/icon/letter-x.svg") no-repeat 50% 0;
  background-size: contain;
  cursor: pointer;
  display: block;
  height: 20px;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 20px
}

.section-featured-frontpage {
  margin-bottom: 1rem
}

@media (min-width:768px) {
  .section-featured-frontpage {
    margin-bottom: 2rem!important
  }
}

.section-why-title {
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.section-why-title h1 {
  line-height: 100%;
  margin: 0
}

.section-why {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
  margin-bottom: 0
}

.section-why .item-wrap {
  padding: 0px
}

@media (min-width:768px) {
  .section-why .item-wrap {
    padding: 0px
  }
}

.section-why .item {
  background-repeat: no-repeat;
  background-color: #FFF
}

@media (max-width:767px) {
  .section-why .item {
    background-position: 1rem 50%;
    background-size: 60px;
    padding: 1rem 1rem 1rem 32%
  }
}

@media (min-width:768px) {
  .section-why .item {
    background-position: 50% 2rem;
    background-size: 100px;
    min-height: 300px;
    padding: 132px 2rem 2rem;
    text-align: center
  }
}

.section-why .item-icon {
  background-position: 50% 0;
  background-repeat: no-repeat
}

@media (max-width:767px) {
  .section-why .item-icon {
    background-size: contain;
    float: left;
    margin: 0;
    width: 30%
  }
}

@media (min-width:768px) {
  .section-why .item-icon {
    background-size: 110px;
    height: 110px;
    margin-bottom: 2rem
  }
}

.section-why .item-title {
  color: #000;
  font-family: Tahoma, sans-serif;
  line-height: 100%
}

@media (max-width:767px) {
  .section-why .item-title {
    font-size: 1rem;
    padding-bottom: .25rem
  }
}

@media (min-width:768px) {
  .section-why .item-title {
    font-size: 1.2rem;
    padding-bottom: .5rem;
    padding-top: 1rem
  }
}

@media (max-width:767px) {
  .section-why .item-text {
    font-size: .8em
  }
}

.section-why2 {
  margin-bottom: 1rem
}

.intro>.content {
  color: #242582;
}

@media (min-width:768px) {
  .section-why2 {
    margin-bottom: 2rem
  }
}

.frontpage-article {
	margin-top: 2rem;
}

.google-maps {
  border: 0;
  width: 100%;
  height: 400px
}

.section-longrent article {
  min-height: inherit
}

.section-longrent .item {
  margin-bottom: 0rem;
  padding: 0.5rem;
  padding-bottom: 3rem;
  position: relative;
  background-color: #FFF
}

.section-longrent .title {
  margin-bottom: 0;
  margin-top: .5rem
}

.section-longrent .descr {
  font-size: .9em;
  padding-bottom: .5rem
}

.section-longrent .ask-container {
  bottom: 0.5rem;
  position: absolute;
  width: calc(100% - 1rem)
}

.section-longrent .ask-container .button {
  padding-left: 0;
  padding-right: 0
}

.section-longrent>.row {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
  background-color: #FFF;
}

.section-featured {
  background-color: #FFF;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
}

.section-featured .featured-col {
  padding-right: 0;
  padding-left: 0
}

.section-featured .intro {
  color: #000000;
  padding: 1rem
}

@media (min-width:768px) {
  .section-featured .intro {
    padding: 1rem
  }
}

.section-featured .intro h2 {
  color: inherit;
  line-height: 100%;
  text-transform: capitalize
}

@media (max-width:767px) {
  .section-featured .intro .content {
    font-size: .9em
  }
}

.section-featured .item {
  color: inherit;
  display: block;
  position: relative;
  text-decoration: none
}

@media (max-width:767px) {
  .section-featured .item {
    padding: 1rem;
    padding-top: 0
  }
}

.section-featured .item .img {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

@media (max-width:767px) {
  .section-featured .item .img {
    float: left;
    width: 30%
  }
}

@media (min-width:1050px) {
  .section-featured .item .img {
    height: 350px;
  }
}

@media (min-width:1280px) {
  .section-featured .item .img {
    height: 467px;
  }
}

.section-featured .item .title {
  color: #fff;
  font-weight: 700
}

@media (max-width:767px) {
  .section-featured .item .title {
    float: left;
    padding-left: .5rem;
    padding-top: .2rem;
    width: 70%;
    color: black;
  }
}

@media (min-width:768px) {
  .section-featured .item .title {
    left: 0;
    position: absolute;
    top: 2rem;
    text-align: center;
    text-shadow: 0 0 10px #000;
    width: 100%
  }
}

@media (min-width:992px) {
  .section-featured .item .title {
    font-size: 1.3rem
  }
}

.section-featured .item .text span {
  background-color: rgba(0, 0, 0, 0);
  color: #FFF
}

@media (max-width:767px) {
  .section-featured .item .text {
    float: left;
    font-size: .8em;
    padding-left: .5rem;
    width: 70%
  }
  .section-featured .item .text span {
    background-color: rgba(0, 0, 0, 0);
    color: #242582;
    display: block
  }
}

@media (min-width:768px) {
  .section-featured .item .text {
    bottom: 2rem;
    font-size: .9em;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    text-shadow: 0 0 10px #000;
  }
  .section-featured .item .text span {
    background-color: rgba(0, 0, 0, 0);
    color: #FFF;
    padding: 4px 8px
  }
}

@media (min-width:992px) {
  .section-featured .item .text {
    font-size: 1rem
  }
  .section-featured .item .text span {
    background-color: rgba(0, 0, 0, 0);
    color: #FFF;
    padding: 4px 16px
  }
}

.section-featured .item .button {
  display: none
}

@media (max-width:767px) {
  .section-featured .item .button {
    float: left;
    padding-left: .5rem;
    padding-top: .2rem;
    width: 70%
  }
}

@media (min-width:768px) {
  .section-featured .item .button {
    bottom: 2rem;
    margin: 0 10%;
    position: absolute;
    width: 80%
  }
}

.section-featured .item:hover .img {
  opacity: .8;
}

@media (min-width:768px) {
  .section-featured .item:hover .text {
    display: none
  }
  .section-featured .item:hover .button {
    display: block
  }
}

.prices-row {
  margin-left: 0;
  margin-right: 0
}

.prices-row .prices-col {
  padding-left: 1px;
  padding-right: 1px;
  border: 1px solid #EDEAE5;
}

@media (min-width:991px) {
  .prices-row .prices-col {
    border: none;
  }
}

@media (max-width:991px) {
  .prices-row .prices-col {
    margin-bottom: .25rem
  }
}

.prices-row .days {
  font-size: .8em;
  padding: 0;
  text-align: center;
}

@media (min-width:768px) {
  .prices-row .days {
    font-size: .8em;
  }
}

.prices-row .days.w {
  padding: 0 4px
}

.prices-row .price {
  font-weight: 700;
  margin-top: 1px;
  text-align: center;
  color: #242582;
  background-color: #EDEAE5
}

.prices-row .price.special {
  color: #FCE181;
  background-color: #242582
}

.section-prices-info {
  margin-bottom: 1rem
}

.section-prices-info article {
  min-height: auto
}

@media (min-width:768px) {
  .section-prices-info {
    margin-bottom: 2rem
  }
}

.prices-info {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .4);
  background-color: #FCE181;
  padding: 1rem;
  border-radius: 2px;
}

.prices-info .link-button {
  display: inline-block;
  float: right;
  font-size: .8em;
  margin: 0
}

.prices-info .content {
  font-size: .9em
}

@media (max-width:767px) {
  .prices-info .title {
    font-size: .9em
  }
}

@media (max-width:767px) {
  .prices-title {
    margin-bottom: 1rem
  }
}

.prices-title .link-button {
  font-size: .8em;
  margin-left: 0
}

@media (max-width:767px) {
  .prices-title .link-button {
    margin-top: 0
  }
}

@media (min-width:768px) {
  .prices-title .link-button {
    margin-left: 2rem
  }
}

.section-search {
  margin-bottom: 1rem;
  margin-top: 1rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
  width: 100%;
  background-color: #242582;
  padding: 1rem;
}

@media (min-width:768px) {
  .section-search {
    margin-bottom: 3rem;
    margin-top: 3rem;
    margin-bottom: 50px;
    height: 150px;
    padding-top: 50px;
    border-radius: 10x;
    width: 100%;
    background-color: #242582
  }
  .section-search>.row {
    width: 960px;
    margin-left: auto;
    margin-right: auto
  }
}

.section-search .button {
  width: 100%
}

@media (max-width:991px) {
  .section-search .DateRangePicker,
  .section-search .Select {
    margin-bottom: .4rem
  }
}

.section-category {
  margin-bottom: 2rem;
}

.section-vehicle {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #FFF;
}

.section-vehicle>.row {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
}

@media (min-width:991px) {
  .section-vehicle {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .section-vehicle .price-details {
  	padding: 1rem;
  }
}

@media (max-width:767px) {
  .section-vehicle {
    padding-bottom: .75rem
  }
}

.section-vehicle:hover {
  background-color: #FFF;
  cursor: pointer
}

.section-vehicle .col1,
.section-vehicle .col2 {
  color: inherit;
  display: block;
  text-decoration: none
}

@media (max-width:767px) {
  .section-vehicle .col1 {
    margin-bottom: .5rem
  }
}

@media (min-width:991px) {
	.section-vehicle .col1-img {
		padding-right: 0px;
		padding-left: 0px;
	}
}

@media (max-width:767px) {
  .section-vehicle .col1-img {
    padding-right: 0
  }
}

.section-vehicle h3 {
  line-height: 100%;
  margin-bottom: 0;
  margin-top: 1px
}

@media (min-width:768px) {
  .section-vehicle .available {
    padding-left: 1rem;
    position: relative;
    top: -2px
  }
}

@media (max-width:767px) {
  .section-vehicle .short-descr {
    font-size: .8em
  }
}

@media (min-width:768px) {
  .section-vehicle .short-descr {
    margin-bottom: 1rem
  }
}

.item.phone{
	background: url('/img/icon/phone.svg') no-repeat;
	padding-left: 20px;
	background-size: 12px;
	font-size: 0.85em;
	background-position: left center;
}
.item.open{
	background: url('/img/icon/clock.svg') no-repeat;
	padding-left: 20px;
	background-size: 12px;
	font-size: 0.85em;
	background-position: left center;
}
.item.email{
	background: url('/img/icon/email.svg') no-repeat;
	padding-left: 20px;
	background-size: 12px;
	font-size: 0.85em;
	background-position: left center;
}

.section-show {
  margin-bottom: 3rem;
  min-height: 500px;
  background-color: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
  padding: 1rem;
}

.section-show .DateRangePickerInput {
    border: 2px solid #242582;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .4);
}

.section-show .col1 .img {
  text-align: center
}

.section-show .link-button.back {
  margin: 0 0 1rem;
  text-align: left;
}

.section-show .img-small {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (min-width:992px) {
  .section-show .img-small {
    height: 204px;
  }
}

.section-show .img-small-wrap {
  background-color: #FFF;
  margin: 0;
  margin-bottom: 1rem;
  display: inline-block;
  max-width: 33%;
}

@media (max-width:991px) {
  .section-show .img-small-wrap {
    display: inline-block;
    max-width: 33%
  }
}

@media (max-width:767px) {
  .section-show .img-small-wrap {
    cursor: default;
    pointer-events: none;
    max-width: 50%
  }
}

@media (min-width:992px) {
  .section-show .img-small-wrap {
    cursor: pointer
  }
  .section-show .img-small-wrap:first-child {
    margin-top: 1rem
  }
}

.section-show .img-small-wrap:hover .img-small {
  opacity: .8
}

.section-show .img-count {
  line-height: 100%;
  text-transform: uppercase
}

.section-show h1 {
  line-height: 1;
  margin-bottom: 0
}

.section-show .category {
  font-size: .8em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-show h3 {
  margin-bottom: 0
}

.section-show .available {
  margin-bottom: .5rem
}

.section-show .prices-row {
  margin-bottom: 2rem
}

.section-show .prices-info {
  margin-bottom: 3rem
}

.section-show .info-row {
  margin-bottom: 1rem
}

.section-show .descr {
  white-space: pre-line
}

@media (max-width:767px) {
  .section-show .descr {
    margin-bottom: 1rem
  }
}

.section-show .equipment-title {
  font-weight: 700
}

.section-look-also-title h2 {
  line-height: 100%;
  margin-bottom: 0;
}

.available-title {
  background-color: #00b200;
  border-radius: 2px;
  color: #fff;
  font-size: .6em;
  font-weight: 700;
  display: inline;
  line-height: 100%;
  padding: 4px 8px;
  text-transform: uppercase
}

@media (min-width:768px) {
  .available-title {
    font-size: .8em
  }
}

.available-text {
  font-size: .8em;
  display: inline;
  padding-left: .5rem
}

.section-no-result {
  background: url("/img/icon/chat.svg") no-repeat 50% 2rem;
  background-size: 40px;
  padding-bottom: 8rem;
  padding-top: 6rem;
  text-align: center
}

@media (max-width:767px) {
  .section-no-result {
    padding-bottom: 2rem
  }
}

.section-no-result article {
  min-height: inherit
}

.section-no-result .text {
  margin-bottom: 2rem
}

.section-no-result .button {
  margin: 0 auto
}

.section-show .order {
  background-color: #FFF;
  box-shadow: none;
  margin-bottom: 0.5rem;
  padding: .5rem
}

.order {
  background-color: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
  margin-bottom: 0.5rem;
  padding: .5rem
}

.order .label {
  color: #777;
  font-size: .8em;
  margin-bottom: .5rem
}

.order .label,
.order .label2,
.order .value {
  line-height: 100%
}

.order .value {
  padding: 15px 0
}

.order .value2 {
  line-height: 100%;
  padding: 0
}

@media (max-width:767px) {
  .order .value2-sm-down {
    padding: 0
  }
}

.order .last {
  text-align: right
}

.order .last .value,
.order .last .value2 {
  font-weight: 700
}

@media (max-width:767px) {
  .order .field-wrap {
    margin-bottom: 1rem
  }
}

@media (min-width:768px) {
  .order {
    padding: 1rem
  }
  .order .DateRangePicker {
    padding-right: 1rem
  }
}

.section-order-col1 {
  text-align: center
}

.section-order-col1 .link-button.back {
  margin: 0 0 1rem
}

@media (min-width:768px) {
  .section-order-col1 .link-button.back {
    margin: 1rem 0 2.7rem
  }
}

.section-order-col1 h2 {
  color: #000;
  line-height: 100%;
  margin-bottom: 1rem;
  text-align: left
}

@media (max-width:991px) {
  .section-order-col1 .img-wrap {
    margin-bottom: 1rem
  }
}

.section-order-col1 .img-small {
  margin-bottom: 1rem
}

@media (max-width:991px) {
  .section-order-col1 .img-small {
    display: inline-block;
    float: left;
    width: 25%
  }
}

@media (max-width:767px) {
  .section-order-col1 .img-small {
    width: 40%
  }
}

.section-order-col1 h4 {
  margin-bottom: 1rem;
  text-align: left
}

@media (max-width:991px) {
  .section-order-col1 h4 {
    display: inline-block;
    float: left;
    padding-left: .5rem;
    width: 60%
  }
}

.section-order-col1 .descr {
  font-size: .9em;
  text-align: left
}

.section-order-col2 .steps {
  margin-bottom: 1rem
}

.section-order-col2 .steps-nr {
  background-color: #ccc;
  border-radius: 5%;
  color: #fff;
  display: block;
  font-family: Tahoma, sans-serif;
  font-size: 2em;
  height: 40px;
  line-height: 42px;
  text-align: center;
  width: 40px
}

.section-order-col2 .steps-nr.active {
  background-color: #FAD979
}

.section-order-col2 .steps-nr.done {
  background-color: #777
}

.section-order-col2 .steps-line {
  background-color: #ccc;
  height: 1px;
  margin: 19px .5rem 0
}

.section-order-col2 .error {
  margin-bottom: 1rem;
  margin-top: 0
}

@media (max-width:767px) {
  .section-order-col2 .error {
    font-size: .9em
  }
}

@media (min-width:768px) {
  .section-order-col2 .error {
    margin-bottom: 2rem
  }
}

.section-order-col2 .available,
.section-order-col2 .waiting {
  margin-bottom: .5rem
}

.section-order-col2 .waiting .title {
  background-color: #ff8000;
  border-radius: 2px;
  color: #fff;
  font-size: .6em;
  font-weight: 700;
  display: inline;
  line-height: 100%;
  padding: 4px 8px;
  text-transform: uppercase
}

@media (min-width:768px) {
  .section-order-col2 .waiting .title {
    font-size: .8em
  }
}

.section-order-col2 .waiting .text {
  font-size: .8em;
  display: inline;
  padding-left: .5rem
}

.section-order-col2 .checkboxgroup-wrap {
  border-top: 1px solid #fff;
  margin-top: .5rem;
  padding-top: .5rem
}

@media (min-width:768px) {
  .section-order-col2 .checkboxgroup-wrap {
    margin-top: 1rem;
    padding-top: 1rem
  }
}

.section-order-col2 .checkboxgroup label {
  font-size: .8em
}

@media (max-width:767px) {
  .section-order-col2 .checkboxgroup label {
    margin-bottom: 1rem
  }
}

@media (min-width:768px) {
  .section-order-col2 .checkboxgroup label {
    font-size: .9em
  }
}

.section-order-col2 .checkboxgroup.values label,
.section-order-col2 .checkboxgroup>div:last-child label {
  margin-bottom: 0
}

.section-order-col2 .message {
  background: #FCE181;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
  margin-top: 1rem
}

.section-order-col2 .message-content {
  font-size: .8em;
}

@media (max-width:767px) {
  .section-order-col2 .message-content div+div {
    margin-top: .5rem
  }
}

@media (min-width:768px) {
  .section-order-col2 .message-content {
    background: url("/img/icon/prices.svg") no-repeat 1rem 50%;
    background-size: 28px;
    font-size: .9em;
    margin-top: 0.5rem;
    min-height: 28px;
    padding-left: calc(28px + 2rem)
  }
}

.section-order-col2 .message-weekend {
  font-size: .8em;
  margin-top: .5rem
}

@media (min-width:768px) {
  .section-order-col2 .message-weekend {
    font-size: .9em;
    margin-top: 1rem
  }
}

.section-order-col2 .message-weekend .title {
  font-weight: 700
}

.section-order-col2 .message-weekend .text {
  margin-bottom: 1rem
}

.section-order-col2 .summary {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-right: 0;
  text-align: right;
  text-transform: uppercase
}

.section-order-col2 .summary-total {
  background-color: #00b200;
  border-radius: 4px;
  color: #fff;
  padding: 4px 8px
}

.section-order-col2 .summary-total-wo-discount {
  color: #ccc;
  font-weight: 400;
  padding: 4px 8px;
  text-decoration: line-through
}

.section-order-col2 .footer {
  margin-bottom: 3rem
}

.section-order-col2 .footer .button {
  padding-left: 0;
  padding-right: 0
}

.section-order-col2 .prices-info {
  margin-bottom: 1rem
}

.section-order-col2 .step1 h3 {
  margin-bottom: 0;
  margin-top: 1rem
}

.section-order-col2 .step1 .last-col .form-field {
  padding-bottom: 0
}

@media (min-width:768px) {
  .section-order-col2 .step1 .last-col-md-up .form-field {
    padding-bottom: 0
  }
}

.section-order-col2 .step1 .drivers {
  margin-bottom: 1rem
}

.section-order-col2 .step1 h4 {
  margin-bottom: 0
}

.section-order-col2 .step1 .link-button.add {
  font-size: .9em;
  margin: 0;
  position: relative;
  top: -.5rem
}

.section-order-col2 .step1 .magic-checkbox+label {
  margin-bottom: 0
}

.section-order-col2 .step1 .toggle {
  margin-bottom: 1rem
}

.section-order-col2 .step1 .toggle.opened {
  margin-bottom: .25rem
}

.order-modal-body {
  white-space: pre-line
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
  input.form-input {
    height: 46px
  }
}

header {
  background-color: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
}