body {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: normal;
    color: #424242;
    font-size: 13px;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 1200px) {
    body {
        font-size: 1vw;
    }
}

*:focus {
    outline: none !important;
}

::-webkit-input-placeholder {
    color: #777;
}

input:not([type=checkbox]):not([type=radio]) {
    -webkit-appearance: none;
}

a {
    color: #0083C3;
}

h1, .heading-1 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 400;
}

h2, .heading-2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
}

h2.light, .heading-2.light {
    font-weight: 300;
}

h2.light-caption, .heading-2.light-caption {
    color: #828282;
    font-size: 20px;
    font-weight: 300;
    margin: 6px 0;
}

h3, .heading-3 {
    font-size: 17px;
    font-weight: 400;
}

h4, .heading-4 {
    font-size: 13px;
    font-weight: 400;
}

label {
    font-size: 13px;
}

p {
    font-size: 13px;
    line-height: 1.6em;
}


span,
ul li,
div {
    font-size: 13px;
}

p.title {
    font-weight: 500;
}

p.caption {
    font-size: 11px;
    color: #828282;
}

p.subcaption {
    font-size: 11px;
    color: #ccc;
}

.heading-big {
    font-size: 38px;
    font-weight: 300;
}

span.highlight,
p.highlight,
div.highlight,
ul li.highlight {
    font-size: 15px!important;
}

