/* Reset style */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

strong {
    font-weight: bold;
    font-family: "Rubik-Regular";
}

html {
    position: relative;
    min-height: 100%;
    background-color: #fff;
}

body {
    line-height: 1;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 0 290px;
    background-color: #fff;
}

body.dashboard, html.dashboard, body.payment, html.payment {
    background-color: #f3f4f5;
}

ol, ul {
    list-style: none;
}

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

a {
    text-decoration: none;
}

mark {
    background: transparent;
}

input,
input:focus,
*:focus {
    outline: none !important;
}

/* ==============================================
1 - Layout and General Styles
============================================== */
@font-face {
    font-family: 'Rubik-Regular';
    src: url('../fonts/Rubik-Regular.ttf');
    src: url('../fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: 'Rubik-Bold';
    src: url('../fonts/Rubik-Bold.ttf');
    src: url('../fonts/Rubik-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: 'Rubik-Light';
    src: url('../fonts/Rubik-Light.ttf');
    src: url('../fonts/Rubik-Light.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: 'Rubik-Medium';
    src: url('../fonts/Rubik-Medium.ttf');
    src: url('../fonts/Rubik-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

:root {
    --fe-main-color: #304958;
    --fe-grey: #a8afb4;
    --fe-lightgrey: #eff1f2;
    --fe-green: #2cd696;
    --fe-blue: #65cff8;
    --fe-darkblue: #03226d;
    --fe-red: #f79c82;
    --fe-yellow: #f2c506;
}

body {
    font-family: 'Arial';
}

body > * {
    color: var(--fe-main-color);
    font-family: "Rubik-Light";
}

body * > p {
    font-size: 13px;
    font-family: "Rubik-Light";
}

.fe-green-btn {
    background-color: var(--fe-green);
    color: #fff;
}

.fe-trans-btn {
    background-color: transparent;
    color: var(--fe-main-color);
}

.fe-grey-color {
    background-color: #a8afb4;
}

.fe-no-padding {
    padding: 0;
}

.fe-no-padding-left {
    padding-left: 0;
}

.fe-no-padding-right {
    padding-right: 0;
}

.fe-no-margin {
    margin: 0;
}

.fe-relative {
    position: relative;
}

.fe-absolute {
    position: absolute;
}

.fe-h1 {
    font-size: 45px;
}

.fe-h2 {
    font-size: 20px;
}

.fe-font-light {
    font-family: "Rubik-Light"
}

.fe-font-regular {
    font-family: "Rubik-Regular"
}

.fe-full-width {
    width: 100%;
}

.has-bottom-shaddow {
    -webkit-box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.03);
}

/* ==============================================
2 - Custom css
============================================== */
.container-main {
    position: relative;
    top: 90px;
}

/* navbar */
.navbar-fixed-top {
    background: #fff;
}

.navbar-nav.fe-navbar {
    margin-left: 20px;
}

.navbar-default .navbar-nav.fe-navbar > .active > a,
.navbar-default .navbar-nav.fe-navbar > .active > a:focus,
.navbar-default .navbar-nav.fe-navbar > .active > a:hover {
    color: var(--fe-grey);
    background: transparent;
    box-shadow: none;
}

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
    color: var(--fe-main-color);
    opacity: .5;
}

.navbar-brand {
    height: 90px;
    padding: 0 15px;
    line-height: 90px;
}

.navbar-nav > li > a {
    line-height: 90px;
    padding: 0 15px;
    font-size: 14px;
    font-family: "Rubik-Regular";
}

.fe-logo img {
    display: inline-block;
    vertical-align: middle;
    height: 60px;
}

.navbar-default .navbar-nav > li > a.fe-green-btn,
.navbar-default .navbar-nav > li > a.fe-green-btn:focus,
.navbar-default .navbar-nav > li > a.fe-green-btn:hover,
.fe-green-btn,
.fe-green-btn:focus,
.fe-green-btn:hover {
    background: var(--fe-green);;
    color: #fff;
    display: inline;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-shadow: none;
    box-shadow: none;
}

.navbar-default .navbar-nav > li > a.fe-trans-btn, .navbar-default .navbar-nav > li > a.fe-trans-btn:focus, .navbar-default .navbar-nav > li > a.fe-trans-btn:hover {
    background: transparent;
    display: inline;
    margin-right: 15px;
    padding: 10px 15px;
    border: none;
    text-shadow: none;
    box-shadow: none;
    color: var(--fe-main-color);
}

.navbar-right {
    margin-right: 0;
}

/* navbar */
/* upper section */
.homepage-upper-container {
    position: relative;
    top: 90px;
}

section.pull-left {
    width: 100%;
}

.homepage-upper-section, .faq-section, .parkmatix-slick-container {
    display: block;
    width: 100%;
    height: 90vh;
    max-height: 350px;
    background-size: cover;
    
}

.parkmatix-slick-container-item {
    display: block;
    width: 100%;
    height: 90vh!important;
    max-height: 350px;
    background-size: cover;
    background-position: center;
}

.homepage-upper-section::before,
.faq-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #294381;
    opacity: .85;
}

.parkmatix-slick-container-item-overlay {
    background-color: rgba(41, 67, 129, 0.55);
    /* opacity: .85; */
    /* position: absolute; */
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.hp-intro-text {
    margin-top: 30px;
    color: #fff;
    transform: translateY(0);
}

.parkmatix-slick-container-content .hp-intro-text {
    width: 1024px;
    margin: 0 auto;
    margin-top: 30px;
    max-width: 100%;
}

.homepage-upper-section .container,.homepage-upper-section .container-fluid .homepage-upper-section .row, .homepage-upper-section .row > div {
    height: 100%;
}

.hp-intro-text h1 {
    margin-bottom: 80px;
    line-height: 55px;
    font-family: "Rubik-Regular";
    padding-right: 60px;
}

.hp-intro-text h2 {
    line-height: 33px;
    padding-right: 60px;
}

.hp-pay-window {
    position: relative;
    top: 30px;
    height: 505px;
    border-radius: 10px;
    background: #fff;
    padding: 30px 110px;
}

.hp-pay-window-form > p {
    font-size: 14px;
}

.hp-pay-window-form p:last-child a {
    color: var(--fe-green);
    margin-top: 10px;
    font-family: "Rubik-Regular";
    letter-spacing: .5px;
    /* display: block; */
    font-size: 13px;
}

.hp-pay-window-info-text {
    width: 100%;
    top: 45px;
    color: var(--fe-grey);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 15px;
}

.hp-pay-window-info-text a {
    color: var(--fe-grey);
    text-decoration: underline;
}

.hp-pay-window input[name='plates'] {
    width: 305px;
    margin: 20px auto 15px;
    text-align: center;
    font-size: 13px;
}

label.btn span {
    font-size: 13px;
}

label.btn span > span {
    font-size: 35px;
}

div[data-toggle="buttons"] label.active {
    color: #fff;
    background-color: var(--fe-main-color);
}

div[data-toggle="buttons"] {
    margin: 15px auto;
    width: 305px;
    display: inline-block;
    float: none;
}

div[data-toggle="buttons"] label {
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 2em;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
    cursor: pointer;
    background-color: none;
    border: 0px solid #c8c8c8;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    width: 99px;
    height: 65px;
    padding: 0;
    background-color: var(--fe-grey);
    background-image: none;
    margin-right: 4px;
    border-radius: 5px !important;
    text-align: center;
    transition: .5s all;
}

div[data-toggle="buttons"] label:last-of-type {
    margin-right: 0;
}

div[data-toggle="buttons"] label:hover {
    color: #fff;
    background-color: var(--fe-main-color);
}

div[data-toggle="buttons"] label:active, div[data-toggle="buttons"] label.active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.timepicker-holder .dropdown-menu {
    left: unset !important;
    top: unset !important;
}

.timepicker-holder .bootstrap-timepicker-widget.dropdown-menu.open {
    display: inline-block;
    width: 305px;
    position: relative;
    border: 0;
    box-shadow: none;
    float: none;
    padding: 0;
    margin: 0;
}

.timepicker-holder .bootstrap-timepicker-widget.dropdown-menu.open::before {
    display: none;
}

.timepicker-holder .bootstrap-timepicker-hour,
.timepicker-holder .bootstrap-timepicker-minute {
    background: var(--fe-lightgrey);
    width: 100%;
    display: inline-block;
    padding: 10px 0;
    font-size: 45px;
    border-radius: 3px;
    width: 137px;
}

.timepicker-holder .bootstrap-timepicker-widget table td span.fa {
    font-size: 30px;
    color: var(--fe-grey);
}

#monthly_ticket div[data-toggle="buttons"] {
    text-align: center;
}

#monthly_ticket div[data-toggle="buttons"] label {
    float: none;
}

#monthly_ticket .periodic-timepicker-container div[data-toggle="buttons"] label {
    height: 50px;
    line-height: 50px;
    float: left;
}

