/*
 Web         : Atom Solutions
 Author      : Dilyan Lyubomirov - dlubomirov@atomsolutions.net
 Last update : 2015-05-18
 */

/*
    Fonts
*/

@font-face {
    font-family: 'proxima_novalight';
    src: url('../fonts/proximanova-light-webfont.eot');
    src: url('../fonts/proximanova-light-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/proximanova-light-webfont.woff2') format('woff2'),
    url('../fonts/proximanova-light-webfont.woff') format('woff'),
    url('../fonts/proximanova-light-webfont.ttf') format('truetype'),
    url('../fonts/proximanova-light-webfont.svg#proxima_novalight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('../fonts/proximanova-regular-webfont.eot');
    src: url('../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),
    url('../fonts/proximanova-regular-webfont.woff') format('woff'),
    url('../fonts/proximanova-regular-webfont.ttf') format('truetype'),
    url('../fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novasemibold';
    src: url('../fonts/proximanova-semibold-webfont.eot');
    src: url('../fonts/proximanova-semibold-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/proximanova-semibold-webfont.woff2') format('woff2'),
    url('../fonts/proximanova-semibold-webfont.woff') format('woff'),
    url('../fonts/proximanova-semibold-webfont.ttf') format('truetype'),
    url('../fonts/proximanova-semibold-webfont.svg#proxima_novasemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_rgbold';
    src: url('../fonts/proximanova-bold-webfont.eot');
    src: url('../fonts/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/proximanova-bold-webfont.woff2') format('woff2'),
    url('../fonts/proximanova-bold-webfont.woff') format('woff'),
    url('../fonts/proximanova-bold-webfont.ttf') format('truetype'),
    url('../fonts/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'axisbold';
    src: url('../fonts/axis-webfont.eot');
    src: url('../fonts/axis-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/axis-webfont.woff2') format('woff2'),
    url('../fonts/axis-webfont.woff') format('woff'),
    url('../fonts/axis-webfont.ttf') format('truetype'),
    url('../fonts/axis-webfont.svg#axisbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
    Bootstrap reset
*/

.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: 0;
}

.navbar-toggle {
    border: none;
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
    background-color: #282f50;
}

form {
    margin: 0;
}

.caret {
    margin-bottom: 2px;
}

#infscr-loading {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
}

textarea {
    resize: none;
}

.tooltip.top {
    margin-top: -15px;
}

.tooltip .tooltip-inner {
    text-align: left;
    background: #282f50;
    border-radius: 0;
    max-width: 170px;
    padding: 20px 15px;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #282f50;
    bottom: -5px;
    margin-left: -10px;
    border-width: 10px 10px 0;
}

/*
    Main styles
*/

html {
    height: 100%;
}

body, html {
    height: 100% !important;
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #000;
}

body {
    padding-top: 110px;
    overflow-x: hidden;
}

strong, b {
    font-family: 'proxima_nova_rgbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: normal !important;
}

.axis {
    font-family: 'axisbold', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none;
}

a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.btn {
    font-family: 'proxima_nova_rgbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 18px;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 30px;
}

.btn > span {
    font-family: 'axisbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 14px;
}

.top-10 {
    margin-top: 10px !important;
}

.top-20 {
    margin-top: 20px !important;
}

.top-30 {
    margin-top: 30px !important;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

a, a:hover {
    cursor: pointer;
    color: #93afe5;
    position: relative;
    text-decoration: none;
}

a:before {
    content: '';
    opacity: 0;
    height: 1px;
    width: 0;
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: #93afe5;
    transition: width 300ms ease, opacity 600ms ease;
}

a:hover:before {
    content: '';
    width: 100%;
    opacity: 1;
}

nav a:before,
a.btn:before {
    content: none !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.flash-message > p {
    padding: 15px;
}

.paging {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative !important;
    font-size: 16px;
    margin-top: 10px;
}

.paging .pull-left {
    position: absolute;
    left: 15px;
}

.paging .pull-left a {
    font-size: 16px;
}

.paging .pull-left a.current:before,
.paging .pull-left a.current,
.paging .pull-left a.current,
.paging .pull-left a.current {
    content: none;
    color: #282f50;
}

.paging .load-more:before,
.paging #load-more:before,
.paging .pull-left a:before {
    opacity: 1;
    width: 100%;
    background-color: #e5f1f8;
    height: 2px;
}

.paging .load-more:before,
.paging #load-more:before {
    width: 88%;
}

/*
    Plugins
*/

/*
    Custom Select
*/

.customSelect {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #4a494a;
    font-size: 19px;
    background: url('../img/select_arrow.png') 230px 26px no-repeat #fff;
    border: 1px solid #c8c8c6;
    padding: 0 32px 0 22px;
    height: 62px;
    line-height: 62px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    width: 260px;
    cursor: pointer;
}

.customSelect.error {
    background-color: #ee7b95 !important;
    color: #FFF !important;
}

.customSelect.customSelectHover {
    /* Styles for when the select box is hovered */
}

.customSelect.customSelectOpen {
    /* Styles for when the select box is open */
}

.customSelect.customSelectFocus {
    /* Styles for when the select box is in focus */
}

.customSelect.customSelectDisabledOption {
    /* Styles for when the selected item is a disabled one */
}

.customSelect.customSelectDisabled {
    /* Styles for when the select box itself is disabled */
}

.customSelectInner {
    width: 100% !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.select-container {
    position: relative;
    display: inline-block;
}

.select-container select {
    right: 0;
}

/*
    iCheck Minimal Black
*/

.icheckbox_minimal,
.iradio_minimal {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 18px;
    height: 18px;
    background: url(../img/minimal.png) no-repeat;
    border: none;
    cursor: pointer;
}

.iradio_minimal input[type=radio] {
    width: 0;
    height: 0;
    margin: 0;
    z-index: -1;
}

.icheckbox_minimal {
    background-position: 0 0;
}

.icheckbox_minimal.hover {
    background-position: -20px 0;
}

.icheckbox_minimal.checked {
    background-position: -40px 0;
}

.icheckbox_minimal.disabled {
    background-position: -60px 0;
    cursor: default;
}

.icheckbox_minimal.checked.disabled {
    background-position: -80px 0;
}

.iradio_minimal {
    background-position: -100px 0;
}

.iradio_minimal.hover {
    background-position: -120px 0;
}

.iradio_minimal.checked {
    background-position: -140px 0;
}

.iradio_minimal.disabled {
    background-position: -160px 0;
    cursor: default;
}

.iradio_minimal.checked.disabled {
    background-position: -180px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_minimal,
    .iradio_minimal {
        background-image: url(../img/minimal@2x.png);
        -webkit-background-size: 200px 20px;
        background-size: 200px 20px;
    }
}

/*
    iCheck Big Blue
*/

.icheckbox_big_blue {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    background: url(../img/big_blue.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_big_blue {
    background-position: -1px -1px;
}

.icheckbox_big_blue.checked {
    background-position: -42px -1px;
}

/*
    iCheck Big Color
*/

.icheckbox_big_color {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    background: url(../img/big_color.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_big_color {
    background-position: 0 -1px;
}

.icheckbox_big_color.checked {
    background-position: -40px -1px;
}

#tod .afternoon .icheckbox_big_color.checked {
    background-position: -80px -1px;
}

#tod .evening .icheckbox_big_color.checked {
    background-position: -120px -1px;
}

/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker.dropdown-menu
.datepicker {
    padding: 4px;
    border-radius: 4px;
    direction: ltr;
}

.datepicker-inline {
    width: 220px;
}

.datepicker.datepicker-rtl {
    direction: rtl;
}

.datepicker.datepicker-rtl table tr td span {
    float: right;
}

.datepicker-dropdown {
    top: 0;
    left: 0;
}

.datepicker-dropdown:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    position: absolute;
}

.datepicker-dropdown:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-top: 0;
    position: absolute;
}

.datepicker-dropdown.datepicker-orient-left:before {
    left: 6px;
}

.datepicker-dropdown.datepicker-orient-left:after {
    left: 7px;
}

.datepicker-dropdown.datepicker-orient-right:before {
    right: 6px;
}

.datepicker-dropdown.datepicker-orient-right:after {
    right: 7px;
}

.datepicker-dropdown.datepicker-orient-top:before {
    top: -7px;
}

.datepicker-dropdown.datepicker-orient-top:after {
    top: -6px;
}

.datepicker-dropdown.datepicker-orient-bottom:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #fff;
}

.datepicker > div {
    display: none;
}

.datepicker.days div.datepicker-days {
    display: block;
}

.datepicker.months div.datepicker-months {
    display: block;
}

.datepicker.years div.datepicker-years {
    display: block;
}

.datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.datepicker table tr td,
.datepicker table tr th {
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: none;
}

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
    background-color: transparent;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
    background: #eeeeee;
    cursor: pointer;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
    color: #999999;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    background: none;
    color: #999999;
    cursor: default;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
    color: #000000;
    background-color: #ffdb99;
    border-color: #ffb733;
}

.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    color: #000000;
    background-color: #ffcd70;
    border-color: #f59e00;
}

.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    background-image: none;
}

.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled:hover.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today:hover[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today:hover.disabled:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled:hover.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today:hover[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today:hover.disabled:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled:hover.disabled:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today:hover[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today:hover.disabled.active,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled:hover.disabled.active,
.datepicker table tr td.today[disabled].active,
.datepicker table tr td.today:hover[disabled].active,
.datepicker table tr td.today.disabled[disabled].active,
.datepicker table tr td.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today:hover.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover.active {
    background-color: #ffdb99;
    border-color: #ffb733;
}

.datepicker table tr td.today:hover:hover {
    color: #000;
}

.datepicker table tr td.today.active:hover {
    color: #fff;
}

.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
    background: #eeeeee;
    border-radius: 0;
}

.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
    color: #000000;
    background-color: #f7ca77;
    border-color: #f1a417;
    border-radius: 0;
}

.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
    color: #000000;
    background-color: #f4bb51;
    border-color: #bf800c;
}

.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
    background-image: none;
}

.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today:hover.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled:hover.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today:hover[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today:hover.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled:hover.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today:hover[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today:hover.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled:hover.disabled:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today:hover[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today:hover.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled:hover.disabled.active,
.datepicker table tr td.range.today[disabled].active,
.datepicker table tr td.range.today:hover[disabled].active,
.datepicker table tr td.range.today.disabled[disabled].active,
.datepicker table tr td.range.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today:hover.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {
    background-color: #f7ca77;
    border-color: #f1a417;
}

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
    color: #ffffff;
    background-color: #999999;
    border-color: #555555;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
    color: #ffffff;
    background-color: #858585;
    border-color: #373737;
}

.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
    background-image: none;
}

.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled:hover.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected:hover[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected:hover.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled:hover.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected:hover[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected:hover.disabled:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled:hover.disabled:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected:hover[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected:hover.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled:hover.disabled.active,
.datepicker table tr td.selected[disabled].active,
.datepicker table tr td.selected:hover[disabled].active,
.datepicker table tr td.selected.disabled[disabled].active,
.datepicker table tr td.selected.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected:hover.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {
    background-color: #999999;
    border-color: #555555;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    background-image: none;
}

.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
    background-color: #428bca;
    border-color: #357ebd;
}

.datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    border-radius: 4px;
}

.datepicker table tr td span:hover {
    background: #eeeeee;
}

.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
    background: none;
    color: #999999;
    cursor: default;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    background-image: none;
}

.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active:hover.disabled:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled:hover.disabled:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active:hover[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active:hover.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled:hover.disabled.active,
.datepicker table tr td span.active[disabled].active,
.datepicker table tr td span.active:hover[disabled].active,
.datepicker table tr td span.active.disabled[disabled].active,
.datepicker table tr td span.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active:hover.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {
    background-color: #428bca;
    border-color: #357ebd;
}

.datepicker table tr td span.old,
.datepicker table tr td span.new {
    color: #999999;
}

.datepicker th.datepicker-switch {
    width: 145px;
}

.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
    cursor: pointer;
}

.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
    background: #eeeeee;
}

.datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle;
}

.datepicker thead tr:first-child th.cw {
    cursor: default;
    background-color: transparent;
}

.input-group.date .input-group-addon i {
    cursor: pointer;
}

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

.input-daterange input:first-child {
    border-radius: 3px 0 0 3px;
}

.input-daterange input:last-child {
    border-radius: 0 3px 3px 0;
}

.input-daterange .input-group-addon {
    width: auto;
    min-width: 16px;
    padding: 4px 5px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eeeeee;
    border: solid #cccccc;
    border-width: 1px 0;
    margin-left: -5px;
    margin-right: -5px;
}

.datepicker.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000 !important;
    float: left;
    display: none;
    min-width: 160px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    color: #333333;
    font-size: 13px;
    line-height: 1.42857143;
}