@media (max-width: 767px) {
    .heading-big {
        font-size: 24px;
        font-weight: 300;
    }
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-2x {
    font-size: 2em;
}

.caret-down {
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #424242;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.gray-spinner {
    height: 1.2em;
    width: 1.2em;
    animation: rotate 0.8s infinite linear;
    border: 4px solid #d8d8d8;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}

.spinner-icon {
    border: solid 2px transparent;
    border-top-color: rgb(255, 205, 0);
    border-left-color: rgb(255, 205, 0);
    border-right-color: rgb(255, 205, 0);
    border-bottom-color: rgba(255, 205, 0, 0.5);
}

.inline-spinner {
    pointer-events: none;
    -webkit-pointer-events: none;
    -webkit-transition: 350ms linear all;
    -moz-transition: 350ms linear all;
    -o-transition: 350ms linear all;
    transition: 350ms linear all;
}

.inline-spinner .spinner-icon {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    display: inline-block;
    border-radius: 20px;

    -webkit-animation: loader-spinner 700ms linear infinite;
    -moz-animation:    loader-spinner 700ms linear infinite;
    -ms-animation:     loader-spinner 700ms linear infinite;
    -o-animation:      loader-spinner 700ms linear infinite;
    animation:         loader-spinner 700ms linear infinite;
}

@-webkit-keyframes loader-spinner {
    0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes loader-spinner {
    0%   { -moz-transform: rotate(0deg);   transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes loader-spinner {
    0%   { -o-transform: rotate(0deg);   transform: rotate(0deg); }
    100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes loader-spinner {
    0%   { -ms-transform: rotate(0deg);   transform: rotate(0deg); }
    100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loader-spinner {
    0%   { transform: rotate(0deg);   transform: rotate(0deg); }
    100% { transform: rotate(360deg); transform: rotate(360deg); }
}

.pull-right-not-xs, .pull-right-not-sm, .pull-right-not-md, .pull-right-not-lg {
    float: right;
}

.pull-left-not-xs, .pull-left-not-sm, .pull-left-not-md, .pull-left-not-lg {
    float: left;
}

@media (max-width: 767px) {
    .pull-right-not-xs, .pull-left-not-xs {
        float: none;
    }

    .pull-right-xs {
        float: right;
    }

    .pull-left-xs {
        float: left;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pull-right-not-sm, .pull-left-not-sm {
        float: none;
    }

    .pull-right-sm {
        float: right;
    }

    .pull-left-sm {
        float: left;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pull-right-not-md, .pull-left-not-md {
        float: none;
    }

    .pull-right-md {
        float: right;
    }

    .pull-left-md {
        float: left;
    }
}

@media (min-width: 1200px) {
    .pull-right-not-lg, .pull-left-not-lg {
        float: none;
    }

    .pull-right-lg {
        float: right;
    }

    .pull-left-lg {
        float: left;
    }
}

.cursor-pointer-block {
    cursor: pointer;
}

.break-word-block {
    word-wrap: break-word;
}

.dark-red-block {
    background-color: #b12704;
}

.dark-blue-block {
    background-color:  #00577b;
}

.green-block {
    background-color: #44c600;
}

.black-block {
    background-color: #000;
}

.white-block {
    background-color: #fff;
}

.white-text-block {
    color: #fff !important;
}

.green-text-block {
    color: #44c600;
}

.yellow-text-block {
    color: #ffcd00;
}

.gray-text-block {
    color:#ccc;
}

.blue-text-block {
    color: #0083c3;
}

.gray-block {
    background-color: #f6f6f7 !important;
}

.yellow-block {
    background-color: #ffcd00 !important;
}

.transparent-block {
    border: solid 1px #e5e5e5;
}

.dark-red-text-block {
    color: #b12704 !important;
}

.red-text-block {
    color: #ff5252;
}

.uppercase-block {
    text-transform: uppercase;
}

.underline-block {
    text-decoration: underline;
}

.rounded-block {
    border-radius: 0.25em;
}

.shadow-block {
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.03), 0 3px 1px 0 rgba(0, 0, 0, 0.01);
    border: solid 1px #ededed;
}

.big-shadow-block {
    box-shadow: 10px 18px 50px 0 rgba(0, 0, 0, 0.50);
}

.gray-border-block {
    border: 1px solid #ededed;
}

.gray-border-bottom-block {
    border-bottom: 1px solid #ededed;
}

.no-border-block {
    border: 0 none !important;
}

.padding-block {
    padding: 24px;
}

.padding-16-block {
    padding: 16px!important;
}

.top-padding-block {
    padding-top: 24px!important;
}

.bottom-padding-block {
    padding-bottom: 24px!important;
}

.left-padding-block {
    padding-left: 24px!important;
}

.right-padding-block {
    padding-right: 24px!important;
}

.padding-8-block {
    padding: 8px!important;
}

.top-padding-8-block {
    padding-top: 8px!important;
}

.top-padding-16-block {
    padding-top: 16px!important;
}

.bottom-padding-8-block {
    padding-bottom: 8px!important;
}

.padding-32-block {
    padding: 32px!important;
}

.top-padding-32-block {
    padding-top: 32px!important;
}

.bottom-padding-32-block {
    padding-bottom: 32px!important;
}

.left-padding-32-block {
    padding-left: 32px!important;
}

.right-padding-32-block {
    padding-right: 32px!important;
}

.padding-48-block {
    padding: 48px!important;
}

.top-padding-64-block {
    padding-top: 64px!important;
}

.bottom-padding-64-block {
    padding-bottom: 64px!important;
}

.no-padding-block {
    padding: 0!important;
}

.no-top-padding-block {
    padding-top: 0!important;
}

.no-bottom-padding-block {
    padding-bottom: 0!important;
}

.no-left-padding-block {
    padding-left: 0!important;
}

.no-right-padding-block {
    padding-right: 0!important;
}

.lighter-text-block {
  color: #828282;
}

.light-text-block {
    color: #828282;
    font-weight: 400;
}

.light-bold-block {
    font-weight: 500;
}

.bold-block {
    font-weight: 700;
}

.static-block {
    position: static;
}

.relative-block {
    position: relative;
}

.no-opacity-block {
    opacity: 0;
}

.opacity-50-block {
    opacity: 0.5;
}

.dark-text-block {
    color: #424242;
}

.no-spacing-block {
    margin: 0!important;
}

.spacing-block {
    margin: 24px!important;
}

.top-spacing-block {
    margin-top: 24px!important;
}

.top-spacing-4-block {
    margin-top: 4px!important;
}

.top-spacing-16-block {
    margin-top: 16px!important;
}

.top-spacing-24-block {
    margin-top: 24px!important;
}

.top-spacing-32-block {
    margin-top: 32px!important;
}

.top-spacing-48-block {
    margin-top: 48px!important;
}

.top-spacing-64-block {
    margin-top: 64px!important;
}

.no-top-spacing-block {
    margin-top: 0!important;
}

.bottom-spacing-block {
    margin-bottom: 24px!important;
}

.bottom-spacing-4-block {
    margin-bottom: 4px!important;
}

.bottom-spacing-8-block {
    margin-bottom: 8px;
}

.bottom-spacing-16-block {
    margin-bottom: 16px;
}

.no-bottom-spacing-block {
    margin-bottom: 0!important;
}

.left-spacing-8-block {
    margin-left: 8px!important;
}

.left-spacing-16-block {
    margin-left: 16px!important;
}

.left-spacing-block {
    margin-left: 24px!important;
}

.right-spacing-block {
    margin-right: 24px!important;
}

.right-spacing-8-block {
    margin-right: 8px!important;
}

.right-spacing-16-block {
    margin-right: 16px!important;
}

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

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

.align-top-block {
    vertical-align: top;
}

.align-middle-block {
    vertical-align: middle;
}

.align-center-block {
    display: flex;
    align-items: center;
}

.img-center {
    display: block;
    margin: auto;
}

.red-label-block {
    background-color: #ff5252;
    font-size: 11px;
    color: #fff;
    padding: 2px 7px;
    border-radius: 10px;
}

.green-label-block {
    background-color: #44c600;
    font-size: 11px;
    color: #fff;
    padding: 2px 7px;
    border-radius: 10px;
}

.gray-label-block {
    background-color: #eeeeee;
    color: #828282;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 10px;
}

.underlined-block {
    text-decoration: underline;
}

.vertical-line-block {
    width: 1px;
    height: 100%;
    display: inline-block;
    color: #eee;
    background: #eee;
}

.circle-block {
    border-radius: 50%;
}

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

.max-width-100-block {
    max-width: 100%;
}

.img-20px-block {
    width: 20px;
    height: 20px;
}

.tag-block {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 3px 7px;
    text-transform: uppercase;
    display: inline-block;
}

.black-faded-block {
    background-color: rgba(0, 0, 0, 0.5);
}

.height-100-block {
    height: 100%;
}

.negative-margin-15-block {
    margin-left: -15px;
    margin-right: -15px;
}

.light-label {
    font-weight: 400;
}

.yellow-arrow {
    display: inline-block;
    width: 13px;
    height: 10px;
    background-image: url(/site/img/arrow_yellow.svg);
    margin-right: 10px;
    background-size: cover;
}

.same-height-cols-block {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.same-height-cols-block > * {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
}

@media (min-width: 1200px) {
    .same-height-cols-block-lg {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .same-height-cols-block-lg > * {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;
    }

    .align-center-block-lg {
        display: flex;
        align-items: center;
    }

    .white-block-lg {
        background-color: #fff;
    }

    .padding-48-block-lg {
        padding: 48px!important;
    }

    .padding-32-block-lg {
        padding: 32px!important;
    }

    .left-padding-32-block-lg {
        padding-left: 32px!important;
    }

    .right-padding-32-block-lg {
        padding-right: 32px!important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .same-height-cols-block-md {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .same-height-cols-block-md > * {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;
    }

    .align-center-block-md {
        display: flex;
        align-items: center;
    }

    .white-block-md {
        background-color: #fff;
    }

    .width-100-block-md {
        width: 100%!important;
    }

    .padding-48-block-md {
        padding: 48px!important;
    }

    .padding-32-block-md {
        padding: 32px!important;
    }

    .left-padding-32-block-md {
        padding-left: 32px!important;
    }

    .right-padding-32-block-md {
        padding-right: 32px!important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .same-height-cols-block-sm {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .same-height-cols-block-sm > * {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;
    }

    .align-center-block-sm {
        display: flex;
        align-items: center;
    }

    .gray-block-sm {
        background-color: #f6f6f6;
    }

    .white-block-sm {
        background-color: #fff;
    }

    .no-spacing-block-sm {
        margin: 0!important;
    }

    .no-left-spacing-block-sm {
        margin-left: 0!important;
    }

    .no-right-spacing-block-sm {
        margin-right: 0!important;
    }

    .no-padding-block-sm {
        padding: 0!important;
    }

    .no-left-padding-block-sm {
        padding-left: 0!important;
    }

    .no-right-padding-block-sm {
        padding-right: 0!important;
    }

    .padding-16-block-sm {
        padding: 16px!important;
    }

    .padding-32-block-sm {
        padding: 32px!important;
    }

    .left-padding-32-block-sm {
        padding-left: 32px!important;
    }

    .right-padding-32-block-sm {
        padding-right: 32px!important;
    }
}

@media (max-width: 767px) {
    .same-height-cols-block-xs {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .same-height-cols-block-xs > * {
        display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;      /* TWEENER - IE 10 */
        display: -webkit-flex;     /* NEW - Chrome */
        display: flex;
    }

    .static-block-xs {
        position: static !important;
    }

    .align-center-block-xs {
        display: flex;
        align-items: center;
    }

    .gray-block-xs {
        background-color: #f6f6f6;
    }

    .no-top-padding-block-xs {
        padding-top: 0!important;
    }

    .no-padding-block-xs {
        padding: 0!important;
    }

    .padding-16-block-xs {
        padding: 16px!important;
    }

    .left-padding-16-block-xs {
        padding-left: 16px!important;
    }

    .right-padding-16-block-xs {
        padding-right: 16px!important;
    }

    .no-bottom-padding-block-xs {
        padding-bottom: 0!important;
    }

    .top-padding-48-block-xs {
        padding-top: 48px!important;
    }

    .top-spacing-8-block-xs {
        margin-top: 8px!important;
    }

    .bottom-padding-48-block-xs {
        padding-bottom: 48px!important;
    }

    .white-block-xs {
        background-color: #fff;
    }

    .no-left-spacing-block-xs {
        margin-left: 0 !important;
    }

    .no-right-spacing-block-xs {
        margin-left: 0 !important;
    }

    .no-spacing-block-xs {
        margin: 0 !important;
    }

    .no-bottom-spacing-block-xs {
        margin-bottom: 0 !important;
    }
}

.noselect-block {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.row.gutter-16 > div {
    padding-left: 8px;
    padding-right: 8px;
}

.card {
    border: 1px solid #e8e8e8;
    background-color: none;
    padding: 25px;
    position: relative;
    border-radius: 5px;
    font-size: 13px;
    text-align: left;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.03), 0 3px 1px 0 rgba(0, 0, 0, 0.01);
}

.card.highlighted {
    border: 1px solid #ffcd00;
    background-color: #fffcf1;
}

.card.inline {
    display: inline-block;
    margin: 5px;
}

.card.small {
    padding: 12px 18px;
}

.card p.title {
    font-weight: 500;
    margin-top: 0;
}

.card p {
    margin-bottom: 0;
}

.card .close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    display: block;
    font-size: 21px;
    line-height: 12px;
    font-weight: 300;
    color: #828282;
}

.fake-dropdown {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    background-color: #fff;
    color: #333;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 0 10px;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    background-position: center right 10px;
    background-size: 10px;
    background-repeat: no-repeat;
    background-image: url(/site/img/dropdown_arrow.png);
    font-size: 13px;
    color: #565a5c;
}

.fake-dropdown.no-selection {
    color: #777;
}

.date-selector,
.hour-selector {
    display: none;
    padding: 5px;
}

.date-selector {
    padding-top: 16px;
}

.date-selector.open,
.hour-selector.open {
    display: block;
}

.date-selector .nav {
    width: 15px;
    height: 12px;
    background-image: url(/site/img/carousel-arrow.svg);
    position: absolute;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    top: 20px;
    cursor: pointer;
}

.date-selector .nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.date-selector .nav.left {
    left: 15px;
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari */
    transform: rotate(180deg);
}

.date-selector .nav.right {
    right: 15px;
}

.date-selector .month {
    vertical-align: top;
}

.date-selector .days > div {
    display: inline-block;
    cursor: pointer;
    width: 14.285%;
}

.hour-selector > div {
    text-align: center;
    display: inline-block;
    width: 25%;
}

.date-selector .days > div.weekday > span {
    font-size: 9px;
    color: #ccc;
}

.date-selector .days > div > span,
.hour-selector > div > span {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0 8.5px;
    box-sizing: border-box;
    margin: 0 auto;
    border: solid 1px transparent;
}

.date-selector .days > div > span.recurring {
    border-radius: 3px;
    background-color: rgba(255, 252, 241, 0.20);
    border: solid 1px rgba(243, 202, 0, 0.20);
}

.hour-selector > div > span {
    width: auto;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.hour-selector > div > span.unavailable {
    background-color: #f7f7f7;
    color: #ccc;
    cursor: not-allowed;
}

.date-selector .days > div > span.selected,
.hour-selector > div > span.selected {
    border-radius: 3px;
    background-color: rgba(255, 252, 241, 0.45);
    border: solid 1px rgba(243, 202, 0, 0.45);
}

.date-selector .days > div > span.unavailable {
    color: #ccc;
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .fake-dropdown.open {
        background-color: #fffcf1;
        border: solid 1px #f3ca00;
    }

    .date-selector,
    .hour-selector {
        position: absolute;
        z-index: 10;
        margin-top: 10px;
        left: 32px;
        right: 32px;
        padding: 32px;
        box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.19);
    }

    .date-selector .separator {
        position: absolute;
        top: 32px;
        bottom: 32px;
        width: 1px;
        background: #ebebeb;
        left: 50%;
        margin-left: -0.5px;
    }

    .date-selector .nav {
        top: 36px;
    }

    .date-selector .month {
        display: inline-block;
        width: calc(50% - 32px);
    }

    .date-selector .month:first-child {
        margin-right: 32px;
    }

    .date-selector .month:last-child {
        margin-left: 32px;
    }

    .hour-selector > div {
        width: 16.666%;
    }

}

@media (min-width: 992px) {
    .date-selector.open-desktop,
    .hour-selector.open-desktop {
        display: block;
    }
}

@media (max-width: 767px) {
    date-selector .fake-dropdown.open {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .date-selector,
    .hour-selector {
        border: 1px solid #e8e8e8;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .hour-selector > div > span.unavailable {
        background-color: transparent;
    }
}


.fake-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.fake-checkbox.active {
    border: 2px solid #ffcd00;
}

.fake-checkbox.active:after {
    content: '';
    background-color: #ffcd00;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: -5px;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .gutter-4-sm > *:first-child {
        padding-right: 2px;
    }

    .gutter-4-sm > *:last-child {
        padding-left: 2px;
    }

    .gutter-16-sm > *:first-child {
        padding-right: 8px;
    }

    .gutter-16-sm > *:last-child {
        padding-left: 8px;
    }
}

@media (min-width: 992px) {
    .gutter-4-md > *:first-child {
        padding-right: 2px;
    }

    .gutter-4-md > *:last-child {
        padding-left: 2px;
    }

    .gutter-16-md > *:first-child {
        padding-right: 8px;
    }

    .gutter-16-md > *:last-child {
        padding-left: 8px;
    }
}

@media (min-width: 1200px) {
    .top-spacing-block-lg {
        margin-top: 20px;
    }

    .bottom-spacing-block-lg {
        margin-bottom: 20px;
    }

    .padding-block-lg {
        padding: 24px;
    }

    .shadow-block-lg {
        box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.03), 0 3px 1px 0 rgba(0, 0, 0, 0.01);
        border: solid 1px #ededed;
    }

    .big-shadow-block-lg {
        box-shadow: 10px 18px 50px 0 rgba(0, 0, 0, 0.50);
    }

    .gray-border-block-lg {
        border: 1px solid #ededed;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .top-spacing-block-md {
        margin-top: 20px;
    }

    .bottom-spacing-block-md {
        margin-bottom: 20px;
    }

    .padding-block-md {
        padding: 24px;
    }

    .shadow-block-md {
        box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.03), 0 3px 1px 0 rgba(0, 0, 0, 0.01);
        border: solid 1px #ededed;
    }

    .big-shadow-block-md {
        box-shadow: 10px 18px 50px 0 rgba(0, 0, 0, 0.50);
    }

    .gray-border-block-md {
        border: 1px solid #ededed;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .top-spacing-block-sm {
        margin-top: 20px;
    }

    .bottom-spacing-block-sm {
        margin-bottom: 20px;
    }

    .no-left-spacing-block-sm {
        margin-left: 0 !important;
    }

    .no-left-padding-block-sm {
        padding-left: 0 !important;
    }

    .padding-block-sm {
        padding: 24px;
    }

    .shadow-block-sm {
        box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.03), 0 3px 1px 0 rgba(0, 0, 0, 0.01);
        border: solid 1px #ededed;
    }

    .big-shadow-block-sm {
        box-shadow: 10px 18px 50px 0 rgba(0, 0, 0, 0.50);
    }

    .gray-border-block-sm {
        border: 1px solid #ededed;
    }

    .max-width-100-block-sm {
        max-width: 100%;
    }

    .static-block-sm {
        position: static !important;
    }
}

@media (max-width: 767px) {
    .top-spacing-block-xs {
        margin-top: 20px!important;
    }

    .no-top-spacing-block-xs {
        margin-top: 0!important;
    }

    .top-spacing-24-block-xs {
        margin-top: 24px!important;
    }

    .top-spacing-48-block-xs {
        margin-top: 48px!important;
    }

    .top-spacing-64-block-xs {
        margin-top: 64px!important;
    }

    .bottom-spacing-block-xs {
        margin-bottom: 20px;
    }

    .padding-block-xs {
        padding: 24px;
    }

    .padding-block-16-xs {
        padding: 16px;
    }

    .shadow-block-xs {
        box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.03), 0 3px 1px 0 rgba(0, 0, 0, 0.01);
        border: solid 1px #ededed;
    }

    .big-shadow-block-xs {
        box-shadow: 10px 18px 50px 0 rgba(0, 0, 0, 0.50);
    }

    .gray-border-block-xs {
        border: 1px solid #ededed;
    }
}

/*********************************************/
/* Material overrides
/*********************************************/

body md-radio-button .md-off {
    border-color: #828282;
    border-width: 1px;
}

body md-radio-button.md-checked .md-on {
    -webkit-transform: scale(.65);
    transform: scale(.65);
}

/*********************************************/
/* Containers
/*********************************************/

.full-container {
    width: auto;
    margin: 0;
    clear: both;
    background-color: #ededf0;
}

.full-container.primary,
.container.primary {
    background-color: white;
    color: #424242;
    border-bottom: none;
}

.full-container.secondary,
.container.secondary {
    background-color: #EDECF1;
}

.full-container.default,
.container.default {
    background-color: white;
}

.full-container.dark,
.container.dark {
    background-color: #353535;
    color: white;
}

.full-container .disclaimer p {
    font-size: 11px;
    line-height: 15px;
    margin: 0 10px;
    width: calc(100% - 60px);
}

.container {
    width: auto;
    max-width: 1228px;
    padding: 64px 20px;
    margin: 0 auto;
    text-align: center;
}

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

@media (max-width: 991px) {
    .container {
        width: auto;
        margin: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 25px 20px;
    }
}

body.index-view .container,
body.seo-view .container
{
    padding-top: 32px;
    padding-bottom: 32px;
}

@media (max-width: 320px) {
    .full-container.default,
    .container.default {
        background-image: none;
    }
}

span.primary {
    color: #ff5b4d;
}

/*********************************************/
/* Generic
/*********************************************/

.text-justify {
    text-align: justify;
}

@media (min-width: 992px) {
    .background-image {
        background-repeat: no-repeat;
        background-size: 1650px auto;
        background-position: center top;
    }
}

@media (min-width: 1650px) {
    .background-image {
        background-repeat: no-repeat;
        background-size: cover;
        background-position-x: center;
        background-position: center top;
    }
}

.cover-partner {
    position: absolute;
    bottom: 0;
    padding: 0 1em;
    left: 5em;
    background-color: rgba(255,255,255,0.8);
}

.cover-partner a {
    display: inline-block;
}

.cover-partner p {
    display: inline-block;
    line-height: 1em;
    font-size: 0.9em;
    margin-right: 1em;
}

@media (max-width: 991px) {
    .cover-partner {
        display: none;
    }
}

.fa.primary {
    color: #ff5b4d;
}

.btn {
    min-width: 16.25em;
    height: 3em;
    border: none;
    font-size: 1.3em;
    line-height: 3em;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 500;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding: 0 1em;
}

a.btn {
    display: inline-block;
    cursor: pointer;
}

a.btn-light:focus, a.btn-light:hover {
    text-decoration: none;
    cursor:pointer;
}

a.btn:hover {
    text-decoration: none;
}

.btn.btn-default {
    background-color: white;
    color: #ff5b4d;
}

.btn.btn-primary {
    background-color: #ffcd00;
    color: #424242;
}

.btn.btn-primary:hover {
    background-color: #ffbc00;
}

.btn.btn-primary:active {
    background-color: #ffae00;
}

.btn.btn-primary[disabled],
.btn.btn-primary[disabled]:hover {
    background-color: #c4cacc;
    border: 1px solid #c4cacc;
    color: #fff;
}

.btn.btn-secondary {
    background-color: #d4d3d8;
    border: 1px solid #DCE0E0;
    color: #565a5c;
}

.btn.btn-secondary:hover {
    background-color: #c3c0c7;
}

.btn.btn-secondary[disabled],
.btn.btn-secondary[disabled]:hover {
    background-color: white;
    border: 1px solid #EDECF1;
}

.btn.btn-dark {
    background-color: #353535;
    color: white;
}

.btn.btn-dark:hover {
    background-color: #585858;
}

.btn.btn-with-svg {
    font-size: 1.1em;
    font-weight: 400;
    min-height: 5em;
    padding-top: 0.6em;
    min-width: 20em;
}

.btn.btn-with-svg span {
    float: left;
}

.btn.btn-with-svg span.svg {
    font-size: 0.125em;
    margin-left: 12em;
    width: 24em;
}

.btn.btn-with-svg span.svg img {
    width: 24em;
}

.btn.btn-with-svg span.text {
    margin-left: 1.5em;
    margin-right: 2em;
    line-height: 1.8em;
}

.btn-not-visible {
    visibility: hidden;
    cursor: default;
}

.btn-light {
    font-family: "Roboto", Arial, sans-serif;
    border-radius: 0.25em;
    font-size: 13px;
    font-weight: 500;
    height: 40px;
    padding: 0.5em 0.75em;
    min-width: 200px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    width: auto;
    text-decoration: none !important;
}

a.btn-light {
  display: inline-block;
  line-height: 22px;
  cursor: pointer;
}

.btn-light.btn-light-red {
    background-color: #ff5b4d;
    color: white;
    border: 2px solid #ff5b4d;
}

.btn-light.btn-light-white {
    background-color: white;
    border: 2px solid #edecf1;
}

.btn-light.btn-light-yellow {
    background-color: #ffcd00;
    color: #424242;
    border: 2px solid #ffcd00;
}

.btn-light.btn-light-transparent {
    background-color: transparent;
    color: #424242;
    border: 1px solid #424242;
}

.btn-light.btn-light-green {
    background-color: rgba(68,198,0,0.9);
    color: #fff;
    border: 2px solid rgba(68,198,0,0.9);
}

.btn-light.btn-light-green:hover {
    background-color: rgba(68,198,0,1);
    color: #fff;
    border: 2px solid rgba(68,198,0,1);
}

.btn-light.btn-light-yellow:hover {
    background-color: #ffbc00;
    border: 2px solid #ffbc00;
}

.btn-light.btn-light-yellow:active {
    background-color: #ffae00;
    border: 2px solid #ffae00;
}

.btn-light.btn-light-yellow[disabled],
.btn-light.btn-light-yellow[disabled]:hover {
    opacity: 0.66;
}

.btn-light.btn-light-secondary {
    background-color: #f8f8f8;
    border: 2px solid #f8f8f8;
}

.btn-light.btn-light-secondary:hover {
    background-color: #f4f4f4;
    border: 2px solid #f4f4f4;
}

.btn-light.btn-light-secondary:disabled {
    background-color: #fcfcfc;
    border: 2px solid #fcfcfc;
    color: #ccc;
}

.btn-light.btn-light-blue {
    background-color: #0084c3;
    color: #FFFFFF;
    border: 2px solid #0084c3;
}

.btn-light.btn-light-blue:hover {
    background-color:#007AB4
}

.btn-wide {
    width: 100%;
    min-width: 100%;
}

@media (min-width: 1200px) {
    .btn-wide-lg {
        width: 100%;
        min-width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .btn-wide-md {
        width: 100%;
        min-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .btn-wide-sm {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 767px) {
    .btn-wide-xs {
        width: 100%;
        min-width: 100%;
    }
}

.btn-image-big {
    min-width: 0;
    width: 100%;
    height: 7em;
    line-height: 7em;
    vertical-align: middle;
    padding: 0;
    cursor: pointer;
}

.btn-caption {
    background-color: #f0f0f0;
    color: #828282;
    border: none;
    border-radius: 50px;
    font-size: 11px;
    line-height: 11px;
    padding: 7px 15px;
}

.btn-caption:hover {
    background-color: #e6e6e6;
}

.btn-caption:disabled {
    background-color: #fdfdfd;
    color: #ccc;
}

.transparent {
    background-color: transparent;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.white-space-normal-block {
    white-space: normal !important;
}

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

ul.bulletlist li {
    padding-left: 1em;
    text-indent: -.7em;
    font-size: 14px;
}

ul.bulletlist li:before {
    content: "• ";
    color: #d8d8d8;
    margin-top: 0;
    vertical-align: middle;
    line-height: 1.1em;
    font-size: 30px;
}

ul.checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    vertical-align: top;
}

ul.checklist li {
    padding: 0px 0 8px 28px;
    font-size: 13px;
    text-align: inherit;
    margin: 0;
    line-height: 20px;
    text-indent: initial;
    position: relative;
    align-self: center;
}

ul.checklist li:before {
    font-size: 1.425em;
    font-family: 'FontAwesome';
    content: '\f00C';
    margin: 0 0.8em 0 0;
    color: #808080;
    display: block;
    float: left;
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/site/img/checkbox_1.png);
    background-size: 20px;
    content: ' ';
}

ul.checklist.dots li:before {
    content: '\f111';
    background-image: none;
    font-size: 6px;
    color: #d8d8d8 !important;
    left: 5px;
}

ul.dashlist {
    list-style: none;
    padding: 0;
}

ul.dashlist li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #828282;
}

ul.dashlist li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    height: 1px;
    width: 20px;
    background-color: #979797;
}

@media (max-width: 991px) {
    ul.checklist.mobile-centered {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

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

button:focus {
    outline: none;
}

.form-control {
    display: block;
    width: 100%;
    background-color: #fff;
    background-image: none;
    border: 1px solid #DCE0E0;
    height: 40px;
    padding: 0 1.75em;
    box-shadow: none;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: normal;
    font-size: 13px;
    border-radius: 5px;
    color: #565a5c;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #DCE0E0;
}

.form-control[readonly] {
    background-color: #fff;
}

textarea.form-control {
    height: 100px;
}

.ng-submitted .form-control.ng-invalid {
    border: 1px solid #ffcd00 !important;
}

.dropdown input {
    background: #fff;
    border-width: 1px;
    border-color: #e8e8e8;
    -webkit-appearance: none;
    font-size: 13px;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    font-weight: 400;
    background: url(/site/img/dropdown_arrow.png);
    background-position: center right 10px;
    background-repeat: no-repeat;
    background-size: 10px;
}

.dropdown.disabled input {
    background-color: #f6f6f6;
    border: solid 1px #e8e8e8;
    box-shadow: none;
    color: #828282;
    font-weight: 400;
    cursor: initial;
}

.small-dropdown {
    position:relative;
}

.small-dropdown p {
    margin-right: 26px;
}

.small-dropdown .dropdown {
    top: 5px;
    background-color: transparent !important;
    right: 0;
}

.small-dropdown .dropdown .dropdown-toggle {
    border: 0 !important;
    background-color: transparent !important;
    cursor: pointer;
    margin: 10px;
}

.small-dropdown .dropdown .dropdown-toggle img {
    width: 10px;
    margin-left: 3px;
    cursor: pointer;
}

.small-dropdown .dropdown .dropdown-menu {
    right: 0;
    left: auto;
    border-radius: 5px !important;
}

.form-control:focus {
    outline: none;
}

textarea.form-control {
    height: auto;
    padding-top: 1.125em;
    padding-bottom: 1.125em;
    resize: none;
}

.form-label {
    font-size: 1em;
    margin: 0 0.2em 0.5em 0.2em;
    display: block;
    height: 3.45em;
    position: relative;
}

.form-label > * {
    position: absolute;
    bottom: 0;
}

.dropdown ul.dropdown-menu {
    margin: 0 15px;
    max-height: 250px;
    min-width: 250px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1100;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 5px;
    border-color: #DCE0E0;

    background-color: white;
    color: #565a5c;
    font-size: 1em;
}

.dropdown .dropdown-toggle[readonly] {
    cursor: pointer;
}

.dropdown ul.dropdown-menu li {
    padding: 6px;
    cursor: pointer;
}

.dropdown ul.dropdown-menu li.selected {
    background-color: #ff5b4d;
    color: white;
}

.dropdown ul.dropdown-menu li:hover {
    background-color: #f4f4f4;
}

.dropdown ul.dropdown-menu li.selected:hover {
    background-color: rgba(255, 93, 77, 0.58);
}

.dropdown .dropdown-toggle-arrow {
    cursor: pointer;
    position: absolute;
    right: 1.725em;
    bottom: 0.75em;
    font-size: 1.25em;
    color: #565a5c;
}

.input-group {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: normal;
    font-size: 1em;
    color: #424242;
    border: 1px solid #DCE0E0;
    background-color: white;
}

.input-group input {
    margin-right: 0.85em;
}

.input-group > div {
    border-bottom: 1px solid #DCE0E0;
    padding: 1em;
}

.input-group > div:last-child {
    border-bottom: 0px;
}

.input-group input[type=checkbox],
.input-group input[type=radio]{
    display:none;
}

.input-group input[type=checkbox] + label,
.input-group input[type=radio] + label{
    background: url('/site/img/checkbox-unchecked.png') no-repeat;
    background-position: left top;
    background-size: 18px;
    padding: 0 0 10px 28px;
    display: block;
}

.input-group input[type=checkbox]:checked + label,
.input-group input[type=radio]:checked + label {
    background: url('/site/img/checkbox-checked.png') no-repeat;
    background-size: 18px;
}

.input-inline {
    padding: 4.7em 2.125em 0.25em 0.2em
}

.input-inline label {
    display: table;
    vertical-align: middle;
}

.input-inline label > div {
    display: table-cell;
    position: relative;
    vertical-align: middle;
}

.input-inline input {
    max-width: 15em;
    margin-left: 0.5em;
    margin-top: 0.3em;
}

.input-inline input[type=checkbox],
.input-inline input[type=radio] {
    display:none;
}

.input-inline input[type=checkbox] + label,
.input-inline input[type=radio] + label {
    background: url('/site/img/checkbox_0.png') no-repeat;
    background-position: right center;
    padding: 0.3em 2.85em 0.3em 0;
}

.input-inline input[type=checkbox]:checked + label,
.input-inline input[type=radio]:checked + label{
    background: url('/site/img/checkbox_1.png') no-repeat;
    background-position: right center;
    padding: 0.3em 2.85em 0.3em 0;
}

.input-container {
    position: relative;
}

.input-addon {
    cursor: pointer;
    position: absolute;
    right: 0.725em;
    top: 0.6em;
    font-size: 1.5em;
    height: 1em;
}

.input-checkbox-container {
    line-height: 3.25em;
}

input[type=checkbox].input-checkbox,
input[type=radio].input-checkbox {
    display:none;
}

input[type=checkbox].input-checkbox + label,
input[type=radio].input-checkbox + label{
    background: url('/site/img/checkbox_0.png') no-repeat;
    background-position: left center;
    padding: 0.5em 2.85em 0.5em 2.85em;
    margin-top: 0.5em;
    display: inline;
    min-width: 8em;
}

input[type=checkbox].input-checkbox:checked + label,
input[type=radio].input-checkbox:checked + label{
    background: url('/site/img/checkbox_1.png') no-repeat;
    background-position: left center;
    padding: 0.5em 2.85em 0.5em 2.85em;
    margin-top: 0.5em;
    display: inline;
    min-width: 8em;
}

.tooltip {
    font-size: 1.20em;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    position: relative;
    margin: 0;
    margin-bottom: 20px;
    z-index: 2;
}

.tooltip-inner {
    padding: 8px 4px;
    font-size: 13px;
    max-width: 100%;
}

.tooltip.error .tooltip-inner {
    background-color: #ff5252;
}

.tooltip.info .tooltip-inner {
    background-color: #a0a0a0;
}

form div.row > div {
    margin-bottom: 0.75em;
}

form div.row.no-margin > div {
    margin-top: 0;
    margin-bottom: 0;
}

label[for],
input[type='checkbox'] {
    cursor: pointer;
}
label[for],
input[type='text']{
    font-family: Roboto;
}

.message-success {
    background-color: #00b16a;
    color: white;
    font-size: 1.625em;
    padding: 1.25em;
    text-align: center;
}

.message-error {
    background-color: #f39c12;
    color: white;
    font-size: 1.625em;
    padding: 1.25em;
    text-align: center;
}

.box {
    background-color: white;
    color: #565a5c;
    border: 1px #D6D6D6 solid;
    padding: 0.5em 4em;
}

.box.warning {
    background-color: rgba(243, 156, 18, 0.2);
    border-color: #f39c12;
}

.box.success {
    background-color: rgba(0, 177, 106, 0.5);
    color: white;
}

.clearfix {
    clear: both!important;
}

.panel {
    margin-top: 20px;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

@media (max-width: 767px) {
    .form-control {
        padding: 0 0.75em;
    }
}

/*********************************************/
/* Header
/*********************************************/

.full-container.header {
    color: #626876;
    background-color: white;
    border-bottom: none;
}

.full-container.header.dark {
    color: #fff;
    background-color: #353535;
    border-bottom: none;
}

.full-container.header .container {
    background-color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
}

.full-container.header img.logo {
    height: 45px;
}

@media (min-width: 991px) {
    .full-container.header img.logo {
        margin-right: 20px;
    }
}

.full-container.header a {
    color: #565a5c;
}

.full-container.header a:hover {
    color: #000;
    text-decoration: none;
}

.full-container.header .container .pull-left,
.full-container.header .container .pull-right {
    height: 60px;
    line-height: 60px;
}

.full-container.header .signin button {
    margin-right: 20px;
    line-height: 35px;
    padding: 0 15px;
    width: auto;
    min-width: initial;
    position: relative;
    font-size: 15px;
    font-weight: 400;
}

.full-container.header .language {
    margin-left: 0.5em;
}

.full-container.header .language img {
    height: auto;
    min-width: 15px;
}

.full-container.header .language img.switzerland {
    margin: 0 2px;
}

.full-container.header .language .dropdown button {
    border: none;
    background-color: white;
    padding: 0 3px;
}

.full-container.header .language .dropdown {
    line-height: 60px;
}

.full-container.header .language .dropdown ul.dropdown-menu {
    min-width: 90px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    left: -8px;
    top: 13px;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(215, 214, 219, 0.75);
    -moz-box-shadow:    0px 1px 2px 0px rgba(215, 214, 219, 0.75);
    box-shadow:         0px 1px 2px 0px rgba(215, 214, 219, 0.75);
    background-color: white;
}

.full-container.header .language .dropdown ul.dropdown-menu li {
    line-height: 16px;
    padding: 0 10px;
    background-color: white;
    cursor: auto;
    font-size: 16px;
}

.full-container.header .language .caret {
    margin-left: 8px;
}

.full-container.header .language .dropdown ul.dropdown-menu a:hover {
    background-color: inherit;
    color: inherit;
}

.full-container.header .language .dropdown ul.dropdown-menu li a {
    padding: 0.25em 0;
    cursor: pointer;
}

.full-container.header .language .dropdown ul.dropdown-menu li:last-child {
    padding: 0.25em 0;
}

.full-container.header .language .dropdown ul.dropdown-menu li .current {
    font-weight: bold;
}

.full-container.header .language .dropdown ul.dropdown-menu li a span {
    padding: 0.1em 0.25em;
}

.full-container.header .language .dropdown ul.dropdown-menu li span {
    font-size: 0.65em;
}

.full-container.header .language .dropdown ul.dropdown-menu li.flag {
    padding: 0.6em 0.75em;
    font-size: 1em;
}

.full-container.header .language .dropdown ul.dropdown-menu li.section-label {
    border-top:         1px solid #DCE0E0;
    padding: 0.15em 0;
}

.full-container.header .language .dropdown ul.dropdown-menu li.section-label,
.full-container.header .language .dropdown ul.dropdown-menu li.section-label:hover {
    background-color: #fafafa;

}

.full-container.header .language .dropdown ul.dropdown-menu li.section-label span {
    font-size: 0.65em;
    padding: 0;
}

.full-container.header .language .dropdown ul.dropdown-menu li span.change-language a {
    padding: 0.25em 0.35em;
}

.full-container.header .language span.caret {
    vertical-align: middle;
    font-size: 1.2em;
}

.full-container.header .container .navigation {
    height: 60px;
    line-height: 60px;
}

.full-container.header .container .primary {
    color: #ff5b4d;
}

.full-container.header .container .primary:hover {
    color: #f25749;
}

.success {
    color: #54BE39;
}

/*********************************************/
/* Pre-Header
/*********************************************/

.full-container.pre-header {
    background-color: inherit;
    border-bottom: none;
}

/*******************************************/
/* Modals styles
/*******************************************/

.modal {
    -webkit-overflow-scrolling: auto;
}

.modal.in {
    display: block;
    background-color: rgba(32, 32, 32, 0.4);
}

.modal .btn {
    min-width: 0;
}

.modal .modal-dialog {
    margin: 0;
    padding: 0;
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: none;
}

.modal .modal-content {
    background-color: transparent;
    -webkit-box-shadow: 0 0 0 0 black;
    -moz-box-shadow: 0 0 0 0 black;
    box-shadow: 0 0 0 0 black;
    border: 0;
    margin: 0;
    padding: 0;
    display: table-cell;
    vertical-align: middle;
    max-width: none;
}

.modal .modal-middle {
    margin-left: auto;
    margin-right: auto;
    padding: 0.6em;
}

.modal .modal-header {
    text-align: right;
    padding: 0;
    border: 0;
    float: right;
}

.modal .modal-header button.btn {
    margin: 0;
    padding: 0 0.5em;
    border-radius: 0;
    border: 0;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 600;
    height: 2em;
    min-width: 0;
    width: 2em;
    line-height: 1em;
    text-align: center;
    background-color: #424242;
    color: white;
}

.modal .modal-body {
    background-color: white;
    font-size: 1em;
    width: auto;
    float: none;
    padding: 2em 4em;
    margin-right: 3em;
}

.modal .modal-shadow {
    box-shadow: 0 16px 20px 0 rgba(0, 0, 0, 0.11);
}

.modal.video-modal .video  {
    margin: 0 auto;
    display: block;
    padding: 20px;
    background: #FFF;
    padding: 50px 30px 30px 30px;
}

.modal.video-modal .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%
}

.modal.video-modal .video-container iframe {
    position:  absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    right: 0;
    width:100%;
    height:100%
}

.modal.video-modal .video .close {
    margin-top: -40px;
    margin-right: -15px;
    cursor: pointer;
}

@media (min-width: 1200px) {
    .modal .modal-header button.btn {
        position: absolute;
    }

    .modal .modal-middle {
        max-width: 70em;
        padding: 2em 0.8em;
    }
}

@media (min-width: 768px) {
    .modal .modal-body .title {
        max-width: 85%;
    }
}

@media (max-width: 767px) {
    body.modal-open {
        position: fixed;
        overflow: hidden;
    }
}

body.mandate-view .full-container.default .container p {
    text-align: left;
}

.bat-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    overflow-y: auto;
    overflow-x: none;
}

.bat-modal.fade {
    background-color: rgba(32,32,32,0.7);
}

.bat-modal .modal-table {
    margin: 0;
    padding: 0;
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.bat-modal .modal-table .modal-table-cell {
    margin: 0;
    padding: 0;
    display: table-cell;
    vertical-align: middle;
    max-width: none;
}

.bat-modal .modal-table .modal-table-cell .modal-middle {
    margin: 1em auto;
    width: 37em;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(222, 222, 222, 0.9);
    -moz-box-shadow:    0px 1px 5px 0px rgba(222, 222, 222, 0.9);
    box-shadow:         0px 1px 5px 0px rgba(222, 222, 222, 0.9);
    background-color: white;
    font-size: 1.25em;
}

.bat-modal.fade .modal-table .modal-table-cell .modal-middle {
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none;
}

.bat-modal .modal-middle div.content {
    padding: 2em;
}

.bat-modal .modal-middle div.footer {
    background-color: #353535;
}

.bat-modal .modal-middle div.footer .button {
    height: 4em;
    line-height: 4em;
    padding: 0 1.25em;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    font-size: 0.8em;
    border: 0;
}

.bat-modal .modal-middle div.footer .button-cancel {
    line-height: 2em;
    padding: 1em 0;
}

.bat-modal .modal-middle div.footer .button.button-cancel:hover {
    background-color: #494949;
}

.bat-modal .modal-middle div.footer .button-cancel .separator {
    border-right: 1px solid rgb(96,96,96);
    padding: 0 1.25em;
}

.bat-modal .modal-middle div.footer .button.button-ok {
    background-color: #ffcd00;
    color: black;
}

.bat-modal .modal-middle div.footer .button.button-ok:hover {
    background-color: #ffbc00;
}

#cancellation-policy-modal .modal-body,
#terms-conditions-modal .modal-body,
#privacy-policy-modal .modal-body {
    padding: 0;
    background-color: #edecf1;
}

#cancellation-policy-modal .modal-middle .modal-body,
#terms-conditions-modal .modal-middle .modal-body,
#privacy-policy-modal .modal-middle .modal-body {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100%;
    height: 37em;
    max-height: 80vh;
}

#cancellation-policy-modal .modal-middle iframe,
#terms-conditions-modal .modal-middle iframe,
#privacy-policy-modal .modal-middle iframe {
    width: 100%;
    height: 37em;
    max-height: 80vh;
    border: 0;
    overflow: scroll !important;
    position: relative;
}

/*******************************
 * Forms
 ******************************/
body .field label {
    display: block;
    padding: 0.8em 0.5em 0.8em 0;
    text-transform: uppercase;
    color: #9B9B9B;
    font-weight: bold;
}

body .field .validation {
    position: absolute;
    margin-top: 0.25em;
    color: #FF5B4D;
}

body .field .input-container .single-input {
    display: inline-block;
    position: relative;
}

body .field .input-container .input-icon {
    position: absolute;
    font-size: 1.25em;
    left: 0;
    top: 50%;
    margin-top: -0.51em;
}

body .field .input-container img.input-icon {
    width: 1em;
}

body .field .input-container .input-icon.fa.fa-chevron-right {
    color: #D6D6D6;
}

body .field .input-container .input-icon.fa.fa-check {
    color: #5DBF49;
}

body .field .input-container .input-icon.fa.fa-exclamation {
    color: #FF5B4D;
}

body .field .input-container .input-icon.fa.fa-sort-desc {
    font-size: 1.75em;
    right: 0.5em;
    top: 0.15em;
    cursor: pointer;
}

body .field input[type="text"] {
    width: 100%;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    -webkit-border-radius: 0em;
    -moz-border-radius: 0em;
    border-radius: 0em;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border: none;

    border-bottom: 1px solid #D6D6D6;
}

body .field input[type="text"]:focus {
    outline: none;
}

body .field input[type="text"].ng-dirty.ng-invalid {
    border-bottom: 1px solid #FF5B4D;
}

/*********************************************/
/* Angular
/*********************************************/
[ng\:cloak], [ng-cloak], .ng-cloak {
    display: none !important;
}

/*********************************************/
/* Landing page
/*********************************************/
body.landing-view {
    background-color: white;
    position: relative;
    min-height: 100%;
    padding-bottom: 5em;
}

body.landing-view .full-container {
    border: none;
}

body.landing-view .full-container.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: rgb(183,183,183);
}

body.landing-view .full-container.maps .container,
body.landing-view .full-container.header .container,
body.landing-view .full-container.footer .container {
    width: 84em;
    background-color: transparent;
    margin: 0 auto;
    padding: 1em 0;
    line-height: 4em;
}

@media (max-width: 1150px) {
    body.landing-view .full-container.maps .container,
    body.landing-view .full-container.header .container,
    body.landing-view .full-container.footer .container {
        width: auto;
        margin: 0 15px;
    }
}

body.landing-view .full-container.footer .partners img {
    margin-left: 1em;
}

body.landing-view .full-container.maps h1 {
    margin: 0.75em 0;
}

body.landing-view .full-container.maps .country {
    padding: 0 1em;
}

body.landing-view .full-container.maps .country > div {
    margin: 0 auto 2em auto;
    border: 1px solid rgb(235,235,235);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    max-width: 20em;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(230, 230, 230, 0.5);
    -moz-box-shadow: 0px 2px 3px 0px rgba(230, 230, 230, 0.5);
    box-shadow: 0px 2px 3px 0px rgba(230, 230, 230, 0.5);
}

body.landing-view .full-container.maps .country img {
    width: 100%;
}

body.landing-view .full-container.maps .country h3 {
    margin-bottom: 0;
}

body.landing-view .full-container.maps .country p {
    margin: 0.25em 0 1.25em 0;
    color: rgb(155,155,155)
}

body.landing-view .full-container.maps .country a {
    color: rgb(155,155,155)
}

body.landing-view .full-container.maps .country a:hover {
    color: #ff5b4d;
    text-decoration: none;
}

/*********************************************/
/* Tech section
/*********************************************/
body.tech-section .full-container {
    border-bottom: 1px solid #eee;
}

body.tech-section .full-container.default .container,
body.tech-section .full-container.secondary .container {
    padding: 4em 0;
}

body.tech-section .full-container.newspapers .container {
    padding: 2.5em 0 1.5em 0;
}

body.tech-section .full-container h2 {
    margin-top: 0;
    font-size: 2.4em;
    font-weight: 300;
}

body.tech-section .full-container h4 {
    margin-top: 0;
    font-weight: 500;
}

body.tech-section .tech-header {
    background-image: url('/site/img/background_tech.jpg');
    background-size: auto 90%;
    background-position: -3em bottom;
}

body.tech-section .tech-header h1 {
    font-weight: 300;
}

body.tech-section .tech-header p {
    margin-top: 2em;
}

body.tech-section .tech-2nd-fold .circles > div > div {
    border: 1px solid #e8e8e8;
    width: 10em;
    height: 10em;
    padding: 1.7em;
    border-radius: 10em;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

body.tech-section .tech-2nd-fold .circles > div > div > span:first-child {
    font-size: 2em;
    font-weight: 300;
    padding-right: 0.3em;
}

body.tech-section .tech-2nd-fold .circles > div > div > span:last-child {
    font-weight: 300;
}

body.tech-section .tech-2nd-fold .pillars {
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 2em;
}

body.tech-section .tech-2nd-fold .company-profile {
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 2em;
}

body.tech-section .tech-3rd-fold .tech-stack-imgs > img {
    display: block;
    margin: 2.5em auto 0;
}

body.tech-section .tech-3rd-fold .tech-stack-imgs > img:last-child {
    display: block;
    margin-top: 1em;
}

body.tech-section .tech-3rd-fold .tech-providers {
    margin-top: 1.5em;
}

body.tech-section .tech-3rd-fold .tech-providers p {
    margin: 0;
    color: #828282;
}

body.tech-section .tech-3rd-fold .tech-providers-imgs {
    margin-top: 1em;
}

body.tech-section .tech-3rd-fold .tech-providers-imgs > img {
    display: inline-block;
    margin: 0 1.2em 1.2em 0;
}

body.tech-section .tech-4th-fold .team-members {
    margin-top: 3em;
}

body.tech-section .tech-4th-fold .team-members .role {
    margin: 0;
    font-size: 0.85em;
    font-weight: 500;
    color: #0083C3;
}

body.tech-section .tech-4th-fold .team-members .description {
    font-size: 0.9em;
    height: 6em;
}

body.tech-section .tech-4th-fold .team-members img {
    width: 100%;
    margin-bottom: 1em;
}

body.tech-section .tech-5th-fold .openings {
    margin-top: 2em;
}

body.tech-section .tech-5th-fold .openings a > div {
    padding: 2em;
    background-color: #fff;
    font-weight: 500;
}

body.tech-section .tech-5th-fold .openings .arrow {
    font-size: 2em;
    line-height: 0.6em;
}

@media (min-width: 992px) {
    body.tech-section .tech-header .row > div {
        padding: 0;
    }
}

@media (min-width: 768px) {
    body.tech-section .tech-2nd-fold .company-profile {
        margin: 4em 0 0 1em;
    }

    body.tech-section .tech-3rd-fold .tech-stack-description {
        margin-top: 4em;
    }

    body.tech-section .tech-4th-fold .intro p {
        margin: 0;
    }

    body.tech-section .tech-4th-fold .team-members img {
        width: 90%;
    }
}

@media (max-width: 991px) {
    body.tech-section .tech-header .row {
        text-align: center;
    }

    body.tech-section .tech-header a.btn-light {
        margin: 0 auto;
    }
}

/*********************************************/
/* Amazon Alexa section
/*********************************************/
body.amazon-alexa-section .separator {
    height: 1px;
    background-color:#eaeaea;
}

body.amazon-alexa-section .full-container.amazon-alexa-header {
    background-image: url('/site/img/alexa_top_bg.png');
    background-repeat: no-repeat;
    background-position: center;
}

body.amazon-alexa-section .amazon-alexa-2nd-fold .separator {
    max-width: 190px;
}

body.amazon-alexa-section .amazon-alexa-2nd-fold div div p {
    margin-top: 6px;
    margin-bottom: 6px;
}

body.amazon-alexa-section .amazon-alexa-3rd-fold div div div img {
    width: 100%;
}

body.amazon-alexa-section .amazon-alexa-4th-fold div.container div.row > div div.bullet h3 {
    display:inline;
}

body.amazon-alexa-section .amazon-alexa-4th-fold div.container div.row > div div.bullet img {
    margin-top: 5px;
}

body.amazon-alexa-section .amazon-alexa-4th-fold div.container div.row div > div.bg-photo {
    position: relative;
    height: 440px;
    width: 100%;
    max-width:500px;
    background-color: rgba(85, 85, 85, 0.7);
    background-image: url('/site/img/alexa_apartment.png');
    background-repeat: no-repeat;
    background-position: center;
}

body.amazon-alexa-section .amazon-alexa-4th-fold div.container div.row > div div.utterances-container,
body.amazon-alexa-section .amazon-alexa-4th-fold div.container div.row > div div.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: 440px;
    text-align: center;
    object-fit: cover;
}

body.amazon-alexa-section .amazon-alexa-4th-fold div.container div.row > div .layer {
    background-color: rgba(85, 85, 85, 0.7);
}

body.amazon-alexa-section .amazon-alexa-4th-fold div.container div.row > div div.utterances-container .utterances {
    position: relative;
    top: 48%;
    transform: translateY(-50%);
}

.speech-bubble {
    position: relative;
    min-height: 74px;
    max-width: 80%;
    margin:0 auto;
    padding: 0px;
    background: #f2f4f4;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: #d5d5d5 solid 0.6px;
    margin-top: 8px;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 9px 0 9px 7px;
    border-color: transparent #f2f4f4;
    display: block;
    width: 0;
    z-index: 1;
    right: -6px;
    top: 10px;
}

.speech-bubble:before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 9px 0 9px 7px;
    border-color: transparent #d5d5d5;
    display: block;
    width: 0;
    z-index: 0;
    right: -7px;
    top: 10px;
}

.speech-bubble div {
    width: 80%;
    max-width:265px;
    margin:0 auto;
    font-style: italic;
    font-family: Georgia;
}

body.amazon-alexa-section .amazon-alexa-5th-fold div.container div.row div div {
    margin: 0 auto;
}

body.amazon-alexa-section .amazon-alexa-5th-fold .separator,
body.amazon-alexa-section .amazon-alexa-5th-fold div.container div.row > div div:not(.separator) {
    width: 100%;
    max-width: 727px;
}

body.amazon-alexa-section .amazon-alexa-5th-fold div.container div.row > div div.arrow {
    width: 24px;
}

body.amazon-alexa-section .bullet  {
    cursor: pointer;
}

body.amazon-alexa-section .amazon-alexa-5th-fold div.container div.row div div.expanded-bullet {
    background-color: #f7f7f7;
}

@media (min-width: 992px) {
    body.amazon-alexa-section .amazon-alexa-header .row > div {
        padding: 0;
    }
}

@media (min-width:768px) and (max-width:992px){
    .speech-bubble p {
        margin-top:8px;
        margin-bottom:3px;
    }
}

@media (max-width: 767px) {

    body.amazon-alexa-section .amazon-alexa-header div.bg-photo-mobile {
        height:242px;
        margin:0!important;
        padding:0!important;
        width: 100%;
    }

    body.amazon-alexa-section .amazon-alexa-header div.bg-photo-mobile img {
        width: 100%;
        height:100%;
        object-fit: cover;
    }

    body.amazon-alexa-section .amazon-alexa-header div.container:not(.bg-photo-mobile) .row {
        background: #fff;
        height:100%;
        min-height:232px;
    }

    body.amazon-alexa-section .amazon-alexa-3rd-fold div.container div.row div img {
        max-width: 288px;
    }
}

/***************
* Cookie banner
****************/
#cookie-policy-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgba(88, 88, 88, 0.9);
    color: #fff;
    padding: 10px;
    z-index: 99999;
}
#cookie-policy-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
#cookie-policy-bar div {
    display: table-cell;
    vertical-align: top;
    font-size: 0.85em;
}
#cookie-policy-bar button {
    background-color: rgba(208, 215, 222, 0.7);
    min-width: initial;
    display: table-cell;
    vertical-align: top;
    height: auto;
    padding: 10px;
    margin: 0 20px;
    font-size: 10px;
}
@media (max-width: 768px) {
    #cookie-policy-bar {
        padding: 10px 5px;
    }
    #cookie-policy-bar div {
        display: block;
        margin-bottom: 5px;
    }
}

/*******************
* Mobile app footer
*******************/

.app-mobile-stores {
    height: 88px;
    width: 100%;
    padding-top: 20px;
    background: #fff;
    position: absolute;
    bottom: 0px;
    text-align: center;
}

.app-mobile-stores span {
    font-size: 18px;
    padding: 6px;
    display: inline-block;
}

.app-mobile-stores img {
    width: 134.6px;
    height: 40px;
    object-fit: contain;
    margin-right: 17px;
}

@media (max-width: 533px) {
    .app-mobile-stores {
        padding-top: 10px;
    }

    .app-mobile-stores span {
        font-size: 12px;
    }
}

.mobile-apps {
    background-color: #f8f8f8;
}

.mobile-apps span {
    white-space: nowrap;
}

.mobile-apps-img {
    width: 270px;
    height: 271px;
}

.mobile-apps div {
    text-align: center;
}

.mobile-apps a img {
    height: 42px;
    object-fit: contain;
    margin-right:17px;
}

.mobile-apps p {
    font-size: 25px;
    font-weight: 500;
    color: #424242;
    text-align: center;
    width: 100%;
    margin-left: -14px;
    margin-bottom: 36px;
}

.mobile-apps .mobile-apps-download {
    padding-top: 60px;
}

@media (max-width: 992px) {
    .mobile-apps p {
        margin-left: 0px;
    }

    .mobile-apps a img {
        margin: 0px 5px;
    }

    .mobile-apps .mobile-apps-download {
        padding-top: 15px;
    }
}

/*********************************************/
/* B2B Lead Generation Form
/*********************************************/

body .b2b-lead-gen .form-control.error {
    border: 1px solid #ffcd00;
}

body .full-container.b2b-lead-gen {
    background-size: cover;
    background-position: bottom center;
}

body .full-container.b2b-lead-gen hr {
    margin-top: 8px;
    margin-bottom: 8px;
}

body .full-container.b2b-lead-gen .form-container {
    background-color: rgba(255, 255, 255, 0.87);
    padding: 1em;
}

body .full-container.b2b-lead-gen .form-container .fields {
    margin: 0 1em;
}

body .full-container.b2b-lead-gen .form-container .fields button {
    width: 100%;
    font-weight: 500;
}

@media (max-width: 767px) {
    body .full-container.b2b-lead-gen h3 {
        margin-bottom: 1em;
        text-align: center;
    }
}

/*********************************************/
/* Calendar component
/*********************************************/

body .cleaning-dates-cnt {
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

body .cleaning-dates-left-arrow,
body .cleaning-dates-right-arrow {
    display: block;
    position: absolute;
    top: 1.3em;
    width: 1.3em;
    height: 1.3em;
    text-align: center;
    font-size: 3em;
    line-height: 1.1em;
    color: #828282;
    text-decoration: none;
    z-index: 2;
}

body .cleaning-dates-left-arrow {
    left: -0.5em;
}

body .cleaning-dates-right-arrow {
    right: -0.5em;
}

body .cleaning-dates {
    position: relative;
    display: table;
    width: 200%;
    margin: 2em 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body .cleaning-dates .date {
    display: table-cell;
    width: 7.14%;
    text-align: center;
    padding: 2em 1em;
    cursor: pointer;
    position: relative;
}

body .cleaning-dates .date > div:first-child {
    font-size: 1.3em;
}

body .cleaning-dates .date:not(.active):after {
    content: "";
    display: block;
    width: 1px;
    margin: 0 auto;
    background: #e5e5e5;
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
}

body .cleaning-dates .date:last-child:after {
    display: none;
}

body .cleaning-dates .date.active,
body .cleaning-hours .hour.active {
    background-color: #fffcf1;
    box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.06);
    border: solid 1px #f3ca00;
}

body .cleaning-dates .date.active {
    box-shadow: none;
}

body .cleaning-hours .hour {
    padding: 0.5em;
    display: inline-block;
    width: 14%;
    text-align: center;
    border: solid 1px transparent;
    cursor: pointer;
}

body .cleaning-dates .date.not-available,
body .cleaning-hours .hour.not-available {
    color: #ccc;
}

body .availability-loader {
    position: absolute;
    left: 0;
    right: 0;
}

@media (max-width: 767px) {
    body .cleaning-dates-left-arrow,
    body .cleaning-dates-right-arrow {
        top: 0.65em;
    }

    body .cleaning-dates {
        width: 466.66%;
        margin-top: 0;
    }

    body .cleaning-hours .hour {
        width: 20.833%;
        margin: 0 6.25%;
    }
}

/*********************************************/
/*                                           */
/*                  MOBILE                   */
/*                                           */
/*********************************************/

/*********************************************/
/* Bootstrap components
/*********************************************/

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

/*********************************************/
/* Containers
/*********************************************/

@media (max-width: 767px) {
    .container {
        width: auto;
        margin: 0 15px;
        padding: 3em 0em;
    }
}

/*********************************************/
/* Header
/*********************************************/

@media (max-width: 850px) {
    .full-container.header .language .dropdown button {
        margin-right: 0em;
    }

    .full-container.header .language .dropdown ul.dropdown-menu li:not(.flag) {
        font-size: 1.5em;
    }

    .full-container.header .language .dropdown ul.dropdown-menu {
        left: initial;
        right: -1px;
    }

    .full-container.header .language .dropdown ul.dropdown-menu li.flag {
        text-align: right;
    }
}

/*********************************************/
/* Footer
/*********************************************/

footer h1, footer h2, footer h3 {
    margin: 0;
    padding: 0;
}

footer .rating {
    margin-left: 10px;
    max-width: 200px;
}

footer .rating .score {
    font-size: 16px;
    vertical-align: middle;
    margin-left: 5px;
}

footer .rating p {
    color: #ccc;
    font-size: 11px;
}

footer .facility-management-block,
footer .newsletter-block {
    background-color: #f9fbfc;
}

@media (min-width: 768px) {
    footer .facility-management-block {
        background-image: url(/site/img/facilitymanagement_bg.png);
        background-size: cover;
        background-position: right;
    }

    footer .newsletter-block {
        background-image: url(/site/img/newsletter_bg.png);
        background-size: cover;
        background-position: right;
    }

    footer .newsletter-block .submit-buttons {
        text-align: right;
    }


    footer .newsletter-block button {
        margin-left: 10px;
    }
}

footer .newsletter-block #newsletter-form {
    max-width: 400px;
}

footer .newsletter-block button {
    min-width: initial;
    padding-left: 20px;
    padding-right: 20px;
}

footer .newsletter-block .buttons p {
    line-height: 40px;
}

footer .cards {
    width: 210px;

}

footer .cards .row:first-child {
    margin-bottom: 17px;
}

footer .cards .row > div {
    height: 27px;
}

footer .cards .row > div.paypal {
    height: 21px;
    text-align: left;
}

footer .cards .row > div.billpay {
    height: 15px;
    text-align: right;
}

footer .cards .row > div > img {
    height: 100%;
}

footer .cards .invoice {
    position: relative;
    display: inline-block;
    height: 100%;
    margin-left: -10px;
}

footer .cards .invoice img {
    height: 70%;
    position: absolute;
    width: 100%;
    top: -1px;
}

footer .cards .invoice span {
    font-size: 10px;
    line-height: 0;
    position: relative;
    bottom: -15px;
    width: 100%;
}

footer .ekomi {
    padding: 8px;
}

footer .safe {
    padding: 10px;
}

footer .safe img,
footer .apps > a > img {
    height: 38px;
}

footer .flags > a,
footer .socials > a {
    margin-right: 10px;
}

footer .flags > a:last-child {
    margin-right: 0;
}

footer .flags > a > img {
    height: 15px;
}

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

footer .footer-menu ul li {
    margin-bottom: 7px;
}

footer .footer-menu ul li a {
    color: #424242;
    text-decoration: underline;
    cursor: pointer;
}

footer .footer-menu ul li.expand a {
    text-decoration: none;
    color: #828282;
}

footer .footer-menu ul li.expand a img {
    vertical-align: top;
}

footer .up-button {
    position: absolute;
    right: 0;
    top: -33px;
    cursor: pointer;
}

@media (max-width: 991px) {
    footer .up-button {
        right: 50%;
        margin-right: -39.5px;
    }
}

footer .dropdown-country .arrow {
    vertical-align: top;
}

footer .dropdown-country ul {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.07);
}

footer .dropdown-country li a {
    background-color: transparent !important;
}

footer .dropdown-menu-languages span {
    width: 28px;
    display: inline-block;
}

footer .dropdown-menu-languages span img {
    height: 13px;
}

#footer-facility-management .modal-header > div {
    position: absolute;
    right: 48px;
    top: 60px;
    z-index: 1;
    cursor: pointer;
}