/*datetimepicker*/
.timepicker-wrapper {
    width: 100%;
    display: block;
    margin: 5px auto 0;
    max-width: 300px;
}

.bootstrap-datetimepicker-widget table td {
    height: 30px;
    line-height: 30px;
}

.bootstrap-datetimepicker-widget table td span.fa {
    height: 10px;
    line-height: 10px;
    font-size: 29px;
    color: var(--fe-grey);
}

.bootstrap-datetimepicker-widget table td span.fa:hover {
    background-color: transparent;
    color: var(--fe-main-color);
}

.bootstrap-datetimepicker-widget table td.separator {
    width: 5px;
    padding: 0;
}

.bootstrap-datetimepicker-widget .timepicker-picker table tr:nth-of-type(2) td:last-child {
    position: absolute;
    left: calc(50% - 27px);
    top: -10px;
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute {
    width: 137px;
    font-size: 45px;
    margin: 0;
    background-color: var(--fe-lightgrey);
    height: 65px;
    line-height: 65px;
}

.bootstrap-datetimepicker-widget .timepicker-picker table tr:nth-of-type(2) .separator {
    height: 10px;
    line-height: 10px;
    position: relative;
    font-size: 45px;
    display: inline-block;
    top: -5px;
    left: -2px;
}

.bootstrap-datetimepicker-widget .timepicker-picker table tr:first-of-type td,
.bootstrap-datetimepicker-widget .timepicker-picker table tr:last-of-type td {
    height: 1px;
    line-height: 1px;
    padding: 0;
}

.bootstrap-datetimepicker-widget .timepicker-picker table tr:first-of-type td a[data-action] {
    padding: 0;
}

.bootstrap-datetimepicker-widget .timepicker-picker table tr:first-of-type td a[data-action="incrementMinutes"],
.bootstrap-datetimepicker-widget .timepicker-picker table tr:last-of-type td a[data-action="decrementMinutes"] {
    display: none;
}

.bootstrap-datetimepicker-widget .timepicker-minute[data-action="showMinutes"] {
    pointer-events: none !important;
}

.bootstrap-datetimepicker-widget .timepicker-picker table tr:last-of-type td a[data-action] {
    padding-bottom: 0;
}

.bootstrap-datetimepicker-widget .timepicker-picker button[data-action] {
    font-size: 10px;
    padding: 3px;
}

/*datetimepicker*/
.current_time_holder.periodic_valid_date {
    height: 50px;
    line-height: 50px;
    font-family: "Rubik-Medium";
    font-size: 15px;
    color: var(--fe-main-color);
    margin-top: 30px;
}

.current_time_holder.periodic_valid_date span:first-of-type {
    top: -10px;
    background: #fff;
    line-height: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-family: "Rubik-Light";
    letter-spacing: 1px;
    padding: 0 20px;
}

.bootstrap-timepicker-widget table td a {
    width: 65px;
    line-height: 30px;
    height: 20px;
    padding: 0;
    border-radius: 3px;
}

.bootstrap-timepicker-widget table td a:hover {
    border-color: #fff;
    background: none;
}

.bootstrap-timepicker-widget table td a:hover > span.fa {
    color: var(--fe-main-color);
}

.timepicker-holder .bootstrap-timepicker-widget table td.separator {
    font-size: 50px;
    padding: 0;
    width: 2px;
    position: absolute;
    top: 40%;
    transform: translateX(-50%) translateY(-50%);
    left: 49%;
}

.timepicker-holder .bootstrap-timepicker-widget table td {
    padding: 0;
}

.current_time_holder {
    height: 45px;
    border: 1px solid var(--fe-lightgrey);
    border-radius: 3px;
    width: 305px;
    margin: 0 auto;
}

.current_time {
    display: inline-block;
    color: var(--fe-grey);
    font-family: "Rubik-Light";
    font-size: 13px;
    text-indent: 20px;
    margin-top: 10px;
}

.current_time div:first-child::before {
    font-family: "FontAwesome";
    content: "\f017";
    position: absolute;
    left: -20px;
    top: 1px;
    font-size: 13px;
}

#current_time {
    color: var(--fe-main-color);
    font-size: 14px;
    margin-left: 5px;
}

.quick_time_chooser {
    position: absolute;
    bottom: -5px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    font-size: 11px;
    background: #fff;
    letter-spacing: 1px;
    color: var(--fe-grey);
}

.quick_time_chooser div > span {
    color: var(--fe-green);
    margin-left: 5px;
    font-family: "Rubik-Regular";
    cursor: pointer;
}

.quick_time_chooser div > span:hover {
    text-decoration: underline;
}

.hp-btns .btn {
    display: inline-block;
    width: 305px;
    margin: 15px auto 0;
}

/* upper section */
/* playstore-section */
.playstore-section {
    height: 85px;
    vertical-align: middle;
    border-bottom: 1px solid var(--fe-lightgrey);
    width: 100%;
    line-height: 85px;
    font-size: 13px;
    font-family: "Rubik-Light";
    color: lightgrey;
    letter-spacing: 1px;
}