.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
    padding: 0 5px;
}

/*
    Btns
*/

.btn {
    border: none;
    cursor: pointer;
    background: #282f50;
    color: #FFF;
}

.btn-default:hover, .btn-default:focus,
.btn-default.focus, .btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background: #353e6a;
    color: #FFF;
    border: none;
}

.btn-blue {
    height: 62px;
    padding: 0 40px;
    line-height: 62px;
    font-size: 14px;
    background: #282f50;
    color: #FFF;
}

.btn-blue:focus,
.btn-blue:hover,
.btn-blue:active {
    background: #353e6a;
    color: #FFF;
}

.btn-green {
    background: #28c20e;
    color: #FFF;
}

.btn-green:focus,
.btn-green:active,
.btn-green:hover {
    background: #30e711;
    color: #FFF;
}

.btn-light-blue {
    height: 62px;
    padding: 0 30px;
    line-height: 62px;
    font-size: 18px;
    background: #57b7e8;
    color: #FFF;
    text-transform: uppercase;
}

.btn-light-blue:focus,
.btn-light-blue:active,
.btn-light-blue:hover {
    background: #7ac6ed;
}

/*
    Header
*/

#logo {
    width: 199px;
    height: 46px;
    background: url(../img/logo.png) center center no-repeat rgba(40, 47, 80, 0);
    display: inline-block;
}

.transparent #logo {
    background: url(../img/logo-blue.png) center center no-repeat;
}

nav.navbar.navbar-inverse.navbar-fixed-top {
    position: fixed;
    background: #282f50;
    height: 110px;
    margin: 0;
    border: none;
    padding: 32px 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.site.index nav.navbar.navbar-inverse.navbar-fixed-top {
    position: absolute;
}

body.site.index nav.navbar.navbar-inverse.navbar-fixed-top {
    background: #57b7e8;
}

body.site.index nav.navbar.navbar-inverse.navbar-fixed-top {
    background: transparent;
}

body.site.index nav.navbar.navbar-inverse.navbar-fixed-top.transparent,
body nav.navbar.navbar-inverse.navbar-fixed-top.transparent {
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjI1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC44Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(25%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0.8)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.8) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.8) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ccffffff', GradientType=0);
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.33);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.33);
}

.navbar-inverse .navbar-nav > li a.page-4 {
    font-family: "ClanOT-NarrBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: 1px solid #FFF;
    border-radius: 6px;
    padding: 0 20px;
    background-color: #282f50 !important;
    margin-left: 45px;
}

body.site.index .navbar-inverse .navbar-nav > li a.page-4 {
    border: 1px solid #FFF;
    color: #FFF;
    background-color: #57b7e8 !important;
}

.navbar-inverse.transparent .navbar-nav > li a.page-4:hover {
    border: 1px solid #87c1df;
}

body.site.index .navbar-inverse.transparent .navbar-nav > li a.page-4:hover {
    border: 1px solid #87c1df;
}

.navbar-inverse .navbar-nav > li a.page-4:hover {
    border: 1px solid #87c1df;
}

body.site.index .navbar-inverse .navbar-nav > li a.page-4:hover {
    border: 1px solid #282f50;
    color: #282f50;
}

body.site.index .navbar-inverse.transparent .navbar-nav > li a.page-4,
.navbar-inverse.transparent .navbar-nav > li a.page-4 {
    background: none !important;
    border: 1px solid #282f50;
}

.navbar-inverse .navbar-nav > li > a,
.navbar-nav > li > a {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 0;
    line-height: 43px;
    font-size: 19px;
    color: #FFF;
    text-transform: uppercase;
    background: none !important;
    margin-left: 45px;
}

body.site.index .navbar-inverse .navbar-nav > li > a,
body.site.index .navbar-nav > li > a {
    color: #282f50;
}

.navbar-inverse.transparent .navbar-nav > li > a,
.transparent .navbar-nav > li > a {
    color: #282f50;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #88c3e2;
}

body.site.index .navbar-inverse .navbar-nav > .open > a,
body.site.index .navbar-inverse .navbar-nav > .open > a:hover,
body.site.index .navbar-inverse .navbar-nav > .open > a:focus {
    color: #FFF;
}

.navbar-inverse.transparent .navbar-nav > .open > a,
.navbar-inverse.transparent .navbar-nav > .open > a:hover,
.navbar-inverse.transparent .navbar-nav > .open > a:focus {
    color: #87c1df;
}

body.site.index .navbar-inverse.transparent .navbar-nav > .open > a,
body.site.index .navbar-inverse.transparent .navbar-nav > .open > a:hover,
body.site.index .navbar-inverse.transparent .navbar-nav > .open > a:focus {
    color: #87c1df;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #88c3e2;
}

body.site.index .navbar-inverse .navbar-nav > li > a:hover,
body.site.index .navbar-inverse .navbar-nav > li > a:focus {
    color: #FFF;
}

body.site.index .navbar-inverse.transparent .navbar-nav > li > a:hover,
.body.site.index .navbar-inverse.transparent .navbar-nav > li > a:focus,
.navbar-inverse.transparent .navbar-nav > li > a:hover,
.navbar-inverse.transparent .navbar-nav > li > a:focus {
    color: #87c1df;
}

.navbar-nav > li > .dropdown-menu {
    left: -15px;
    top: 40px;
    padding: 13px 0 0 0;
    margin: 2px 0 0;
    font-size: 14px;
    background-color: #ffffff;
    border: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    min-width: 190px;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.9);
}