#footer-facility-management .modal-body {
    padding-top: 48px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-right: 0;
}

#footer-facility-management .modal-body .content {
    padding-left: 48px;
    padding-right: 48px;
}

#footer-facility-management .quote {
    background-image: url(/site/img/quote.svg);
    background-repeat: no-repeat;
    background-size: auto 40px;
}

#footer-facility-management .quote p {
    padding-top: 15px;
}

#footer-facility-management .form-block {
    display: table;
    width: 100%;
}

#footer-facility-management .form-block > div {
    display: table-cell;
    width: 50%;
    vertical-align: top;
}

#footer-facility-management .privacy span {
    color: #ccc;
    font-size: 11px;
    margin-left: 10px;
}

@media (max-width: 991px) {
    footer .container {
        padding-left: 0;
        padding-right: 0;
    }

    #footer-facility-management .content h1:first-child {
        width: 90%;
        font-size: 21px;
    }

    #footer-facility-management .form-block {
        display: block;
    }

    #footer-facility-management .form-block > div {
        display: block;
        width: auto;
    }

    #footer-facility-management .form-block > div:first-child {
        height: 250px;
    }
}

@media (max-width: 767px) {
    footer .newsletter-block button {
        width: 100%;
    }

    footer .newsletter-block button:last-child {
        margin-top: 15px;
    }

    footer .container > .row > div:last-child .dropdown-country ul.dropdown-menu {
      left: initial;
      right: 0;
      margin-right: 0;
    }
}