.playstore-section .mobile_store {
    position: relative;
    top: 12px;
}

.playstore-section span {
    margin-right: 10px;
}

/* playstore-section */
/* functionality-section */
.functionality-section {
    width: 100%;
}

.functionality-section .container {
    padding: 80px;
}

.functionality-section .container-fluid {
    padding-top: 80px;
}

section p.intro {
    color: var(--fe-grey);
    letter-spacing: 2px;
}

section .fe-h2.intro {
    font-size: 28px;
    margin: 20px auto 50px;
    line-height: 35px;
}

.funct-step {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: var(--fe-blue);
    margin: 10px auto;
}

.funct-step-holder .fe-h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}

.p-info {
    line-height: 20px;
    font-size: 13px;
    max-width: 205px;
    margin: 0 auto;
}

/* functionality-section */
/* map section */
#map {
    height: 600px;
}

.map-section .container {
    padding: 0;
}

.parking_zones, .homepage-navigation-section {
    bottom: 67px;
    position: relative;
    height: 100px;
    z-index: 1000;
}

.btn-group.parking-zones > label {
    display: inline-block;
    text-align: center;
    float: none;
}

.parking_zones > div,
.homepage-navigation-section > div {
    background-color: transparent;
}


.parking_zone_info {
    border-top: 5px solid var(--fe-red);
    background-color: #fff;
    border-radius: 7px;
    height: 105px;
    -webkit-box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.09);
    margin-bottom: 5px;
    cursor: pointer;
    transition: .5s all;
    text-align: center;
    padding: 25px 0;
    position: relative;
    bottom: 0;
}

.parking_zones > div:nth-of-type(2) > div,
.homepage-navigation-section > div:nth-of-type(2) > div {
    margin: 0 3px;
    border-color: var(--fe-yellow);
}

.parking_zones > div:nth-of-type(3) > div,
.homepage-navigation-section > div:nth-of-type(3) > div {
    border-color: var(--fe-blue);
}

.parking_zone_info:hover {
    -webkit-box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 10px 5px -4px rgba(0, 0, 0, 0.18);
}

.parking_zone_info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--fe-red);
}

.parking_zones > div:nth-of-type(2) .parking_zone_info h3,
.homepage-navigation-section > div:nth-of-type(2) .parking_zone_info h3 {
    color: var(--fe-yellow);
}

.parking_zones > div:nth-of-type(3) .parking_zone_info h3,
.homepage-navigation-section > div:nth-of-type(3) .parking_zone_info h3 {
    color: var(--fe-blue);
}

.parking_zone_info p {
    color: var(--fe-main-color);
    opacity: .7;
}

/* map section */
/* price section */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--fe-main-color);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--fe-main-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 25px;
}

.slider.round:before {
    border-radius: 50%;
}

.price-section .container {
    padding: 80px 0 80px;
}

.price-section .p-info {
    max-width: unset;
    font-size: 16px;
    opacity: .5;
    margin-bottom: 80px;
}

.price-section .fe-h2.intro {
    margin-bottom: 20px;
}

.price-section-info-details {
    height: 260px;
    background-color: var(--fe-lightgrey);
    border-radius: 10px;
    padding: 40px 0;
}

.price-section-info > div > div:nth-of-type(2) > div {
    margin: 0 10px;
}

.price-section-info-details h3 {
    font-family: "Rubik-Medium";
    font-size: 18px;
    position: relative;
    margin-bottom: 55px;
}

.price-section-info-details h3::after {
    position: absolute;
    width: 50px;
    content: "";
    height: 5px;
    border-radius: 2px;
    background-color: var(--fe-red);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.price-section-info > div > div:nth-of-type(2) > div h3::after {
    background-color: var(--fe-yellow);
}

.price-section-info > div > div:nth-of-type(3) > div h3::after {
    background-color: var(--fe-blue);
}

#subscription .price-section-info-details h3::after {
    display: none;
}

.price-section-info-details h1 {
    font-size: 37px;
    margin-bottom: 10px;
}

.price-section-info-details p {
    letter-spacing: .5px;
}

.price-section-info-details h1 em {
    font-size: 23px;
}

.price_option_switch {
    margin-bottom: 30px;
    height: 30px;
    line-height: 30px;
}

.price_option_switch span.one_time {
    left: -20px;
}

.price_option_switch span.one_time,
.price_option_switch span.subscription {
    opacity: .5;
    font-family: "Rubik-Regular";
    font-size: 14px;
}

.one_time_active span.one_time,
.subscription_active span.subscription {
    opacity: 1;
}

.price_option_switch .switch {
    top: 7px;
    margin: 0 20px;
    left: -12px;
}

.price-section .bottom_info {
    margin-top: 50px;
    opacity: .5;
}

#subscription .fe-green-btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    letter-spacing: 1px;
}

/* price section */
/* faq section */
.faq-section {
    min-height: 600px;
    height: unset;
    max-height: unset;
}

.faq-section .fe-h2.intro {
    margin: 50px auto;
    color: #fff;
}

/* faq section */
/* Accordions homepage */
#accordion .panel-title {
    position: relative;
    text-align: left;
    font-size: 17px;
}

#accordion .panel-title.active {
    background-color: #e8ebf1;
    color: #294381;
}

#accordion .panel-title a {
    text-decoration: none;
}

#accordion .panel-title a::after,
#accordion .panel-title a.collapsed::after {
    font-family: "FontAwesome";
    content: "\f106";
    position: absolute;
    right: 42px;
    top: 0;
    font-size: 25px;
}

#accordion .panel-title a.collapsed::after {
    content: "\f107";
}

#accordion .panel-heading {
    height: 72px;
    line-height: 72px;
    padding: 0;
    text-indent: 53px;
    background: transparent;
    color: #fff;
    border-radius: 0;
    border-bottom: 1px solid #b5c3e3;
}

#accordion > div:first-of-type .panel-heading {
    border-top: 1px solid #b5c3e3;
}

#accordion.panel-group .panel {
    background: transparent;
    border-radius: 0;
    border: none;
}

#accordion.panel-group .panel + .panel {
    margin-top: 0;
}

#accordion .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
    background-color: #e8ebf1;
    color: var(--fe-main-color);
    font-size: 15px;
    font-family: Rubik-Regular;
    text-align: left;
    padding: 5px 25px 25px 80px;
    line-height: 20px;
}

/* Accordions homepage */
/* Footer */
footer {
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    min-height: 150px;
    width: 100%;
    overflow: hidden;
}

footer li {
    float: left;
    display: inline;
    text-align: left;
    margin-right: 23px;
    font-size: 13px;
    line-height: 16px;
    font-family: "Rubik-Regular";
}

footer li a, footer li a:hover {
    color: var(--fe-grey);;
}

footer ul.pull-right li {
    font-size: 25px;
    line-height: 31px;
}

