/*

This file specifies styling for elements that interact
with stylesheets or JavaScript from 3rd party vendors.

These elements may require additional CSS rules to
override their vendor-provided defaults.

*/
/*

Custom colours for PayPal and Stripe related buttons.
Extends Bootstrap .btn class.
Used on payment settings page.

*/
.btn-paypal {
  background: #179BD7;
  border-color: #179BD7;
  border-radius: 4px !important;
  min-width: 140px;
  text-shadow: none;
  color: white;
  font-weight: bold; }
  .btn-paypal:hover {
    background: #20a9e7;
    color: white; }
  .btn-paypal.btn {
    min-width: 160px; }

.btn-stripe {
  background-color: #6772E5;
  border-color: #6772E5;
  border-radius: 4px !important;
  color: white;
  font-weight: bold; }
  .btn-stripe:hover {
    background: #7d86e9;
    color: white; }

.payment_stripe {
  font-size: 0; }

/*

Styling for .stripe-button-el
Stripe's checkout.js file generates a checkout button
with default styling. Here we override those styles
to make the button consistent with other Bootstrap
buttons and our custom theme.

*/
.stripe-button-el {
  background-image: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  -webkit-font-smoothing: inherit !important;
  margin-left: 10px !important;
  margin-right: 10px !important; }

.stripe-button-el span {
  font-size: inherit !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  text-shadow: none !important;
  box-shadow: none !important;
  height: auto !important;
  background-image: none !important;
  display: inline-block !important;
  padding: 6px 12px !important;
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.42857143 !important;
  text-align: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  -ms-touch-action: manipulation !important;
  touch-action: manipulation !important;
  cursor: pointer !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  border: 1px solid transparent !important;
  border-radius: 4px !important;
  display: inline-block !important;
  min-width: 160px !important;
  height: auto !important;
  line-height: 30px !important;
  background-color: #6772E5 !important;
  border-color: #6772E5 !important;
  color: white !important;
  font-weight: bold !important; }
  .stripe-button-el span:hover {
    background: #7d86e9 !important;
    color: white !important; }

@media (max-width: 767px) {
  .payment_stripe .stripe-button-el {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important; }
    .payment_stripe .stripe-button-el span {
      width: 100%; } }
.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

.switch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0.36rem; }
  .switch-container span {
    font-weight: bold; }
  .switch-container label {
    cursor: pointer;
    margin: 0; }
  .switch-container .switch {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em; }
    .switch-container .switch input[type="checkbox"] {
      opacity: 0;
      width: 0;
      height: 0; }
    .switch-container .switch .switch-track {
      cursor: pointer;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #dbd9de;
      transition: .4s;
      border-radius: 1em; }
      .switch-container .switch .switch-track:before {
        position: absolute;
        content: "";
        height: 1.5em;
        width: 1.5em;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%; }
    .switch-container .switch input[type="checkbox"]:checked + .switch-track {
      background-color: #578F7C; }
      .switch-container .switch input[type="checkbox"]:checked + .switch-track:before {
        transform: translateX(1.5em); }
    .switch-container .switch .note {
      margin-top: 0; }

.attachment-list-item {
  display: flex;
  list-style-type: none;
  justify-content: flex-start;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem; }
  .attachment-list-item .text {
    flex-grow: 1; }
  .attachment-list-item .attachment-name {
    font-weight: bold; }
  .attachment-list-item svg {
    background: #eee;
    border-radius: 10px;
    padding: 0.36rem;
    width: 3em;
    height: 3em;
    margin-right: 0.5em; }
  .attachment-list-item .btn {
    min-width: auto;
    border-radius: 20px;
    display: inline-block; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

body .main .trix-editor, body #body .trix-editor {
  position: relative;
  background-color: white;
  border-radius: 10px;
  z-index: 100;
  padding-bottom: 40px;
  border: 1px solid #ccc;
  overflow: hidden; }
  body .main .trix-editor form, body #body .trix-editor form {
    height: 100%; }
    body .main .trix-editor form .editor-content, body #body .trix-editor form .editor-content {
      height: 100%;
      display: grid;
      grid-template-rows: 1fr auto;
      grid-template-columns: 100%; }
  body .main .trix-editor trix-editor, body #body .trix-editor trix-editor {
    min-height: 100px !important;
    max-height: 800px !important;
    overflow-y: auto !important;
    border: 0;
    background: white; }
body .main trix-editor div, body .main trix-editor blockquote, body #body trix-editor div, body #body trix-editor blockquote {
  margin-bottom: 0.5em; }
body .main trix-editor h1, body #body trix-editor h1 {
  float: none;
  font-size: 1.5em; }
body .main trix-editor blockquote, body #body trix-editor blockquote {
  font-style: italic;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 2px solid #AE8CA3; }
body .main trix-toolbar, body #body trix-toolbar {
  background-color: #eee;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 5px;
  font-size: 20px;
  /* end common border */ }
  body .main trix-toolbar .trix-button-group, body #body trix-toolbar .trix-button-group {
    border: 0; }
    body .main trix-toolbar .trix-button-group button, body #body trix-toolbar .trix-button-group button {
      border: 0; }
  body .main trix-toolbar .trix-button--icon, body #body trix-toolbar .trix-button--icon {
    width: 2em;
    height: 2em; }
    body .main trix-toolbar .trix-button--icon:before, body #body trix-toolbar .trix-button--icon:before {
      background-size: 20px; }
  body .main trix-toolbar .trix-button-group--file-tools,
  body .main trix-toolbar .trix-button--icon-code,
  body .main trix-toolbar .trix-button-group--history-tools,
  body .main trix-toolbar .trix-button--icon-strike,
  body .main trix-toolbar .trix-button--icon-decrease-nesting-level,
  body .main trix-toolbar .trix-button--icon-increase-nesting-level, body #body trix-toolbar .trix-button-group--file-tools,
  body #body trix-toolbar .trix-button--icon-code,
  body #body trix-toolbar .trix-button-group--history-tools,
  body #body trix-toolbar .trix-button--icon-strike,
  body #body trix-toolbar .trix-button--icon-decrease-nesting-level,
  body #body trix-toolbar .trix-button--icon-increase-nesting-level {
    display: none; }
  body .main trix-toolbar .fe, body #body trix-toolbar .fe {
    font-size: 20px; }
  body .main trix-toolbar .fe.fe-send, body .main trix-toolbar .fe.fe-plus, body #body trix-toolbar .fe.fe-send, body #body trix-toolbar .fe.fe-plus {
    background-color: #578F7C;
    color: white;
    border-radius: 5px;
    width: 3em; }
    body .main trix-toolbar .fe.fe-send.htmx-request, body .main trix-toolbar .fe.fe-plus.htmx-request, body #body trix-toolbar .fe.fe-send.htmx-request, body #body trix-toolbar .fe.fe-plus.htmx-request {
      background-color: gray;
      background-image: url("/vendor/svg-loaders/puff-white.svg");
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 1.5em; }
      body .main trix-toolbar .fe.fe-send.htmx-request:before, body .main trix-toolbar .fe.fe-plus.htmx-request:before, body #body trix-toolbar .fe.fe-send.htmx-request:before, body #body trix-toolbar .fe.fe-plus.htmx-request:before {
        content: ""; }
  body .main trix-toolbar .trix-button-group--actions, body #body trix-toolbar .trix-button-group--actions {
    margin-left: auto; }
  body .main trix-toolbar .trix-button-group, body #body trix-toolbar .trix-button-group {
    margin-bottom: 0; }
    body .main trix-toolbar .trix-button-group:last-child, body #body trix-toolbar .trix-button-group:last-child {
      margin-right: 0.5vw; }
  body .main trix-toolbar .trix-dialog, body #body trix-toolbar .trix-dialog {
    bottom: 50px;
    top: auto; }