.navbar-nav > li.course-menu > .dropdown-menu {
    left: -45px;
}

.navbar-nav > li > .dropdown-menu:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3px 4px 3px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -4px;
    left: 50%;
    margin-left: -3px;
}

.transparent .navbar-nav > li > .dropdown-menu {
    /*background: #fff;*/
    /*background: rgba(255, 255, 255, 0.8);*/
    /*-webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.33);*/
    /*-moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.33);*/
    /*box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.33);*/
}

.navbar-nav > li > .dropdown-menu li.all {
    margin-top: 40px;
    background-color: #f2f3f9;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-bottom-left-radius: 3px;
    -moz-border-bottom-right-radius: 3px;
    -o-border-bottom-left-radius: 3px;
    -o-border-bottom-right-radius: 3px;
    overflow: hidden;
}

.navbar-nav > li > .dropdown-menu li.all a {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 0 20px;
    line-height: 40px;
}

.navbar-nav > li > .dropdown-menu a {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #282f50;
    padding: 0 20px;
    font-size: 18px;
    line-height: 30px;
}

.navbar-nav > li > .dropdown-menu > li:hover {
    background-color: #282f50;
}

.navbar-nav > li > .dropdown-menu > li:hover a {
    color: #fff;
    text-decoration: none;
}

.transparent .navbar-nav > li > .dropdown-menu a {
    color: #282f50;
}

.navbar-nav > li > .dropdown-menu a:hover {
    color: #88c3e2;
    background: none;
    text-decoration: underline;
}

/*
    New filter header
*/
body.new-search-filter {
    padding-top: 70px;
}

body.new-search-filter .navbar-inverse .navbar-nav > li > a,
body.new-search-filter .navbar-nav > li > a {
    line-height: 43px;
    font-size: 14px;
    margin-left: 30px;
}

body.new-search-filter nav.navbar.navbar-inverse.navbar-fixed-top {
    background: #282f50;
    height: 70px;
    padding: 14px 0;
}

.navbar-header .navbar-filter .form-group {
    margin: 0;
}

.navbar-filter {
    margin-left: 40px;
    float: left;
}

.navbar-filter .dropdown-menu {
    width: 180px;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.9);
}

.navbar-filter .dropdown-menu > .active > a,
.navbar-filter .dropdown-menu > .active > a:hover,
.navbar-filter .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #282f50;
    outline: 0;
}

.navbar-filter input[type=text] {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -moz-border-top-left-radius: 5px;
    -moz-border-bottom-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border: 1px solid #c8c8c6;
    border-right: none;
    float: left;
    width: 180px;
    position: relative;
    font-size: 18px;
    line-height: 18px;
    padding: 10px 15px;
    height: auto;
}

.gecko.ff3 .navbar-filter input[type=text] {
    padding: 11px 15px 12px 15px;
}

.navbar-filter .customSelect:after {
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    content: '';
    width: 1px;
    background: #c8c8c6;
}

.navbar-filter .select-container {
    position: relative;
    width: 180px;
}

.navbar-filter .customSelect {
    background: url('../img/select_arrow.png') 155px 19px no-repeat #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    -moz-border-top-right-radius: 5px;
    -moz-border-bottom-right-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    height: 43px;
    line-height: 42px;
    padding: 0 15px;
    border: 1px solid #c8c8c6;
    border-left: none;
    float: left;
    width: 180px;
    font-size: 18px;
}

.new-search-filter .navbar-inverse .navbar-nav > li a.page-4 {
    /*background: #3897dd !important;*/
    /*border: 0;*/
}

.new-search-filter .navbar-inverse .navbar-nav > li a.page-4:hover {
    color: #87c1df;
    /*background: #5aa9e3 !important;*/
}

.navbar-filter .btn {
    background: #3897dd;
    height: 43px;
    line-height: 43px;
    padding: 0 30px;
    margin-left: 5px;
}

.navbar-filter .btn:hover {
    background: #5aa9e3;
}

/*
    Home page
*/

section.home-section {
    position: relative;
}

section .container {
    height: 100%;
}

section .container > div {
    height: 100%;
}

#inner section .container > div {
    position: initial;
}

#slider {
    background: url('../img/pink-overlay.png') bottom center no-repeat #57b7e8;
    height: 700px;
}

#slider .container {
    position: relative;
    padding-top: 110px;
    margin-top: -110px;
}

#slider .col-xs-12 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#slider .suchen {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    text-align: center;
}

#slider .suchen form {
    height: 62px;
    display: inline-block;
}

#slider .suchen form .select-container {
    margin: 0 20px 0 0;
}

#slider .suchen form .btn-blue {
    padding: 0 60px;
}

#slider .navbar-filter {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
    margin: 0;
}

#slider .navbar-filter form {
    display: inline-block;
}


#slider .navbar-filter input[type=text] {
    width: 260px;
    font-size: 20px;
    line-height: 25px;
    padding: 19px 15px 19px 15px;
}

#slider .navbar-filter .select-container {
    position: relative;
    width: 290px;
}

#slider .navbar-filter .customSelect {
    width: 290px;
    background: url('../img/select_arrow.png') 265px 29px no-repeat #fff;
    font-size: 20px;
    height: 65px;
    line-height: 65px;
}

#slider .navbar-filter .select-container select {
    left: 0;
}

#slider .navbar-filter .btn {
    background: #282f50;
    height: 65px;
    line-height: 65px;
    padding: 0 50px;
}

#slider .navbar-filter .btn:hover {
    background: #353e6a;
    color: #FFF;
}

#slider .navbar-filter .cities {
    text-align: left;
    color: #fff;
    padding: 0;
}

#slider .navbar-filter .cities a {
    color: #fff;
    line-height: 19px;
}

#slider .navbar-filter .cities a:before {
    background: #fff;
}

#slider .content {
    padding-top: 160px;
}

#slider .content > span {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.1;
    color: #FFF;
}

#slider .content h1,
#slider .content h1 p {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0 0 10px 0;
    line-height: 1;
    color: #FFF;
}

#slider .content p {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 26px;
    color: #FFF;
}

#slider .btn-blue {
    font-size: 18px;
}

#provider {
    background: #f7f7f7;
    padding: 25px 0;
}

#provider h3 {
    margin: 0 0 15px 0;
}

section .parallax {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    /*background-size: contain !important;*/
    background-repeat: no-repeat;
}

#slider .parallax.baby {
    background-image: url('../img/swimming-baby.png');
    background-position: 0 0;
}

#slider .duck {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('../img/duck.png') 100% 0 no-repeat;
    margin-top: 77px;
    margin-right: 120px;
}

.safari #slider .duck {
    margin-right: 120px;
}

#ratings {
    padding: 160px 0;
}

#ratings .info {
    position: relative;
    padding: 0 0 0 120px;
}

#ratings .info .img-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
}

#ratings .info h4 {
    margin: 0 0 15px 0;
    font-size: 20px;
    line-height: 20px;
}

#ratings .info p {
    font-size: 18px;
    line-height: 20px;
}

.stars i {
    background: url('../img/star_color.png') center center no-repeat;
    width: 17px;
    height: 15px;
    display: inline-block;
}

#info .container ul {
    margin: 100px 0 120px 0;
    padding: 0;
}

#info .container ul li {
    list-style: none;
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 0 75px;
}

#info .container ul li > div {
    margin-bottom: 45px;
}

#info .container ul li h3 {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 29px;
    color: #364255;
    margin: 10px 0 0 0;
}

#info .container ul li span {
    display: block;
    font-size: 18px;
}

#info .container ul li a {
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 10px;
    display: inline-block;
}

#booking {
    height: 480px;
    background: #f4f4f4;
}

#booking .parallax.plus {
    background: url('../img/booking-baby-2.png') top center no-repeat;
    background: url('../img/booking-baby-2.png') top left no-repeat;
}

#booking .container {
    padding-top: 130px;
    position: relative;
}

#booking h1 {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.1;
}

#booking p {
    font-size: 20px;
    line-height: 1.3;
}

#booking a {
    margin-top: 10px;
    display: inline-block;
    color: #353e6a;
}

#booking a:before {
    background: #353e6a;
}

#cards {
    padding: 0 0 100px 0;
}

#cards .container {
    max-width: 800px;
}

#cards h1 {
    line-height: 1;
    text-align: center;
    margin: 50px 0 35px 0;
}

#cards .course-box {
    float: left;
    margin: 0 10px 10px 0;
}

#map {
    height: 480px;
}

.map_popup {
    padding: 10px;
}

.map_popup .popup_title {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
}

.map_popup .popup_address {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 20px;
}

.map_popup .popup_start {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.map_popup .popup_jetz {
    text-align: center;
    margin-top: 10px;
}

.map_popup.inactive .popup_jetz .btn {
    background: #63835e;
}

.gm-style-iw > div {
    width: 100% !important;
    height: 100% !important;
}

#testimonials {
    color: #000;
    height: 480px;
    background: #eac5de;
}

#testimonials2 {
    background: #617293;
    height: 630px;
}

