@import 'font-awesome.min.css';

/*
    TAXOFON theme
    for Bootstrap v4

    Ivan Kolesnikov, ivan.kolesnikov@modera.net
    Version: 05.07.17

    Structure
    --------------------------------------------
    0. variables
    1. base styles
        - fonts definition
        - clearfix
        - global styles
        - styled elements

    2. common items
        - icons
        - buttons
        - form
            - checkbox
            - switch
            - file
            - select
            - datepicker
        - table
        - loading
        - modal
        - stars

    3. layout
        - global layout
        - navbar
        - content
        - columns
        - footer

    PAGES
        - sign up
        - profile
        - rides
        - payment
        - faq
        - contact
        - partners
        - about
*/

/**
    0. variables
 */

:root {
    --main-bg-color: #fff;
    --input-bg-color:#F4F4F4;
    --efect-bg-color:#FFDE00;
    --opaque-efect-bg-color: rgba(255, 222, 0, 0.8);
    --profile-bg-color:#FAFAFA;
    --main-text-color: #000;

    --base-font-size: 20px;
    --sub-font-size:90%;
    --small-font-size:80%;
    --title-font-size:36px;
    --border-radius:10px;

    --line-height: 24px;
}

/* 1. base styles ----------------------------------*/

/* fonts definition */

@font-face {
    font-family: 'TaxofonIcons';
    src:  url('../fonts/taxofon.woff?2tcsyr') format('woff'),
    url('../fonts/taxofon.ttf?2tcsyr') format('truetype'),
    url('../fonts/taxofon.svg?2tcsyr#taxofon') format('svg');
    font-weight: 400;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h4, .h4, h5, .h5, h6, .h6,
.btn,
.form-control,
.page-header,
.contact-header,
.app-block .features,
.sign-block .title,
.profile-nav,
.profile-form .label,
.rides-table .details-list .total,
.payment-list .total, .payment-list .total + .descr {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.rides-table .details-list .title {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color:var(--main-text-color);
    min-width:110px;
    display:inline-block;
}
button, input, optgroup, select, textarea {
    font-family: inherit;
}
input:-webkit-autofill{
    background-color:var(--main-bg-color) !important;
}
/* clearfix */
.border-top {
    border-top: 1px solid rgba(255,255,255,.1)
}

.border-bottom {
    border-bottom: 1px solid rgba(255,255,255,.1)
}

.container:before, .container:after,
.form-group:before, .form-group:after,
.book-block:before, .book-block:after,
.rides-table .tr:before, .rides-table .tr:after,
.payment-filter-form:before, .payment-filter-form:after {
    content: " ";
    display: table;
}
.container:after,
.form-group:after,
.book-block:after,
.rides-table .tr:after,
.payment-filter-form:after {
    clear: both;
}

/* global styles */

body {
    background-color: #0c0c0c;
    color: var(--main-bg-color);
    font-size: 18px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
    transition-property: border-color, background-color, color, opacity;
}
a:hover, a:focus {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}
a:focus {
    outline: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.35;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
    margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child {
    margin-bottom: 0;
}
h1, h2, h3,
.h1, .h2, .h3 {
    line-height: 1.2;
    word-wrap: break-word;
}
h1, .h1 {
    font-size: var(--title-font-size);
}
h2, .h2 {
    font-size: 32px;
}
h3, .h3 {
    font-size: 26px;
}
h4, .h4 {
    font-size: 22px;
}
h5, .h5 {
    font-size: var(--base-font-size);
}
h6, .h6 {
    font-size: 16px;
}

.lead {
    font-size: 22px;
    line-height: 1.33333;
}
.sublead {
    font-size: 18px;
    line-height: 1.66667;
}
.rear {
    font-size: 14px;
}

p, ul, ol, dl {
    margin-bottom: 20px;
}
dt {
    margin-bottom: 10px;
}
dd {
    margin-bottom: 10px;
}

img.pull-left, figure.pull-left {
    margin: 0 20px 10px 0;
}
img.pull-right, figure.pull-right {
    margin: 0 0 10px 20px;
}
figcaption {
    display: block;
    padding: 6px 8px;
    background-color: #e5e5e5;
    color: #666;
    font-size: 11px;
    font-weight: normal;
    text-align: center;
}

address {
    color: #666;
}

hr {
    margin: 20px 0;
    border-color: #ccc;
}

@media (min-width: 992px) {
    body {
        font-size: var(--base-font-size);
    }
    h1, h2, h3, h4, h5, h6,
    .h1, .h2, .h3, .h4, .h5, .h6 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    h4, .h4 {
        font-size: 36px;
    }
    h5, .h5 {
        font-size: 28px;
    }
}

span.cancelled {
    color: #d9534f !important;
    font-weight: bold;
}
span.changed {
    color: #fac80a !important;
    font-weight: bold;
}

/* styled elements */

.text-primary {
    color: var(--main-text-color) !important;
}
.text-white{
    color: var(--main-text-color) !important;
}
a.text-primary:hover {
    color: #000 !important;
}
.text-muted {
    color: #909090 !important;
}
a.text-muted:hover {
    color: #000 !important;
}

.list-disc {
    padding-left: 1.5em;
    list-style: none;
}
.list-disc li {
    margin-bottom: 10px;
}
.list-disc li:before {
    float: left;
    margin-top: -0.06em;
    margin-left: -0.85em;
    font-size: 1.6em;
    line-height: 1;
    opacity: 0.5;
    content: "\2022";
}
.list-decimal {
    padding-left: 0;
    list-style: none;
    counter-reset: count;
}
.list-decimal > li {
    counter-increment: count;
    font-size: var(--sub-font-size);
    display: block;
    line-height: 38px;
}
.list-decimal > li:before {
    margin-right: 20px;
    color: var(--main-text-color);
    background-color: var(--efect-bg-color);
    border-radius: 50%;
    font-weight: bold;
    content: counter(count)'.';
    display: inline-block;
    padding-left: 0.6em;
    padding-right: 0.3em;
    height: 34px;
    width: 34px;
}
dl.list-horizontal {
    overflow: hidden;
}
dl.list-horizontal dt,
dl.list-horizontal dd {
    float: left;
    width: 50%;
    margin: 5px 0;
}
dl.list-horizontal dt {
    clear: left;
    font-weight: bold;
}
dl.list-horizontal dd {
    font-weight: normal;
}

.img {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    font-size: 0;
    text-align: center;
}
.img > img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: pixelated;
}

.block-embed,
.youtube-block {
    position: relative;
    height: 0;
    margin-bottom: 20px;
    padding-top: 25px;
    padding-bottom: 67.5%;
    overflow: hidden;
}
.block-embed.widescreen,
.youtube-block {
    padding-bottom: 56.5%;
}
.block-embed > iframe, .block-embed > object, .block-embed > embed, .block-embed > video, .block-embed > .embed,
.youtube-block > iframe, .youtube-block > object, .youtube-block > embed, .youtube-block > video, .youtube-block > .embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mask {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: var(--main-bg-color);
    opacity: 0.75;
}
.disabled .mask {
    display: block;
}
.site-logo {
    background:var(--efect-bg-color);
    padding:5px;
    border-radius: 10px;
}



/* 2. common items ----------------------------------*/

/* icons */

.ico {
    display: inline-block;
    min-width: 16px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    font-style: normal;
    font-weight: normal;
    font-family: "TaxofonIcons";
    line-height: 1;
    text-align: center;
    text-decoration: none;
}
a .ico, button .ico, .btn .ico {
    margin-top: -2px;
    margin-right: 8px;
    font-size: 1.23em;
}

a .fa, a.fa, button .fa {
    display: inline-block;
    min-width: 16px;
    text-align: center;
    text-decoration: none;
}
a .fa, button .fa, .btn .fa {
    margin-right: 8px;
    margin-left: 0;
}
a .fa[class*="-right"], button .fa[class*="-right"], .btn .fa[class*="-right"] {
    margin-right: 0;
    margin-left: 8px;
}
a .fa-single, button .fa-single, .btn .fa-single {
    margin-left: 0;
    margin-right: 0;
}

.close {
    overflow: hidden;
    font-size: 0;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    opacity: 1;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
}
.close:before,
.close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin-left: -25%;
    border: 1px solid;
    border-width: 1px 0;
    content: "";
}
.close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close:hover,
.close:focus {
    opacity: 1;
}

.ico-flag {
    width: 32px;
    height: 20px;
}
.ico-flag.en {
    background-image: url('../img/flags/en.png');
}
.ico-flag.ru {
    background-image: url('../img/flags/ru.png');
}
.ico-flag.et {
    background-image: url('../img/flags/et.png');
}
.ico-flag.de {
    background-image: url('../img/flags/de.png');
}
.ico-flag.lv {
    background-image: url('../img/flags/lv.png');
}
.ico-flag.lt {
    background-image: url('../img/flags/lt.png');
}
.ico-flag.fi {
    background-image: url('../img/flags/fi.png');
}

.ico-car:before { content: "\e900"; }
.ico-ride:before { content: "\e901"; }
.ico-cog:before { content: "\e902"; }
.ico-customer:before { content: "\e903"; }
.ico-discount:before { content: "\e904"; }
.ico-driver:before { content: "\e905"; }
.ico-envelope:before { content: "\e906"; }
.ico-exclamation:before { content: "\e907"; }
.ico-globe:before { content: "\e908"; }
.ico-heart:before { content: "\e909"; }
.ico-home:before { content: "\e90a"; }
.ico-mobile:before { content: "\e90b"; }
.ico-money:before { content: "\e90c"; }
.ico-notepad:before { content: "\e90d"; }
.ico-paperplane:before { content: "\e90e"; }
.ico-play:before { content: "\e90f"; }
.ico-target:before { content: "\e910"; }
.ico-trash:before { content: "\e911"; }
.ico-user:before {  content: "\e912"; }
.ico-vehicle:before { content: "\e913"; }

/* buttons */

.btn {
    padding: 0 28px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    text-transform: uppercase;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    -webkit-transition-property: border-color, background-color, color;
    transition-property: border-color, background-color, color;

}
.btn:focus .btn.focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-sm {
    height: 30px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 12px;
    line-height: 30px;
}
.btn-lg {
    height: 50px;
    font-size: 16px;
    line-height: 50px;
}

.btn-primary {
    background-color: var(--efect-bg-color);
    color: var(--main-text-color);
    font-size: var(--small-font-size);
    font-weight: bold;
    line-height: 16px;
    padding:11px 58px;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: #fbd735;
    color: #000;
}
.btn-primary:focus, .btn-primary.focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-primary.disabled, .btn-primary:disabled {
    background-color: #999;
}

.btn-secondary {
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-size: 18px;
    line-height: var(--line-height);
    padding:11px 58px;
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
    background-color: #222;
    color: #fac80a;
}
.btn-secondary:focus, .btn-secondary.focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-secondary.disabled, .btn-secondary:disabled {
    background-color: #eee;
}
.btn-basic{
    background-color: initial;
    font-size: var(--small-font-size);
    line-height: 16px;
    padding:11px 58px;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    box-shadow:none;
}
.btn-link {
    padding-left: 0;
    padding-right: 0;
    border: 0;
    color: inherit;
    font-size: inherit;
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
    color: inherit;
    text-decoration: underline;
}

.btn-line {
    margin-top: 20px;
    margin-bottom: 0;
}

#video-new-window {
    margin-right: 15px;
    float: right;
    display: none
}