/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
    Article
\* ------------------------------------------------------------ */
.article {
  /*Tablet Portrait*/
  /*Mobile*/ }
  .article .article__head {
    margin-bottom: 44px; }
    .article .article__head h1 {
      margin-bottom: 3px;
      font-size: 20px;
      line-height: 1.2; }
    .article .article__head strong {
      font-size: 14px;
      color: #959fa6;
      font-weight: 500;
      letter-spacing: 0.28px;
      text-transform: uppercase; }
  .article .article__meta {
    padding-top: 8px;
    padding-bottom: 2px;
    border-top: 1px solid #e6edf2;
    border-bottom: 1px solid #e6edf2;
    margin-top: 40px;
    color: #959fa6; }
    .article .article__meta p {
      margin-bottom: 0;
      letter-spacing: 0; }
    .article .article__meta span {
      font-size: 12px;
      line-height: 2; }
  .article .article__entry p:not(:last-child) {
    margin-bottom: 10px; }
  .article .article__entry ul {
    letter-spacing: .13px; }
    .article .article__entry ul:not(:first-child) {
      margin-top: 14px; }
    .article .article__entry ul:not(:last-child) {
      margin-bottom: 12px; }
  @media (max-width: 1024px) {
    .article .article__head {
      margin-bottom: 48px; } }
  @media (max-width: 767px) {
    .article .article__head {
      margin-bottom: 32px; }
      .article .article__head h1 {
        margin-bottom: 2px; }
      .article .article__head strong {
        font-size: 12px;
        line-height: 1.25;
        letter-spacing: 0.24px; }
    .article .article__meta {
      margin-top: 29px;
      padding-top: 7px;
      padding-bottom: 4px;
      font-size: 12px;
      line-height: 2; }
      .article .article__meta span {
        font-size: 11px;
        line-height: 2.18; }
    .article .article__entry p {
      letter-spacing: 0; }
      .article .article__entry p:not(:last-child) {
        margin-bottom: 12px; } }

/* ------------------------------------------------------------ *\
	Avatar
\* ------------------------------------------------------------ */
.avatar {
  width: auto;
  height: auto;
  font-size: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  /*Mobile*/ }
  .avatar img {
    width: 38px;
    height: 38px;
    margin-right: 15px;
    border-radius: 100%; }
  @media (max-width: 767px) {
    .avatar {
      display: block;
      text-align: center; }
      .avatar img {
        display: block;
        width: 36px;
        height: 36px;
        margin: 0 auto 6px; }
      .avatar h2 {
        font-size: 15px;
        line-height: 1.2;
        font-weight: 500; } }

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
body {
  min-width: 320px;
  background: #fff;
  font-family: "Gotham Rounded", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #48525a;
  font-weight: normal; }

p {
  letter-spacing: 0.14px; }
  p:not(:last-child) {
    margin-bottom: 12px; }

a {
  color: #3287c6;
  text-decoration: none;
  transition: all 0.4s; }
  a:hover {
    color: #3287c6;
    text-decoration: underline; }
  a[href^="tel"]:hover, a[href^="tel"]:focus {
    text-decoration: none; }

p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: 1.22em; }

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 500; }

h1 {
  font-size: 22px;
  line-height: 1.09; }

h2 {
  font-size: 20px;
  line-height: 1.2; }

h3 {
  font-size: 18px;
  line-height: 1.33; }

h4 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .1px; }
  h4:not(:last-child) {
    margin-bottom: 12px; }

h5 {
  font-size: 14px;
  line-height: 1.71; }

h6 {
  font-size: 12px;
  line-height: 2; }