#testimonials2 .container {
    background: #617293;
    height: 480px;
}

#testimonials .parallax.big_duck {
    background: url('../img/big_duck.png') top center no-repeat;
}

#testimonials2 .container > div {
    z-index: 3;
    position: relative;
}

#testimonials2 .parallax.baby_2 {
    background-image: url('../img/baby_2.png');
    background-position: top left;
    background-repeat: no-repeat;
    -webkit-animation-name: swimming-baby;
    -ms-animation-name: swimming-baby;
    animation-name: swimming-baby;
    -webkit-animation-duration: 10000ms;
    -ms-animation-duration: 10000;
    animation-duration: 10000ms;
    -webkit-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -ms-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0s;
    -ms-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-play-state: running;
    -ms-animation-play-state: running;
    animation-play-state: running;
    z-index: 2;
}

@-webkit-keyframes swimming-baby {
    0% {
        background-position: 0 -20px;
    }

    25% {
        background-position: 0 0;
    }

    50% {
        background-position: 0 170px;
    }

    75% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 -20px;
    }
}

@-ms-keyframes swimming-baby {
    0% {
        background-position: 0 -20px;
    }

    25% {
        background-position: 0 0;
    }

    50% {
        background-position: 0 170px;
    }

    75% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 -20px;
    }
}

@keyframes swimming-baby {
    0% {
        background-position: 0 -20px;
    }

    25% {
        background-position: 0 0;
    }

    50% {
        background-position: 0 170px;
    }

    75% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 -20px;
    }
}

#testimonials2 .buffer {
    height: 50px;
    background: #FFF;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    z-index: 1;
}

#testimonials2 .buffer.top {
    height: 100px;
    background: #FFF;
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    z-index: 1;
}

#testimonials .container,
#testimonials2 .container {
    padding-top: 130px;
    position: relative;
    height: 100%;
}

#testimonials2 .container {
    padding-top: 230px;
}

#testimonials h1,
#testimonials2 h1 {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0 0 40px 0;
    color: #FFF;
}

#testimonials h1 {
    margin: 0 0 25px 0;
    color: #000;
}

#testimonials .mce p,
#testimonials .mce {
    font-size: 20px;
    line-height: 1.3;
}

#testimonials h1 span,
#testimonials2 h1 span {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #FFF;
}

#testimonials a,
#testimonials2 a {
    color: #353e6a;
}

#testimonials a:before,
#testimonials2 a:before {
    background-color: #353e6a;
}

#testimonials2 h1 {
    color: #FFF;
}

#text {
    padding: 140px 0 40px 0;
}

#more-text {
    padding: 130px 0 90px 0;
    background: #f7f7f7;
}

#text .container > div {
    padding: 0 340px;
}

#more-text .container > div {
    padding: 0 70px;
}

.site.index #footer {
    background: #f7f7f7;
}

#newsletter h1,
#more-text h1,
#text h1 {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 42px;
    margin: 0 0 30px 0;
}

#newsletter h1 {
    margin-bottom: 20px;
}

#newsletter .mce,
#more-text .mce,
#text .mce {
    font-size: 20px;
}

#newsletter .mce a.mehr,
#more-text .mce a.mehr,
#text .mce a.mehr {
    font-size: 16px;
    margin-left: 10px;
}

#more-text p,
#text p {
    margin: 0;
}

#newsletter {
    padding: 25px 0;
}

#newsletter .newsletter {
    width: 410px;
    margin: 0 auto;
    position: relative;
}

#newsletter .newsletter input[type='submit'] {
    background: url('../img/send.png') no-repeat center center #FFF;
    width: 50px;
    height: 40px;
    text-indent: -9999px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-transition: none;
    position: absolute;
    top: 7px;
    right: 7px;
    cursor: pointer;
}

#newsletter .newsletter input[type='text'] {
    height: 55px;
    border: 1px solid #282f50;
    border-radius: 3px;
    color: #c6c6c6;
    font-size: 16px;
    line-height: 20px;
    vertical-align: middle;
    padding: 6px 60px 6px 12px;
}

/*
    Course boxes
*/

.course-box {
    width: 300px;
    height: 260px;
    overflow: hidden;
}

.course-box .header {
    background: #f0f0f0;
}

.course-box .box-content {
    border: 1px solid #e5e5e5;
    border-top: none;
    height: 189px;
}

.course-box.hover .box-content,
.course-box:hover .box-content {
    border: 1px solid #ffae00;
    border-top: none;
    position: relative;
}

.course-box.hover .box-content:after,
.course-box:hover .box-content:after {
    content: '';
    display: block;
    border: 1px solid #ffae00;
    border-top: none;
    position: absolute;
    top: 0;
    right: 0;;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.course-box .header img {
    border-right: 1px solid #e5e5e5;
    width: 71px;
    height: 71px;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter â€¦.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: url(desaturate.svg#greyscale);
}

.course-box:hover .header img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    filter: none;
}

.course-box .header h2 {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #FFF;
    font-size: 18px;
    line-height: 18px;
    margin: 0;
    width: 227px;
    padding: 12px 10px;
    position: relative;
}

.course-box .header h2 a {
    position: absolute;
    top: 0;
    left: 0;
    right: -2px;
    bottom: 0;
}

.course-box .header h2 a:before {
    content: none;
}

.course-box .header h2 i {
    font-size: 18px;
    line-height: 18px;
    font-style: normal;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.course-box .header span {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    line-height: 21px;
    width: 100%;
}

.course-box .time {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border-right: 1px solid #e5e5e5;
    padding-top: 10px;
    color: #000000;
    width: 70px;
    text-align: center;
    height: 100%;
    position: relative;
}

.course-box .time > span {
    display: block;
    line-height: 1.2;
}

.course-box .time .start {
    font-size: 14px;
    color: #b1b1b1;
}

.course-box .time .date,
.course-box .time .clock {
    font-size: 14px;
    color: #000000;
}

.course-box .time .month {
    font-size: 16px;
}

.course-box .info {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    width: 227px;
    padding: 10px 5px 5px 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.course-box .info a:before {
    content: '';
    width: 100%;
    opacity: 1;
}

.course-box .clock > span {
    font-family: 'proxima_nova_rgbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: url('../img/course_clock.png') no-repeat center center;
    display: inline-block;
    width: 71px;
    height: 48px;
    text-align: center;
    line-height: 1;
    padding: 14px 0;
    font-size: 11px;
}

.course-box .price {
    padding: 0;
    line-height: 30px;
    font-size: 20px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.course-box .price > div {
    font-size: 14px;
    line-height: 14px;
}

.course-box .more {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
}

.course-box .more p {
    font-size: 14px;
    line-height: 1;
    margin: 0 0 5px 0;
    color: #8e8e8e;
}

.course-box .more p.available {
    color: #161616;
}

.course-box .more p > span {
    font-family: 'proxima_nova_rgbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #28c20e;
}

.course-box a.btn {
    font-size: 14px;
    width: 150px;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    line-height: 24px;
    padding: 6px 12px;
}

.course-box.inactive a.btn {
    background: #63835e;
}

.course-box.inactive a.btn:focus,
.course-box.inactive a.btn:active,
.course-box.inactive a.btn:hover {
    background: #496145;
}

.course-box a.mehr {
    font-family: 'axisbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: absolute;
    top: 40px;
    right: 13px;
    text-transform: uppercase;
    font-size: 12px;
}


/*
    Course boxes wide
*/

#inner-boxes {
    position: relative;

    /*-webkit-transition: padding 0ms ease-in, padding 500ms ease-out;*/
    /*-moz-transition: padding 0ms ease-in, padding 500ms ease-out;*/
    /*-o-transition: padding 0ms ease-in, padding 500ms ease-out;*/
    /*-ms-transition: padding 0ms ease-in, padding 500ms ease-out;*/
    /*transition: padding 0ms ease-in, padding 500ms ease-out;*/
}

.filter-scroll.fixed-top {
    position: fixed;
    top: 70px;
    left: 40%;
    right: 0;
    z-index: 101;
    background: #fff;
}

.filter-scroll.fixed-top .checkbox-filter {
    margin: 7px 0 0 0;
}

.filter-scroll.non-fixed {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 40%;
    right: 0;
}

.filter-scroll.non-fixed .checkbox-filter {
    margin: 7px 0 0 0;
}

#inner-info {
    background: #f7f7f7;
}

#inner-info .container {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#inner-info .navbar-filter {
    margin: 20px 0 40px 0;
}

#inner-info .navbar-filter .btn {
    background: #3897dd;
}

#inner-info .navbar-filter .btn:active,
#inner-info .navbar-filter .btn:focus,
#inner-info .navbar-filter .btn:hover {
    background: #5aa9e3;
}

.box-container.wide {
    max-width: 100%;
}

.filter-search .filter-container {
    max-width: 100%;
}

.box-container.wide .course-box {
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin: 0 0 10px 0;
    position: relative;
}

.box-container.wide .course-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #d3d3d3;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.box-container.wide .course-box.hover:after,
.box-container.wide .course-box:hover:after {
    border: 2px solid #ffae00;
}