footer ul.pull-right li.store a img {
    opacity: .5;
}

footer ul.pull-right li.store a:hover img {
    opacity: 1;
}

footer ul.pull-right li:last-of-type {
    margin-right: 0;
}

.footer-rights {
    color: var(--fe-grey);
    font-size: 12px;
    margin-top: 65px;
}

/* Footer */

/* Modal style */
.fe-modal > * {
    font-family: "Rubik-Light";
}

.fe-modal .modal-content,
.fe-modal .modal-dialog {
    max-width: 520px;
    width: 100%;
}

.fe-modal .modal-dialog {
    width: auto;
    margin: 10px auto;
    padding: 0 10px;
}

.fe-modal .modal-header {
    border-bottom: 0;
}

.fe-modal .modal-header .logo {
    max-width: 160px;
    margin: 20px auto 30px;
}

.fe-modal .modal-header {
    color: #213c7e;
    letter-spacing: .5px;
}

.fe-modal .modal-header h4 {
    margin-bottom: 10px;
    font-size: 14px;
    font-family: "Rubik-Medium";
}

.fe-modal .modal-header h3 {
    font-size: 13px;
    font-family: "Rubik-Regular";
    opacity: .8;
    line-height: 15px;
}

.fe-modal input {
    padding: 0;
    height: 52px;
    line-height: 52px;
    text-indent: 15px;
    border: 1px solid #e6e9eb;
    box-shadow: none;
    color: var(--fe-main-color);
}

.fe-modal button.close {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 30px;
    height: 30px;
    background: var(--fe-grey);
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
}

.fe-modal .modal-body {
    padding: 0;
    width: 300px;
    margin: 30px auto 0;
}

.fe-modal .fe-green-btn {
    margin: 20px auto;
    width: 100%;
}

.fe-modal .modal-footer {
    padding: 35px 0;
    border-top: none;
    color: var(--fe-grey);
    letter-spacing: 1px;
}

.fe-modal .modal-footer a {
    color: var(--fe-grey);
    text-decoration: underline;
    line-height: 14px;
}

.fe-modal .forgot_pass a {
    padding-top: 10px;
    display: inline-block;
    font-size: 11px;
    letter-spacing: .5px;
    color: var(--fe-grey);
}

.fe-modal .form-group {
    position: relative;
    margin-bottom: 5px;
}

.fe-modal .form-group .fa {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fe-grey);
    font-size: 15px;
    opacity: .5;
}

.fe-modal .form-group .fa.fa-mobile {
    font-size: 25px;
}

.fe-modal .form-group .fa.fa-lock {
    font-size: 20px;
}

.social_login a, .social_login a:hover, .social_login a:focus {
    display: block;
    background-color: #3b5995;
    color: #fff;
    font-family: "Rubik-Regular";
    text-align: left;
    position: relative;
}

.fe-modal .social_login a {
    margin: 0 auto 5px;
}

.social_login a:after {
    font-family: "FontAwesome";
    content: "\f09a";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social_login a.google-login {
    background-color: #dc5043;
}

.social_login a.google-login::after {
    content: "\f0d5";
    right: 15px;
}

.or_separator {
    margin: 25px auto;
    color: var(--fe-grey);
    position: relative;
}

.or_separator::before, .or_separator::after {
    content: "";
    position: absolute;
    left: 33%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--fe-lightgrey);
    width: 50px;
    height: 1px;
}

.or_separator::after {
    left: unset;
    right: 16%;
}

/* Modal style */
/* ==============================================
3 - Dashbaord section
============================================== */
.dashboard .navbar-nav.fe-navbar {
    margin-left: 50px;
}

.dashboard .navbar-default .navbar-nav.fe-navbar > .active > a, .dashboard .navbar-default .navbar-nav.fe-navbar > .active > a:hover {
    color: var(--fe-darkblue);
    opacity: 1;
}

.dashboard .navbar-default .navbar-nav.fe-navbar > .active > a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--fe-darkblue);
    left: 0;
    top: 0;
}

.user-nav-menu {
    top: 20px;
}

.user-nav-menu .dropdown-menu {
    top: 70px;
    width: 230px;
    border: none;
}

.user-nav-menu .dropdown-menu li a {
    padding: 10px 20px;
    position: relative;
    font-family: "Rubik-Regular";
    opacity: .6;
}

.user-nav-menu .dropdown-menu li a i {
    padding-right: 10px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.user-nav-menu .dropdown-menu li a:hover {
    background-color: red;
}

.navbar-default .navbar-nav .user-nav-menu a {
    padding-right: 0px;
    line-height: 25px;
}

.navbar-default .navbar-nav .user-nav-menu.open > a {
    background: none;
    box-shadow: none;
    background-color: none;
}

.navbar-default .navbar-nav .user-nav-menu > a:first-of-type::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f107";
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.user-bckg-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-size: cover;
    float: left;
    border-radius: 50%;
    overflow: hidden;
}

.user-bckg-icon i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 25px;
}

.user-nav-menu .user-bckg-icon {
    position: absolute;
    left: -40px;
    top: 3px;
}

.user-nav-menu a > div > span {
    line-height: 15px;
    color: var(--fe-main-color);
    display: inline-block;
    width: 100%;
    min-width: 35px;
}

.user-nav-menu a > div > span:first-of-type {
    position: relative;
    top: 5px;
}

.user-nav-menu a > div > span:last-of-type {
    font-family: "Rubik-Light";
    color: var(--fe-grey);
    font-size: 13px;
}

.dashboard section {
    margin: 10px auto;
}

.dashboard section .show_all a {
    color: var(--fe-green);
    margin-right: 15px;
}

.dashboard section .show_all a::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f105";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
}

.dashboard section h2 {
    margin-bottom: 20px;
    color: var(--fe-main-color);
    opacity: .9;
    font-size: 15px;
    font-family: "Rubik-Regular";
}

.active-tickets > * {
    font-family: "Rubik-Regular";
}

.active-tickets .wrapper {
    height: 82px;
    background: #fff;
    padding: 10px 32px;
    border-radius: 5px;
    border-left: 5px solid var(--fe-red);
}

.active-tickets .wrapper .row > div:nth-of-type(2)::before, .active-tickets .wrapper .row > div:nth-of-type(2)::after {
    content: "";
    background-color: var(--fe-lightgrey);
    height: 62px;
    width: 1px;
    position: absolute;
    left: 0;
    top: 0;
}

.active-tickets .wrapper .row > div:nth-of-type(2)::after {
    left: unset;
    right: 0;
}

.p-sign {
    position: relative;
    width: 35px;
    height: 35px;
    text-align: center;
    border: 2px solid var(--fe-red);
    border-radius: 5px;
    color: var(--fe-red);
    line-height: 32px;
    top: 12px;
    font-size: 30px;
}

.p-zone {
    margin-right: 30px;
}

.dashboard .t-info, .dashboard .t-number {
    font-size: 13px;
    color: var(--fe-main-color);
    text-align: center;
    opacity: .5;
}