/* ------------------------------------------------------------ *\
	Btn
\* ------------------------------------------------------------ */
.btn {
  position: relative;
  display: inline-block;
  min-width: 336px;
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 44px;
  font-weight: bold;
  letter-spacing: 0.28px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: border 0.4s, color 0.4s, background 0.4s;
  appearance: none;
  -webkit-appearance: none;
  /*Mobile*/ }
  .btn:hover {
    text-decoration: none; }
  .btn-green {
    background: #6dae62;
    color: #fff; }
    .btn-green:hover {
      background: #4fa740;
      color: #fff; }
  .btn-menu {
    position: absolute;
    top: 26px;
    right: 28px;
    z-index: 999;
    display: none;
    width: 35px;
    height: 35px; }
    .btn-menu *,
    .btn-menu *:before,
    .btn-menu *:after {
      transition: background .4s, margin .4s, transform .4s; }
    .btn-menu span {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      margin-top: -1px;
      height: 1px;
      background-color: #000; }
      .btn-menu span:before, .btn-menu span:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        margin-top: -1px;
        height: 1px;
        background-color: #000; }
      .btn-menu span:before {
        margin-top: -15px; }
      .btn-menu span:after {
        margin-top: 14px; }
  @media (max-width: 767px) {
    .btn {
      min-width: auto;
      width: 100%;
      font-size: 13px;
      letter-spacing: 0.26px; }
      .btn i {
        margin-left: -2px; }
      .btn-menu {
        display: block; } }

body.show-nav-main .btn-menu span {
  background-color: transparent; }
  body.show-nav-main .btn-menu span:before, body.show-nav-main .btn-menu span:after {
    margin-top: -1px; }
  body.show-nav-main .btn-menu span:before {
    transform: rotate(45deg); }
  body.show-nav-main .btn-menu span:after {
    transform: rotate(-45deg); }

/* ------------------------------------------------------------ *\
  Calendar
\* ------------------------------------------------------------ */
#available-times, #available-times-loader {
  background: white;
  z-index: 100;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: none; }

.calendar {
  /*Tablet Portrait*/
  /*Mobile*/ }
  .calendar .calendar__head {
    padding-bottom: 3px;
    border-bottom: 1px solid #e6edf2;
    margin-bottom: 32px; }
    .calendar .calendar__head ul {
      display: flex;
      align-items: center;
      margin: 0 -10px;
      font-size: 11px;
      line-height: 1.27;
      font-weight: 500;
      letter-spacing: 0.66px;
      text-transform: uppercase;
      text-align: center;
      list-style: none; }
    .calendar .calendar__head li {
      width: 14.29%;
      padding: 4px 10px; }
  .calendar .calendar__section:not(:last-child) {
    margin-bottom: 32px; }
  .calendar .calendar__dates {
    text-align: center; }
    .calendar .calendar__dates h5 {
      margin-bottom: 19px;
      font-size: 20px;
      line-height: 1.2;
      color: #959fa6;
      font-weight: normal; }
      .calendar .calendar__dates h5.loading {
        max-width: 30%;
        color: transparent;
        background: #F1F1F1;
        margin: 0 auto;
        animation: pulse 1s infinite; }
    .calendar .calendar__dates ul {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -8px;
      list-style: none; }
      .calendar .calendar__dates ul:first-of-type {
        justify-content: flex-end; }
      .calendar .calendar__dates ul:not(:last-child) {
        margin-bottom: 16px; }
    .calendar .calendar__dates li {
      width: 14.28%;
      padding: 0 8px; }
      .calendar .calendar__dates li a {
        color: #48525a; }
        .calendar .calendar__dates li a:hover {
          color: #6dae62;
          text-decoration: none; }
      .calendar .calendar__dates li:nth-child(n+8) {
        margin-top: 16px; }
  .calendar .calendar__date {
    position: relative;
    padding: 0;
    border: 1px solid #454e59; }
    .calendar .calendar__date.unavailable li {
      color: #959fa6; }
    .calendar .calendar__date.loading {
      min-height: 150px;
      border: none;
      background: #F1F1F1;
      animation: pulse 1s infinite; }
      .calendar .calendar__date.loading:hover {
        cursor: default; }
        .calendar .calendar__date.loading:hover:before {
          border: none; }
    .calendar .calendar__date:before {
      content: '';
      position: absolute;
      top: -1px;
      right: -1px;
      bottom: -1px;
      left: -1px;
      border: 3px solid transparent;
      pointer-events: none; }
    .calendar .calendar__date strong {
      display: inline-block;
      font-family: "Gotham", sans-serif;
      font-size: 46px;
      line-height: 1.2;
      font-weight: 200;
      padding-bottom: 27px;
      padding-top: 32px;
      width: 100%; }
    .calendar .calendar__date span {
      display: block;
      font-size: 13px;
      line-height: 1.15;
      letter-spacing: .45px;
      padding-bottom: 14px; }
    .calendar .calendar__date:not(.unavailable) {
      cursor: pointer; }
      .calendar .calendar__date:not(.unavailable):hover, .calendar .calendar__date:not(.unavailable).selected {
        border-color: #6dae62;
        color: #6dae62; }
        .calendar .calendar__date:not(.unavailable):hover:before, .calendar .calendar__date:not(.unavailable).selected:before {
          border-color: #6dae62; }
        .calendar .calendar__date:not(.unavailable):hover strong, .calendar .calendar__date:not(.unavailable).selected strong {
          font-weight: normal; }
        .calendar .calendar__date:not(.unavailable):hover span, .calendar .calendar__date:not(.unavailable).selected span {
          font-weight: bold; }
    .calendar .calendar__date.unavailable {
      border-color: #dae1e6;
      color: #ced4d9;
      pointer-events: none; }
      .calendar .calendar__date.unavailable a {
        color: #dae1e6; }
  @media (max-width: 1024px) {
    .calendar .calendar__section:not(:last-child) {
      margin-bottom: 32px; }
    .calendar .calendar__head ul {
      padding: 0 6px; }
    .calendar .calendar__dates ul {
      margin: 0 -4px; }
      .calendar .calendar__dates ul:not(:last-child) {
        margin-bottom: 8px; }
    .calendar .calendar__dates li {
      padding: 0 4px; }
      .calendar .calendar__dates li:nth-child(n+8) {
        margin-top: 8px; }
    .calendar .calendar__dates h5 {
      font-size: 16px;
      line-height: 1.19; }
      .calendar .calendar__dates h5.loading {
        max-width: 30%;
        color: transparent;
        background: #F1F1F1;
        margin: 0 auto;
        animation: pulse 1s infinite; }
    .calendar .calendar__date {
      padding: 0;
      min-height: 150px; }
      .calendar .calendar__date strong {
        font-size: 32px;
        line-height: 1.22; }
      .calendar .calendar__date span {
        font-size: 11px;
        line-height: 1.5; }
      .calendar .calendar__date.loading {
        min-height: 150px;
        border: none;
        background: #F1F1F1;
        animation: pulse 1s infinite; }
        .calendar .calendar__date.loading:hover {
          cursor: default; }
          .calendar .calendar__date.loading:hover:before {
            border: none; } }
  @media (max-width: 767px) {
    .calendar .calendar__head {
      display: none; }
    .calendar .calendar__section:not(:last-child) {
      margin-bottom: 15px; }
    .calendar .calendar__week {
      position: relative;
      padding: 8px 0 9px;
      font-family: "Proxima Nova Soft", sans-serif;
      font-size: 10px;
      line-height: 1.2;
      color: #ced4d9;
      font-weight: 500;
      letter-spacing: 0.4px;
      text-align: center;
      text-transform: uppercase; }
      .calendar .calendar__week:before {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        transform: translateY(-50%);
        height: 1px;
        background: #ced4d9; }
      .calendar .calendar__week span {
        position: relative;
        display: inline-block;
        padding: 0 8px;
        background: #fff; }
    .calendar .calendar__dates h5 {
      margin-bottom: 15px;
      font-size: 14px;
      line-height: 1.14;
      letter-spacing: 0; }
      .calendar .calendar__dates h5.loading {
        max-width: 30%;
        color: transparent;
        background: #F1F1F1;
        margin: 0 auto;
        animation: pulse 1s infinite; }
    .calendar .calendar__dates ul:not(:last-child) {
      margin-bottom: 0; }
    .calendar .calendar__dates li {
      width: 100%; }
      .calendar .calendar__dates li a {
        width: 100%; }
    .calendar .calendar__date {
      min-height: auto;
      display: flex;
      justify-content: space-between;
      padding: 15px 19px;
      border-color: #6dae62;
      border-width: 1px;
      border-radius: 2px;
      margin: 6px 0;
      color: #6dae62; }
      .calendar .calendar__date strong {
        margin-bottom: 0;
        font-family: "Gotham Rounded", sans-serif;
        font-size: 13px;
        line-height: 1.15;
        font-weight: 500;
        padding: 0;
        left: 0;
        width: 100%;
        text-align: left; }
        .calendar .calendar__date strong:after {
          content: attr(data-day);
          margin-left: 4px; }
      .calendar .calendar__date span {
        position: relative;
        display: inline-block;
        padding-right: 35px;
        font-size: 13px;
        line-height: 1.15;
        font-weight: 500;
        letter-spacing: .1px;
        right: 0;
        position: absolute;
        top: 22px; }
        .calendar .calendar__date span:after {
          content: '';
          position: absolute;
          top: 2px;
          right: 0;
          width: 12px;
          height: 9px;
          background-image: url(/images/arrow-right-green@2x.png);
          background-size: 100%;
          background-position: center;
          margin-right: 17px; }
      .calendar .calendar__date:before {
        display: none; }
      .calendar .calendar__date.unavailable {
        display: none; }
      .calendar .calendar__date.loading {
        min-height: 150px;
        border: none;
        background: #F1F1F1;
        animation: pulse 1s infinite; }
        .calendar .calendar__date.loading:hover {
          cursor: default; }
          .calendar .calendar__date.loading:hover:before {
            border: none; }
      .calendar .calendar__date:not(.unavailable):hover strong, .calendar .calendar__date:not(.unavailable).selected strong {
        font-weight: 500; }
      .calendar .calendar__date:not(.unavailable):hover span, .calendar .calendar__date:not(.unavailable).selected span {
        font-weight: 500; } }
@keyframes pulse {
  0% {
    opacity: 0.5; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.5; } }
/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.container {
  max-width: 948px;
  padding-right: 24px;
  padding-left: 24px;
  /*Tablet Portrait*/ }
  .container-lg {
    max-width: 1152px; }
  .container-md {
    max-width: 960px; }
  .container-sm {
    max-width: 576px; }
  @media (max-width: 1024px) {
    .container {
      max-width: 528px; }
      .container-lg, .container-md {
        max-width: 728px; }
      .container-sm {
        max-width: 576px; } }

/* ------------------------------------------------------------ *\
	Content
\* ------------------------------------------------------------ */
.content {
  position: relative;
  width: 60%;
  padding-left: 60px;
  /*Tablet Portrait*/ }
  .content:before {
    content: '';
    position: absolute;
    top: 9px;
    bottom: 7px;
    left: 0;
    width: 1px;
    background: #f0f4f7; }
  @media (max-width: 1024px) {
    .content {
      width: 100%;
      padding-left: 0; }
      .content:before {
        display: none; } }

/*
  TODO implement styles for error bars here.
*/
.alert.alert-warning a {
  text-decoration: underline;
  color: #856404; }

/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */
@font-face {
  font-family: 'Gotham';
  src: url("../css/fonts/Gotham-ExtraLight.woff2") format("woff2"), url("../css/fonts/Gotham-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal; }
@font-face {
  font-family: 'Gotham';
  src: url("../css/fonts/Gotham-Book.woff2") format("woff2"), url("../css/fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gotham';
  src: url("../css/fonts/Gotham-Black.woff2") format("woff2"), url("../css/fonts/Gotham-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: 'Gotham Rounded';
  src: url("../css/fonts/GothamRoundedBook.woff2") format("woff2"), url("../css/fonts/GothamRoundedBook.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gotham Rounded';
  src: url("../css/fonts/GothamRoundedMedium.woff2") format("woff2"), url("../css/fonts/GothamRoundedMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Gotham Rounded';
  src: url("../css/fonts/GothamRoundedBold.woff2") format("woff2"), url("../css/fonts/GothamRoundedBold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: 'Proxima Nova Soft';
  src: url("../css/fonts/ProximaNovaSoft-Medium.woff2") format("woff2"), url("../css/fonts/ProximaNovaSoft-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }
/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer {
  padding: 50px 0;
  background: #000;
  font-size: 22px;
  line-height: 1.25;
  color: #fff; }

/* ------------------------------------------------------------ *\
	Field
\* ------------------------------------------------------------ */
.field {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  border: 1px solid #d9e2e5;
  border-radius: 2px;
  background: #f9fbfc;
  font-size: 14px;
  line-height: 42px;
  color: #36474d;
  letter-spacing: 0.28px;
  transition: border 0.4s, background 0.4s;
  webkit-appearance: none;
  appearance: none; }
  .field:focus {
    border-color: #3287c6; }

.textarea {
  display: block;
  width: 100%;
  height: 299px;
  padding: 12px 15px;
  border: 1px solid #d9e2e5;
  border-radius: 2px;
  background: #f9fbfc;
  font-size: 14px;
  line-height: 1.64;
  color: #36474d;
  letter-spacing: 0.28px;
  transition: border 0.4s, background 0.4s;
  webkit-appearance: none;
  appearance: none;
  resize: none;
  /*Tablet Portrait*/
  /*Mobile*/ }
  .textarea:focus {
    border-color: #3287c6; }
  @media (max-width: 1024px) {
    .textarea {
      height: 229px; } }
  @media (max-width: 767px) {
    .textarea {
      height: 188px; } }

.select {
  /*Tablet Portrait*/
  /*Mobile*/ }
  .select-timezone {
    position: relative;
    display: inline-block;
    justify-content: center;
    font-size: 13px;
    line-height: 1.15; }
    .select-timezone select {
      transform: translateX(-6px);
      display: inline-block;
      border: none;
      padding-right: 19px;
      padding-left: 5px;
      font-weight: 500;
      color: #3287c6;
      background: transparent;
      appearance: none;
      width: 70%; }
      .select-timezone select::-ms-expand {
        display: none; }
    .select-timezone p {
      display: inline-block;
      margin-bottom: 0; }
  @media (max-width: 1024px) {
    .select-timezone p {
      letter-spacing: 0; } }
  @media (max-width: 767px) {
    .select-timezone {
      font-size: 12px;
      line-height: 1.25; }
      .select-timezone:after {
        right: 50px;
        width: 6px;
        height: 6px;
        margin-top: -2px; }
      .select-timezone p {
        margin-right: 0; }
      .select-timezone select {
        transform: none;
        margin-left: -5px;
        width: 45%; } }

.checkbox {
  /*Mobile*/ }
  .checkbox-green {
    padding: 21px 24px 16px;
    border-radius: 2px;
    background: #f7f7f7; }
    .checkbox-green label {
      position: relative;
      padding-left: 31px;
      margin-bottom: 0;
      color: #48525a;
      font-weight: 500;
      cursor: pointer; }
      .checkbox-green label:before {
        content: '';
        position: absolute;
        top: 3px;
        left: 0;
        width: 16px;
        height: 16px;
        background-image: url(images/checkbox-unchecked@2x.png);
        background-size: 100%;
        background-position: center; }
      .checkbox-green label:after {
        display: none;
        content: '';
        position: absolute;
        top: 3px;
        left: 0;
        width: 19px;
        height: 16px;
        background-image: url(images/checkbox@2x.png);
        background-size: 100%;
        background-position: center; }
    .checkbox-green input {
      display: none; }
      .checkbox-green input:checked + label {
        color: #6dae62; }
        .checkbox-green input:checked + label:before {
          display: none; }
        .checkbox-green input:checked + label:after {
          display: block; }
  @media (max-width: 767px) {
    .checkbox-green {
      padding: 21px 24px 15px; }
      .checkbox-green label {
        padding-left: 31px;
        font-weight: normal; } }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

.questionnaire .introduction {
  padding: 1.1rem;
  font-size: 1.2em;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #dbd9de; }
  .questionnaire .introduction p {
    color: #8c8797; }
.questionnaire .question {
  padding: 1.1rem;
  font-size: 1.2em;
  margin-bottom: 1.1rem; }
  .questionnaire .question:focus-within {
    border-radius: 20px;
    background: #f9fbfa; }
  .questionnaire .question .form-group {
    padding: 0;
    margin: 0; }
.questionnaire .description {
  color: #8c8797; }
.questionnaire .continue-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed #dbd9de; }

.checkbox label {
  display: flex;
  align-items: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em; }
.checkbox span {
  line-height: 1.2em; }
.checkbox input[type=checkbox] {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em; }
.checkbox input:checked + span {
  font-weight: bold; }

.radio label {
  display: flex;
  align-items: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em; }
.radio span {
  line-height: 1.2em; }
.radio input[type=radio] {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em; }
.radio input:checked + span {
  font-weight: bold; }

/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */
.form {
  /*Tablet Portrait*/
  /*Mobile*/ }
  .form .form__label {
    display: block;
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1.27;
    color: #36474d;
    font-weight: normal;
    letter-spacing: 1.1px;
    text-transform: uppercase; }
  .form .form__head {
    margin-bottom: 42px; }
  .form .form__body .row {
    margin: 0 -24px; }
  .form .form__body [class^="col"] {
    padding: 0 24px; }
  .form .form__row {
    position: relative;
    margin-bottom: 18px; }
  .form .form__actions {
    padding-top: 35px;
    border-top: 1px solid #e6edf2;
    margin-top: 46px;
    text-align: center; }
  .form .form__error {
    position: absolute;
    top: 0;
    right: -1px;
    font-size: 11px;
    line-height: 1.27;
    color: #e25a5a;
    font-weight: normal;
    letter-spacing: 1.1px;
    text-transform: uppercase; }
  .form .error .field {
    border-color: #e25a5a; }
  .form .error .form__label {
    padding-right: 80px;
    color: #e25a5a; }
  @media (max-width: 1024px) {
    .form .form__body [class^="col"] {
      max-width: 100%;
      flex: 0 0 100%; }
      .form .form__body [class^="col"]:first-child {
        order: 2; }
      .form .form__body [class^="col"]:last-child {
        order: 1; }
    .form .form__actions {
      margin-top: 42px; } }
  @media (max-width: 767px) {
    .form .form__label {
      margin-bottom: 10px;
      font-size: 10px;
      line-height: 1.2;
      letter-spacing: 1px; }
    .form .form__row {
      margin-bottom: 18px; }
    .form .form__actions {
      padding-top: 0;
      border-top: 0;
      margin-top: 30px; } }

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
.header {
  padding-top: 44px;
  background: #41484d;
  /*Tablet Portrait*/
  /*Mobile*/ }
  .header .header__content {
    padding-bottom: 32px; }
  @media (max-width: 1024px) {
    .header .container {
      max-width: 100%; } }
  @media (max-width: 767px) {
    .header {
      padding-top: 22px; }
      .header .header__content {
        padding-bottom: 9px; } }

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
/*  Clear  */
.clear:after {
  content: '';
  line-height: 0;
  display: table;
  clear: both; }

/*  Notext  */
.notext {
  font-size: 0;
  line-height: 0;
  text-indent: -4000px; }

/*  Hidden  */
[hidden],
.hidden {
  display: none !important; }

/*  Alignleft  */
.alignleft {
  float: left; }

/*  Alignright  */
.alignright {
  float: right; }

/*  Disabled  */
[disabled],
.disabled {
  cursor: default; }

/*  Cols  */
.cols {
  margin: 0 -15px; }
  .cols:after {
    content: '';
    clear: both;
    display: table;
    line-height: 0; }

.col {
  float: left;
  padding: 0 15px;
  /* Mobile */ }
  .col--1of2 {
    width: 50%; }
  .col--2of3 {
    width: 66.66%; }
  .col--1of3 {
    width: 33.33%; }
  @media (max-width: 767px) {
    .col {
      float: none;
      width: 100%;
      padding: 0;
      margin-bottom: 30px; } }

/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

/*Mobile Portrait*/
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; }

  .visible-xs-block {
    display: block !important; }

  .visible-xs-inline {
    display: inline !important; }

  .visible-xs-inline-block {
    display: inline-block !important; } }
@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-sm {
    display: none !important; }

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

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

  .visible-sm-inline-block {
    display: inline-block !important; } }
@media (min-width: 1025px) and (max-width: 1200px) {
  .hidden-md {
    display: none !important; }

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

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

  .visible-md-inline-block {
    display: inline-block !important; } }
@media (min-width: 1201px) {
  .hidden-lg {
    display: none !important; }

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

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

  .visible-lg-inline-block {
    display: inline-block !important; } }
/* ------------------------------------------------------------ *\ 
	# Icons
\* ------------------------------------------------------------ */
[class^="ico-"] {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background-size: 100%;
  font-size: 0;
  line-height: 0;
  text-indent: -4004px; }

.ico {
  /*Mobile*/ }
  .ico-arrow-right-white {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 8px;
    background-image: url(../css/images/arrow-right-white@2x.png);
    background-size: 100%;
    background-position: center; }
  .ico-arrow-right-blue {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 8px;
    background-image: url(../css/images/arrow-right-blue@2x.png);
    background-size: 100%;
    background-position: center; }
  .ico-arrow-left-green {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 11px;
    background-image: url(../css/images/arrow-left-green@2x.png);
    background-size: 100%;
    background-position: center; }
  @media (max-width: 767px) {
    .ico-arrow-left-green {
      width: 13px;
      height: 10px; } }

/* ------------------------------------------------------------ *\
	List
\* ------------------------------------------------------------ */
[class^="list-"] {
  list-style: none;
  margin-bottom: 0; }

.list {
  /*Tablet Portrait*/
  /*Mobile*/ }
  .list-links {
    display: flex;
    justify-content: center;
    width: calc(100% + 200px);
    margin: 0 -100px; }
    .list-links ul {
      margin: 0 -21px; }
    .list-links li {
      padding: 0 21px; }
      .list-links li + li {
        position: relative; }
        .list-links li + li:before {
          content: '';
          position: absolute;
          top: 50%;
          left: -7px;
          transform: rotate(25deg) translateY(-50%);
          width: 2px;
          height: 22px;
          border: 1px solid #b8c7cc; }
    .list-links a {
      font-size: 13px;
      line-height: 1.15;
      font-weight: 500;
      letter-spacing: 0.3px; }
    .list-links i {
      margin-left: 0;
      transform: translateY(-1px); }
  .list-steps {
    display: flex;
    justify-content: center;
    margin: 0 -11px;
    font-size: 11px;
    line-height: 1.27;
    color: #7e878c;
    letter-spacing: .4px;
    font-weight: 500;
    text-transform: uppercase; }
    .list-steps li {
      padding: 10px 0 13px;
      margin: 0 11px; }
      .list-steps li.current {
        position: relative;
        color: #fff;
        font-weight: bold; }
        .list-steps li.current:after {
          content: '';
          position: absolute;
          right: 0;
          bottom: 0;
          left: 0;
          height: 3px;
          background: #3287c6; }
      .list-steps li.checked:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 11px;
        height: 8px;
        margin-right: 4px;
        background-image: url(../css/images/check@2x.png);
        background-size: 100%;
        background-position: center; }
  .list-payment {
    border-top: 1px solid #e6edf2; }
    .list-payment li {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      transition: background 0.4s; }
      .list-payment li.checked {
        background: #f7f7f7; }
        .list-payment li.checked .list__expanded {
          position: relative;
          opacity: 1;
          visibility: visible;
          transition: opacity 0.4s, visibility 0.4s; }
    .list-payment .radio {
      width: 100%; }
    .list-payment strong {
      position: absolute;
      top: 18px;
      right: 24px;
      font-size: 18px;
      line-height: 1.33;
      font-weight: normal;
      letter-spacing: 0.18px; }
    .list-payment label {
      position: relative;
      width: 100%;
      padding: 18px 150px 18px 56px;
      margin-bottom: 0;
      font-size: 18px;
      line-height: 1.33;
      letter-spacing: 0.18px;
      cursor: pointer; }
      .list-payment label:before {
        content: '';
        position: absolute;
        top: 18px;
        left: 20px;
        width: 24px;
        height: 24px;
        border: 2px solid #3287c6;
        border-radius: 100%; }
      .list-payment label:after {
        content: '';
        position: absolute;
        top: 23px;
        left: 25px;
        width: 14px;
        height: 14px;
        border-radius: 100%;
        background: transparent;
        transition: background 0.4s; }
    .list-payment input {
      display: none; }
      .list-payment input:checked + label:after {
        background: #3287c6; }
    .list-payment .list__expanded {
      position: absolute;
      width: 100%;
      padding: 0 22px 18px 56px;
      font-size: 11px;
      line-height: 1.45;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      opacity: 0;
      visibility: hidden; }
      .list-payment .list__expanded:before {
        content: '+';
        position: absolute;
        top: 11px;
        right: 5px;
        font-size: 13px;
        line-height: 1.23;
        letter-spacing: 1.3px; }
      .list-payment .list__expanded-inner {
        display: flex;
        justify-content: space-between;
        padding-bottom: 4px; }
        .list-payment .list__expanded-inner:last-child {
          padding-top: 4px;
          border-top: 1px solid #d9e2e5; }
  .list-offer-summary li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 14px;
    border-bottom: 1px solid #e6edf2; }
    .list-offer-summary li p {
      margin-bottom: 0;
      font-size: 11px;
      line-height: 1.38;
      letter-spacing: 1.1px;
      text-transform: uppercase; }
    .list-offer-summary li span {
      transform: translateY(-2px);
      font-size: 18px;
      line-height: 1.33;
      letter-spacing: 0.18px; }
    .list-offer-summary li:first-child {
      border-top: 1px solid #e6edf2; }
  .list-offers {
    margin-left: 0; }
    .list-offers li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      border-bottom: 1px solid #e6edf2;
      font-size: 13px;
      line-height: 1.15;
      font-weight: 500;
      letter-spacing: -.45px;
      cursor: pointer; }
      .list-offers li.current {
        position: relative;
        background: #3287c6;
        color: #fff; }
        .list-offers li.current:after {
          content: '';
          position: absolute;
          top: 0;
          right: -8px;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 22px 0 22px 8px;
          border-color: transparent transparent transparent #3287c6; }
      .list-offers li h5 {
        margin-bottom: 0;
        font-size: 13px;
        line-height: 1.15;
        letter-spacing: 0; }
  @media (max-width: 1024px) {
    .list-offers {
      background: #f7f7f7; }
      .list-offers li {
        border-right: 1px solid #e6edf2;
        border-left: 1px solid #e6edf2; }
        .list-offers li.current {
          border-color: #3287c6; }
          .list-offers li.current:after {
            display: none; }
        .list-offers li span {
          letter-spacing: 0.26px; }
        .list-offers li:first-child {
          border-radius: 2px 2px 0 0; }
        .list-offers li:last-child {
          border-radius: 0 0 2px 2px; } }
  @media (max-width: 767px) {
    .list-offers {
      width: calc(100% + 48px);
      margin: 0 -24px; }
      .list-offers li {
        padding: 15px 23px;
        letter-spacing: 0; }
    .list-steps {
      justify-content: flex-start;
      margin: 0 -8px;
      font-size: 9px;
      line-height: 1.22;
      letter-spacing: 0.33px;
      white-space: nowrap; }
      .list-steps li {
        padding: 10px 0;
        margin: 0 8px; }
    .list-offer-summary li {
      display: block;
      padding: 13px 0; }
      .list-offer-summary li p {
        margin-bottom: 9px;
        font-size: 10px;
        line-height: 1.2;
        letter-spacing: 0.4px; }
        .list-offer-summary li p br {
          display: none; }
      .list-offer-summary li span {
        margin-bottom: 3px;
        transform: none;
        font-size: 16px;
        line-height: 1.19;
        letter-spacing: 0.16px; }
    .list-payment li:not(:last-child) {
      margin-bottom: 5px; }
    .list-payment label {
      padding: 15px 15px 11px 46px;
      font-size: 16px;
      line-height: 1.19;
      letter-spacing: 0.16px; }
      .list-payment label:before {
        top: 14px;
        left: 14px;
        width: 21px;
        height: 21px; }
      .list-payment label:after {
        top: 19px;
        left: 19px;
        width: 11px;
        height: 11px; }
    .list-payment strong {
      position: static;
      padding-left: 46px;
      margin-bottom: 10px;
      font-size: 16px;
      line-height: 1.19;
      letter-spacing: 0.16px; }
    .list-payment .list__expanded {
      padding: 0 34px 12px 46px;
      font-size: 10px;
      line-height: 1.6;
      letter-spacing: 1px; }
      .list-payment .list__expanded:before {
        top: 31px;
        right: 13px; }
      .list-payment .list__expanded-inner {
        display: block;
        padding-bottom: 4px; }
        .list-payment .list__expanded-inner span {
          display: block; }
          .list-payment .list__expanded-inner span + span {
            margin-top: 2px; }
        .list-payment .list__expanded-inner:last-child {
          padding-top: 3px; }
    .list-links {
      display: block;
      width: 100%;
      margin: 0; }
      .list-links li + li {
        margin-top: 22px; }
        .list-links li + li:before {
          display: none; }
      .list-links a {
        letter-spacing: 0.26px; } }

.loaded_content__loading_error {
  display: none; }

.loaded_content.error .loaded_content__loading_error {
  display: block; }

.loaded_content.error .loaded_content__loading_indicator {
  display: none; }

/* ------------------------------------------------------------ *\
	Logo
\* ------------------------------------------------------------ */
.logo {
  float: left;
  display: inline-block;
  max-width: 180px; }
  .logo:hover {
    opacity: .7; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav {
  float: right;
  /*Mobile*/ }
  .nav ul {
    margin: 0 -20px;
    font-size: 0;
    text-align: justify;
    list-style: none; }
  .nav li {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    font-size: 16px; }
    .nav li:after {
      content: '';
      position: absolute;
      right: 50%;
      left: 50%;
      bottom: 0px;
      height: 1px;
      background: #000;
      opacity: 0;
      visibility: hidden;
      transition: right 0.4s, left 0.4s, opacity 0.4s, visibility 0.4s; }
    .nav li.current a,
    .nav li a:hover {
      color: #000;
      text-decoration: none; }
    .nav li.current:after, .nav li:hover:after {
      right: 0px;
      left: 0px;
      opacity: 1;
      visibility: visible; }
    .nav li ul {
      position: absolute;
      top: 46px;
      left: 0;
      width: 200px;
      padding: 20px;
      color: #fff;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s; }
      .nav li ul:before {
        content: '';
        position: absolute;
        top: -25px;
        left: 0;
        width: 100%;
        height: 25px;
        background: transparent; }
    .nav li li {
      display: block; }
      .nav li li:after {
        display: none; }
      .nav li li a {
        position: relative;
        display: inline-block; }
        .nav li li a:after {
          content: '';
          position: absolute;
          right: 50%;
          left: 50%;
          bottom: 0;
          height: 1px;
          background: #fff;
          opacity: 0;
          visibility: hidden;
          transition: right 0.4s, left 0.4s, opacity 0.4s, visibility 0.4s; }
        .nav li li a:hover {
          color: #fff; }
          .nav li li a:hover:after {
            right: 0;
            left: 0;
            opacity: 1;
            visibility: visible; }
    .nav li:hover ul {
      opacity: 1;
      visibility: visible; }
  .nav a {
    position: relative;
    display: block; }
    .nav a:hover {
      text-decoration: none; }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 80px;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 30;
      min-height: calc(100vh - 80px);
      padding: 0;
      opacity: 0;
      visibility: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      transition: opacity 0.4s, visibility 0.4s; }
      .nav ul {
        padding: 40px 20px;
        margin: 0; }
      .nav li {
        display: block;
        padding: 5px 0; }
        .nav li.current a {
          color: #fff; }
        .nav li:after {
          display: none; }
        .nav li ul {
          position: static;
          max-height: 0;
          padding-top: 0;
          padding-bottom: 0;
          background: transparent;
          box-shadow: none;
          transition: padding 0.4s, max-height 0.4s; }
        .nav li li a {
          font-size: 30px; }
        .nav li:hover ul {
          padding-top: 20px;
          padding-bottom: 20px;
          max-height: inherit; }
      .nav a {
        font-size: 40px;
        color: #fff; } }

body.show-nav-main .nav {
  opacity: 1;
  visibility: visible; }

/* ------------------------------------------------------------ *\
	Password
\* ------------------------------------------------------------ */
.password {
  display: flex;
  /*Mobile*/ }
  .password .password__field {
    width: calc(100% - 160px);
    height: 44px;
    padding: 0 15px;
    border: 1px solid #d9e2e5;
    border-radius: 2px;
    background: #f9fbfc;
    font-size: 14px;
    line-height: 42px;
    color: #959fa6;
    letter-spacing: 0.28px;
    transition: border 0.4s, background 0.4s;
    webkit-appearance: none;
    appearance: none;
    margin-right: 5px; }
    .password .password__field:focus {
      border-color: #5aa8e2; }
  .password .password__btn {
    min-width: auto;
    width: 144px;
    margin-left: 16px; }
  @media (max-width: 767px) {
    .password {
      display: block; }
      .password .password__field {
        width: 100%;
        padding: 0 14px; }
      .password .password__btn {
        width: 100%;
        margin-top: 12px;
        margin-left: 0; } }

/* ------------------------------------------------------------ *\
	Payment
\* ------------------------------------------------------------ */
.payment {
  /*Mobile*/ }
  .payment h2 {
    margin-bottom: 44px;
    font-size: 22px;
    line-height: 1.09;
    text-align: center; }
  .payment:not(:last-child) {
    margin-bottom: 52px; }
  .payment .tax-exclusive {
    margin-right: 2em;
    text-align: right;
    font-style: italic; }
  @media (max-width: 767px) {
    .payment:not(:last-child) {
      margin-bottom: 52px; }
    .payment h2 {
      margin-bottom: 31px;
      font-size: 20px;
      line-height: 1.2;
      text-align: left; } }

/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box; }

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

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block; }

html {
  text-size-adjust: 100%; }

body {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle; }

strong {
  font-weight: bold; }

small {
  font-size: 80%; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased; }

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="submit"],
textarea,
button {
  -webkit-appearance: none; }

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: inherit; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"]
label[for] {
  cursor: pointer; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

button {
  overflow: visible; }

textarea {
  overflow: auto;
  resize: none; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }

th,
td {
  padding: 0; }

/* ------------------------------------------------------------ *\
	Section About
\* ------------------------------------------------------------ */
.section {
  /*Tablet Portrait*/
  /*Mobile*/ }
  .section-complete {
    padding: 54px 0 35px;
    font-size: 13px;
    line-height: 1.54; }
    .section-complete .section__head {
      padding-bottom: 57px;
      border-bottom: 1px solid #e6edf2;
      margin-bottom: 21px;
      font-size: 13px;
      line-height: 1.15;
      font-weight: 500;
      letter-spacing: 0.26px;
      text-align: center; }
      .section-complete .section__head-inner {
        margin-bottom: 16px; }
        .section-complete .section__head-inner p {
          margin-bottom: 13px;
          letter-spacing: 0; }
        .section-complete .section__head-inner strong {
          display: inline-block;
          padding-bottom: 9px;
          border-bottom: 1px solid #d9e2e5;
          font-family: "Gotham", sans-serif;
          font-size: 46px;
          line-height: 1.2;
          font-weight: 900;
          letter-spacing: -2.76px; }
      .section-complete .section__head > strong {
        font-weight: 500;
        letter-spacing: .08px; }
      .section-complete .section__head .list-links {
        margin-top: 34px; }
    .section-complete .section__entry p:first-child {
      margin-bottom: 18px; }
    .section-complete .section__foot {
      padding-top: 19px;
      border-top: 1px solid #e6edf2;
      margin-top: 18px;
      line-height: 1.85; }
      .section-complete .section__foot p:not(:last-child) {
        margin-bottom: 16px; }
  .section-payment {
    padding: 51px 0; }
    .section-payment .section__actions {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 35px;
      border-top: 1px solid #e6edf2;
      margin-top: 60px; }
      .section-payment .section__actions strong {
        padding: 0 15px;
        font-size: 12px;
        line-height: 1.33;
        color: #959fa6;
        font-weight: bold;
        text-transform: uppercase;
        vertical-align: middle; }
      .section-payment .section__actions .btn {
        min-width: 160px;
        margin-left: 10px;
        margin-right: 10px; }
  .section-terms {
    padding: 53px 0 35px; }
    .section-terms .section__head {
      margin-bottom: 39px; }
    .section-terms .section__body span {
      font-family: "Georgia", serif;
      color: #959fa6;
      font-style: italic; }
    .section-terms .section__body h4 {
      margin-top: 24px; }
    .section-terms .section__body strong {
      font-weight: 500;
      letter-spacing: .2px; }
    .section-terms .section__body .checkbox-green {
      margin-top: 39px; }
    .section-terms .section__actions {
      padding-top: 35px;
      border-top: 1px solid #e6edf2;
      margin-top: 59px;
      text-align: center; }
  .section-sidebar {
    padding: 53px 0 35px; }
    .section-sidebar .section__body {
      display: flex;
      flex-wrap: wrap; }
    .section-sidebar .section__actions {
      padding-top: 35px;
      border-top: 1px solid #e6edf2;
      margin-top: 53px;
      text-align: center; }
  .section-time {
    padding: 32px 0; }
    .section-time .section__head {
      margin-bottom: 26px;
      text-align: center; }
  .section-contact {
    padding: 49px 0; }
    .section-contact .section__head {
      margin-bottom: 42px;
      text-align: center; }
      .section-contact .section__head p {
        font-size: 13px;
        line-height: 1.85;
        letter-spacing: 0.13px; }
  @media (max-width: 1024px) {
    .section-sidebar {
      padding: 56px 0 35px; }
    .section-contact {
      padding-bottom: 35px; }
      .section-contact .container {
        max-width: 480px; }
    .section-payment {
      padding-top: 53px; } }
  @media (max-width: 767px) {
    .section-sidebar {
      padding: 38px 0 24px; }
      .section-sidebar .section__actions {
        padding-top: 0;
        border-top: 0;
        margin-top: 39px; }
    .section-time {
      padding: 16px 0; }
      .section-time .section__head {
        margin-bottom: 12px; }
    .section-contact {
      padding: 39px 0 24px; }
      .section-contact .section__head {
        margin-bottom: 28px; }
        .section-contact .section__head p {
          font-size: 12px;
          line-height: 2;
          letter-spacing: 0.12px; }
    .section-terms {
      padding: 41px 0 24px; }
      .section-terms .section__head {
        margin-bottom: 26px; }
        .section-terms .section__head h1 {
          font-size: 20px;
          line-height: 1.2; }
      .section-terms .section__body h4 {
        margin-top: 24px; }
      .section-terms .section__body .checkbox-green {
        width: calc(100% + 48px);
        margin: 51px -24px 0; }
      .section-terms .section__actions {
        padding-top: 0;
        border-top: 0;
        margin-top: 48px; }
    .section-payment {
      padding: 41px 0 24px; }
      .section-payment .section__actions {
        display: block;
        padding-top: 0;
        border-top: 0;
        margin-top: 48px;
        text-align: center; }
        .section-payment .section__actions .btn {
          width: 100%;
          margin-left: 0;
          margin-right: 0; }
        .section-payment .section__actions strong {
          display: block;
          padding: 12px 0 13px; }
    .section-complete {
      padding: 40px 0 24px; }
      .section-complete .section__head {
        padding-bottom: 33px;
        margin-bottom: 21px; }
        .section-complete .section__head strong {
          font-size: 12px;
          line-height: 1.5;
          font-weight: 500;
          letter-spacing: 0.12px; }
        .section-complete .section__head-inner {
          margin-bottom: 14px; }
          .section-complete .section__head-inner p {
            margin-bottom: 17px;
            font-size: 12px;
            line-height: 1.5;
            letter-spacing: 0.12px; }
          .section-complete .section__head-inner strong {
            padding-bottom: 14px;
            font-size: 28px;
            line-height: 1.21;
            font-weight: 900;
            letter-spacing: -1.68px; }
        .section-complete .section__head .list-links {
          margin-top: 31px; }
      .section-complete .section__body p {
        line-height: 1.85; }
        .section-complete .section__body p:not(:last-child) {
          margin-bottom: 12px; }
      .section-complete .section__foot {
        padding-top: 21px;
        margin-top: 16px; }
        .section-complete .section__foot p:not(:last-child) {
          margin-bottom: 14px; } }

/* ------------------------------------------------------------ *\
	Sidebar
\* ------------------------------------------------------------ */
.sidebar {
  width: 40%;
  padding-top: 3px;
  padding-right: 60px;
  /*Tablet Portrait*/
  /*Mobile*/ }
  @media (max-width: 1024px) {
    .sidebar {
      width: 100%;
      padding-top: 0;
      padding-right: 0;
      margin-bottom: 53px; } }
  @media (max-width: 767px) {
    .sidebar {
      margin-bottom: 41px; } }

/* ------------------------------------------------------------ *\
	Slick Carousel
\* ------------------------------------------------------------ */
.slick-dots {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none; }

.slick-dots li {
  padding: 0 6px; }

.slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 100%;
  background: #f1f1f1;
  font-size: 0;
  transition: border 0.4s, background 0.4s; }

.slick-dots li button:hover,
.slick-dots .slick-active button {
  border-color: transparent;
  background: #000; }

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials {
  float: right;
  /*Mobile*/ }
  .socials ul {
    list-style: none;
    margin: 0 -5px; }
  .socials li {
    display: inline-block;
    padding: 5px; }
  .socials a:hover {
    opacity: .7; }
  @media (max-width: 767px) {
    .socials {
      float: none; } }

/* ------------------------------------------------------------ *\
	Time
\* ------------------------------------------------------------ */
.time {
  /*Tablet Portrait*/
  /*Mobile Portrait*/ }
  .time .time__head {
    position: relative;
    margin-bottom: 39px;
    text-align: center; }
    .time .time__head h5 {
      font-size: 20px;
      line-height: 1.2;
      font-weight: normal; }
    .time .time__head.loading h5 {
      margin: 0 auto;
      max-width: 30%;
      background: #F1F1F1;
      color: transparent; }
    .time .time__head p {
      text-transform: uppercase; }
  .time .time__back {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
  .time .time__section ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
    font-size: 17px;
    line-height: 1.18;
    color: #454e59;
    font-weight: normal;
    letter-spacing: 0.68px;
    list-style: none; }
  .time .time__section li {
    padding: 0 4px;
    width: 25%; }
    .time .time__section li:nth-child(n+5) {
      margin-top: 16px; }
  .time .time__entry {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px 0;
    border: 1px solid #454e59;
    cursor: pointer; }
    .time .time__entry br {
      display: none; }
    .time .time__entry:before {
      content: '';
      position: absolute;
      top: -1px;
      right: -1px;
      bottom: -1px;
      left: -1px;
      border: 3px solid transparent;
      pointer-events: none; }
    .time .time__entry.confirm {
      padding: 0; }
      .time .time__entry.confirm form {
        width: 100%; }
    .time .time__entry:hover, .time .time__entry.selected {
      font-weight: bold;
      color: #6dae62; }
      .time .time__entry:hover:before, .time .time__entry.selected:before {
        border-color: #6dae62; }
    .time .time__entry .confirm_label {
      display: none; }
    .time .time__entry.confirm {
      height: 100%;
      border-color: #6dae62;
      background: #6dae62;
      font-size: 15px;
      color: #fff;
      font-weight: bold; }
      .time .time__entry.confirm .confirm_label {
        display: inline; }
        .time .time__entry.confirm .confirm_label input {
          display: block;
          width: 100%;
          height: 55px; }
      .time .time__entry.confirm .label {
        display: none; }
      .time .time__entry.confirm input {
        background: transparent;
        cursor: inherit;
        font-weight: inherit;
        border: none; }
    .time .time__entry.loading {
      border: none;
      background: #F1F1F1;
      color: transparent; }
      .time .time__entry.loading:hover, .time .time__entry.loading.selected {
        cursor: default;
        color: transparent; }
        .time .time__entry.loading:hover:before, .time .time__entry.loading.selected:before {
          border-color: transparent; }
    .time .time__entry.unavailable {
      color: transparent;
      border: none;
      cursor: not-allowed; }
      .time .time__entry.unavailable:hover, .time .time__entry.unavailable.selected {
        color: transparent; }
        .time .time__entry.unavailable:hover:before, .time .time__entry.unavailable.selected:before {
          border-color: transparent; }
  .time .time__divider {
    position: relative;
    padding: 24px 0 26px;
    font-family: "Proxima Nova Soft", sans-serif;
    font-size: 14px;
    line-height: 1.14;
    color: #ced4d9;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    text-align: center; }
    .time .time__divider:after {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      transform: translateY(-50%);
      height: 1px;
      background: #ced4d9; }
    .time .time__divider span {
      position: relative;
      z-index: 5;
      padding: 0 16px;
      background: #fff; }
      .time .time__divider span.loading {
        color: transparent;
        background: #F1F1F1;
        width: 30%;
        border: 10px solid #fff; }
  @media (max-width: 1024px) {
    .time .time__entry {
      height: 56px;
      padding: 10px 0;
      text-align: center; }
      .time .time__entry br {
        display: block; }
      .time .time__entry.confirm {
        font-size: 13px;
        line-height: 1.15; }
      .time .time__entry.loading {
        border: none;
        background: #F1F1F1;
        color: transparent; }
        .time .time__entry.loading:hover, .time .time__entry.loading.selected {
          cursor: default;
          color: transparent; }
          .time .time__entry.loading:hover:before, .time .time__entry.loading.selected:before {
            border-color: transparent; }
      .time .time__entry.unavailable {
        color: transparent;
        border: none;
        cursor: not-allowed; }
        .time .time__entry.unavailable:hover, .time .time__entry.unavailable.selected {
          color: transparent; }
          .time .time__entry.unavailable:hover:before, .time .time__entry.unavailable.selected:before {
            border-color: transparent; }
    .time .time__divider span {
      padding: 0 12px; } }
  @media (max-width: 767px) {
    .time .time__head {
      margin-bottom: 21px; }
      .time .time__head h5 {
        font-size: 14px;
        line-height: 1.14; }
      .time .time__head.loading h5 {
        margin: 0 auto;
        max-width: 30%;
        background: #F1F1F1;
        color: transparent; }
    .time .time__back i {
      margin-bottom: 2px; }
    .time .time__divider {
      padding: 12px 0;
      font-size: 11px;
      line-height: 1.18; }
    .time .time__section ul {
      font-size: 13px;
      line-height: 1.15;
      font-weight: 500; }
    .time .time__section li {
      width: 100%; }
      .time .time__section li:not(:first-child) {
        margin-top: 12px; }
    .time .time__entry {
      border-color: #6dae62;
      color: #6dae62; }
      .time .time__entry br {
        display: none; }
      .time .time__entry:hover, .time .time__entry.selected {
        font-weight: 500; }
        .time .time__entry:hover:before, .time .time__entry.selected:before {
          display: none; }
      .time .time__entry.confirm {
        height: 56px; }
      .time .time__entry.loading {
        border: none;
        background: #F1F1F1;
        color: transparent; }
        .time .time__entry.loading:hover, .time .time__entry.loading.selected {
          cursor: default;
          color: transparent; }
          .time .time__entry.loading:hover:before, .time .time__entry.loading.selected:before {
            border-color: transparent; }
      .time .time__entry.unavailable {
        display: none; } }

/* ------------------------------------------------------------ *\
	Widget
\* ------------------------------------------------------------ */
.widget {
  /*Tablet Portrait*/
  /*Mobile*/ }
  .widget .widget__title {
    margin-bottom: 15px;
    font-size: 11px;
    line-height: 1.27;
    color: #959fa6;
    font-weight: 500;
    letter-spacing: 0.44px;
    text-transform: uppercase; }
  @media (max-width: 1024px) {
    .widget .widget__title {
      margin-bottom: 11px;
      text-align: center; } }
  @media (max-width: 767px) {
    .widget .widget__title {
      margin-bottom: 12px;
      font-size: 10px;
      line-height: 1.2;
      letter-spacing: 0.4px;
      text-align: left; } }

/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden; }

.section-time .section__actions {
  padding-top: 35px;
  border-top: 1px solid #e6edf2;
  margin-top: 53px;
  text-align: center; }

.section-terms h1,
.section-terms h2,
.section-terms h3,
.section-terms h4,
.section-terms p {
  margin-bottom: 20px; }

.list-payment .list__expanded {
  position: relative;
  opacity: unset;
  visibility: unset; }

.list-payment input {
  display: block;
  margin-left: 26px;
  margin-top: 23px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  height: 30px;
  width: 30px; }

.list-payment label {
  position: relative;
  width: 100%;
  padding: 18px 150px 18px 56px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 0.18px;
  cursor: auto; }

ul.list-offers li a {
  color: black;
  color: #48525a; }

ul.list-steps li a {
  color: #7e878c; }

ul.list-offers li a, ul.list-steps li a {
  display: contents;
  text-decoration: none;
  font-weight: 500;
  transition: none; }
ul.list-offers li.current a, ul.list-steps li.current a {
  color: white; }

table#group-schedule-sessions {
  margin-top: 20px; }

/** Caption on contact details **/
form .small-caption {
  color: #7e878c;
  font-size: 75%; }

/*# sourceMappingURL=booking.css.map */