.box-container.wide .course-box.hover .info:after,
.box-container.wide .course-box:hover .info:after {
    background: #ffae00;
}

.box-container.wide .course-box.hover a.trainer-link,
.box-container.wide .course-box:hover a.trainer-link {
    border-right: 1px solid #ffae00;
}

.box-container.wide .course-box.hover .info span.left ,
.box-container.wide .course-box:hover .info span.left  {
    color: #ffae00;
}

.box-container.wide .course-box a.trainer-link {
    display: inline-block;
    float: left;
    width: 81px;
    height: 80px;
    border-right: 1px solid #e5e5e5;
}

.box-container.wide .course-box a.trainer-link img {
    border-right: none;
    width: 80px;
    height: 80px;
}

.box-container.wide .course-box .header {
    float: left;
}

.box-container.wide .course-box .header h2 {
    text-align: left;
    padding: 20px 10px;
}

.box-container.wide .course-box .header h2 span {
    line-height: 12px;
}

.box-container.wide .course-box .header h2 a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.box-container.wide .course-box .info {
    width: auto;
    padding: 5px 10px;
    line-height: 23px;
    position: relative;
}

.box-container.wide .course-box .info:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 10px;
    width: 1px;
    background: #d3d3d3;
}

.box-container.wide .course-box .info span.left {
    width: 50px;
    display: inline-block;
    font-family: "ClanOT-NarrBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #9E9E9E;
    overflow: hidden;
    float: left;
}

.box-container.wide .course-box .info span.right {
    width: 122px;
    overflow: hidden;
    float: left;
}

.box-container.wide .course-box .more-info {
    padding: 5px 10px;
    width: 200px;
}

.box-container.wide .course-box .more-info p {
    margin: 0;
    line-height: 1;
    font-size: 13px;
}

.box-container.wide .course-box .more-info p.available span {
    color: #28c20e;
    font-family: "ClanOT-NarrBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.box-container.wide .course-box a.btn {
    margin: 5px 0;
    width: 150px;
    text-transform: uppercase;
    line-height: 22px;
}

/*
    Details Page
*/

/*
    Details slider
*/

.lSSlideOuter {
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}

.lightSlider {
    overflow: hidden;
}

.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.lSSlideWrapper > .lightSlider:after {
    clear: both;
}

.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform, height;
    -moz-transition-property: -moz-transform, height;
    transition-property: transform, height;
    -webkit-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-timing-function: inherit;
    transition-timing-function: inherit;
}

.lSSlideWrapper .lSFade {
    position: relative;
}

.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}

.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit;
    transition-timing-function: inherit;
}

.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}

.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}

/* Pager */
.lSSlideOuter .lSPager.lSpg {
    display: none;
}

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding: 0;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    width: 100% !important;
}

.lSSlideOuter .lSPager.lSGallery li {
    margin: 0 !important;
    float: none;
    display: inline-block;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    width: 70px !important;
    height: 70px !important;
}

.lSSlideOuter .lSPager.lSGallery li:first-child {
    border-left: 1px solid #FFF;
}

.lSSlideOuter .lSPager.lSGallery li.active {
    position: relative;
}

.lSSlideOuter .lSPager.lSGallery li.active:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;

    border-bottom: 8px solid #FFF;
}

.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: 100%;
    width: 100%;
}

.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}

.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}

/* End of Gallery*/

/* slider actions */
.lSAction {
    display: none;
}

.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}

/* vertical */
.lSSlideOuter.vertical {
    position: relative;
}

.lSSlideOuter.vertical.noPager {
    padding-right: 0 !important;
}

.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}

.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

/* vertical */

.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding: 0;
    margin: 0;
    list-style: none outside none;
    text-align: center;
}

.lSSlideOuter .lightSlider > *, .lSSlideOuter .lSGallery li {
    float: left;
}

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}

@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}

@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}

@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}

@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}

@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}

.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}

.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}

.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}

.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}

.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}

.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}

#details {
    padding-bottom: 150px;
}

#details #image-slider {
    background: #f7f7f5;
    height: 430px;
}

#details #details-content .content {
    margin: 30px 0 0 0;
    padding-right: 50px;
}

#details #details-content .aside {
    margin: 30px 0 0 0;
    position: relative;
}

#details #details-content .aside #b-form form {
    padding: 0;
    margin: 20px 0 0 0;
    border: none;
}

#details #details-content .aside #b-form .form-group label {
    width: 135px;
}

#details #details-content .aside #b-form form button {
    margin: 0;
    background: #40b549;
    padding: 21px 66px;
    font-size: 16px;
    line-height: 16px;
}

#details #details-content .aside #b-form form button.inactive {
    background: #63835e;
    padding: 21px 46px;
}

#details #details-content .aside #b-form form button.inactive:focus,
#details #details-content .aside #b-form form button.inactive:active,
#details #details-content .aside #b-form form button.inactive:hover {
    background: #496145;
}

#details #details-content .aside #b-form form button span {
    font-size: 14px;
    line-height: 16px;
}

#details #details-content .content .details {
    background: #f0f0f0;
}

#inner aside.purchase .details a > img,
#details #details-content .content .details a > img {
    border-right: 1px solid #fff;
    width: 105px;
    height: 105px;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter â€¦.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: url(desaturate.svg#greyscale);
}

#inner aside.purchase:hover .details a > img,
#details #details-content .content header:hover a > img {
    -webkit-filter: grayscale(0);
    filter: none;
    filter: grayscale(0%);
}

#details #details-content .content .details h2 a {
    position: absolute;
    left: 0;
    top: 0;
}

#details #details-content .content .details h2 {
    position: relative;
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #FFF;
    font-size: 28px;
    line-height: 40px;
    margin: 0;
    padding: 16px 22px 16px 127px;
    width: 100%;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

#details #details-content .content .details h2 i {
    font-style: normal;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

#details #details-content .content .details h2 span {
    display: block;
    font-size: 18px;
    line-height: 20px;
}

#details #details-content .content .map-details {
    width: 100%;
    height: 220px;
    position: relative;
}

#details #details-content .content .map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

#details #details-content .content #detail-map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

#details #details-content .content .time-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 106px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    float: left;
    padding: 25px 0;
    background: #f5f5f5;;
    z-index: 2;
}

#details #details-content .content .time-details .time {

}

#details #details-content .content .time-details .start {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    display: block;
    color: #aaaaaa;
}

#details #details-content .content .time-details .time,
#details #details-content .content .time-details .date {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    display: block;
    line-height: 1;
}

#details #details-content .rating {
    unicode-bidi: bidi-override;
    direction: rtl;
}

#details #details-content .rating1 > span:nth-child(5):before,
#details #details-content .rating1 > span:nth-child(5) ~ span:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 15px;
    background: url('../img/star_color.png') center center no-repeat;
}

#details #details-content .rating2 > span:nth-child(4):before,
#details #details-content .rating2 > span:nth-child(4) ~ span:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 15px;
    background: url('../img/star_color.png') center center no-repeat;
}

#details #details-content .rating3 > span:nth-child(3):before,
#details #details-content .rating3 > span:nth-child(3) ~ span:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 15px;
    background: url('../img/star_color.png') center center no-repeat;
}

#details #details-content .rating4 > span:nth-child(2):before,
#details #details-content .rating4 > span:nth-child(2) ~ span:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 15px;
    background: url('../img/star_color.png') center center no-repeat;
}

#details #details-content .rating5 > span:nth-child(1):before,
#details #details-content .rating5 > span:nth-child(1) ~ span:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 15px;
    background: url('../img/star_color.png') center center no-repeat;
}

#details #details-content .rating5 > span:before:hover,
#details #details-content .rating5 > span:hover ~ span:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 15px;
    background: url('../img/star_gray.png') center center no-repeat;
}

#details #details-content .rating > span {
    cursor: pointer;
    width: 17px;
    height: 15px;
    background: url('../img/star_gray.png') center center no-repeat;
    display: inline-block;
    position: relative;
}

#details #details-content .rating.voted > span {
    cursor: default;
}

#details #details-content .rating > span:hover:before {
    content: none;
}

#details #details-content .rating > span:hover:before,
#details #details-content .rating > span:hover ~ span:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 15px;
    background: url('../img/star_color.png') center center no-repeat;
}

#details #details-content .share {
    margin: 40px 0;
}

#details #details-content h1,
#details #details-content h2 {
    color: #0a0a12;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

#details #details-content .ratings {
    margin: 25px 0;
}

#details #details-content .ratings p {
    margin: 0 0 0 7px;
    line-height: 15px;
}

#details #details-content .mce {
    margin: 0 0 10px 0;
}

#details #details-content .more {
    margin: 0;
    padding: 0;
}

#details #details-content .more li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#details #details-content .aside > aside {
    padding: 24px 35px 35px 35px;
    background: #f5f5f5;
    position: relative;
    border: 1px solid #e6e5e4;
}

#details #details-content .aside > aside.affix-top {
    position: fixed;
    top: 70px;
    width: 500px;
    bottom: auto;
}

#details #details-content .aside > aside.affix-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
}

#details #details-content .aside h2 {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 36px;
    margin: 0 0 25px 0;
}