.two-level-content {
    position: relative;
    height: 62px;
    width: 100%;
}

.dashboard .t-number {
    font-size: 33px;
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100px;
    width: 100%;
}

.dashboard .t-number span {
    font-size: 15px;
}

.car-model {
    min-width: 100px;
    width: auto;
}

.dashboard .car-model .t-number {
    font-size: 15px;
}

.dashboard .t-info {
    margin-bottom: 12px;
}

.dashboard .t-number.buy-extra-hours {
    left: unset;
    right: 0;
    top: 46%;
    transform: translateX(0) translateY(-50%);
}

.buy-extra-hours a.btn {
    background-color: transparent;
    color: var(--fe-green);
    border: 1px solid var(--fe-green);
    padding: 10px 30px;
    transition: .5s all;
    font-family: "Rubik-Regular";
}

.buy-extra-hours a.btn:hover {
    background-color: var(--fe-green);
    color: #fff;
}

.ticket-history .wrapper {
    height: 570px;
    background-color: #fff;
    border-radius: 5px;
    /* margin-bottom: 20px; */
}

.ticket-history .wrapper h2 {
    height: 50px;
    border-bottom: 1px solid var(--fe-lightgrey);
    text-indent: 33px;
    line-height: 50px;
    font-family: "Rubik-Medium";
    font-size: 14px;
}

.ticket-history .wrapper.purchase-ticket h2 {
    margin-bottom: 0;
    /* text-align: center; */
}

.ticket-history .wrapper.purchase-ticket .header {
    text-align: center;
    border-bottom: 1px solid var(--fe-lightgrey);
}

.ticket-history .wrapper.purchase-ticket .header ul.nav-tabs {
    margin-bottom: -1px;
}

.ticket-history .wrapper.purchase-ticket .header ul.nav-tabs li {
    float: none;
    display: inline-block;
}

ul.history-records {
    padding: 15px 0;
    max-height: 480px;
    overflow: hidden;
    overflow-y: auto;
}

ul.history-records li {
    height: 60px;
    margin-bottom: 15px;
    padding: 10px;
    transition: .5s all;
}

ul.history-records li a {
    padding: 5px 30px 5px 50px;
    display: inline-block;
    width: 100%;
}

ul.history-records li a::before,
ul.history-records li::before {
    content: "";
    width: 1px;
    height: 65px;
    position: absolute;
    left: 30px;
    top: -40px;
    background-color: var(--fe-lightgrey);
}

ul.history-records li::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--fe-lightgrey);
    top: 50%;
    left: 25px;
    z-index: 1;
    transform: translateY(-50%);
}

ul.history-records li:hover {
    background-color: var(--fe-lightgrey);
}

ul.history-records li:hover::before {
    background-color: #fff;
}

ul.history-records a:hover {
    text-decoration: none;
}

ul.history-records a .date {
    font-size: 13px;
    font-size: "Rubik-Regular";
    color: var(--fe-main-color);
    opacity: .5;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1px;
}

ul.history-records a .info {
    color: var(--fe-main-color);
    margin-bottom: 5px;
    font-size: 15px;
}

ul.history-records a .info > .duration, ul.history-records a .info > .car-model {
    font-family: "Rubik-Regular";
}

ul.history-records a .price {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fe-main-color);
}

.dashboard-pay-window {
    padding: 0;
    height: auto;
}

.dashboard-pay-window p.saved-car {
    margin: 15px auto 0px;
    color: var(--fe-grey);
    font-size: 12px;
    font-family: "Rubik-Light";
}

.dashboard-pay-window p.saved-car a, .hp-pay-window p.saved-car a {
    color: var(--fe-green);
    margin-left: 5px;
    margin-right: 5px;
}

.statistics .wrapper {
    min-height: 210px;
    background-color: #fff;
    border-radius: 5px;
    height: auto;
    padding-bottom: 51px;
}

.statistics .header, .statistics .footer {
    height: 50px;
    border-bottom: 1px solid var(--fe-lightgrey);
}

.statistics .footer {
    bottom: 0;
    border-bottom: 0;
    border-top: 1px solid var(--fe-lightgrey);
    left: 0;
    width: 100%;
    line-height: 50px;
    color: var(--fe-main-color);
    opacity: .5;
    padding-left: 10px;
}

.statistics .footer i {
    color: var(--fe-blue);
    margin: 0 15px;
    font-size: 16px;
}

.statistics .tab-content {
    padding: 20px;
}

.statistics .tab-content .number, .statistics .tab-content .info {
    font-family: "Rubik-Light";
    font-size: 45px;
    color: var(--fe-main-color);
    opacity: .8;
}

.statistics .tab-content .info {
    font-size: 15px;
    margin-top: 5px;
}

.dashboard .nav-tabs {
    border: 0;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
}

.dashboard .nav-tabs > li.active > a,
.dashboard .nav-tabs > li.active > a:focus,
.dashboard .nav-tabs > li.active > a:hover,
.dashboard .nav-tabs > li > a {
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    border: none;
    border-bottom: 1px solid var(--fe-green);
    color: var(--fe-green);
    font-size: 15px;
    font-family: "Rubik-Regular";
}

.dashboard .nav-tabs > li > a {
    border: none;
}

.dashboard .nav-tabs > li > a,
.dashboard .nav > li > a:focus,
.dashboard .nav > li > a:hover {
    background-color: transparent;
    color: var(--fe-main-color);
}

.dashboard .nav > li > a:focus,
.dashboard .nav > li > a:hover {
    color: var(--fe-green);
    opacity: 1;
}

.chart-container {
    max-width: 85px;
}

.percentage_holder .number {
    margin-top: 5px;
}

.percentage_holder .number em {
    font-size: 28px;
}

.percentage_holder div.zone_1 > .number, .percentage_holder div.zone_1 .info {
    color: var(--fe-red);
}

.percentage_holder div.zone_2 > .number, .percentage_holder div.zone_2 .info {
    color: var(--fe-yellow);
}

.percentage_holder div.zone_3 > .number, .percentage_holder div.zone_3 .info {
    color: var(--fe-blue);
}

.fe-dropdown-select {
    right: 15px;
    top: 15px;
}

.fe-dropdown-select .form-group select {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    border: none;
    position: relative;
    outline: none;
    cursor: pointer;
    font-size: 13px;
    background: transparent;
    margin: 0;
    padding: 0;
    height: auto;
    line-height: normal;
}

.fe-dropdown-select .select-wrapper {
    padding-right: 25px;
    cursor: pointer;
}

.fe-dropdown-select .select-wrapper::after {
    font-family: "FontAwesome";
    content: "\f107";
    position: absolute;
    right: 5px;
    top: 2px;
    font-size: 15px;
}

.no-vehicles .wrapper {
    /* min-height: 250px; */
    background-color: #fff;
    border-radius: 3px;
    padding: 0px 0 0 0;
}