@media (min-width: 992px) {

}

/* form */

label {
    margin-bottom: 10px;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-control {
    border: 0;
    border-radius: 5px;
    border-bottom: 1px solid var(--efect-bg-color);
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--main-text-color);
    font-size: inherit;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}
.form-control::-webkit-input-placeholder {
    color: #ccc;
}
.form-control::-moz-placeholder {
    color: #ccc;
}
.form-control:-ms-input-placeholder {
    color: #ccc;
}
.form-control::placeholder {
    color: #ccc;
}
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border:none;
    background-color:initial;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: var(--main-bg-color);
}

.form-control-feedback {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 5px 0;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@-moz-document url-prefix() {
    fieldset {
        display: table-cell;
    }
}

/* - checkbox */

.checkbox, .radio {
    position: relative;
    min-height: 28px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 36px;
    line-height: var(--line-height);
}
.checkbox .check-item, .radio .check-item {
    position: absolute;
    top: 2px;
    left: 0;
}
.check-label {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.55;
    margin-top:5px;
}
.check-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-style: normal;
    line-height: 18px;
    white-space: nowrap;
}
.check-item input {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    margin: 0 !important;
    padding: 0;
    border: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer;
}
.check-item .check-icon {
    position: absolute;
    z-index: 1;
    top: 2px;
    left: 2px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    font-weight: normal;
    text-align: center;
    -webkit-transition: border-color .35s ease, color .35s ease;
    transition: border-color .35s ease, color .35s ease;
    background: var(--main-bg-color);
}
.no-touch .check-item input:hover + .check-icon {
    border-color: var(--main-bg-color);
}
.check-item input:checked + .check-icon {
    border-color: var(--main-bg-color);
}
.check-item input[type="checkbox"]:checked + .check-icon:before {
    background: url('../img/icons/checkmark.svg');
    content: " ";
    width:15px;
    height:15px;
    position: absolute;
    left:7px;
    top:10px;
    background-repeat: no-repeat;
}
.check-item input[type="radio"] + .check-icon {
    border-radius: 12px;
}
.check-item input[type="radio"]:checked + .check-icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -5px;
    border: 5px solid;
    border-radius: 5px;
    content: "";
}
.checkbox + .checkbox,
.radio + .radio {
    margin-top: 0;
}
.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
    margin-left: 0;
}
.checked > .check-label {
}

/* - switch */

.switch-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.switch-item input {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    margin: 0 !important;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.switch-item .switch-slider-wrap {
    position: relative;
    z-index: 1;
    display: block;
    width: 51px;
    height: 26px;
    overflow: hidden;
    border-radius: 13px;
    background-color: #CFCFCF;
    font-size: 0;
    white-space: nowrap;
    -webkit-transition: background-color .35s ease;
    transition: background-color .35s ease;
}
.switch-item .switch-slider-wrap:before {
    position: absolute;
    top: 4px;
    left: -23px;
    width: 18px;
    height: 18px;
    margin-left: 26px;
    border-radius: var(--border-radius);
    background-color: var(--main-bg-color);
    -webkit-transition: margin-left 0.2s linear, background-color .35s ease;
    transition: margin-left 0.2s linear, background-color .35s ease;
    content: "";
}
.switch-item input:checked + .switch-slider-wrap {
    background-color: var(--efect-bg-color);
}
.switch-item input:checked + .switch-slider-wrap:before {
    margin-left: 100%;
    background-color: #000;
}
.switch-item input[disabled] + .switch-slider-wrap,
.no-touch .switch-item input[disabled]:hover + .switch-slider-wrap {
    opacity: 0.5;
}
.switch-item .switch-slider {
    display: none;
}
.switch {
    display: block;
}
.switch-inline {
    display: inline-block;
    vertical-align: middle;
}
.switch, .switch-inline {
    position: relative;
    min-height: 30px;
    margin-bottom: 0;
    padding-left: 78px;
    font-weight: inherit;
    line-height: 26px;
}
.switch .switch-item, .switch-inline .switch-item {
    position: absolute;
    top: 0;
    left: 0;
}

/* - file */

.jViz-file-item {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
}
.jViz-file-path {
    vertical-align: middle;
    margin-left: 10px;
}
.jViz-file-hint {
    vertical-align: middle;
    margin-left: 10px;
    color: #999;
}
.jViz-file-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}
.jViz-file {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    min-width: 100%;
    height: 100%;
    padding: 0;
    font-size: 300%;
    cursor: pointer;
    opacity: 0;
}
.jViz-file-btn .jViz-btn {
    position: relative;
    display: block;
    height: 40px;
    padding: 0 20px;
    overflow: hidden;
    background-color: #e8e8e8;
    color: #666;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    cursor: default;
    text-align: left;
    text-transform: uppercase;
    -webkit-transition: border-color .35s ease, background-color .35s ease, color .35s ease;
    transition: border-color .35s ease, background-color .35s ease, color .35s ease;
}
.jViz-file:hover + .jViz-btn,
.jViz-file:focus + .jViz-btn {
    background-color: #dbdbdb;
    color: #666;
}
.jViz-file[disabled] {
    pointer-events: none;
    cursor: not-allowed;
}
.jViz-file[disabled] + .jViz-btn {
    background-color: #eee;
    color: #aaa;
    opacity: .5;
}

/* - select */

.jViz-select-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    text-align: left;
}
.jViz-select-item.open {
    z-index: 999;
}
.jViz-select {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 50px !important;
    opacity: 0 !important;
}
.jViz-select.touch {
    width: 100% !important;
    height: 100% !important;
}
.jViz-select-current {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 40px 0 10px;
    overflow: hidden;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: var(--main-bg-color);
    -webkit-box-shadow: 3px 3px 4px rgba(0,0,0,.15) inset;
    box-shadow: 3px 3px 4px rgba(0,0,0,.15) inset;
    color: #000;
    line-height: 38px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
    -webkit-transition: border-color .5s ease;
    transition: border-color .5s ease;
}
.jViz-select-current:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 0 2px 2px 0;
    background-color: #aaa;
    color: var(--main-bg-color);
    font-family: "FontAwesome";
    line-height: 28px;
    text-align: center;
    text-indent: 1px;
    content: "\f078";
}
.jViz-select-current:hover:before,
.jViz-select:hover + .jViz-select-current:before {
    background-color: #999;
}
.open > .jViz-select-current:before,
.jViz-select:focus + .jViz-select-current:before {
    background-color: #999;
}
.jViz-select-list {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    display: none;
    width: 100%;
    margin-top: -3px;
    overflow: hidden;
    color: #000;
    font-size: 12px;
}
.open > .jViz-select-list {
    display: block;
}
.jViz-select-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.jViz-select-list .list {
    position: relative;
    max-height: 245px;
    padding-top: 3px;
    overflow-x: hidden;
    border: 1px solid #999;
    border-radius: 0 0 4px 4px;
    background-color: var(--main-bg-color);
}
.jViz-select-list .link {
    display: block;
    height: 24px;
    padding: 0 10px;
    overflow: hidden;
    line-height: var(--line-height);
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
}
.jViz-select-list .link:hover {
    background-color: #eee;
}
.jViz-select-list .link.selected {
    background-color: #669cff;
    color: var(--main-bg-color);
}
.jViz-select-list .link[disabled],
.jViz-select-list .link[disabled]:hover,
.jViz-select-list .optgroup[disabled] .link,
.jViz-select-list .optgroup[disabled] .optgroup-label {
    background-color: transparent;
    color: #bbb;
}
.jViz-select-list .optgroup-label {
    display: block;
    height: 20px;
    padding: 0 10px;
    font-weight: bold;
    font-style: italic;
    line-height: 20px;
    cursor: default;
}
.jViz-select-list .optgroup .link {
    padding-left: 20px;
}
.jViz-select[disabled] + .jViz-select-current {
    cursor: not-allowed;
    opacity: .5;
}
.jViz-select[disabled] + .jViz-select-current:before {
    background-color: #999;
}

.has-error .jViz-select-current {
    border-color: #f00;
}

/* - datepicker */

.date-picker {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.date-picker:before {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 10px;
    margin-top: -0.5em;
    color: #949494;
    font-size: 15px;
    font-family: "FontAwesome";
    line-height: 1;
    content: "\f073";
}
.date-picker > .form-control {
    padding-right: 32px;
    opacity: 1;
}

.pika-single {
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    min-width: 260px;
    margin-top: 5px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background-color: var(--main-bg-color);
    line-height: 1;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.15);
    box-shadow: 0 0 5px rgba(0,0,0,.15);
}
.pika-single.up {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 5px;
}
.pika-single.is-hidden {
    display: none;
}
.pika-single.is-bound {
    position: absolute !important;
}
.pika-lendar {
    display: block;
    padding: 10px;
}
.pika-title {
    position: relative;
    text-align: center;
    color: #434343;
}
.pika-title select {
    position: absolute;
    z-index: 9998;
    top: 5px;
    left: 0;
    margin: 0;
    cursor: pointer;
    filter: alpha(opacity=0);
    opacity: 0;
}
.pika-label {
    position: relative;
    z-index: 9999;
    display: inline-block;
    height: 26px;
    margin: 0;
    padding: 0 3px;
    overflow: hidden;
    font-size: 14px;
    line-height: 26px;
    background-color: var(--main-bg-color);
    text-transform: uppercase;
}
.pika-label:hover {
    color: #000;
}
.pika-prev,
.pika-next {
    position: absolute;
    top: 0;
    width: 26px;
    height: 26px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: none;
    font-size: 0;
    line-height: 26px;
    text-align: center;
}
.pika-prev:before,
.pika-next:before {
    display: block;
    font-size: 18px;
    font-family: "FontAwesome";
}
.pika-prev:hover,
.pika-next:hover {
    color: #fac80a;
}
.pika-prev {
    left: 0;
}
.pika-prev:before {
    content: "\f104";
}
.pika-next {
    right: 0;
}
.pika-next:before {
    content: "\f105";
}
.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}
.pika-select {
    display: inline-block;
}
.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
    font-weight: bold;
}
.pika-table th,
.pika-table td {
    width: 36px;
    height: 36px;
    padding: 0;
    text-align: center;
}
.pika-table th {
    height: 30px;
    color: #999;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
}
.pika-button {
    display: inline-block;
    width: 100%;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    line-height: 36px;
    cursor: pointer;
}
.is-disabled .pika-button {
    opacity: 0.4;
}
.is-disabled .pika-button:hover {
    background-color: transparent;
    cursor: not-allowed;
}
.is-today .pika-button {
    color: #fac80a;
}
.is-selected .pika-button,
.pika-button:hover {
    background-color: #fac80a;
    color: #000;
}
.pika-table abbr {
    border-bottom: none;
    text-decoration: none;
    cursor: help;
}

@media (min-width: 480px) {
    .pika-lendar {
        padding: 20px;
    }
}

@media (min-width: 992px) {
    #video-new-window {
        display: block
    }
    .pika-single {
        left: 0 !important;
        width: 280px;
    }
    .pika-lendar {
        padding: 10px;
    }
    .pika-button {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 1200px) {
    .pika-single {
        width: 320px;
    }
    .pika-lendar {
        padding: 15px;
    }
    .pika-button {
        width: 40px;
    }
}

/* table */