#details #details-content .aside .main-info p {
    margin: 0 0 10px 0;
    font-size: 20px;
}

#details #details-content .aside .main-info .time {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000000;
    width: 71px;
    text-align: center;
}

#details #details-content .aside .main-info .time > span {
    display: block;
    line-height: 1.2;
}

#details #details-content .aside .main-info .start {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
}

#details #details-content .aside .main-info .date {
    font-size: 26px;
}

#details #details-content .aside .main-info .month {
    font-size: 16px;
}

#details #details-content .aside .main-info .clock {
    padding: 5px 0;
}

#details #details-content .aside .main-info .clock > span {
    font-family: 'proxima_nova_rgbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: url('../img/course_clock.png') no-repeat center center;
    display: inline-block;
    width: 71px;
    height: 48px;
    text-align: center;
    line-height: 1;
    padding: 14px 0;
    font-size: 11px;
}

#details #details-content .aside:hover .clock {
    -webkit-animation-name: shake-rotate;
    -ms-animation-name: shake-rotate;
    animation-name: shake-rotate;
    -webkit-animation-duration: 100ms;
    -ms-animation-duration: 100ms;
    animation-duration: 100ms;
    -webkit-animation-iteration-count: 5;
    -ms-animation-iteration-count: 5;
    animation-iteration-count: 5;
    -webkit-animation-timing-function: ease-in-out;
    -ms-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0s;
    -ms-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-play-state: running;
    -ms-animation-play-state: running;
    animation-play-state: running;
}

#details #details-content .aside ul {
    padding: 0;
    margin: 0 0 40px 0;
}

#details #details-content .aside ul li {
    list-style: none;
    float: left;
    width: 25%;
    text-align: center;
}

#details #details-content .aside ul li img {
    cursor: pointer;
}

#details #details-content .aside ul li label {
    width: 100%;
    margin: 0;
    cursor: pointer;
}

#details #details-content .aside .agreement span {
    font-size: 12px;
    line-height: 18px;
}

#details #details-content .aside .price {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    font-size: 28px;
    line-height: 1;
    padding: 53px 20px;
    border: 1px solid #e6e5e4;
    margin-left: -1px;
    margin-bottom: -1px;
    /*margin: 35px 0 15px 0;*/
}

#details #details-content .aside .price span {
    font-size: 22px;
}

#details #details-content .aside footer {
    margin-top: 60px;
}

#details #details-content .aside footer p {
    margin: 10px 0 !important;
    font-size: 15px !important;
}

#details #details-content .aside footer p span {
    font-family: 'proxima_nova_rgbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #6ebe45;
}

#details .classes-table {
    border-left: 1px solid #e0e0e6;
    border-right: 1px solid #e0e0e6;
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #161616;
    margin-bottom: 40px;
}

#details .classes-table tr:last-child td {
    border-bottom: 1px solid #e0e0e6;
}

#details .classes-table tr td {
    border-top: 1px solid #e0e0e6;
    line-height: 24px;
    vertical-align: middle;
}

#details .classes-table tr td {
    padding: 6px 4px !important;
}

#details .classes-table .num {
    background: #41bb17;
    font-size: 24px;
    color: #FFF;
    text-align: center;
}

/*
    Inner page
*/

#inner-image {
    height: 272px;
    background: #f8f8f6;
    margin-bottom: 20px;
}

#inner-image .container {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.add-course #inner-image .container {
    background-image: url('../img/eintragen.jpg');
}

#inner #search {
    margin: 20px 0 80px 0;
}

#inner .suchen {
    width: 100%;
    text-align: center;
    margin: 50px 0 0 0;
}

#inner .suchen form {
    height: 62px;
    display: inline-block;
}

#inner .suchen form .select-container {
    margin: 0 20px 0 0;
}

#inner .suchen form .btn-blue {
    padding: 0 60px;
    font-size: 18px;
}

#inner .list ul.list {
    width: 25%;
    float: left;
    margin: 0;
}

#inner .list ul.list li {
    list-style: none;
    padding: 0 40px;;
}

#inner .list ul.list li.first-letter {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 30px;
    line-height: 1.1;
}

#inner .list ul.list li a {
    color: #89c3e1;
}

#inner .list ul.list li a:before {
    background-color: #89c3e1;
}

.new-search-filter .box-container {
    padding: 0 10px;
    /*max-width: 950px;*/
}

#inner .course-box {
    display: inline-block;
    margin: 0 10px 10px 0;
    float: left;
}

#inner .course-box:nth-child(3n+0) {

}

#inner .course-box:nth-child(3n+0):after {

}

#inner .paging {
    margin: 60px 0 0 0;
}

#inner-more {
    /*background: #f7f7f7;*/
}

#inner-more h2 {
    font-size: 36px;
}

#inner-more .mce {
    font-size: 20px;
}

#inner-more .container .col-xs-12 {
    padding: 80px 75px 120px 75px;
}

.map-boxes-container {
    position: relative;
}

.courses.trainer .map-boxes-container {
    margin-bottom: 100px;
}

#inner #map {
    width: 40%;
    /*margin: -70px 0 80px 0;*/
    /*padding-top: 70px;*/
    position: fixed !important;
    top: 70px;
    left: 0;
    bottom: 0;
    z-index: 100;
}

#inner #map.non-fixed {
    position: absolute !important;
    top: auto;
}

#inner #map.non-fixed-top {
    position: absolute !important;
    top: 0;
}

#inner-boxes {
    width: 100%;
    padding-left: 40%;
}

#inner #page {
    margin: 20px 0 80px 0;
}

#inner #news-list {
    margin: 20px 0 80px 0;
}

#profile-photo {
    width: 40%;
    position: absolute !important;
    top: 30px;
    left: 0;
    bottom: 0;
    z-index: 101;
    text-align: center;
}

#inner .trainer-container {
    margin-top: 32px;
    /*margin-bottom: -22px;*/
    padding: 0 10px;
}

.courses.trainer #inner .breadcrumbs-container {
    position: fixed;
    top: 70px;
    right: 0;
    left: 40%;
}

.courses.trainer #inner .breadcrumbs-container.non-fixed {
    position: fixed;
    top: 70px;
    right: 0;
    left: 40%;
}

.courses.trainer #inner .breadcrumbs-container.fixed-bottom {
    position: absolute;
    bottom: 84px;
    right: 0;
    top: auto;
    left: 40%;
}

.courses.trainer .checkbox-filter {
    margin-top: 12px;
}

.courses.trainer .checkbox-filter.fixed {
    position: fixed;
    top: 102px;
    right: 0;
    left: 40%;
    z-index: 101;
    margin: 0;
}

.courses.trainer .checkbox-filter.fixed-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
    left: 40%;
}

.courses.trainer .checkbox-filter.non-fixed {

}

#inner .trainer-container h1 {
    margin: 0 0 5px 0;
    font-size: 20px;
}

#inner .trainer img {
    border: 3px solid #282f50;
}

#inner .trainer h1 {
    margin-bottom: 50px;
}

#inner .trainer .mce {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.2;
    padding: 0 160px;
}

/*
    Breadcrumbs
*/
#inner-boxes .breadcrumbs-container {
    background: #fff;
    width: 100%;
    padding: 0;
    z-index: 99;
}

#details-content .breadcrumbs-container{
    background: #fff;
    margin-top: 30px;
}

.breadcrumbs {
    padding: 0 5px;
    margin: 0;
    list-style: none;
    width: 100%;
    font-size: 16px;
}

.breadcrumbs li {
    float: left;
    line-height: 32px;
}

.breadcrumbs li a {
    line-height: 32px;
    display: inline-block;
}

.breadcrumbs li a:before {
    bottom: 7px;
}

/*
    Checkbox filter
*/

#tod,
#days {
    display: inline-block;
    float: left;
}

.checkbox-filter {
    background: #f2f2f2;
    padding: 10px 20px;
    margin: 7px 0;
    height: 84px;
    overflow: hidden;
}

.checkbox-filter table {
    width: 100%;
}

#tod label,
#days label {
    margin: 0;
    width: 40px;
    text-align: center;
    font-size: 11px;
    color: #0b0b0b;
    line-height: 12px;
    float: left;
}

#days label > div {
    width: 40px;
    text-align: center;
    font-size: 11px;
    color: #0b0b0b;
    line-height: 12px;
}

#tod {
    margin-left: 30px;
}

.filter-search {
    padding: 0 10px;
}

.filter-search.fixed {
    position: fixed;
    top: 102px;
    left: 0;
    right: 0;
    width: 100%;
    padding-left: 30%;
    background: #fff;
    z-index: 99;
    margin: 0;
}

.filter-search.non-fixed {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding-left: 30%;
    margin: 0;
}

.filter-search.non-fixed-top {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding-left: 5px !important;
    margin-top: 32px;
}

.filter-search .filter-container {
    max-width: 100%;
}

.filter-search.fixed .filter-container {
    padding: 0 0 0 5px;
    max-width: 100%;
}

.filter-search .title {
    width: 60%;
    height: 50px;
    line-height: 50px;
    padding: 0;
}

.filter-search .title h1 {
    margin: 0;
    font-size: 26px;
    line-height: 50px;
}