.no-vehicles .wrapper-inner {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.no-car-holder i {
    display: block;
    font-size: 40px;
    margin: 0 0 10px;
    color: var(--fe-grey);
}

.no-vehicles .wrapper-inner h4 {
    color: var(--fe-main-color);
    font-family: "Rubik-Regular";
    font-size: 17px;
    margin: 30px 0 20px;
    opacity: .9;
}

.no-vehicles .wrapper-inner p {
    font-size: 13px;
    line-height: 17px;
    opacity: .5;
    margin-bottom: 50px;
}

.no-vehicles .wrapper-inner .fe-green-btn {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

/* ==============================================
3 - Profile section
============================================== */
.profile-section {
    min-height: 600px;
    background-color: #fff;
    border-radius: 5px;
}

.profile-menu {
    margin: 5px auto;
    height: 590px;
    border-right: 1px solid #eee;
    padding-top: 20px;
}

.profile-menu li a {
    padding: 15px 15px 15px 30px;
    width: 100%;
    font-family: "Rubik-Medium";
    font-size: 14px;
    color: var(--fe-main-color);
    display: inline-block;
    text-decoration: none;
    position: relative;
    opacity: .7;
}

.profile-menu li.active a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 1px;
    height: 30px;
    background-color: var(--fe-green);
}

.profile-menu li a:hover, .profile-menu li.active a {
    color: var(--fe-green);
}

.update-user-info {
    max-width: 355px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

[hidden] {
    display: none !important;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

.avatar-change {
    display: block;
    height: 180px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
}

.avatar-change .fa-user-o {
    display: inline-block;
    font-size: 45px;
    background: var(--fe-lightgrey);
    color: var(--fe-grey);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    line-height: 120px;
}

.update-user-info .form-group label {
    /* padding-left: 3px; */
}

.avatar-change > label.btn {
    background: transparent;
    font-family: "Rubik-Regular";
    display: block;
    color: var(--fe-darkblue);
    padding-left: 25px;
}

.avatar-btn:hover, .avatar-btn:focus, .avatar-btn:active {
    display: block;
    color: var(--fe-darkblue);
    background: transparent;
}

.form-group input,
.form-group select,
.fe-input {
    padding: 0 15px;
    height: 42px;
    line-height: 42px;
    border: none;
    border-bottom: 1px solid #eee;
    box-shadow: none;
    margin: 5px 0 15px;
    color: var(--fe-main-color);
    font-size: 16px;
}

.form-group label {
    font-size: 12px;
    color: var(--fe-grey);
    letter-spacing: 1.5px;
}

.update-user-info .change_pass {
    position: relative;
    top: -10px;
    font-size: 12px;
}

.update-user-info .change_pass a {
    color: var(--fe-green);
}

.update-user-info div:last-of-type {
    margin: 20px auto 30px;
}

.car-holder-wrapper {
    padding: 20px 70px 20px 50px;
}

.car-holder {
    margin: 16px auto;
    height: 190px;
    background: var(--fe-lightgrey);
    border: 1px solid var(--fe-lightgrey);
    border-radius: 3px;
}

.default-car {
    bottom: 10px;
    left: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 3px;
    color: var(--fe-darkblue);
}

.car-holder .action-wrapper {
    right: 10px;
    top: 10px;
}

.car-holder .action-wrapper ul li {
    position: relative;
    float: right;
    font-size: 20px;
}

.car-holder .action-wrapper ul li a {
    padding: 5px 8px;
    margin: 1px;
}

.car-holder .action-wrapper ul li i {
    color: var(--fe-grey);
}

.car-holder .action-wrapper ul li a:hover {
    background: #fff;
}

.car-holder .action-wrapper ul li a:hover i {
    color: var(--fe-darkblue);
}

.car-holder .car-info {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.car-holder .car-info h4 {
    font-family: "Rubik-Medium";
    margin: 10px auto;
    font-size: 20px;
}

.car-holder .car-info p {
    font-size: 15px;
}

.car-holder.add-car {
    background: transparent;
    border: 1px dashed var(--fe-grey);
    font-size: 65px;
    color: var(--fe-green);
}

.car-holder.add-car .car-info {
    top: 40%;
}

.car-holder.add-car .car-info a {
    color: var(--fe-green);
    font-size: 25px;
}

.car-holder.add-car .car-info a:hover {
    text-decoration: underline;
}

.new_car_modal .header-img {
    margin-top: 35px;
}

.new_car_modal .update-user-info input {
    padding-left: 0;
}

.new_car_modal label input[type="checkbox"] ~ i.fa.fa-circle-thin {
    color: #c8c8c8;
    display: inline;
    font-size: 25px;
}

.new_car_modal label input[type="checkbox"] ~ i.fa.fa-check-circle {
    display: none;
}

.new_car_modal label input[type="checkbox"]:checked ~ i.fa.fa-circle-thin {
    display: none;
}

.new_car_modal label input[type="checkbox"]:checked ~ i.fa.fa-check-circle {
    color: var(--fe-green);
    display: inline;
    font-size: 25px;
}

.new_car_modal label:hover input[type="checkbox"] ~ i.fa {
    color: var(--fe-green);
}

.new_car_modal label.active {
    color: var(--fe-green);
}

.new_car_modal .update-user-info div:last-of-type {
    margin: 0;
    display: block;
}

.new_car_modal .update-user-info div.radio {
    display: inline-block;
    margin-right: 25px;
    line-height: 23px;
}

.new_car_modal .update-user-info div.radio input {
    height: 25px;
}

.new_car_modal .update-user-info div.radio label {
    height: 25px;
    line-height: 35px;
    font-size: 16px;
}

.new_car_modal .update-user-info {
    padding-bottom: 30px;
}

.new_car_modal .modal-header {
    color: var(--fe-grey);
}

.card-with-background {
    display: block;
    background: #f3f4f5;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    line-height: 65px;
    text-align: center;
}

.profile-save-card .car-info {
    left: 30px;
    transform: translateX(0%) translateY(-50%);
    line-height: 20px;
}

.profile-save-card .car-info p {
    font-size: 14px;
    font-family: "Rubik-Medium";
}

.add-car-mobile a {
    margin: 10px auto;
    display: block;
    text-align: center;
    padding: 15px 10px;
    border: 1px solid var(--fe-lightgrey);
    border-radius: 3px;
    color: var(--fe-green);
}

/* ==============================================
3 - Payment section
============================================== */
.payment-form-wrapper {
    margin-top: 30px;
    padding: 0 15px;
}

.payment-form {
    max-width: 515px;
    margin: 10px auto 100px;
    padding: 25px 80px;
    background-color: #fff;
}

.payment-header {
    font-size: 20px;
    color: var(--fe-darkblue);
    font-family: "Rubik-Medium";
    margin: 0 auto 15px;
}

.payment-header img {
    position: relative;
    top: 2px;
}

.payment-form > p, .payment-form .footer-message {
    font-size: 13px;
    font-family: "Rubik-Light";
    color: var(--fe-grey);
    letter-spacing: .5px;
    margin: 10px auto 20px;
    line-height: 15px;
}

.payment-form.update-user-info div:last-of-type {
    margin: 0;
}

.payment-form > p.secure-transaction {
    font-size: 11px;
}

.secure-transaction i {
    font-size: 20px;
    position: relative;
    top: 3px;
}

.payment-form .footer-message {
    margin-top: 30px;
}

.fa-payment-success {
    display: inline-block;
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 100px;
    border: 1px solid var(--fe-green);
    color: var(--fe-green);
    font-size: 35px;
    margin-bottom: 20px;
}

.payment-success .fe-green-btn {
    background: transparent;
    border: 1px solid var(--fe-green);
    color: var(--fe-green);
    font-family: "Rubik-Medium";
    display: block;
}

.payment-success .payment-form .footer-message, .payment-success .payment-form .footer-message a {
    color: var(--fe-green);
}

.payment-info {
    background: var(--fe-lightgrey);
    text-align: center;
    box-shadow: none;
    color: var(--fe-darkblue);
    font-family: "Rubik-Regular";
}

.payment-info > span {
    font-family: "Rubik-Medium";
}

.payment-info > span {
    font-size: 20px;
    margin-right: 10px;
}

.payment-info > span em {
    font-size: 15px;
    font-family: "Rubik-Regular";
}

.payment-info p.upper-content {
    color: var(--fe-grey);
    font-size: 13px;
    margin-bottom: 20px;
}

.payment-info p.bottom-content {
    color: var(--fe-main-color);
    font-size: 30px;
}

.separator-vertical {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background-color: #3e3e3e;
    height: 80%;
    top: 10%;
    opacity: .1;
    margin: 0;
    padding: 0;
}

.payment-success .vehicle-info {
    color: var(--fe-grey);
    font-size: 13px;
}

.payment-success .vehicle-info p > span {
    color: var(--fe-main-color);
    font-size: 18px;
    margin-left: 10px;
}

/* Leaflet maps js */
.parking-info-window {
    padding: 10px;
    max-width: 300px !important;
}

.parking-info-window img {
    width: 100% !important;
    max-width: 180px !important;
    margin: 0 auto 20px !important;
    display: block
}

.parking-info-window p {
    font-size: 16px !important;
    margin-bottom: 7px !important;
}

.leaflet-popup-content {
    min-width: 250px;
}

.leaflet-container a.leaflet-popup-close-button {
    right: 10px;
    top: 10px;
}

/* Leaflet maps js */

.alert {
    margin-top: 15px;
}

/* Static pages */
.static-page-upper {
    height: auto;
    min-height: unset !important;
}

.static-page-upper .hp-intro-text {
    top: unset;
    transform: none;
    height: auto;
    margin: 0;
}

.static-page-upper .hp-intro-text h1 {
    margin: 30px auto;
    padding: 0;
}

.static-content {
    margin: 30px auto 60px;
}

.static-content p {
    font-size: 15px;
    line-height: 1.7em;
    margin: 10px auto;
}

.form-control:focus {
    box-shadow: none;
}

.contact-form {
    margin-bottom: 50px;
}

textarea.form-control {
    border: 1px solid var(--fe-lightgrey);
    box-shadow: none;
    resize: none;
    padding: 15px;
    font-size: 17px;
    color: var(--fe-main-color);
    margin: 5px 0 15px;
}

/* ==============================================
4 - Mobile style
============================================== */
.navbar-fixed-top .navbar-collapse {
    max-height: unset;
}

@media (max-width: 992px) {
    .navbar-nav.fe-navbar {
        margin-left: 10px;
    }

    .navbar-nav > li > a {
        padding: 0 5px;
    }

    .homepage-upper-section .row > div {
        padding: 0 10px;
    }

    .homepage-upper-section, .faq-section, .parkmatix-slick-container {
        min-height: 90vh;
        max-height: unset;
        height: auto;
    }

    .parkmatix-slick-container-item {
        min-height: 90vh;
        max-height: unset;
        height: auto!important;
    }

    .faq-section {
        min-height: unset;
    }

    .hp-intro-text {
        transform: none;
        top: 0;
        height: auto;
        margin-top: 50px;
    }

    .hp-pay-window {
        height: auto;
        margin-bottom: 100px;
        padding: 30px 0;
    }

    .purchase-ticket .hp-pay-window {
        padding: 0;
    }

    .hp-pay-window-info-text {
        top: -35px;
    }

    .playstore-section {
        line-height: unset;
        height: auto;
        padding: 20px;
    }

    .playstore-section span {
        display: block;
        margin: 20px;
    }

    .funct-step-holder > div {
        margin-bottom: 20px;
    }

    footer {
        height: auto;
        padding-bottom: 20px;
    }

    footer ul.pull-left, footer ul.pull-right, .footer-rights {
        text-align: center;
        width: 100%;
    }

    footer ul.pull-right {
        margin-top: 30px;
    }

    footer ul.pull-right li {
        margin: 0 10px;
    }

    footer ul.pull-left li, footer ul.pull-right li {
        float: none;
    }

    .chart-container {
        margin: 0 auto;
    }

    .percentage_average {
        float: right;
        margin-top: 30px;
    }
}

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

    .navbar-toggle {
        margin: 25px;
        border: none;
    }

    .navbar-nav.fe-navbar, .dashboard .navbar-nav.fe-navbar {
        margin: 0;
    }

    .navbar-default .navbar-nav > li > a {
        line-height: 55px;
        border-bottom: 1px solid var(--fe-lightgrey);
    }

    .navbar-right {
        margin-right: -15px;
    }

    .navbar-right li {
        text-align: center;
    }

    div.price-section-info-details, .price-section-info > div > div:nth-of-type(2) > div {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
        border-radius: 3px;
    }

    #subscription div.price-section-info-details {
        margin: 30px auto 0;
    }

    .active-tickets .wrapper {
        height: auto;
    }

    .active-tickets .wrapper .row > div:last-of-type {
        padding: 20px 20px 10px 20px;
        border-top: 1px solid var(--fe-lightgrey);
        margin-top: 20px;
    }

    .active-tickets .wrapper .row > div:nth-of-type(2)::after {
        display: none;
    }

    .active-tickets .wrapper .row > div:nth-of-type(2) .t-info,
    .active-tickets .wrapper .row > div:nth-of-type(2) .t-number {
        text-align: left;
        padding-left: 10px;
    }

    .navbar-default .navbar-nav > li > a.fe-trans-btn, .navbar-default .navbar-nav > li > a.fe-trans-btn:hover, .navbar-default .navbar-nav > li > a.fe-trans-btn:focus {
        margin-right: 0;
    }

    .hp-intro-text h1 {
        margin-bottom: 0px;
        padding: 0;
        font-size: 20px;
        line-height: 25px;
        text-align: center;
    }

    .profile-menu {
        border-right: none;
        height: 60px;
        padding: 0;
        margin: 0;
        line-height: 60px;
        border-bottom: 1px solid var(--fe-lightgrey);
    }

    .profile-menu li {
        display: inline-block;
        width: 33%;
        text-align: center;
        float: left;
    }

    .profile-menu li a {
        padding: 0;
    }

    .profile-menu li.active a::before {
        left: 50%;
        bottom: 1px;
        top: unset;
        width: 90px;
        height: 1px;
        transform: translateX(-50%);
    }

    .navbar-default .navbar-nav > li > a {
        text-align: center;
    }

}

@media (max-width: 480px) {
    body {
        margin-bottom: 430px;
    }

    .btn {
        max-width: 280px;
    }

    .btn-block {
        max-width: unset;
    }

    .fe-modal .modal-body form {
        padding: 0 10px;
    }

    .timepicker-holder .bootstrap-timepicker-widget.dropdown-menu.open {
        width: 300px;
    }

    #accordion .panel-heading {
        text-indent: 0;
        line-height: 20px;
    }

    #accordion .panel-heading .panel-title {
        padding: 10px 25px 5px 15px;
    }

    #accordion .panel-title.active {
        height: 72px;
    }

    #accordion .panel-title a::after, #accordion .panel-title a.collapsed::after {
        right: 20px;
        top: 20px;
    }

    #accordion .panel-default > .panel-heading + .panel-collapse > .panel-body {
        padding-left: 30px;
    }

    footer ul.pull-right li.store {
        display: block;
        text-align: center;
        margin: 20px 0 0 0;
    }

    .hp-intro-text {
        margin-top: 10px;
        text-align: center;
    }

    .current_time_holder,
    .hp-btns .btn,
    .hp-pay-window input[name="plates"] {
        max-width: 280px;
    }

    div[data-toggle="buttons"] {
        width: 291px;
    }

    div[data-toggle="buttons"] label {
        width: calc(33% - 2px);
    }

    .timepicker-holder .bootstrap-timepicker-widget.dropdown-menu.open {
        width: 280px;
    }

    .payment-form {
        padding: 25px 15px;
    }

    .car-holder-wrapper {
        padding: 0;
    }

    .car-holder .action-wrapper {
        width: 50px;
        right: 0;
        top: 0;
        border-left: 1px solid lightgrey;
        height: 100%;
    }

    .car-holder .action-wrapper ul li {
        position: relative;
        float: left;
        font-size: 20px;
        width: 100%;
        text-align: center;
        height: 63px;
        line-height: 63px;
        border-bottom: 1px solid lightgrey;
    }

    .car-holder .action-wrapper ul li:nth-child(3) {
        border-bottom: none;
    }
}