.table {
    border-bottom: 1px solid #ddd;
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    padding: 10px;
}
.table-striped > tbody > tr > th,
.table-striped > tbody > tr > td {
    border: 0;
}
.table > tbody > tr > .title-cell {
    vertical-align: middle;
    border-top: 2px solid #ddd;
}
.table tbody > tr.divider > td,
.table tbody > tr.divider > th {
    padding: 0;
    border-top: 2px solid #ccc;
}
.table tbody > tr.divider + tr > td,
.table tbody > tr.divider + tr > th {
    border-top-width: 0;
}
.table tbody > tr.spacer > td,
.table tbody > tr.spacer > th {
    height: 20px;
    padding: 0;
    border-top-width: 0;
}
.table tbody > tr.spacer + tr > td,
.table tbody > tr.spacer + tr > th {
    border-top-width: 0;
}
.table tbody > tr.highlight > td,
.table tbody > tr.highlight > th {
    color: #bb162b;
    font-weight: bold;
}
.table > tbody > tr > td .btn {
    margin-top: -5px;
    margin-bottom: -5px;
}

.table .title-cell .title {
    display: block;
    margin: 0;
    padding: 3px 0;
}
.table .title-cell .side-line {
    float: right;
    margin: 0;
}
.table .hint-line {
    margin: 0;
    font-weight: normal;
    text-transform: none;
}

@media (max-width: 639px) {
    .data-table,
    .data-table > tbody,
    .data-table > tbody > tr,
    .data-table > tbody > tr > th,
    .data-table > tbody > tr > td {
        display: block;
        width: auto;
    }
    .data-table > thead {
        display: none;
    }
    .data-table > tbody > tr {
        border-top: 1px solid #ddd;
    }
    .data-table > tbody > tr > th:empty {
        display: none;
    }
    .data-table > tbody > tr > td {
        padding-top: 5px;
        padding-bottom: 5px;
        overflow: hidden;
        border-top: 0;
    }
    .data-table > tbody > tr > td:first-child {
        padding-top: 10px;
    }
    .data-table > tbody > tr > td:last-child {
        padding-bottom: 10px;
    }
    .data-table > tbody > tr > td[data-th] {
        padding-left: 50%;
    }
    .data-table > tbody > tr > td[data-th]:before {
        float: left;
        width: 100%;
        margin-left: -100%;
        padding-right: 10px;
        color: #5e5e5e;
        font-size: 13px;
        text-align: left;
        word-wrap: break-word;
        content: attr(data-th);
    }
    .data-table > tbody > tr > .title-cell {
        border-top: 0;
    }
    .data-table > tbody > tr.divider,
    .data-table > tbody > tr.divider + tr {
        border-top: 0;
    }
    .data-table > tbody > tr.divider > td {
        padding: 0;
    }
    .data-table .text-right {
        text-align: inherit;
    }
    .data-table .title-cell {
        color: #5e5e5e;
        font-weight: bold;
    }
    .data-table .btn-line {
        width: auto !important;
    }
    .data-table .btn-line .btn {
        display: block;
        width: 100%;
    }
    .data-table .btn-line .btn + .btn {
        margin-top: 5px;
    }
    .data-table.js-table-hover > tbody > tr.js-row-hover.open + tr.js-row-hidden {
        display: block;
    }
    .data-table.js-table-hover > tbody > tr.js-row-hover.open > td[data-th]:before {
        color: inherit;
    }
}

/* loading */

.spinner-wrap,
.loading {
    position: relative;
    opacity: 0.25;
}
.spinner-wrap .spinner {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    margin: -11px 0 0 -11px;
}
.spinner {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    background: url('../img/ajax-loader.gif') no-repeat 50% 50%;
}
body.loading {
    opacity: 1;
}
body.loading > .loading-mask {
    position: fixed;
    background-color: rgba(255,255,255,.95);
}
.loading-mask {
    position: absolute;
    z-index: 1100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.75);
}
.mask-content {
    display: table;
    width: 100%;
    height: 100%;
}
.mask-text {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.mask-text .spinner {
    position: static;
    margin: 0;
}
.mask-text .text {
    display: block;
    margin-top: 5px;
    font-size: var(--base-font-size);
}

/* modal */

.modal-backdrop.in {
    opacity: 0.75;
    filter: alpha(opacity=75);
}
.modal .close {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    margin: 0;
    background-color: #eee;
    color: #bb162b;
    font-size: 0;
    font-weight: normal;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    filter: none;
    opacity: 1;
    -webkit-transition: color, background-color 0.3s ease;
    transition: color, background-color 0.3s ease;
}
.modal .close:before {
    font-size: 18px;
    font-family: "FontAwesome";
    content: "\f00d";
}
.modal .close:hover,
.modal .close:focus {
    background-color: #bb162b;
    color: var(--main-bg-color);
}
.modal-content {
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.modal-header,
.modal-footer,
.modal-body {
    padding: 20px 40px;
    color: #282829;
}
.modal-body {
    padding: 0 40px;
}
.modal-header {
    border-bottom-color: #eee;
}
.modal-footer {
    border-top-color: #eee;
}
.modal-footer .btn {
    min-width: 120px;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
    }
}

/* stars */

.stars-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 82px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
}
.stars-item:before, .stars-item:after {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 0;
    padding-bottom: 20%;
    background: repeat-x 0 0;
    background-size: 20% auto;
    content: "";
}
.stars-item:before {
    margin-left: -100%;
    background-image: url('../img/star-primary.svg');
}
.stars-item:after {
    background-image: url('../img/star-muted.svg');
}
.stars-field:after {
    background-image: url('../img/star-white.svg');
}
.stars-check {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.stars-item input {
    float: left;
    margin: 0;
    padding: 0;
    width: 20%;
    height: 100%;
    opacity: 0;
}
.stars-item.disabled {
    opacity: 0.3;
}
.stars-item.stars-05:before,
.stars-item.stars-1:before {
    margin-left: -80%;
}
.stars-item.stars-15:before,
.stars-item.stars-2:before {
    margin-left: -60%;
}
.stars-item.stars-25:before,
.stars-item.stars-3:before {
    margin-left: -40%;
}
.stars-item.stars-35:before,
.stars-item.stars-4:before {
    margin-left: -20%;
}
.stars-item.stars-45:before,
.stars-item.stars-5:before {
    margin-left: 0;
}
.stars-item.stars-05:before,
.stars-item.stars-15:before,
.stars-item.stars-25:before,
.stars-item.stars-35:before,
.stars-item.stars-45:before,
.stars-item.stars-05:after,
.stars-item.stars-15:after,
.stars-item.stars-25:after,
.stars-item.stars-35:after,
.stars-item.stars-45:after {
    left: -9%;
    background-position: -12.5% 0;
}
.stars-item-lg {
    width: 120px;
}

.stars-hint {
    vertical-align: middle;
    margin-left: 5px;
    font-style: normal;
}

@media (min-width: 992px) {
    .stars-item {
        width: 100px;
    }
}



/* 3. layout ----------------------------------*/

/* global layout */

html, body,
.main-wrapper {
    height: 100%;
    background:var(--main-bg-color);
}
.main-wrapper {
    padding-top: 64px;
}
.small-container{
    width:90%;
    margin:auto;
}
@media (max-width: 767px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .main-wrapper {
        padding-top: 82px;
    }
    .small-container{
        width:60%;
    }
}

@media (min-width: 1340px) {
    .container {
        width: 92%;
    }
}

/* navbar */

/*.navbar {*/
/*position: absolute;*/
/*z-index: 1000;*/
/*top: 0;*/
/*right: 0;*/
/*left: 0;*/
/*height: 64px;*/
/*padding: 0;*/
/*!*border-bottom: 1px solid rgba(255,255,255,.15);*!*/
/*}*/
.navbar {
    background-color:rgba(255, 255, 255, 1) !important;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    color:#000;
    /*border-bottom: 1px solid rgba(255,255,255,.15);*/
}
.navbar .container {
    position: relative;
    height: 100%;
}
.navbar-toggler {
    position: absolute;
    top: 50%;
    right: 10px;
    height: 38px;
    width: 46px;
    margin: -19px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    -webkit-transition: color .35s ease;
    transition: color .35s ease;
}
.navbar-toggler:before,
.navbar-toggler:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 0;
    margin-left: -17px;
    border: 2px solid;
    border-radius: 2px;
    content: "";
}
.navbar-toggler:before {
    margin-top: -12px;
}
.navbar-toggler:after {
    margin-top: 8px;
}
.navbar-toggler .text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 0;
    margin-top: -2px;
    margin-left: -17px;
    border: 2px solid;
    border-radius: 2px;
    font-size: 0;
}
.navbar-toggler:hover,
.navbar-opened .navbar-toggler {
    color: #fac80a;
}
.navbar-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 51px;
    height: 60px;
    margin: -20px 0 0 -64px;
    padding: 0;
    overflow: hidden;
    background: url('../img/tulika-logo.svg') no-repeat 0 0;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    font-size: 0;
    text-indent: 100%;
    white-space: nowrap;
}

.lang-switcher {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -18px;
    font-size: 12px;
}
.lang-switcher .ico-flag {
    vertical-align: middle;
}
.lang-switcher .dropdown-toggle {
    position: relative;
    display: inline-block;
    height: 35px;
    padding: 5px 22px 5px 15px;
    line-height: 27px;
    text-decoration: none;
    text-transform: uppercase;
}
.lang-switcher .dropdown-toggle:after {
    position: absolute;
    top: 35%;
    right: 14px;
    display: inline-block;
    border: 0;
    font-size: 16px;
    font-weight: normal;
    font-family: "FontAwesome";
    line-height: 1px;
    content: "\f107";
    color: #666666;
    opacity: .5;
}
.lang-switcher .dropdown-toggle:hover,
.lang-switcher.open .dropdown-toggle {
    color: #fac80a;
}
.lang-switcher .dropdown-toggle .ico-flag {
    margin: 0;
}
.lang-switcher .dropdown-menu {
    min-width: 0;
    margin: 14px 0 0;
    padding: 4px 0;
    border: 0;
    border-radius: 0;
    background-color: var(--main-bg-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
    font-size: inherit;
}
.lang-switcher .dropdown-item {
    position: relative;
    display: block;
    padding: 6px 15px;
    color: inherit;
    text-decoration: none;
    text-transform:uppercase;
}
.lang-switcher .dropdown-item:hover,
.lang-switcher .dropdown-item:focus,
.lang-switcher .dropdown-item.active {
    background-color: transparent;
    color: #fac80a !important;
}
.lang-switcher .dropdown-item .ico-flag {
    margin: 0 8px 0 0;
}
.lang-switcher .dropdown-item .text {
    display: inline-block;
    vertical-align: middle;
}
.lang-switcher .dropdown-toggle.notifications:after{
    content: " ";
}
#notifications-number{
    display: inline-block;
    position: absolute;
    top: -5px;
    color: var(--main-bg-color);
    background: var(--efect-bg-color);
    height: 22px;
    width: 22px;
    text-align: center;
    border-radius: 50%;
    line-height: 22px;
    right: 3px;
    font-size: 12px;
}
.navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    background-color: var(--main-bg-color);
}
.navbar-opened .navbar-collapse {
    display: block;
}
.navbar-nav {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}
.navbar-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(176,176,176,.1);
}
.navbar-nav .nav-link {
    position: relative;
    padding: 10px 10px 10px 55px;
}
.navbar-nav .nav-link .ico {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 24px;
    margin-top: -0.5em;
    font-size: 22px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #fac80a;
}