.filter-search .title p {
    width: 60%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    border: 1px solid #d3d3d3;
    border-right: 0;
}

.filter-search .filter-container > span {
    width: 40%;
    background: #fcfce7;
    border: 1px solid #f9ed99;
    height: 50px;
    color: #3897dd;
    font-size: 14px;
}

.filter-search .filter-container > span a {
    height: 22px;
    line-height: 22px;
    color: #fff;
    padding: 0 40px;
    background: #3897dd;
    display: inline-block;
}

.filter-search .filter-container > span a:hover {
    background: #5aa9e3;
}

.filter-search .filter-container > span a:before {
    content: none;
}

#courses {
    /*display: inline-block;*/
    margin-left: 30px;
}

#courses span {
    display: inline-block;
    float: left;
}

#courses span a {
    margin-right: 15px;
}

#courses span a:last-child {
    margin-right: 0;
}

#courses span a.mehr {
    margin-right: 0;
    color: #5f6468;
}

#courses span a.mehr:before {
    background: #5f6468;
}

#courses p a:hover {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#categoriesModal .modal-dialog {
    width: 80%;
    margin: 30px auto;
}

#categoriesModal ul.list {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    width: 25%;
}

#categoriesModal .modal-body {
    padding: 80px 10%;
}

#categoriesModal .modal-header {
    min-height: 21px;
    padding: 15px 30px;
    border-bottom: none;
    color: #5f6468;
    font-size: 14px;
}

#categoriesModal .modal-content {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#categoriesModal .modal-backdrop {
    background-color: #FFF;
}

#categoriesModal .modal-backdrop.in {
    filter: alpha(opacity=80);
    opacity: .8;
}

/*
    About Us
*/

#inner .services {
    margin-top: 100px;
}

#inner .services .column {
    width: 50%;
}

#inner .services .column h1 {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#inner .services .column p {
    font-size: 20px;
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#inner .services .column p a {
    font-size: 20px;
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#inner .team {
    margin: 120px 60px 20px 60px;
    background: #f5f5f5;
    padding: 80px 0 100px 0;
}

#inner .team p {
    margin: 0;
    font-size: 20px;
}

#inner .team ul {
    margin: 70px 0 0 0;
    padding: 0;
}

#inner .team ul > li {
    list-style: none;
    float: left;
    width: 33.333333%;
}

#inner .team ul > li h3 {
    font-size: 36px;
}

#inner .team ul > li p {
    margin-top: 20px;
}

#inner .be-part {
    font-size: 20px;
}

#inner .be-part a {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/*
    Eintragen
*/

#inner #advantage {
    padding: 55px 0 65px 0;
    background: #fafafa;
}

#inner #advantage ul {
    padding: 0;
    margin: 0;
}

#inner #advantage ul li {
    list-style: none;
    width: 33.333333%;
}

#inner #advantage ul li h3 {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 30px;
}

/*
    Course add
*/

#b-form form {
    margin: 60px 215px 40px 215px;
    padding: 50px;
    background: #f5f5f5;
}

#b-form form .select-container {
    margin: 0 0 40px 127px;
}

#b-form form .select-container.top {
    margin: 0;
    padding: 0 0 40px 145px;
    width: 100%;
}

#b-form form .select-container.top .customSelect {
    width: 100%;
    background: url('../img/select_arrow.png') 95% 50% no-repeat #fff;
}

#b-form form .select-container.top .customSelect .customSelectInner {
    text-align: left;
    padding: 0 20px;
}

#b-form form .select-container .customSelect {
    width: 380px;
    background: url('../img/select_arrow.png') 350px 26px no-repeat #fff;
}

#b-form form .form-group {
    margin: 0;
    position: relative;
}

#b-form form .form-group .customSelect {
    width: 100%;
    border: none;
    float: left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 53px;
    line-height: 53px;
    padding: 0;
    text-align: center;
}

#b-form form .form-group .customSelectInner {
    text-align: center;
}

#b-form form .form-group .dropdowns {
    float: left;
    display: inline-block;
    width: 100%;
    padding-left: 135px;
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

#b-form.request.no-courses form {
    margin: 20px 215px 40px 215px;
}

#b-form.request form .form-group .dropdowns {
    padding-left: 145px;
}

#b-form.purchase form .form-group .dropdowns {
    padding-left: 145px;
}

#b-form form .form-group .dropdowns .inner-dropdown {
    display: inline-block;
    width: 33.3333%;
    float: left;
    position: relative;
}

#b-form form .form-group .dropdowns .inner-dropdown select {
    left: 0;
    top: 0;
}

#b-form form .form-group label {
    width: 145px;
    padding: 0 14px;
    margin: 0;
    line-height: 53px;
    background: #f5f5f5;
    margin-top: -1px;
    border: 1px solid #e3e3e3;
    border-right: 1px solid #f5f5f5;
    color: #282f50;
    font-size: 20px;
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: absolute;
    left: 0;
    top: 0;
}

#b-form form .form-group label.textarea {
    height: 135px;
}

#b-form form .form-group textarea,
#b-form form .form-group input {
    width: 100%;
    height: 55px;
    line-height: 55px;
    border: 1px solid #e3e3e3;
    border-left: 1px solid #f5f5f5;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    margin-top: -1px;
    position: relative;
    font-size: 20px;
    color: #4a494a;
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 6px 30px 6px 165px;
    -webkit-transition: background-color 10ms ease-in, background-color 500ms ease-out;
    -moz-transition: background-color 10ms ease-in, background-color 500ms ease-out;
    -o-transition: background-color 10ms ease-in, background-color 500ms ease-out;
    -ms-transition: background-color 10ms ease-in, background-color 500ms ease-out;
    transition: background-color 10ms ease-in, background-color 500ms ease-out;
}

#b-form form .form-group a {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: absolute;
    top: 50%;
    bottom: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: none;
    background: #FFF;
    color: #ee7b95;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    z-index: 101;
    margin-top: -10px;
    -webkit-transition: background-color 10ms ease-in, background-color 500ms ease-out;
    -moz-transition: background-color 10ms ease-in, background-color 500ms ease-out;
    -o-transition: background-color 10ms ease-in, background-color 500ms ease-out;
    -ms-transition: background-color 10ms ease-in, background-color 500ms ease-out;
    transition: background-color 10ms ease-in, background-color 500ms ease-out;
}

#b-form form .form-group a.error {
    background: #ee7b95;
    color: #FFF;
}

#b-form form .form-group a:before {
    content: none;
}

#b-form form .form-group textarea.error,
#b-form form .form-group input.error {
    background: #ee7b95;
    color: #FFF;
    position: relative;
}

#b-form form .icheckbox_minimal.error {
    border: 1px solid #ee7b95;
}

#b-form form .form-group textarea.error::-webkit-input-placeholder,
#b-form form .form-group input.error::-webkit-input-placeholder {
    color: #FFF;
}

#b-form form .form-group textarea.error:-moz-placeholder,
#b-form form .form-group input.error:-moz-placeholder {
    color: #FFF;
    opacity: 1;
}

#b-form form .form-group textarea.error::-moz-placeholder,
#b-form form .form-group input.error::-moz-placeholder {
    color: #FFF;
    opacity: 1;
}

#b-form form .form-group textarea.error:-ms-input-placeholder,
#b-form form .form-group input.error:-ms-input-placeholder {
    color: #FFF;
}

#b-form form .form-group textarea {
    height: 135px;
    line-height: 1.4;
}

#b-form form .form-group textarea:focus,
#b-form form .form-group input:focus {
    border: 1px solid #b3dbef;
    border-left: 1px solid #f5f5f5;
    z-index: 12;
}

#b-form form .form-group textarea:focus + label,
#b-form form .form-group input:focus + label {
    border: 1px solid #b3dbef;
    border-right: 1px solid #f5f5f5;
    z-index: 12;
}

#b-form form .form-group textarea:focus + label:after,
#b-form form .form-group input:focus + label:after {
    content: '';
    position: absolute;
    top: 18px;
    right: -11px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 10px;
    border-color: transparent transparent transparent #f5f5f5;
    -webkit-transform: rotate(360deg);
    -webkit-transition: border 10ms ease-in, border 500ms ease-out;
    -moz-transition: border 10ms ease-in, border 500ms ease-out;
    -o-transition: border 10ms ease-in, border 500ms ease-out;
    -ms-transition: border 10ms ease-in, border 500ms ease-out;
    transition: border 10ms ease-in, border 500ms ease-out;
}

#b-form form .form-group textarea.error + label:after,
#b-form form .form-group input.error + label:after {
    content: '';
    position: absolute;
    top: 20px;
    right: -1px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 11px 7px 0;
    border-color: transparent #ee7b96 transparent transparent;
    -webkit-transform: rotate(360deg)
}

#b-form form .more-info {
    height: 63px;
    display: table;
    margin-top: 55px;
}

#b-form form .more-info > span {
    font-size: 12px;
    line-height: 1;
    color: #282f50;
    display: table-cell;
    vertical-align: middle;
}

#b-form form button {
    margin-top: 55px;
    font-size: 20px;
    line-height: 1;
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 21px 18px;
    position: relative;
}