div#card-element {
    height: 150px;
    display: block;
}

.btn-group.btn-group.parking-zones {
    width: 315px;
}

.parking_zone_info.homepage-navigation-item {
    height: 105px;
}

.row.homepage-navigation-section {
    bottom: -55px;
    height: 105px;
    width: 1024px;
    margin: 0 auto;
    max-width: 90%;
}

section#pay-parking {
    height: 555px;
    max-height: unset;
}

.kjkp-rad-info li {
    list-style: circle;
    padding-left: 20px;
    margin-left: 20px;
}

.approved-prepare-order .homepage-upper-container {
    background-size: cover;
}

.homepage-upper-container-background {
    width: 100%;
    height: 100%;
    background-color: rgba(41, 67, 129, 0.85);
}

.site-upper-section {
    display: block;
    background-size: cover;
    height: 500px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

.site-section-header {
    background: white;
    height: 330px;
    width: 390px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 100;
    box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.15);
}

.site-section-header .hp-intro-text {
    color: black;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    margin-top: 0px;
    text-align: left;
    margin: 0 35px;
}

.site-section-header .hp-intro-text h1 {
    font-size: 28px;
    line-height: 34px;
    color: #222136;
    font-weight: 900;
    margin-bottom: 0px;
    padding-right: 0;
}