.navbar-links {
    position: absolute;
    top: 50%;
    right: 0;
    display: none;
    margin: -13px 0 0;
    padding: 0;
    font-size: 16px;
    line-height:19px;
    list-style: none;
    text-transform: uppercase;
}
.navbar-links > li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 45px;
}
/*.navbar-links > li + li:before {*/
/*position: absolute;*/
/*top: 50%;*/
/*left: -27px;*/
/*width: 5px;*/
/*height: 5px;*/
/*margin-top: -1px;*/
/*border-radius: 3px;*/
/*background-color: #fcdc34;*/
/*content: "";*/
/*}*/
.navbar-links > li > a {
    display: block;
}
.navbar-links > .active > a {
    color: #fac80a;
}

@media (max-width: 767px) {

}

@media (min-width: 992px) {
    .navbar {
        height: 82px;
    }
    .navbar-brand {
        width: 60px;
        height: 51px;
        margin-top: -27px;
        margin-left: -90px;
    }
    .navbar-toggler {
        right: 12px;
        margin-top: -18px;
    }
    .navbar-toggler:before,
    .navbar-toggler:after,
    .navbar-toggler .text {
        width: 38px;
        margin-left: -19px;
    }
    .lang-switcher {
        left: 4px;
        font-size: 14px;
    }
    .lang-switcher .dropdown-toggle {
        padding-right: 30px;
        padding-top:0;
    }
    .lang-switcher .ico-flag {
        width: 38px;
        height: 25px;
    }
    .lang-switcher .dropdown-item .ico-flag {
        margin-right: 12px;
    }
    .navbar-collapse {
        min-width: 345px;
        right: 15px;
    }
    .navbar-nav {
        font-size: 25px;
    }
    .navbar-nav .nav-link {
        padding-left: 60px;
    }
    .navbar-nav .nav-link .ico {
        font-size: 28px;
    }
    .navbar-links {
        display: block;
    }
}

/* content */

.main-banner {
    position: relative;
    display: block;
    margin: -64px 0 0;
    padding-top: 64px;
    background: no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
    min-height: 90%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.21), rgba(255, 255, 255, 0.21));
    background-repeat: no-repeat;
    background-size: cover;
}
.main-banner:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 174px;
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 65%, rgba(0,0,0,0) 100%);
    background-image: linear-gradient(to bottom, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 65%, rgba(0,0,0,0) 100%);
    content: "";
}
.main-banner .cta-block {
    margin: 60px 0;
    font-weight: bold;
    text-align: center;
}
.main-banner .cta-block .play-btn {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    margin: 0 0 30px;
    line-height: 54px;
    text-align: center;
    text-decoration: none;
}
.main-banner .cta-block .play-btn .ico {
    margin: 0;
    font-size: 54px;
}
.main-banner .cta-block .play-btn:before,
.main-banner .cta-block .play-btn:after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 4px solid var(--main-bg-color);
    border-radius: 50%;
    -webkit-transition: -webkit-transform .35s ease, opacity .35s ease;
    transition: transform .35s ease, opacity .35s ease;
    content: "";
}

.main-banner .cta-block .play-btn:after {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    opacity: 0.1;
}
.main-banner .cta-block .play-btn:hover {
    color: #fac80a;
}
.main-banner .cta-block .play-btn:hover:before,
.main-banner .cta-block .play-btn:hover:after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.main-banner .cta-block .play-btn:hover:before {
    opacity: 0.1;
}
.main-banner .cta-block .play-btn:hover:after {
    opacity: 0;
}
.main-banner .cta-block .title {
    display: block;
    margin: 0 0 10px;
    font-size: 28px;
}
.main-banner .cta-block .descr {
    margin: 0;
    font-size: 15px;
    font-family: inherit;
    color:var(--efect-bg-color);
}
.main-banner .cta-block .btn-line {
    margin: 25px -15px 0;
}
.main-banner .cta-block .btn-secondary {
    color: var(--main-bg-color);
}
.play-btn .fa:before{
    content: " ";
    position: absolute;
    top: -30px;
    width: 35px;
    height: 52px;
    left: 23px;
}
.fa-play:before{
    background: url("../img/icons/media-play.svg") no-repeat 50% 50%;
    left:30px !important;
}
.fa-pause:before{
    background: url("../img/icons/media-pause.svg") no-repeat 50% 50%;
}

@media (max-width: 767px) {
    .main-banner .cta-block .btn-secondary {
        display: block;
        height: 74px;
        margin-top: 45px;
        margin-bottom: -60px;
        border-radius: 0;
        font-size: var(--base-font-size);
        line-height: 74px;
    }
}

@media (min-width: 992px) {
    .main-banner {
        margin-top: -82px;
        padding-top: 82px;
    }
    .main-banner .cta-block {
        margin-top: 200px;
        margin-bottom: 200px;
    }
    .main-banner .cta-block .play-btn {
        width: 82px;
        height: 82px;
        margin-bottom: 30px;
        line-height: 82px;
    }
    .main-banner .cta-block .play-btn .ico {
        font-size: 82px;
    }
    .main-banner .cta-block .play-btn:before {
        width: 104px;
        height: 104px;
        margin-top: -52px;
        margin-left: -52px;
    }
    .main-banner .cta-block .play-btn:after {
        width: 124px;
        height: 124px;
        margin-top: -62px;
        margin-left: -62px;
    }
    .main-banner .cta-block .title {
        margin-bottom: 12px;
        font-size: 64px;
        font-weight:normal;
    }
    .main-banner .cta-block .descr {
        font-size: 36px;
    }
    .main-banner .cta-block .btn-line {
        margin: 44px 0 0;
    }
    .main-banner .cta-block .btn {
        min-width: 262px;
        margin: 0 8px;
        font-size: var(--sub-font-size);
        line-height: var(--line-height);
        color:var(--main-text-color);
        padding: 20px 58px;
    }
}

.content-block {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: var(--main-bg-color);
    color:var(--main-text-color);
    min-height: 85%;
}
.content-page .content-block{
    min-height: 70%;
}
.small-container ol ul,
.small-container ol ol,
.small-container ul ol,
.small-container ul ul{
    margin-left: 40px;
    flex: 0 0 100%;
}
@media (min-width: 992px) {
    .content-block {
        padding-top: 65px;
        padding-bottom: 65px;
    }
}

.page-header {
    position: relative;
    display: block;
    margin: -64px 0 0;
    padding-top: 64px;
    background-repeat: no-repeat !important;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    filter: grayscale(100%);
    z-index: 2;
}
.page-header:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 174px;
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 65%, rgba(0,0,0,0) 100%);
    background-image: linear-gradient(to bottom, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 65%, rgba(0,0,0,0) 100%);
    content: "";
}
.page-header .inner {
    display: block;
    padding: 45px 0;
}
.page-header .title {
    display: block;
    margin: 0;
    color: var(--main-text-color);
    font-size: 30px;
}
.page-header .breadcrumb-item{
    color: var(--main-text-color) !important;
}
.page-header .breadcrumb {
    margin: 0 0 5px;
    padding: 0;
    background-color: transparent;
    color: inherit;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 22px;
}
.page-header .breadcrumb > li {
    position: relative;
    padding-right: 16px;
}
.page-header .breadcrumb > li:before,
.page-header .breadcrumb > li + li:before {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -0.4em;
    padding: 0;
    color: inherit;
    line-height: 1;
    content: "/";
}
.page-header .breadcrumb > .active {
    padding-right: 0;
    color: inherit;
}
.page-header .breadcrumb > .active:before {
    display: none;
}
.page-header .breadcrumb > li > a {
    display: inline-block;
}

@media (min-width: 992px) {
    .page-header {
        margin-top: -82px;
        padding-top: 82px;
    }
    .page-header .inner {
        padding: 140px 0 65px 0;
    }
    .page-header .title {
        font-size: 55px;
    }
    .page-header .breadcrumb {
        font-size: 18px;
        line-height: var(--line-height);
    }
}

/* columns */

.as-table .thead {
    display: none;
}
.as-table .td > .title {
    display: block;
    margin: 0 0 5px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .as-table .th,
    .as-table .td {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .as-table {
        display: table;
        width: 100%;
    }
    .as-table > [class*="col-sm-"] {
        float: none;
        display: table-cell;
        vertical-align: middle;
    }
    .as-table > .thead {
        display: table-header-group;
    }
    .as-table > .tbody {
        display: table-row-group;
    }
    .as-table > .tfoot {
        display: table-footer-group;
    }
    .as-table .tr {
        display: table-row;
        margin: 0;
        padding: 0;
        border: 0;
    }
    .as-table .th,
    .as-table .td {
        display: table-cell;
        vertical-align: middle;
        float: none;
    }
    .as-table .td > .title {
        display: none;
    }
}

@media (min-width: 992px) {
    .as-table > [class*="col-md-"] {
        float: none;
        display: table-cell;
        vertical-align: middle;
    }
}

@media (min-width: 1200px) {
    .as-table > [class*="col-lg-"] {
        float: none;
        display: table-cell;
        vertical-align: middle;
    }
}

/* footer */

.book-block {
    position: relative;
    padding: 0;
    background-color: #9b9b9b;
}
.map-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    margin: 0;
    padding: 0;
    background: no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

/*.map-embed:before {*/
/*position: absolute;*/
/*z-index: 1;*/
/*top: 0;*/
/*right: 0;*/
/*bottom: 0;*/
/*left: 0;*/
/*background-color: #9b9b9b;*/
/*opacity: 0.5;*/
/*content: "";*/
/*}*/
.book-form {
    position: relative;
    z-index: 2;
    padding: 36px 15px 54px;
    background-color: rgba(255,255,255,1);
    border-radius: var(--border-radius);
    color:#000;
    margin-top:20px;
    font-size: 18px !important;
}
.book-form hr{
    opacity: 0.15;
    border: 1px solid #000000;
    margin:20px 0;
}
.book-title {
    display: block;
    margin: 0;
    padding: 0 5px;
    font-size: var(--title-font-size);
    text-transform: lowercase;
}
.book-form.search-taxi{
    background:transparent;
    padding-top: 0;
}
.book-form.waiting-book{
    font-size: 18px !important;
    width: 90%;
    margin: 20px auto;
}
.book-form.waiting-book input.form-control{
    border: none !important;
}
.waiting-book .order-label{
    font-weight:bold;
}
.search-taxi .yellow-bg{
    background-color: var(--efect-bg-color);
    border-radius: var(--border-radius);
    padding: 20px 10px 10px 10px;
}
.search-taxi hr{
    margin: 14px 0;
}
.search-taxi .book-title{
    margin-bottom: 20px;
    padding-left:0;
}
.book-title:first-letter{
    text-transform: uppercase;
}
.book-form .form-group {
    min-height: 42px;
    margin-bottom: 10px;
}
.search-taxi .form-group label{
    padding-left:10px;
    padding-top:6px;
}
.search-taxi .form-group .dropdown-menu{
    padding-left:10px;
    padding-top:10px;
}
.search-taxi .form-group.destination,
.search-taxi .form-group.filters,
.search-taxi .form-group.pickup,
.search-taxi .form-group.comments,
.search-taxi .form-group.scheduling{
    background-color:var(--main-bg-color);
    border-radius: var(--border-radius);
    padding:10px;
}
.search-taxi .form-group.destination input,
.search-taxi .form-group.comments input,
.search-taxi .form-group.pickup input,
#passangers,
#luggage,
.search-taxi .form-group select{
    background-color:var(--input-bg-color) !important;
}
#passangers,
#luggage{
    color:#000;
    margin-bottom:0;
}
#passangerSection{
    padding:10px 0;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    margin-bottom:0;
}
#luggageSection{
    padding-bottom:10px;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
}
.search-taxi #passangerSection,
.search-taxi #luggageSection,
.search-taxi #resetForm{
    background-color: var(--main-bg-color);
}