/*********************************************/
/* Generic
/*********************************************/

@media (max-width: 767px) {
    h1 {
        margin-top: 0;
    }

    .box {
        padding: 0.5em 1.5em;
    }

    .text-center-mobile,
    .text-center-xs {
        text-align: center;
    }

    .text-left-xs {
        text-align: left !important;
    }

    .text-center-mobile > *,
    .text-center-xs > * {
        float: none !important;
    }
    .width-100-block-xs {
        width: 100%!important;
    }

    .dark-text-block-xs {
        color: #424242 !important;
    }

    .light-text-block-xs {
        color: #828282 !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .text-center-mobile,
    .text-center-sm {
        text-align: center;
    }

    .text-center-mobile > *,
    .text-center-sm > * {
        float: none !important;
    }

    .margin-big-sm {
        margin-left: 5em !important;
        margin-right: 5em !important;
    }

    .width-100-block-sm {
        width: 100%!important;
    }
}

@media (max-width: 991px) {
    .background-image {
        background-image: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .text-center-md {
        text-align: center!important;
    }
}

@media (min-width: 1200px) {
    .text-center-lg {
        text-align: center!important;
    }
}

/*******************************************/
/* Modals styles
/*******************************************/
@media (max-width: 767px) {
    .modal .modal-middle {
        padding: 0.5em;
        width: auto;
    }

    .modal .modal-content {
        -webkit-box-shadow: 0 0 0 0 black;
        -moz-box-shadow: 0 0 0 0 black;
        box-shadow: 0 0 0 0 black;
    }

    .modal .modal-header {
        float: none;
    }

    .modal .modal-body {
        margin-right: 0;
        padding: 2em;
    }

    .bat-modal .modal-table .modal-table-cell .modal-middle {
        margin: 1em;
        width: auto;
    }
}

/*******************************************/
/* Landing Page
/*******************************************/
@media (max-width: 991px) {
    body.landing-view .full-container.maps h1 {
        margin: 0.75em 0;
    }
}

@media (max-width: 767px) {
    body.landing-view .full-container.maps h1 {
        margin: 0.25em 0 0.75em 0;
    }

    body.landing-view {
        padding-bottom: 8em;
    }

    body.landing-view .full-container.footer .container > div {
        display: block !important;
        float: none !important;
        text-align: center;
    }
}

@media (min-width: 767px) {
    .text-left-sm {
        text-align: left !important;
    }

    .text-right-sm {
        text-align: right;
    }

}

@media (min-width: 991px) {
    .text-left-md {
        text-align: left;
    }

    .text-right-md {
        text-align: right !important;
    }

}

/*********************************************/
/* New Header
/*********************************************/

body.nav-open {
    overflow: hidden;
}

.full-container.header.top-bar.new,
.full-container.header.top-bar.new .container {
    background-color: #f5f5f5;
    height: 36px;
    line-height: 36px;
    padding-top: 0;
    padding-bottom: 0;
}

.full-container.header.top-bar.new .container img,
.full-container.header.top-bar.new .container a.security {
    margin-top: -3px;
}

.full-container.header.top-bar.new .container img {
    margin-right: 5px;
}

.full-container.header.new {
    width: 100%;
    position: fixed;
    top: 0;
    overflow: hidden;
    z-index: 100;
    background: transparent;
    color: inherit;
}

.full-container.header.new .container {
    background: #fff;
}

.full-container.header.new .logo {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    left: 50%;
    margin-left: -60px;
    text-align: center;
}

.full-container.header.new .logo img {
   width: 120px;
   margin-top: 10px;
}

.full-container.header.new a.security {
    background-image: url("/site/img/logo-hdi.svg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 15px;
    width: 34px;
    vertical-align: middle;
    margin: 0 10px 0 0;
    display: inline-block;
}

.full-container.header.new .phone-container {
    line-height: initial;
    margin-top: 20px;
}

.full-container.header.new .phone-container a {
    color: #0083C3;
}

.full-container.header.new .login {
    background: url('/site/img/user.svg') no-repeat left center transparent;
    height: 25px;
    width: 25px;
    border: 0 none;
    margin: 13px;
    float: right;
    z-index: 1;
}

.full-container.header.new .language .dropdown ul.dropdown-menu {
    min-width: 110px;
}

.full-container.header.new .navigation-container {
    height: 0;
    height: 0;
    width: 0;
    width: 0;
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
}

.full-container.header.new .navigation {
    width: 100%;
    height: calc(100% + 13px);
    margin-top: -13px;
    max-width:340px;
    margin-left: -340px;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.full-container.header.new .navigation .header {
    height: 50px;
    border-bottom: solid 1px #f4f4f4;
    background-color: #FFFFFF;
}

.full-container.header.new .navigation .header .language {
    margin-right: 10px;
    background: none;
    z-index: 1;
}

.full-container.header.new .navigation .header .language .dropdown-toggle {
    background: none;
}

.full-container.header.new .navigation .close-nav {
    background: url('/site/img/close.svg') no-repeat center center transparent;
    height: 25px;
    width: 25px;
    border: 0 none;
    margin-top: 18px;
}

.full-container.header.new nav {
    overflow: auto;
    width: 100%;
    max-height: 100%;
}

.full-container.header.new .navigation-container nav > h4 {
    margin:0;
    line-height: 14px;
    padding-top: 20px;
    background: #fff;
}

.full-container.header.new .navigation-container nav ul {
    list-style: none;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0;
}

.full-container.header.new .navigation-container nav ul li {
    height: 58px;
    max-height: 58px;
    overflow: hidden;
    line-height: 58px;
    background: #fff;
    border-bottom: solid 1px #f4f4f4;
    text-indent: 30px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    font-size: inherit;
    margin: 0;
}

.full-container.header.new .navigation-container nav > .object-types > ul > li:after{
    content: "";
    position: absolute;
    display: block;
    background: url('/site/img/icon_expand.png') no-repeat transparent;
    width: 16px;
    height: 16px;
    right: 15px;
    top: 21.5px;
}

.full-container.header.new .navigation-container nav ul li a {
    width: 100%;
    font-size: 15px;
    display: block;
}

.full-container.header.new .navigation-container nav ul li.open {
    max-height: none;
    height: auto;
}

.full-container.header.new .navigation-container nav ul > li > ul {
    background-color: #f9f9f9;
    margin: 0;
}

.full-container.header.new .navigation-container nav ul li > ul li {
    background-color: #f9f9f9;
    border: 0 none;
}

@media (max-height: 600px) {
    .full-container.header.new .navigation-container nav ul li {
        height: 45px;
        line-height: 45px;
    }

    .full-container.header.new .navigation-container nav > .object-types > ul > li:after{
        top: 14px;
    }

    .full-container.header.new .phone-container {
        margin-top: 0;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .full-container.header.new {
        top: 36px;
    }

    .full-container.header.top-bar.new {
        top: 0;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    body.new-nav {
        margin-top: 55px;
    }

    .full-container.header.new .container {
        margin: 0;
        width: 100%;
        max-width: none;
        background: #fff;
        padding: 0;
    }

    .full-container.header.new.open {
        height: 100%;
        height: 100vh;
        width: 100%;
        width: 100vw;
    }

    .full-container.header.new .open-nav {
        background: url('/site/img/menu.svg') no-repeat center center transparent;
        height: 25px;
        width: 25px;
        border: 0 none;
        margin: 13px;
        float: left;
    }

    .full-container.header.new.open .navigation-container {
        height: 100%;
        height: 100vh;
        width: 100%;
        width: 100vw;
    }

    .full-container.header.new.open .navigation {
        margin-left: 0;
        overflow: hidden;
        text-indent: 30px;
    }

    .full-container.header.new h4,
    .full-container.header.new .phone-container h3,
    .full-container.header.new .phone-container h2 {
        color: #828282;
    }

    .full-container.header.new .navigation-container nav > .object-types > ul > li.open:after{
        -webkit-transform: rotate(-180deg);
           -moz-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
             -o-transform: rotate(-180deg);
                transform: rotate(-180deg);
    }

    .full-container.header.new .language .dropdown button {
        margin-right: 0em;
    }

    .full-container.header.new .language .dropdown ul.dropdown-menu li:not(.flag) {
        font-size: 1.5em;
    }

    .full-container.header.new .language .dropdown ul.dropdown-menu {
        left: initial;
        right: -1px;
    }

    .full-container.header.new .language .dropdown ul.dropdown-menu li.flag {
        text-align: right;
    }
}

@media (min-width: 991px) {
    .full-container.header.new {
        position: static;
        font-size: 15px;
        overflow: initial;
    }

    .full-container.header.new .open-nav, .full-container.header.new .close-nav {
        display: none;
    }

    .full-container.header.new .logo {
        position: static;
        float: left;
        display: inline-block;
        margin: 0;
    }

    .full-container.header.new .logo img {
       margin-top: 20px;
       width: 140px;
    }

    .full-container.header.new .phone-container {
        display: block;
        position: absolute;
        right: 20px;
        line-height: 73px;
        margin-top: 0;
    }

    .full-container.header.new .phone-container span {
        margin-right: 10px;
    }

    .full-container.header.new .phone-container h3,
    .full-container.header.new .phone-container h2 {
        display: inline-block;
        vertical-align: middle;
    }

    .full-container.header.new .login {
        height: auto;
        padding: 0 0px 0 30px;
        position: absolute;
        right: 125px;
        top: 85px;
        width: auto;
        white-space: nowrap;
    }

    .full-container.header.new .language .dropdown ul.dropdown-menu li.flag {
        text-align: right;
    }

    .full-container.header.new .navigation .header .language {
        position: relative;
        top: 70px;
        margin-top: 3px;
        left: -47px;
    }

    .full-container.header.new .navigation .header .language .dropdown-toggle {
        position: relative;
        left: 53px;
    }

    .full-container.header.new .navigation-container {
        position: static;
        width: 100%;
        height: initial;
        background: none;
    }

    .full-container.header.new .navigation {
        height: initial;
        margin: 0;
        max-width: initial;
        background: rgba(0, 0, 0, 0);
        transition: none;
    }

    .full-container.header.new .navigation .header {
        height: 72px;
        border-bottom: solid 1px #f4f4f4;
        background-color: #FFFFFF;
    }

    .full-container.header.new nav {
        overflow: initial;
        height: 60px;
        position: relative;
    }

    .full-container.header.new .navigation-container nav ul li {
        height: initial;
        max-height: initial;
        overflow: initial;
        line-height: inherit;
        background: transparent;
        text-indent: initial;
        transition: none;
        position: static;
        border: 0 none;
    }

    .full-container.header.new .navigation-container nav > .object-types > ul > li:after{
        -webkit-transform: rotate(-90deg);
           -moz-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
             -o-transform: rotate(-90deg);
                transform: rotate(-90deg);
    }

    .full-container.header.new .navigation-container nav > h4 {
        margin: 0 20px 0 0;
        padding-top: 0;
        line-height: 60px;
        float: left;
        font-size: 15px;
        cursor: pointer;
    }

    .full-container.header.new .navigation-container nav .object-types {
        max-height: 0;
        position: absolute;
        top: 50px;
        display: none;
        z-index: 10;
        background: white;
    }

    .full-container.header.new .navigation-container nav .object-types.open {
        display: block;
        max-height: initial;
        padding: 0;
        height: 295px;
    }

    .full-container.header.new .navigation-container nav .object-types > ul {
        padding: 24px 0;
        margin: 0;
    }

    .full-container.header.new .navigation-container nav .object-types.open > ul > li {
        position: relative;
        padding-left: 40px;
        width: 290px;
    }

      .full-container.header.new .navigation-container nav > .object-types > ul > li.open,
      .full-container.header.new .navigation-container nav > .object-types > ul > li:hover {
        background-color: #efefef;
    }

    .full-container.header.new .navigation-container nav .object-types.open > ul li > ul {
        position: absolute;
        left: 300px;
        top: -21px;
        padding: 0 20px;
        background-color: #fff;
     }

    .full-container.header.new .navigation-container nav .object-types.open > ul li > ul > li {
        background-color: #fff;
    }

    .full-container.header.new .navigation-container nav .object-types .menu-right {
        border-left: 1px solid #f1f1f1;
        width: 650px;
        height: 100%;
    }

    .full-container.header.new .navigation-container nav .object-types .menu-right:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 445px;
        background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
    }

    .full-container.header.new .navigation-container nav .object-types .menu-right ul li {
        height: 50px;
    }

    .full-container.header.new .navigation-container nav .main {
        float: left;
        margin: 0;
        border: 0 none;
    }

    .full-container.header.new .navigation-container nav .main > li {
        margin: 0 20px;
        float: left;
    }

    .full-container.header.new .navigation-container nav .main > li:last-child {
        margin-right: 0;
    }
}

@media (min-width: 1200px) {
    .full-container.header.new .phone-container {
        right: 80px;
    }

    .full-container.header.new .login {
        right: 185px;
    }
}

/*******************************************/
/* Object type block
/*******************************************/
body .full-container.object-types {
    overflow: hidden;
}

body .full-container.object-types nav {
    width: 100%;
    position: relative;
}

body .full-container.object-types nav > ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    border-bottom: solid 1px #ededed;
}


body .full-container.object-types nav > ul:after {
    content: '';
    display: block;
    clear: both;
}

body .full-container.object-types nav > ul li {
    float: left;
    padding: 14px;
    cursor: pointer;
}

body .full-container.object-types div.container nav ul li:first-child {
    margin-left: 0!important;
}

body .full-container.object-types div.container nav ul li:last-child {
    margin-right: 0!important;
}

body .full-container.object-types nav > ul li.active {
    color:#424242;
    border-bottom: 4px solid #ffd337;
}

body .full-container.object-types nav .fake-dropdown {
    position: relative;
    margin: 18px;
}

body .full-container.object-types nav .fake-dropdown.open {
    overflow: initial;
    height: auto;
}

body .full-container.object-types nav .fake-dropdown ul li {
    margin: 0 16px;
}

body .full-container.object-types nav .fake-dropdown ul li.active {
    color: #828282;
}

body .full-container.object-types .cards {
    clear: both;
}

body .full-container.object-types .cards .item > div {
    display: block;
    position: relative;
    transition: box-shadow 0.5s;
    cursor: pointer;
    overflow: hidden;
}

body .full-container.object-types .cards .item .sticker {
    position: absolute;
    top: 10px;
    left: 10px;
}

body .full-container.object-types .cards .item > div .background {
    padding-top: 237px;
    background-position: center;
    background-size: cover;
}

body .full-container.object-types .cards .item > div .bottom {
    background: #FFFFFF;
    position: relative;
}

body .full-container.object-types .cards .item > div .bottom p {
    color: #424242;
    margin: 16px 0 0 0;
}

body .full-container.object-types .cards .item > div a {
    width: 200px;
    height: 40px;
    margin: 10px auto 20px auto;
    min-width: auto;
    text-align: center;
    color: #424242;
    transition: background-color 0.5s, border 0.5s;
}

body .full-container.object-types .cards .dots {
    margin: 0;
    margin-top: 15px;
    padding: 0;
    height: 6px;
}

body .full-container.object-types .cards .dots li {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: #d8d8d8;
    margin: 0 6px;
}

body .full-container.object-types .cards .dots li.active {
    background-color: #424242;
}

@media (min-width: 767px){
   body .full-container.object-types .cards .item > div:hover {
        box-shadow: 0 16px 20px 0 rgba(0, 0, 0, 0.11);
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    body .full-container.object-types .cards .item > div a {
        width: 160px;
    }
}

@media (max-width: 767px) {
    body .full-container.object-types nav {
        height: 60px;
    }
    body .full-container.object-types nav > ul {
        width: 150%;
        position: relative;
        transition: all 0.5s;
    }

    body .full-container.object-types nav h3 {
        font-size: 13px;
    }

    body .full-container.object-types nav > ul li.active {
        color: #424242;
    }

    body .full-container.object-types .cards {
        height: 390px;
        overflow: hidden;
        position: relative;
    }

    body .full-container.object-types .cards .card-container {
        width: 300%;
        width: 300vw;
        position: relative;
        transition: all 0.5s;
        right: 0%;
        height: calc(100% - 40px);
        margin-bottom: 25px;
    }

    body .full-container.object-types .cards .arrow {
        position: absolute;
        z-index: 10;
        top: calc(45% - 35px);
        background: url('/site/img/icon_expand.png') no-repeat center center transparent;
        height: 35px;
        width: 35px;
        cursor: pointer;
    }

    body .full-container.object-types .cards .arrow.left {
        display: block;
        left: 0px;
        transform: rotate(90deg);
    }

    body .full-container.object-types .cards .arrow.right {
        right: 0px;
        transform: rotate(-90deg);
        display: block;
    }


    body .full-container.object-types .cards .card-container.swipe-1 {
        right: 0%;
        right: 0vw;
    }

    body .full-container.object-types .cards .card-container.swipe-2 {
        right: 100%;
        right: 100vw;
    }

    body .full-container.object-types .cards .card-container.swipe-3 {
        right: 200%;
        right: 200vw;
    }

    body .full-container.object-types .cards .card-container .item {
        width: 100%;
        width: 100vw;
        float: left;
        cursor: inherit;
        padding: 0 35px;
    }
}


.full-container.organize-yourself .container .description {
    margin-top: 38px;
    text-align: center;
}

.full-container.organize-yourself .container .navigation {
    list-style: none;
    margin-top: 15px;
    border-right: solid 1px #f1f1f1;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
}

.full-container.organize-yourself .container .navigation li {
    line-height: 32px;
    padding-left: 15px;
    cursor: pointer;
}

.full-container.organize-yourself .container .navigation li i {
    margin-right: 15px;
}

.full-container.organize-yourself .container .navigation li.active,
.full-container.organize-yourself .container .navigation li:hover {
    background-color: #fbfbfb;
}

.full-container.organize-yourself .container .dots span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: #d8d8d8;
    margin: 30px 3px 0;
}

.full-container.organize-yourself .container .dots span.active {
    background-color: #424242;
}

.full-container.organize-yourself .container .images img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .full-container.organize-yourself .container .description {
        text-align: left;
    }

    .full-container.organize-yourself .container .images > div {
        height: 250px;
        position: relative;
    }

    .full-container.organize-yourself .container .images > div img {
        height: 90%;
        width: initial;
        margin: initial;
        position: absolute;
        bottom: 0;
        right: 10px;
    }
}

@media (min-width: 992px) {
    .full-container.organize-yourself .container .navigation li {
        padding-left: 47px;
    }
}
.full-container.subscription {
    background-color: #f6f6f7;
}

.full-container.subscription:not(.new) {
    background:url('/site/img/homefunnel_bg.jpg') no-repeat;
    background-size: cover;
}

.full-container.subscription.new > div.container:nth-child(1)  {
    background:url('/site/img/bat-caroobi-girl.png') no-repeat 80% bottom;
    height: 482px;
    display: none;
    margin-top: 48px;
    margin-bottom: 48px;
}

.full-container.subscription.new > div.container:nth-child(2) {
    background: #f6f6f7 url('/site/img/bat-caroobi-girl.png') no-repeat 80% bottom;
    height: 100%;
}

.full-container .mobile-header {
    margin: 24px 24px 0 24px;
    width: 70%;
}

.full-container.subscription .dropdown input {
    font-weight: 400;
}

.full-container.subscription .navigation .nav-items {
    padding: 15px 0;
}

.full-container.subscription .navigation .nav-items img {
    opacity: 0.4;
}

.full-container.subscription .navigation .nav-items.message-card img {
    opacity: 1;
}

.full-container.subscription .icons img {
    width: 54px;
    height: 54px;
}

.full-container.subscription .icons p:last-child {
    line-height: 15px;
}

.full-container.subscription .show-price {
    position: relative;
}

.full-container.subscription .show-price .price-tag {
    position: absolute;
    top: -45px;
    right: 0px;
    width: 121px;
    height: 119px;
    display: none;
}

div.full-container.subscription .container .row div .rounded-block .same-height-cols-block-md > .static-block {
    padding-left:0;
    padding-right: 0;
}

div.full-container.subscription nav ul li p {
    margin-bottom: 8px;
    margin-top: 0px;
}

div.full-container.subscription nav ul li p:not(.active) {
    color:#828282;
}

@media (min-width: 768px) {
    .full-container .disclaimer-submit-cnt {
        display: table;
        width: 100%;
    }

    .full-container .disclaimer-submit-cnt > * {
        display: table-cell;
        vertical-align: top;
    }

    .full-container.subscription .no-bottom-spacing-block:nth-child(2) {
        padding-left: 0;
    }
}

.full-container .disclaimer {
    padding-top: 5px;
}

.full-container .disclaimer p {
    font-size: 11px;
    line-height: 15px;
    margin: 0 10px;
    width: calc(100% - 60px);
}

.full-container.subscription form .form-control {
    margin-bottom: 16px;
    margin-top: 0;
}

.full-container.subscription form.ng-submitted .form-control.ng-invalid,
.full-container.subscription form.ng-submitted date-selector.ng-invalid .fake-dropdown {
    border: 1px solid #ffcd00;
}

.full-container.subscription form.ng-invalid button[type=submit] {
    opacity: 0.66;
}

body .full-container.subscription nav > ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    border-bottom: solid 1px #ededed;
}

body .full-container.subscription nav > ul:after {
    content: '';
    display: block;
    clear: both;
}

body .full-container.subscription nav > ul li {
    cursor: pointer;
}

body  .full-container.subscription nav > ul > li.active {
    border-bottom: 4px solid #ffd337;
}

body .full-container.subscription nav > ul li p {
    text-align: center;
}

.full-container.subscription .disclaimer-submit-cnt {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (min-width: 991px) {
    .full-container.subscription .navigation {
        display: flex;
    }

    .full-container.subscription .navigation {
        box-shadow: 7px 0 25px 0 rgba(0, 0, 0, 0.03);
    }

    .full-container.subscription span.price {
        font-size: 72px;
        font-weight: lighter;
    }

    .full-container.subscription .show-price .price-tag {
        display: block;
    }
}

@media (max-width: 992px) {
    .full-container.subscription.new > div.container:nth-child(1){
        display: block;
        background-position: center;
        margin:0;
        background-color: #fff;
    }

    .full-container.subscription.new > div.container:nth-child(2) {
        background: #f6f6f7;
    }

    .full-container.subscription.new > div.container:nth-child(2) > div {
        display:inline-block;
        background: #f6f6f7;
    }

    .full-container.subscription .container {
        padding-top: 0;
    }

    .full-container.subscription .forms {
        margin-top: -24px;
    }

    .full-container.subscription form .submit-button,
    .full-container.subscription form .disclaimer,
    .full-container.subscription .btn-light {
        width: 100%;
    }

    .full-container.subscription span.price {
        font-size: 30px;
    }
}