.site-section-header .hp-intro-text h2 {
    color: #626262;
    font-size: 16px;
    line-height: 28px;
}

.hp-intro-text .title-separator {
    background-color: #2e3492;
    width: 48px;
    height: 6px;
    margin: 20px 0;
}

.site-section-content-nav {
    background-color: white;
    margin-right: 20px;
    -webkit-box-shadow: 0px 10px 21px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 21px 0px rgba(0, 0, 0, 0.15);
}

.site-section-content-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-section-content-nav ul li {
    border-top: 1px solid #dedede;
}

.site-section-content-nav ul li:first-child {
    border-top: 0;
}

.site-section-content-nav ul li a {
    display: block;
    font-size: 15px;
    font-weight: bold;
    padding: 17px 30px;
    color: black;
    position: relative;
    text-decoration: none;
}

.site-section-content-nav ul li a.active {
    background-color: #294381;
    color: white;
}

.site-section-content-nav ul li li a.active {
    color: #294381;
    background-color: unset;
    font-weight: 900;
    font-family: "Rubik-Regular", arial, sans-serif;
}

.site-section-content-nav ul li ul {
    display: none;
    padding: 10px 0;
}

.site-section-content-nav ul li.active ul {
    display: block;
}

.site-section-content-nav ul li ul li {
    border-top: 0;
}

.site-section-content-nav ul li ul li a {
    font-size: 15px;
    font-weight: normal;
    padding: 10px 30px;
    color: #000;
}

.site-section-content-right {
    font-size: 15px;
    color: black;
    line-height: 24px;
}

.site-section-content-right p {
    font-size: 15px;
}

.site-section-content-right ul li {
    display: list-item;
    list-style: disc;
    margin-left: 20px;
}

.garaza-info {
    background-color: #fff;
    padding: 30px;
    position: relative;
    max-height: 86px;
}

.title-garaza a {
    color: #2f3493;
    font-size: 18px;
    font-weight: 900;
    font-family: Rubik-Regular, serif;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.garaza-holder {
    box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.garaza-holder img.img-responsive {
    width: 100%;
}

.parkmatix-slick-container-wrapper {
    position: relative;   
}

.parkmatix-slick-container-content {
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
}

.slick-list.draggable {
    max-height: 100%;
}
.parkmatix-slick-container-wrapper {
    padding-right: 0px;
    padding-left: 0px;
}

button.slick-prev.slick-arrow {
    left: 25px;
    z-index: 1000;
}

button.slick-next.slick-arrow {
    right: 25px;
    z-index: 1000;
}

@media (max-width: 1024) {
    .parkmatix-slick-container.slick-initialized.slick-slider {
        display: none;
    }

    .parkmatix-slick-container-content {
        position: relative;
        top:0;
        width: 100%;
        height: 100%;
        margin: 0;
    }
}

p.logo-info {/* max-width: 50px; */display: inline-block;word-break: break-word;/* height: 150px; */overflow-wrap: break-word;width: 150px;line-height: 12px;vertical-align: middle;font-size: 11px!important;}