.book-form .groupset {
    margin-bottom: 35px;
}
.book-form .groupset .form-group {
    margin: 0;
    border-radius: 0;
}
.book-form .groupset .form-group:first-child {
    border-radius: 4px 4px 0 0;
}
.book-form .groupset .form-group:last-child {
    border-radius: 0 0 4px 4px;
}
.book-form .groupset .form-group + .form-group {
    border-top: 1px solid rgba(164,164,164,.35);
}

.book-form .label {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    font-weight: bold;
    line-height: 23px;
}
.book-form .dropdown-toggle {
    position: relative;
    display: block;
    padding-right: 20px;
    cursor: pointer;
}
.book-form .dropdown-toggle:after {
    position: absolute;
    top: 0;
    right: 14px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    content: " ";
    height:40px;
    width:40px;
    background: url('../img/icons/chevron-down.svg') no-repeat 50% 50%;
}
.book-form .dropdown-toggle[aria-expanded="true"]:after{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.book-form .dropdown-menu {
    position: static;
    float: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: inherit;
}
.book-form .form-btn {
    margin-top: 10px;
}
.book-form .form-btn .btn {
    display: block;
    width: 100%;
    height: 45px;
    font-size: 16px;
    line-height: var(--line-height);
    text-transform: uppercase;
    padding: 11px 50px;
}

.book-form .side-link {
    float: right;
    padding: 0 10px 0 0;
    border: 0;
    background: none;
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position:relative;
}
.search-taxi .yellow-bg .side-link:before,
.search-taxi .destination .side-link:before{
    position: absolute;
    top: 3px;
    right: 55px;
    width: 15px;
    height: 21px;
    background: url('../img/location-icon.svg') no-repeat 50% 50%;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    content: "";
}
.book-form .form-field {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    margin-top: 8px;
}
.book-form .form-field .form-control {
    background-color: var(--main-bg-color);
    color: #000;
    font-size: 18px;
}
.book-form .form-field .field-link {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    padding: 0;
    border: 0;
    background: none;
    font-size: var(--base-font-size);
    cursor: pointer;
}
.book-form.active-orders {
    margin-left:0;
}
@media (max-width: 767px) {
    .book-block .container {
        padding: 0;
    }
    .book-form .form-btn .btn {
        padding:11px;
    }
}

@media (min-width: 768px) {
    .book-form {
        float: left;
        width: 360px;
        padding-left: 26px;
        padding-right: 26px;
    }
}

@media (min-width: 992px) {
    .book-form.active-orders {
        margin-left: 30px;
    }

    .book-form {
        width: 30%;
        padding: 20px;
        margin-left: 20px;
    }
    .book-form.waiting-book {
        width: 30% !important;
    }
    .book-title {
        padding-right: 10px;
        font-size: 34px;
        margin-bottom:20px;
    }
    .book-form .groupset {
        margin-bottom: 35px;
    }
    .book-form .label {
        line-height: 23px;
    }
    .book-form .form-field {
        margin-top: 10px;
    }
    .book-form .form-field .form-control {
        height: calc(3.25rem + 2px) !important;
        padding:14px 10px;
        font-size: 18px;
        line-height: 21px;
    }
    .book-form .form-field .field-link {
        right: 7px;
        width: 28px;
        height: 28px;
        margin-top: -14px;
        font-size: 28px;
    }
    .book-form .side-link {
        height: 30px;
    }
}

.app-block {
    background-repeat: no-repeat;
    background-position: 100% 100%;
    -webkit-background-size: auto 70%;
    background-size: auto 70%;
    position:relative;
    color:var(--main-text-color);
    padding-top:82px;
}
.app-block .vector-bg-img{
    position: absolute;
    bottom: 0;
    z-index: 0;
    right: 0;
}
.app-block .cta-content{
    z-index: 2;
}
.app-block .cta-image{
    text-align: center;
}
.app-block .title {
    display: block;
    margin: 0 0 12px;
    font-size: 34px;
}
.app-block .descr {
    display: block;
    margin: 0 0 49px;
    line-height: var(--line-height);
}
.app-block .features {
    display: block;
    margin: 0;
    padding: 0;
    font-weight: bold;
    list-style: none;
}
.app-block .features > li {
    margin-bottom: 30px;
    padding-left: 46px;
}
.app-block .features .ico {
    float: left;
    margin: 5px -100% 0 -44px;
    font-size: 24px;
    margin-top: -7px;
    padding: 0;
    border-radius: 100%;
    background: var(--efect-bg-color);
    margin-right: 10px;
}
.app-block .app-line {
    display: block;
    margin: 40px -4px 0;
}
.app-block .app-item {
    display: inline-block;
    vertical-align: middle;
    margin: 4px;
}
.app-block .app-item > img {
    max-width: 100%;
}

@media (max-width: 767px) {
    .app-block {
        background-image: none !important;
    }
    .app-block .app-item {
        max-width: 138px;
    }
    .app-block .app-item:first-child {
        display: none;
    }
}

@media (min-width: 992px) {
    .app-block .title {
        margin-bottom: 18px;
        font-size: 36px;
    }
    .app-block .descr {
        width: 65%;
        font-size: 18px;
        line-height: 1.7;
    }
    .app-block .features {
        margin-bottom: 71px;
        line-height:var(--line-height);
    }
    .app-block .features .ico {
        font-size: 28px;
    }
    .app-block .app-line {
        margin-top: 28px;
    }
    .app-block .app-item {
        margin: 0 20px 0 0;
    }
    .index-page .app-block{
        padding-top: 120px;
    }
    .index-page .book-form {
        margin-top: 120px;
    }
}

@media (min-width: 1200px) {
    .app-block {
        -webkit-background-size: auto 100%;
        background-size: auto 100%;
    }
}

.main-footer {
    background-color: var(--efect-bg-color);
    color:var(--main-text-color);
}
.footer-links {
    margin: 0;
    font-size: var(--sub-font-size);
    list-style: none;
    text-align: center;
}
.footer-links > li {
    display: inline-block;
    vertical-align: middle;
}
.footer-links > li > a {
    display: block;
    padding: 4px 18px;
    font-weight: bold;
}
.main-footer .payment-links{
    text-align: right;
}
.footer-copy {
    margin-top: 4px;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}
.footer-copy .copy {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 1.55;
}
.main-footer .social-item {
    display: inline-block;
    vertical-align: middle;
    width: 34px;
    height: 34px;
    margin: 0 5px 5px 0;
    border-radius: 4px;
    background-color: var(--main-bg-color);
    font-size: 0;
    line-height: 34px;
    text-align: center;
    color:var(--efect-bg-color);
}
.main-footer .social-item:before {
    font-size: var(--base-font-size);
}
.main-footer a.social-item:hover,
.main-footer a.social-item:focus,
.main-footer a.payment-item:hover,
.main-footer a.payment-item:focus{
    background-color: #666;
}

.main-footer .payment-item {
    display: inline-block;
    vertical-align: middle;
    width: 52px;
    height: 34px;
    margin: 0 0 2px 2px;
    font-size: 0;
    line-height: 34px;
    text-align: center;
    color:var(--main-bg-color);
}
.main-footer .payment-item + .payment-item {
    margin-top: 0;
}
.main-footer .payment-item:before {
    font-size: 40px;
}

@media (min-width: 992px) {
    .main-footer .row{
        padding: 45px 0 0 0;
    }
    .footer-links > li > a {
        padding-left: 24px;
        padding-right: 24px;
    }
    .footer-copy {
        padding: 0 0 26px 0;
    }
    .footer-copy .copy {
        float: none;
        width: auto;
        margin: 7px 0;
    }
}
@media (max-width: 767px) {
    .main-footer .payment-links {
        text-align: center;
        padding:10px 0;
    }
    .main-footer .social-links{
        text-align: center;
        padding:10px 0 0 0;
    }
    .main-footer .footer-links {
        padding:30px 0 20px 0;
    }
    .footer-links > li{
        display: block;
    }
    .order-1{
        order:1;
    }
    .order-2{
        order:2;
    }
    .order-3{
        order:3;
    }
}


/* PAGES */

/* sign up */

.sign-block {
    margin: 40px 0;
}
.sign-panel {
    position: relative;
    padding: 24px 15px;
    border-radius: var(--border-radius);
    color:var(--main-text-color);
    background:var(--input-bg-color);
}
.sign-panel:before {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 4px;
    content: "";
}
.sign-panel + .sign-panel {
    margin-top: -4px;
    text-align: center;
}
.sign-panel + .sign-panel:before {
    z-index: auto;
}
.sign-panel .title {
    margin: 0 0 30px;
    font-size: 22px;
}
.sign-panel .form-group {
    margin-bottom: 20px;
}
.sign-panel input.form-control {
    height: 44px;
    font-size: 18px;
    background: var(--main-bg-color) !important;
    border:none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0), inset 0 0 0 100px #fff;
}
.sign-panel .phone-group {
    display: table;
    width: 100%;
}
.sign-panel .phone-group .form-field {
    display: table-cell;
}
.sign-panel .phone-group .form-field:first-child {
    width: 80px;
    padding-right: 20px;
}
.sign-panel .form-hint {
    margin-top: 32px;
    overflow: hidden;
    font-size: 14px;
    opacity: 0.7;
}
.sign-panel .form-hint .main-line {
    float: left;
    margin: 0;
}
.sign-panel .form-hint .side-line {
    float: right;
    margin: 10px 0 0 0;
    font-size: 14px;
    line-height: 14px;
    color: #979797;
}
.sign-panel .form-btn {
    margin: 20px 0 0;
}
.sign-panel .btn.btn-primary {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 18px;
    line-height: var(--line-height);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.sign-form {
    position: relative;
    z-index: 1;
    font-size: 14px;
    background:var(--input-bg-color);
    border-radius: var(--border-radius);
}
.register-panel .sign-form,
.sign-panel .register-panel,
.register-panel:before {
    background-color: var(--efect-bg-color);
    border-radius: var(--border-radius);
}

@media screen and (max-width: 575px) {
    .g-recaptcha {
        -webkit-transform: scale(.92);
        transform: scale(.92);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
    }
}

@media (min-width: 768px) {
    .sign-form .btn{
        padding:15px 85px;
    }
    .sign-form .btn img{
        margin-bottom: 5px;
        margin-right: 5px;
    }
    .sign-block {
        display: table;
        width: 100%;
        margin: 45px auto;
    }
    .sign-panel {
        display: table-cell;
        vertical-align: middle;
        width: 50%;
        padding: 0;
    }
    .sign-panel + .sign-panel {
        margin-top: 0;
    }
    .sign-panel + .sign-panel:before {
        left: -32px;
    }
    .register-panel:before {
        top: -50px;
        bottom: -50px;
    }
    .register-block .check-label{
        margin-top:10px;
    }
    .register-block .register-panel{
        background: transparent;
    }
    .register-block .register-panel:before {
        top: 70px;
        bottom: 70px;
    }
    .register-panel .btn-secondary{
        background:var(--main-bg-color);
        float:left;
    }
    .sign-panel .form-group {
        margin-bottom: 24px;
    }

    .sign-form {
        padding: 25px;
    }
    .register-panel .sign-form {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .sign-block {
        margin-top: 215px;
        margin-bottom: 96px;
    }
    .register-block{
        margin-top: 137px;
    }
    .sign-panel + .sign-panel .title {
        margin-bottom: 80px;
        text-align:left;
        font-size: var(--title-font-size);
    }
    .sign-panel .title {
        margin-bottom: 35px;
        font-size: 36px;
    }
    .sign-panel .form-control {
        height: 52px;
        font-size: 21px;
    }
    .sign-panel .form-control:focus {
        /*padding-left: 20px;*/
        /*padding-right: 20px;*/
    }
    .sign-panel .check-item {
        margin-right: 8px;
    }
    .sign-panel .phone-group .form-field:first-child {
        width: 110px;
        padding-right: 30px;
    }
    .sign-panel .form-control-feedback {
        font-size: 14px;
    }
    .sign-panel .form-hint {
        font-size: 16px;
    }
    .sign-form {
        padding: 42px;
    }
}

@media (min-width: 1200px) {
    .sign-block {
        width: 65%;
    }
}

@media (min-width: 1340px) {
    .sign-block {
        width: 55%;
    }
}

/* profile */

.card-item {
    position: relative;
    display: inline-block;
    min-height: 30px;
    padding-left: 64px;
    font-weight: bold;
}
.card-item:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 46px;
    height: 29px;
    margin-top: -15px;
    background: no-repeat 50% 50%;
    content: "";
}
.card-visa:before {
    background-image: url('../img/card-visa.png');
}
.card-amex:before {
    background-image: url('../img/card-amex.png');
}

.profile-menu {
    margin-bottom: 35px;
    box-shadow: 5px 0 5px -2px rgba(0, 0, 0, 0.07);
    background:var(--input-bg-color);
}
.profile-menu .avatar {
    display: block;
    margin-bottom: 25px;
    text-align: center;
}
.profile-menu .avatar .img {
    display: inline-block;
    vertical-align: top;
    width: 108px;
    height: 108px;
    margin: 0;
    border-radius: 54px;
}
.profile-menu .avatar .name {
    display: block;
    margin: 12px 0 0;
    font-size: 22px;
}
.profile-nav {
    display: block;
    margin: 0 -10px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.1);
    border-width: 1px 0;
    font-size: 0;
    list-style: none;
    text-align: center;
}
.profile-nav .nav-item {
    display: table-cell;
    width: 1%;
}
.profile-nav .nav-item + .nav-item {
    border: 1px solid rgba(255,255,255,.1);
    border-width: 0 0 0 1px;
}
.profile-nav .nav-link {
    position: relative;
    display: block;
    height: 64px;
    padding: 0;
    line-height: 64px;
}
.profile-nav .nav-link .ico {
    vertical-align: middle;
    width: 44px;
    margin: 0;
    font-size: 26px;
}
.profile-nav .nav-link:hover,
.profile-nav .nav-link:focus,
.profile-nav .active > .nav-link {
    background: var(--efect-bg-color);
    border-radius: var(--border-radius);
}