#b-form form button a {
    display: none;
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #ee7b95;
    color: #FFF;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    z-index: 101;
}

#b-form form button a:before {
    content: none;
}

#b-form form button span {
    font-family: 'axisbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 20px;
}

#b-form .login {
    font-size: 20px;
    margin-bottom: 100px;
}

#b-form .login a span {
    font-family: 'axisbold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 20px;
}

#b-form.request {
    margin-bottom: 130px;
}

#b-form.request .icheckbox_minimal {
    margin-right: 10px;
}

#inner #testimonials2 {
}

/*
    Contacts
*/

#inner.contacts {
    position: relative;
}

#inner.contacts #page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

#inner.contacts #map {
    min-height: 1330px;
    margin: 0 0 -140px 0;
    z-index: -1;
    width: 100%;
    position: relative !important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

#b-form.contacts form {
    margin: 300px 0 130px 0;
    max-width: 814px;
    float: left;
}

#b-form.contacts form .form-group label {
    width: 205px;
}

#b-form.contacts form .form-group textarea,
#b-form.contacts form .form-group input {
    padding: 6px 30px 6px 225px;
}

#inner.contacts .mce {
    margin-bottom: 10px;
}

#inner.contacts .labels {
    margin: 300px 0 0 0;
}

#inner.contacts .labels ul {
    margin: 0;
    padding: 0;
}

#inner.contacts .labels ul li {
    width: 100%;
    display: table;
    height: 85px;
    font-size: 20px;
    padding: 0 80px 0 100px;
    background-color: #fffeb6;
    margin-bottom: 65px;
}

#inner.contacts .labels ul li span {
    display: table-cell;
    vertical-align: middle;
}

#inner.contacts .labels ul li.phone {
    background: url('../img/contact_07.png') 20px 50% no-repeat #fffeb6;
}

#inner.contacts .labels ul li.fax {
    background: url('../img/contact_10.png') 20px 50% no-repeat #fffeb6;
}

#inner.contacts .labels ul li.email {
    background: url('../img/contact_12.png') 20px 50% no-repeat #fffeb6;
}

#inner.contacts .labels ul li.address {
    background: url('../img/contact_14.png') 20px 50% no-repeat #fffeb6;
}

/*
    Purchase course
*/

#b-form.purchase form {
    margin: 0;
    padding: 35px 40px 15px 40px;
}

#b-form.purchase .mce {
    font-family: 'proxima_novalight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 40px;
}

#b-form.purchase form .form-group label {
    width: 145px;
}

#b-form.purchase form .form-group textarea,
#b-form.purchase form .form-group input {
    padding: 6px 30px 6px 175px;
}

#b-form.purchase form .cards {
    margin-top: 25px;
    margin-bottom: 40px;
}

#b-form.purchase form .cards p {
    font-size: 20px;
    line-height: 1;
}

#b-form.purchase form ul {
    margin: 15px 0 0 0;
    padding: 0;

}

#b-form.purchase form ul li {
    width: 105px;
    margin-right: 10px;
    list-style: none;
    height: 140px;
    display: inline-block;
}

#b-form.purchase form ul li label {
    height: 100%;
    width: 100% !important;
    cursor: pointer;
    padding: 0;
    position: relative;
    border: 1px solid #e6e5e4;
    background: #fff;
}

#b-form.purchase form ul li label.checked {
    background: #ffffff;
}

#b-form.purchase form ul li label .iradio_minimal {
    position: absolute !important;
    left: 50%;
    top: 20px;
    margin-left: -9px;
}

#b-form.purchase form ul li label img {
    margin-top: 60px;
}

#b-form.purchase form .ticket {
    line-height: 31px;
    margin: 40px 0 0 0;
}

#b-form.purchase form button {
    background: #40b549;
}

#b-form.purchase form button:hover {
    background-color: #2dc839;
}

#b-form form button.error {
    position: relative;
    background-color: #8b8b8b !important;
}

#b-form.purchase .form-group a.tip {
    position: absolute;
    top: 5px;
    left: 125px;
    z-index: 19;
    background: #282f50;
    color: #fff;
    width: 13px;
    height: 13px;
    margin: 0;
    line-height: 13px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    display: inline-block !important;
}

#b-form.purchase .form-group a:hover:before {
    content: none;
}

#inner aside.purchase .details a > img {
    width: 74px;
    height: 74px;
    border-right: 1px solid #FFF;
    border-top: 1px solid #f5f5f5;
}

#inner aside.purchase .details h2 {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #FFF;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    padding: 18px 10px 18px 84px;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
}

#inner aside.purchase .details h2 a {
    position: absolute;
    top: 0;
    left: 0;
}

#inner aside.purchase .details h2 i {
    font-style: normal;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

#inner aside.purchase .details h2 span {
    display: block;
    font-size: 13px;
    line-height: 13px;
}

#inner aside.purchase .details-more {
    position: relative;
    height: 211px;
    border-bottom: 1px solid #fff;
}

#inner aside.purchase .details-more .time-details {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 74px;
    background: #f5f5f5;
}

#inner aside.purchase .details-more .time-details .start {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #aaaaaa;
    font-size: 14px;
}

#inner aside.purchase .details-more .time-details .time,
#inner aside.purchase .details-more .time-details .date {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
}

#inner aside.purchase .details-more .time-details .price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
}

#inner aside.purchase .details-more .time-details .price > span {
    font-size: 14px;
}

#inner aside.purchase .details-more .time-details .price > div,
#inner aside.purchase .details-more .time-details .price > span {
    display: inline-block;
    width: 100%;
}

#inner aside.purchase #detail-map {
    width: 100%;
    height: 210px;
}

#inner aside.purchase .more-details {
    background: #f5f5f5;
    padding: 25px 35px 35px 35px;
}

#inner aside.purchase .more-details .table tr td {
    padding: 6px 4px;
}

#inner aside.purchase .more-details .table {
    border-left: 1px solid #e0e0e6;
    border-right: 1px solid #e0e0e6;
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #161616;
    margin-bottom: 40px;
}

#inner aside.purchase .more-details .table tr td {
    border-top: 1px solid #e0e0e6;
    line-height: 24px;
    vertical-align: middle;
}

#inner aside.purchase .more-details .table tr:last-child td {
    border-bottom: 1px solid #e0e0e6;
}

#inner aside.purchase .more-details .table .num {
    background: #41bb17;
    font-size: 24px;
    color: #FFF;
    text-align: center;
}

#inner aside.purchase .more-details .total {
    font-size: 16px;
    color: #161616;
    line-height: 42px;
}

#inner aside.purchase .more-details .total .one {
    border-bottom: 1px solid #e0e0e6;
}

#inner aside.purchase .more-details .total .vat {
    color: #c5c5c5;
    margin-top: -15px;
}

/*
    Ticket Page
*/
#page.ticket .jumbotron h1 {
    font-size: 36px;
    margin: 0 0 10px 0;
}

#page.ticket h1,
#page.ticket h2 {
    color: #70b9e1;
}

#page.ticket .map {
    position: relative;
}

#page.ticket .map a {
    position: absolute;
    top: 50%;
    margin-top: -125px;
    z-index: 2;
}

#page.ticket #detail-map {
    margin-bottom: 20px;
}

#page.ticket #detail-map,
#page.ticket #detail-map .container,
#page.ticket #detail-map .col-xs-12 {
    width: 100%;
    height: 300px;
}

#page.ticket .map a img.img-circle {
    width: 250px;
}

#page.ticket .cost > div {
    border-bottom: 1px solid #000;
    padding: 20px 0 10px 0;
    font-size: 20px;
    line-height: 30px;
}

#page.ticket .cost {
    margin-bottom: 30px;
}

#page.ticket .cost .price-one {
    font-size: 22px;
    line-height: 30px;
}

#page.ticket .cost .price-all {
    font-size: 30px;
    line-height: 30px;
}

/*
    Footer
*/

#footer .top {
    height: 200px;
    background: url('../img/footer.gif') bottom center no-repeat transparent;
}

#footer .top-footer {
    padding: 0 30px;
    margin-top: 65px;
    font-size: 14px;
}

#footer > section {
    background: #282f50;
    color: #FFF;
    font-size: 18px;
    padding-bottom: 65px;
}

#footer > section h2 {
    font-family: 'proxima_novasemibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    margin: 0 0 30px 0;
}

#footer > section a {
    color: #70b9e1;
    font-size: 18px;
}

#footer .uber {
    padding: 0 30px;
}

#footer .news {
    padding: 0 75px 0 115px;
}

#footer .news p img {
    margin: 0 5px 10px 0;
}

#footer ul {
    margin: 25px 0 0 0;
    padding: 0;
}

#footer ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #e0e0e6;
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

#footer ul li a {
    font-family: 'proxima_nova_rgregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #70b9e1;
    line-height: 1.2;
}

#footer ul li a:before {
    background: #70b9e1;
}

#footer .share {
    margin-top: 25px;
}

#footer .fb-bottom {
    margin-top: 10px;
}

#footer .fb-bottom a:before {
    content: none;
}