.profile-header {
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.profile-header .title {
    font-size: 36px;
    margin-top:40px;
}
.profile-header .side-line {
    display: block;
    margin: 0 0 15px;
}
.profile-subheader {
    display: block;
    margin: 0 0 45px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: #f7c716;
    font-size: 24px;
}
.profile-form {
    margin: 40px 0;
    font-size: 18px;
}
.profile-form .form-group {
    clear: both;
}
.profile-form .label {
    display: block;
    margin: 0 0 5px;
    color: var(--main-text-color);
    font-weight: normal;
}
.profile-form .form-field {
    display: block;
}
.profile-form .form-control {
    text-transform: inherit;
    font-weight: bold;
}
.profile-form .form-control-static {
    position: relative;
    padding: 7px 0;
}
.profile-form .form-control-static + .form-control-static {
    margin-top: 15px;
}
.profile-form .form-control-static + .form-control-static:before {
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
    border-top: 1px solid rgba(255,255,255,.2);
    content: "";
}
.profile-form .card-exp {
    display: block;
    margin-top: 10px;
}
.profile-form .card-exp .title {
    margin-right: 20px;
    font-weight: normal;
}
.profile-form .card-exp .descr {
    font-weight: bold;
}
.profile-form .form-btn {
    margin: 50px 0 0;
}
.profile-form .form-btn .btn {
    display: block;
    width: 100%;
}
.profile-content hr{
    border-color:#DDDDDD;
}
.profile-content .bottom-hr{
    margin-top:58px;
}
.profile-content .hint-line a {
    color: #979797;
    font-size: var(--small-font-size);
}
.profile-content .rides-table .tbody a{
    background-color: #fff !important;
}
.profile-content .rides-table .dropdown-toggle:after{
    top:0 !important;
}
.profile-content .rides-table .cell-5 {
    float: right;
}
@media (min-width: 992px) {
    .profile-header{
        margin-bottom: 25px;
    }
    .profile-block {
        padding: 0;
    }
    .profile-block > .container {
        display: table;
        table-layout: fixed;
    }
    .profile-block > .container:before,
    .profile-block > .container:after {
        display: none;
    }
    .profile-menu {
        display: table-cell;
        vertical-align: top;
        width: 23.3%;
        border-right: 1px solid rgba(255,255,255,.1);
        padding-right:20px;
        margin-bottom:0;
        height: 80vh;
    }
    .profile-menu .avatar {
        display: block;
        margin-bottom: 0;
        padding: 50px 25px 50px;
        border-bottom: 1px solid rgba(255,255,255,.1);
        text-align: center;
    }
    .profile-menu .avatar .img {
        width: 164px;
        height: 164px;
        border-radius: 82px;
    }
    .profile-menu .avatar .name {
        margin-top: 30px;
        font-size: var(--base-font-size);
    }
    .profile-nav {
        margin: 0;
        border: 0;
        font-size: var(--base-font-size);
        text-align: inherit;
    }
    .profile-nav .nav-item {
        display: block;
        width: auto;
    }
    .profile-nav .nav-item + .nav-item {
        border-width: 1px 0 0;
    }
    .profile-nav .nav-link {
        height: auto;
        padding: 14px 10px 14px 25%;
        line-height: 23px;
    }
    .profile-nav .nav-link .ico {
        position: absolute;
        top: 50%;
        left: 25px;
        margin-top: -0.5em;
    }
    .profile-nav .nav-link img{
        padding-right:20px;
    }

    .profile-content {
        display: table-cell;
        vertical-align: top;
        width: 76.7%;
        padding: 45px 0 45px 45px;
    }
    .profile-header .title {
        font-size: 36px;
        margin-top: 0;
    }
    .profile-header .side-line {
        float: right;
        margin: 0 0 0 25px;
    }
    .profile-form .label {
        float: left;
        width: 28%;
        margin: 0;
        padding: 6px 0;
    }
    .profile-form .form-field {
        float: left;
        width: 72%;
    }
    .profile-form .form-line {
        float: left;
        clear: none;
        width: 56%;
    }
    .profile-form .form-line .label {
        width: 50%;
    }
    .profile-form .form-line .form-field {
        width: 50%;
    }
    .profile-form .form-line + .form-line {
        width: 44%;
    }
    .profile-form .form-line + .form-line .label {
        width: 40%;
        padding-left: 25px;
    }
    .profile-form .form-line + .form-line .form-field {
        width: 60%;
    }
    .profile-form .card-item {
        margin-right: 64px;
    }
    .profile-form .card-exp {
        display: inline-block;
        margin-top: 0;
        margin-right: 64px;
    }
    .profile-form .form-btn {
        text-align: right;
    }
    .profile-form .form-btn .btn {
        display: inline-block;
        width: auto;
        min-width: 225px;
    }
}

/* rides */

.rides-table {
    display: block;
    line-height: 1.4;
}
.rides-table .thead {
    display: block;
    font-weight: bold;
    font-size: var(--base-font-size);
}
.rides-table .tbody {
    display: block;
    background-color: var(--main-bg-color);
    color: #282829;
    font-size: 16px;
    border-radius: var(--border-radius);
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.07));
}
.rides-table .tr {
    display: block;
    margin: 0;
    padding: 0 5px;
}
.rides-table .tbody .tr {
    border-top: 1px solid #d6d6d6;
    padding-top: 10px;
    padding-bottom: 10px;
}
.rides-table .tbody .tr:first-child {
    border-top: 0;
}
.rides-table .tbody a:hover{
    text-decoration: none;
}
.rides-table .tbody a:not(.collapsed){
    background-color: var(--input-bg-color);
}

.rides-table .th {
    float: left;
    width: 20%;
    padding: 0 15px 10px;
}
.rides-table .td {
    float: left;
    width: 20%;
    padding: 14px 10px;
}
.rides-table .cell-1 {
    width: 20%;
}
.rides-table .cell-2 {
    width: 25%;
}
.rides-table .cell-3 {
    width: 15%;
    font-weight: bold;
}
.rides-table .cell-4 {
    width: 12%;
}
.rides-table .cell-5 {
    width: 17%;
    padding-top: 10px !important;
}
.rides-table .thead .cell-5 {
    padding-top: 0 !important;
}
.rides-table .cell-5 img{
    padding-top: 10px;
}

.rides-table .ico {
    width: 27px;
    height: 26px;
    margin-right: 15px;
    font-size: 0;
    text-decoration: none;
}
.rides-table .ico:before {
    font-size: 24px;
}
.rides-table .ico:hover {
    color: #36aaec;
}
.rides-table .dropdown-toggle {
    position: relative;
    width: 90px;
    padding-right: 16px;
    color: #36aaec;
    line-height: 1.2;
    text-transform: none;
}
.rides-table .dropdown-toggle:after {
    position: absolute;
    top: 20px;
    right: 0;
    left: 90%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background: url('../img/icons/chevron-down.svg') no-repeat 50% 50%;
    line-height: 1px;
    content: "";
    width: 40px;
    height: 40px;
}
.rides-table .dropdown-toggle:not(.collapsed):after{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rides-table .details {
    display: none;
    padding: 20px 14px;
    overflow: hidden;
    font-size: 14px;
}
.orders-table .details {
    padding: 20px 10px;
}
.rides-table .details.list {
    overflow: visible !important;
    background-color: transparent !important;
}
.rides-table .details.open {
    display: block;
    background-color: var(--input-bg-color);
}
.rides-table .details-item > .title {
    display: block;
    margin: 0 0 12px;
    font-size: 18px;
}
.rides-table .details-list {
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
}
.rides-table .details-list .descr{
    font-weight: bold;
}
.rides-table .price-list .title {
    display: inline-block;
    max-width: 75%;
}
.rides-table .price-list .descr {
    float: right;
    font-weight: bold;
}
.rides-table .price-list .total {
    font-weight: bold;
}

.rides-table .review-list .title {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
}
.rides-table .review-list .descr {
    display: inline-block;
    vertical-align: middle;
}
.rides-table .review-list .stars-item {
    vertical-align: top;
    margin: 3px 0;
}

.rides-table .review-form {
    position: relative;
    margin-bottom: 8px;
}
.rides-table .review-form .form-control {

    padding: 7px 14px;
    border: 1px solid #cccdcf;
    border-radius: 4px;
    color: #000;
    background-color: var(--main-bg-color);
}
.rides-table .form-select{
    margin-bottom:10px;
}
.rides-table .review-form .form-control::-webkit-input-placeholder {
    color: #28282a;
}
.rides-table .review-form .form-control::-moz-placeholder {
    color: #28282a;
}
.rides-table .review-form .form-control:-ms-input-placeholder {
    color: #28282a;
}
.rides-table .review-form .form-control::placeholder {
    color: #28282a;
}
.rides-table .review-form .btn {
    float:right;
    margin-top:10px;

}

/* orders */
.orders-table .cell-1 {
    width: 15% ;
}
.orders-table .cell-6 {
    width: 12% ;
}
.orders-table .cell-2 {
    width: 12% ;
}
.orders-table .cell-4, .orders-table .cell-5 {
    width: 20% ;
}
.orders-table .cell-3{
    width: 16% ;
}
/* notification status */
.orders-table .cell-7 {
    width: 5%;
}
.orders-table .td {
    max-height: 96px;
    overflow: hidden;
}
.orders-table .tr:not(.collapsed) .td{
    max-height: unset;
    overflow: unset;
}

@media (min-width: 1200px) {
    .rides-table .tbody {
        font-size: var(--sub-font-size);
    }
    .rides-table .tr {
        padding: 0;
    }
    .rides-table .th {
        padding: 0 20px 20px;
    }
    .rides-table .td {
        padding: 15px 25px;
    }
    .rides-table .cell-5 {
        padding: 0;
    }

    .rides-table .details {
        padding: 25px;
        font-size: inherit;
    }
    .rides-table .details-item > .title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .rides-table {
        margin: -26px -15px 0;
        line-height: 1.3;
    }
    .rides-table .thead {
        display: none;
    }
    .rides-table .tbody {
        font-size: 15px;
    }
    .rides-table .tr {
        position: relative;
        padding: 14px;
    }
    .rides-table .td {
        float: none;
        display: block;
        width: auto;
        padding: 0;
    }
    .orders-table .td {
        padding: 0 10px;
    }
    .rides-table .td .title {
        display: block;
    }
    .orders-table .cell-3, .orders-table .cell-4, .orders-table .cell-5 {
        display: none;
    }
    .rides-table .cell-4 {
        top: 42px;
    }
    .rides-table .cell-5 {
        margin-top: 15px;
    }
    .orders-table .cell-1,
    .orders-table .cell-2,
    .orders-table .cell-3,
    .orders-table .cell-4,
    .orders-table .cell-5,
    .orders-table .cell-6{
        width:50%;
    }
    .rides-table .details-item {
        float: none;
        width: auto;
        padding: 0;
    }
    .rides-table .details-list {
        margin-bottom: 10px;
        padding-top: 10px;
    }
    .rides-table .details-list .title {
        font-weight: inherit;
        font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;

    }
    .rides-table .details-item > .title {
        margin-bottom: 2px;
    }
    .rides-table .review-list .stars-item {
        margin: 0;
    }
    .rides-table .rides{
        display:block;
        font-size:var(--sub-font-size);
        padding: 5px 0;
        font-weight: bold;
    }
    .rides-table .details.open{
        margin-top:0;
    }
    .profile-content .rides-table .cell-5{
        float:none;
        margin-bottom: 20px;
    }
}

/* payment */

.payment-block {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
    background-color: var(--main-bg-color);
    color: #282829;
    font-size: 16px;
    font-weight: bold;
}
.payment-filter {
    border-bottom: 1px solid #d6d6d6;
}
.payment-filter .dropdown-toggle {
    position: relative;
    display: block;
    padding: 15px 34px 15px 12px;
    color: #36aaec;
    font-size: 18px;
    line-height: 1.3;
    text-transform: uppercase;
}
.payment-filter .dropdown-toggle:after {
    position: absolute;
    top: 50%;
    right: 10px;
    display: inline-block;
    width: auto;
    border: 0;
    font-size: 16px;
    font-weight: normal;
    font-family: "FontAwesome";
    line-height: 1px;
    content: "\f077";
}
.payment-filter .dropdown-toggle.collapsed:after {
    content: "\f078";
}
.payment-filter-form {
    padding: 8px 12px;
    background-color: #f5f6f8;
}
.open > .payment-filter-form {
    display: block;
}
.payment-filter-form .form-group {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px 6px 0;
}
.payment-filter-form .label {
    display: block;
    margin-bottom: 5px;
}
.payment-filter-form .form-control {
    height: 36px !important;
    padding: 0 8px;
    border: 1px solid #d8d9db;
    border-radius: 4px;
    background-color: var(--main-bg-color);
    color: #5c5c5c;
    font-size: 16px;
}
.payment-filter-form .date-picker {
    width: 142px;
    margin-right: 4px;
}
.payment-filter-form .date-picker:last-child {
    margin-right: 0;
}

.payment-list {
    margin: 0;
    padding: 8px 12px;
    overflow: hidden;
    border-bottom: 1px solid #d6d6d6;
}
.payment-list .title {
    float: left;
    clear: left;
    margin: 2px 0;
}
.payment-list .descr {
    float: right;
    margin: 2px 0;
}
.payment-list .title.total,
.payment-list .title.total + .descr {
    font-size: 18px;
}
.payment-list .imp {
    display: block;
    color: #2ba6e9;
    font-size: 15px;
}

.payment-item {
    margin: 24px 0;
}
.payment-item + .payment-item {
    margin-top: -24px;
}
.payment-item .dropdown-toggle {
    position: relative;
    display: block;
    padding: 0 34px 0 12px;
    overflow: hidden;
}
.payment-item .dropdown-toggle .date {
    float: left;
}
.payment-item .dropdown-toggle .value {
    float: right;
}
.payment-item .dropdown-toggle:after {
    position: absolute;
    top: -7px;
    right: 0;
    display: inline-block;
    background: url('../img/icons/chevron-down.svg') no-repeat 50% 50%;
    content: "";
    width: 40px;
    height: 40px;
    border:none;
    transform: rotate(180deg);
}
.payment-item .dropdown-toggle.collapsed:after {
    transform: rotate(360deg);
}
.payment-detail {
    display: none;
    margin-top: 8px;
    background-color: #f5f6f8;
}
.open > .payment-detail {
    display: block;
}
.payment-detail .payment-list {
    border: 0;
}
.payment-detail .payment-list .title,
.payment-detail .payment-list .descr {
    margin: 2px 0;
}

.payment-block .more-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 12px;
    border: 0;
    border-top: 1px solid #d6d6d6;
    background: none;
    color: #36aaec;
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    text-transform: uppercase;
    cursor: pointer;
}
.payment-block .more-btn:after {
    position: relative;
    top: -1px;
    display: inline-block;
    width: auto;
    margin-left: 10px;
    border: 0;
    font-size: 12px;
    font-weight: normal;
    font-family: "FontAwesome";
    line-height: 1px;
    content: "\f078";
}
.payment-block .more-btn:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
    .payment-item .dropdown-toggle:after {
        top: -2px;
    }
    .payment-block {
        margin: 0;
        border-radius: 4px;
        font-size: 18px;
    }
    .payment-filter .dropdown-toggle {
        padding: 24px 55px 24px 24px;
        font-size: 24px;
    }
    .payment-filter .dropdown-toggle:after {
        right: 20px;
        font-size: 22px;
    }
    .payment-filter-form {
        padding: 10px 24px;
    }
    .payment-filter-form .form-control {
        min-width: 142px;
    }
    .payment-list {
        padding: 14px 24px;
    }
    .payment-list .title,
    .payment-list .descr {
        margin: 0;
    }
    .payment-list.payment-total  .title {
        font-size: 24px;
    }
    .payment-list.payment-total  .descr {
        padding:10px 18px;
        border: 2px solid var(--efect-bg-color);
        box-sizing: border-box;
        border-radius: var(--border-radius);
        font-size: var(--base-font-size) !important;
    }
    .payment-list .imp {
        font-size: 17px;
    }

    .payment-item {
        margin: 14px 0;
    }
    .payment-item + .payment-item {
        margin-top: -14px;
    }
    .payment-item .dropdown-toggle {
        padding: 2px 60px 2px 24px;
    }
    .payment-item .dropdown-toggle:after {
        right: 20px;
        font-size: 18px;
    }
    .payment-detail {
        margin-top: 12px;
    }
    .payment-detail .payment-list .title,
    .payment-detail .payment-list .descr {
        margin: 3px 0;
    }

    .payment-block .more-btn {
        height: 68px;
        padding: 0 24px;
        font-size: 22px;
        font-weight: bold;
        line-height: 68px;
    }
    .payment-block .more-btn:after {
        font-size: inherit;
    }
}

@media (min-width: 1200px) {
    .payment-filter-form .form-group:last-child {
        float: right;
    }
}

/* faq */

.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq-list .title {
    position: relative;
    display: block;
    color: #f7c716;
    font-size: var(--base-font-size);
    font-weight: normal;
    margin-bottom: 18px;
    padding-left: 20px;
}
.faq-list .title:before {
    position: absolute;
    top: 50%;
    left: 3px;
    display: inline-block;
    margin-top: -1px;
    border: 0;
    font-weight: normal;
    font-family: "FontAwesome";
    line-height: 1px;
    content: "\f105";
}
.faq-list .title.collapsed {
    color: inherit;
}
.faq-list .descr {
    display: block;
    padding: 12px 0 16px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 15px;
    line-height: 1.8;
}
.faq-list .collapsed + .descr {
    display: none;
}

.topics-list {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
    list-style: none;
    text-transform: uppercase;
}
.topics-list > li {
    margin-bottom: 14px;
}
.topics-list .ico {
    width: 40px;
    margin: 0 10px 0 0;
    color: #f7c716;
    font-size: 26px;
}

/* contact */

.content-title-section{
    background:var(--efect-bg-color);
    color:var(--main-text-color);
    position: relative;
}
.content-title-section img{
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 0;
    z-index: 1;
    width:100%;
}
.contact-header {
    display: block;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    font-size: 17px;
    text-align: center;
}
.contact-header .title {
    display: block;
    margin: 0 0 10px;
    font-size: 64px;
    font-weight: bold;
}
.contact-header .descr {
    display: block;
    margin: 0;
    font-size: 26px;
    font-weight: normal;
}

@media (min-width: 992px) {
    .content-title-section img{
        left:30%;
        width: initial;
    }
    .contact-header .title {
        margin-bottom: 27px;
        font-size: 58px;
        line-height: 1;
    }
    .contact-header .descr {
        font-size: 30px;
    }
}
.contact-block h5{
    font-size: var(--title-font-size);
    margin: 20px 0;
}
.contact-form {
    font-size: 16px;
}
.contact-form .form-btn {
    margin: 40px 0 0;
}
.contact-form .form-btn .btn {
    min-width: 160px;
}
.contact-form .form-control{
    background: var(--input-bg-color);
    border-bottom: none;
    border-radius: 5px;
    padding:11px 17px;
    color:var(--main-text-color);
}
.contact-form .form-control::placeholder{
    color:var(--main-text-color);
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 17px;
}
.contact-list > li {
    position: relative;
    margin-top: 20px;
    display:block;
    align-items: start;
}
.contact-list .contact-icon{
    width:21px;
    margin-right:13px;
    align-items: center;
    display: inline-block;
    text-align: center;
}
.partners-block{
    background: var(--input-bg-color);
}
@media (min-width: 992px) {
    .contact-block {
        width: 85%;
        margin: 0 auto;
        overflow: hidden;
    }
    .contact-form {
        margin-top: 45px;
        font-size: 18px;
    }
    .contact-form .form-group {
        margin-bottom: 28px;
    }
    .contact-form .form-btn .btn {
        min-width: 210px;
    }
    .contact-list {
        margin-top: 45px;
    }
}

/* partners */

.partners-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.partners-list > li + li {
    margin-top: 24px;
}
.partner-item .img {
    height: 168px;
    margin: 0;
    background-color: var(--main-bg-color);
    line-height: 168px;
    border-radius: var(--border-radius);
}
.partner-item .descr {
    position: relative;
    padding: 25px 20px;
    background-color: var(--main-bg-color);
    border-radius: var(--border-radius);
}
.partner-item .descr:before,
.partner-item .descr:after {
    position: absolute;
    content: "";
}
.partner-item .descr:before {
    top: -12px;
    left: 24px;
}
.partner-item .descr:after {
    top: 100%;
    right: 30px;
    left: 30px;
}
.partner-item .title {
    display: block;
    margin: 0 0 5px;
    font-size: 21px;
    font-family: inherit;
}
.partner-item .info {
    margin: 0;
    font-size: 17px;
}

.load-line {
    margin: 45px 0 0;
    text-align: center;
}
.load-link {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0 0 0 46px;
    border: 0;
    background: none;
    color: inherit;
    font-size: 22px;
}
.load-link:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    background: url('../img/spinner-32x32.gif') no-repeat 50% 50%;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    content: "";
}


@media (min-width: 576px) {
    .partners-list {
        font-size: 0;
    }
    .partners-list > li {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding: 10px;
        font-size: 18px;
    }
    .partners-list > li + li {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .partners-list > li {
        padding: 20px;
    }
}

@media (min-width: 1200px) {
    .partner-item {
        display: table;
        width: 100%;
    }
    .partner-item .img,
    .partner-item .descr {
        display: table-cell;
        vertical-align: middle;
        width: 50%;
    }
    .partner-item img {
        height: auto;
        line-height: inherit;
        max-width: 60%;
    }
    .partner-item .descr {
        padding: 30px;
    }
    .partner-item .descr:before {
        top: 52px;
        left: -16px;
    }
    .partner-item .descr:after {
        top: 25px;
        right: -1px;
        bottom: 25px;
        left: auto;
    }
    .partner-item .title {
        margin-bottom: 20px;
        font-size: 23px;
    }
    .partner-item .info {
        font-size: 18px;
        line-height: 150%;
    }
}

/* about */

.about-img {
    display: block;
    margin: 30px -15px -25px;
}
.about-img > img {
    width: 100%;
}

.cell-1.list-logo > img{
    width: 100px;
    height: auto;
}
.fa-thumbs-up{
    margin-right: 10px;
 }
.fa-thumbs-up:before{
    top: 0;
    right: 14px;
    display: inline-block;
    content: " ";
    height:40px;
    width:40px;
    background: url('../img/icons/thumbs-up.svg') no-repeat 50% 50%;
}

.ico-mobile:before{
    top: 0;
    right: 14px;
    display: inline-block;
    content: " ";
    height:40px;
    width:40px;
    background: url('../img/icons/device-mobile.svg') no-repeat 50% 50%;
}
.ico-car:before{
    top: 0;
    right: 14px;
    display: inline-block;
    content: " ";
    height:40px;
    width:40px;
    background: url('../img/icons/rocket.svg') no-repeat 50% 50%;
}
.ico-exclamation:before{
    top: 0;
    right: 14px;
    display: inline-block;
    content: " ";
    height:40px;
    width:40px;
    background: url('../img/icons/heart.svg') no-repeat 50% 50%;
}
.rides-table .time-estimation{
    display: block;
    border: 2px solid #FFDE00;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 14px 11px;
    text-align: center;
    color:var(--main-text-color);
    font-weight:bold;
}
.rides-table .cell-5 a:not(.collapsed)  .time-estimation{
    background:var(--efect-bg-color);
}
.rides-table .cell-5 a:not(.collapsed){
    background:none;
}
@media (min-width: 768px) {
    .about-img {
        float: right;
        width: 35%;
        margin: 0;
    }
    .about-img > img {
        width: auto;
    }
}

@media (min-width: 992px) {
    .about-img {
        margin-bottom: -65px;
    }
}

@media(min-width: 992px) {
    .navbarCollapse {
        display: none;
    }
    .navbar-toggler {
        display: none;
    }
}
/*More custom design*/

@media (max-width: 767px) {

    /*#taxofon-order-map {*/
    /*    height: 750px !important;*/
    /*}*/

    #orderForm {
        height: auto !important;
    }
    .btn-primary {
        width: 100%;
    }
    .btn-secondary {
        margin-top: 0 !important;
    }
    .book-form.taxi-list {
        width: 100% !important;
    }
    .taxi-list-table {
        margin: 0;
        padding: 0;
    }
    .btn-primary.taxi-refresh {
        height: 40px;
        line-height: var(--line-height);
    }
    .cell-1.list-logo > img{
        width: 100px;
        height: auto;
    }
    .rides-table.taxi-list {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .book-form.taxi-list {
        width: 80%;
    }
    .pause-play-btn {
        font-size: 54px !important;
        width: 54px !important;
    }
    .language-switch {
        display: none;
    }
    .lang-switch {
        margin-left: 60% !important;
    }
    .country-switch {
        margin-left: 20% !important;
    }
}

@media(min-width: 992px) {
    .book-form.taxi-list {
        width: 60% !important;
    }
}

@media(min-width: 1200px) {
    .time-estimation {
        font-size: 24px;
    }
    .cell-1.list-logo > img {
        height: auto;
    }
}
@media (max-width: 1199px) {
    .time-estimation {
        font-size: var(--base-font-size);
    }
}

@media (min-width: 1140px) {
    .btn-primary.taxi {
    }
}

@media (min-width: 992px) {
    .pause-play-btn {
        font-size: 82px !important;
        width: 82px !important;
    }
}

@media (max-width: 500px) {
    .cell-1.list-logo > img{
        width: 70px;
        height: auto;
    }
}

.btn-primary:hover {
    cursor: pointer;
}
.btn-primary.taxi-order {
    font-size: 18px !important;
    padding: 0 !important;
}
.btn-primary.taxi:hover{
    cursor: pointer;
}


.overlay {
    position:fixed;
    width:100%;
    height:100%;
    left:0;
    top:0;
    z-index:100000;
}
.loading {
    top: calc(50% - 95px);
    left: calc(50% - 95px);
    height: 250px;
    width: 250px;
    z-index:100000;
}
.loading img {
    width:100%;
    height:100%;
}
.name {
    word-wrap: break-word;
}

.contract-exp {
    margin-left: 20px;
}
.contract-exp.second {
    margin-left: 62px !important;
}
.ico-contract {
    color: #fac80a;
    height: 32px;
    width: 26px;
    vertical-align:middle;
    margin-top: 8px;
    margin-right: 10px;
    font-size: 1.33em;
}
.contract-field {
    margin-left: 5%;

}
.contract-static {
    overflow:auto;
}
.contract-group {
    border-top: 1px solid rgba(255,255,255,.2);
}
.contract-half-left {
    float: left;
}

.contract-half-right {
    line-height: 40px;
    vertical-align:middle;
    float:right;
}

.payment-button {
    height: 36px !important;
    text-align: center;
    line-height: 36px;
}
.payment-button:hover {
    cursor: pointer;
}
#luggage, #passangers {
    width: 75px;
    text-align: center;
    text-align-last: center;
    font-size: 90%;
    border-bottom: 0;
}
#luggage:focus, #passangers:focus {
    color: black;
}
.delete-payment {
    padding-left: 70px;
}
.add-card {
    float: right !important;
    font-size: 16px;
}
.cell-1.list-logo {
    width: 30%;
}
.payment-button {
    background-color: #36aaec;
    color:white;
}
.details-item.pull-left {
    padding-right: 0;
}
/*option color does not work on mac os, not a bug but a 'feature' from apple*/
.option-box {
    color: black !important;
}
.favourite-dropdown:hover {
    cursor: pointer;
    color: #fac80a;
}
.favourite-dropdown {
    border-bottom: 1px solid rgba(255,255,255,.65);
}

.fa-unlock-alt, .fa-globe {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 24px;
    margin-top: -0.5em;
    font-size: 22px;
}
.book-form.search-taxi {
    margin-left: 10px;
    margin-bottom: 10px;
    top: 5%;
}
.book-form.taxi-list {
    margin-left: 10px;
    margin-bottom: 10px;
    top: 5%;
}
.book-form.active-orders {
    top: 5%;
    margin-bottom: 10px;
    width: 63%;
}

@media(max-width: 1199px) {
    .book-form.search-taxi,
    .book-form.active-orders{
        width: 100%;
    }
}
@media (max-width: 991px) {
    #taxofon-order-map {
        padding-top: 0 !important;
    }
    .book-form.active-orders, .book-form.search-taxi {
        width: 100%;
    }
    .button-toggle {
        padding-top: 25px !important;
    }
    .add-card{
        margin: 20px auto;
    }
}


.country-box {
    height: 38px;
    width: 50px;
    font-size: 16px;
    line-height: 19px;
    font-style: normal !important;
    text-transform: uppercase;
    font-weight: bold;
    display:inline-block;

}
.location-icon {
    width:25px;
    height:30px;
    margin-right:12px;
}
.country-list {
    padding: 5px 35px !important;
}

.lang-switch {
    margin-left: 150px;
}

.payment-failed-block {
    height: 50px;
    background-color: red;
    z-index: 99 !important;
    position: absolute;
    width: 100%;
}


/* Counter similar to powerpoint: 1.1, 1.1.1 etc..*/
ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}
ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}
ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}
li ol > li {
    margin: 0;
}
li ol > li:before {
    content: counters(item, ".") " ";
}
.hidden-on-load{
    display: none;
}
[v-cloak] {
    display: none;
}
#notifications-view {
    min-width: 350px;
    padding: 10px 15px;
    background: none;
    display: block;
}
#notifications-view li {
    background: var(--main-bg-color);
    padding: 9px 12px;
    border-radius: var(--border-radius);
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.07));
    border: 2px solid #FFDE00;
    margin-bottom: 5px;
}
.modal{
    top:10%;
}
#errorModal{
    background-color: var(--opaque-efect-bg-color);
    z-index: -1;
}
.modal-content{
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.07));
    border-radius: 10px;
}
.modal-header,
.modal-footer{
    border-bottom: none;
    border-top: none;
}
.modal-title{
    font-size: var(--base-font-size);
}
.modal-body{
    font-size:16px;
}
.modal{
    left: 30%;
}
@media (max-width: 767px) {
    .modal {
        width: 90%;
        margin: auto;
        left: 0;
    }

    .modal-footer .btn {
        overflow: visible;
        padding-left: 0;
        padding-right: 0;
        white-space: inherit !important;
    }
}
/**
Validation modal
 */
#validation-success{
    text-align: center;
    padding-right:0 !important;
    left: 0 !important;
}
#validation-success .modal-header{
    border-bottom:none;
}
#validation-success .modal-content{
    border-radius: 10px;
}
#validation-success .modal-body{
    padding: 4rem 1rem;
}
#validation-success .modal-header .close{
    border-top-right-radius: 10px;
}
#validation-success .modal-header .close:before{
    content:" ";
}