@charset "utf-8";

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

button:disabled, button:disabled:hover, button:disabled:hover:after  {
    background-color: #aaa !important;
    background: #aaa !important;
    color: #fff;
}
button:disabled:hover:after  {
    opacity:0 !important;
}


button > img {
    height:20px;
}

input:disabled {
    background: #aaa !important;
}

.fixed-panel-hidden {
    display: none !important;
    opacity: 0 !important;
}
.fixed-panel-fading-out {
    opacity: 0 !important;
    transition: opacity 0.4s ease-out !important;
}
.fixed-panel-fading-in {
    opacity: 1 !important;
    transition: opacity 0.4s ease-in !important;
}

html, body {
    background-color: #fff;
    color: #636b6f;
    font-family: 'AGBookPro', sans-serif;
    font-weight: 100;
    height: 100vh;
    margin: 0;

}


.full-height {
    height: 100vh;
}
body {
    padding-top: 0px;
}
body + .navbar-fixed-top {
    padding-top: 88px;
}
section {
    height: auto;
}

strong {
    font-weight: 600;
}


.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
}

.content {
    text-align: center;
}

.title {
    font-size: 84px;
}

.links > a {
    color: #636b6f;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.m-b-md {
    margin-bottom: 30px;
}

.results > div+div {
    margin-top: 1em;
}
.results > .result {
    padding: 1em;
    border: 1px solid #aaaaaa;
    border-radius: 10px;
}

h1 {
    font-family: 'AGBookPro';
    margin-top: 5em;
    font-weight: 800;
    color: #101010;
}

h1 + button {
    margin-top: 1em;
}
@media only screen and (min-width : 480px) {
    h1 + button {
        margin-top: 2em;
    }
}
h2 {
    color: #101010;
    font-size: 20px;
    font-weight: 600;
    padding-left: 1em;
    margin-bottom: 60px;
}
h2 > span {
    position: relative;
}
h2 > span:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1em;
    bottom: 0;
    border-left: 3px solid #00c1f8;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    h2 {
        font-size: 26px;
    }
}

.thin {
    font-weight: 300;
}

.navbar {
    margin-bottom: 0px;
}
.navbar-fixed-top {
    transition: top 0.4s ease-in-out;
}
.nav-up {
    top: -98px;
}

@media only screen and (max-width : 480px) {
    .navbar-overenie .header-container {
        overflow: hidden;
    }
}


.navbar-overenie .navbar-header .navbar-brand {
    height: auto;
}
.navbar-overenie .navbar-header .navbar-brand img{
    max-height: 38px;
    width :auto;
}
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .navbar-overenie .navbar-header .navbar-brand img{
        max-height: 30px;
        width :auto;
    }
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .navbar-overenie .navbar-header .navbar-brand img{
        max-height: 46px;
        width :auto;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 1200px) {
    .navbar-overenie .navbar-header .navbar-brand img{
        max-height: 58px;
        width :auto;
    }
}



.navbar-header {
    display: flex;                  /* establish flex container */
    flex-direction: row;            /* default value; can be omitted */
    flex-wrap: nowrap;              /* default value; can be omitted */
    justify-content: space-between; /* switched from default (flex-start, see below) */
}
.navbar-header:before , .navbar-header:after {
    display: initial;
    content: normal;
}
@media only screen and (min-width : 768px) {
    .navbar-header {
        display:block;
    }

    .navbar-header:before , .navbar-header:after {
        display: table;
        content: " ";
    }
}




.navbar-fixed-top.navbar-overenie {
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.18);
}

.navbar-overenie {
    background-color: #fff;
}

.navbar-overenie .nav > li > a, .navbar-overenie .nav > li > a:hover {
    font-size: 15px;
    font-weight: 300;
    color: #101010;
    background: none;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

@keyframes LeftSlide {
    0% {
        opacity: 0;
        margin-left: -8em;
    }

    100% {
        opacity: 1;
        margin-left: 0;
    }
}
@keyframes RightSlide {
    0% {
        opacity: 0;
        margin-right: -8em;
    }

    100% {
        opacity: 1;
        margin-right: 0;
    }
}
.nav li{
    opacity:0;
}
#navbar.in .nav li {
    opacity:0;
    animation: LeftSlide .5s forwards;
    animation-fill-mode: both;
}

#navbar2.in .nav li {
    opacity:0;
    animation: RightSlide .3s forwards;
    animation-fill-mode: both;
}

@media only screen and (min-width : 768px) {
    .nav li {
        opacity:1;
        animation: none;
    }
}

.nav li:nth-child(1) {animation-delay: 0s}
.nav li:nth-child(2) {animation-delay: .1s}
.nav li:nth-child(3) {animation-delay: .2s}
.nav li:nth-child(4) {animation-delay: .3s}
.nav li:nth-child(5) {animation-delay: .4s}
.nav li:nth-child(6) {animation-delay: .5s}
.nav li:nth-child(7) {animation-delay: .6s}

/*
    @keyframes LeftSlide {
      0% {
        opacity: 0;
        margin-left: -3em;
      }

      85% {
        opacity: .85;
        margin-left: -1em;
      }
      100% {
        opacity: 1;
        margin-left: 0;
      }
    }

    .nav li {
      animation: LeftSlide 1s linear;
      animation-fill-mode: both;
    }

    .myClass img:nth-child(1) { animation-delay: .5s }
    .myClass img:nth-child(2) { animation-delay: 1s }
    .myClass img:nth-child(3) { animation-delay: 1.5s }
    .myClass img:nth-child(4) { animation-delay: 2s }
    */



/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .navbar-overenie .nav > li > a, .navbar-overenie .nav > li > a:hover {
        font-size: 11px;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .navbar-overenie .nav > li > a, .navbar-overenie .nav > li > a:hover {
        font-size: 12px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .navbar-overenie .nav > li > a, .navbar-overenie .nav > li > a:hover {
        font-size: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.navbar-overenie .nav {
    display: flex;
    align-items: baseline;
}

.navbar-overenie .login-btn {
    margin-left: 5px;
}

.navbar-overenie .nav > li:last-child {
    margin-left: 20px;
    padding-top: 22px;
}


.navbar-overenie .nav > li:nth-last-child(2) {
    padding-top: 22px;
}

.navbar-overenie .nav > li:last-child > a {
    padding: 0px;
}

.navbar-overenie .nav > li > a:hover{
    color: #0c99f4;
}
.navbar-overenie .nav > li.active > a {
    /*font-weight: 600;*/
    color: #0c99f4;
}

.navbar-nav .navbar-right > li {
    float:right;
}

#navbar2 ul li a {
    text-align: center;
    padding: 10px;
}

#navbar2 ul li:last-child {
    padding-top:inherit;
    margin-left:0;
    padding-bottom: 2em;

}

@media only screen and (min-width : 768px) {}



.logged > a {
    z-index: 999;
    position:relative;
}
.logged a {
    font-weight:600;
}

.logged > a > i {
    margin: 0;
    margin-left: -.2em;
    -webkit-transition: all  400ms ease-out;
    -moz-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}
.btn-ghost-blue.logged:hover a > i {
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari */
    transform: rotate(180deg);
}
.logged a > .balance {
    font-size:13px;
    font-weight: 600;
    display:none;
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .logged a > .balance {
        display: inline-block;
    }
}


.logged > .submenu {
    z-index: 99999;
    position: absolute;
    right:0;
    min-width: 120px;
    top: 100%;
    visibility: hidden;
    opacity:0;
    padding-top:.5em;
    list-style: none;
    width: 100%;
    -webkit-transition: all  400ms ease-out;
    -moz-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.submenu > ul {
    width: 100%;
    margin:0;
    border-radius: 10px;
    border: 1px solid #00c1f8;
    padding:0;
    background-color: #fff;
    list-style: none;
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.18);
}
.submenu > ul > li {
    width: 100%;
    color: #0c99f4;
    text-align: center;

}
.submenu > ul > li > a, .submenu > ul > li > a:hover {
    color: #0c99f4 !important;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding:.5em;
}
.submenu > ul > li > a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.logged:hover > .submenu {
    bottom: -74px;
    visibility: visible;
    opacity:1;
    color: #0c99f4;
}

.hero .hero-wrap {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.hero .hero-wrap h1 {
    margin-top: 1em;
    font-size: 14px
}

.text-black {
    color: #000;
}

.hero-mechanic h1 {
    margin-top: .5em;
    margin-bottom: 5px;
}

.hero-mechanic .lead {
    color: #000;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-mechanic .btn-big, .hero-mechanic .btn-big:hover, .hero-mechanic .btn-big:after {
    padding: .8em 3em;
}

.hero .hero-wrap .stamp-zlava {
    position: absolute;
    top: 40px;
    left: 200px;
    width: 50px;

    -ms-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
    .hero .hero-wrap h1 {
        font-size: 15px
    }
}

/* iphone 6-7 */
@media only screen and (min-width : 375px) {
    .hero .hero-wrap h1 {
        font-size: 18px
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
    .hero .hero-wrap h1 {
        margin-top: 2em;
        font-size: 24px
    }

    .hero .hero-wrap .stamp-zlava {
        top: 110px;
        left: 240px;
        width: 80px;
    }

    .hero-mechanic h1 {
        margin-top: 2em;
        margin-bottom: 1rem;
    }

    .hero-mechanic .lead {
        font-size: inherit;
        line-height: inherit;
        margin-bottom: 1rem;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .hero .hero-wrap h1 {
        margin-top: 2em;
        font-size: 36px;
    }

    .hero .hero-wrap .stamp-zlava {
        top: 170px;
        left: 400px;
        width: 90px;
    }

    .hero-mechanic .lead {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .hero-mechanic .btn-big, .hero-mechanic .btn-big:hover, .hero-mechanic .btn-big:after {
        padding: 1.6em 4em;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .hero .hero-wrap h1 {
        margin-top: 2.5em;
    }

    .hero .hero-wrap .stamp-zlava {
        top: 200px;
        left: 350px;
        width: 125px;
    }
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .hero .hero-wrap h1 {
        margin-top: 4em;
    }

    .hero .hero-wrap .stamp-zlava {
        top: 230px;
        left: 400px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1440px) {
    .hero .hero-wrap h1 {
        margin-top: 4em;
    }
}



.wrap {
    padding-left :60px;
    padding-right :60px;
}
.link {
    color: #45d0f4;
    text-decoration: underline;
    text-transform: uppercase;
}

body{

}

.hero {
    width: 100%;
    height: auto;
    position:relative;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}



.hero > img {
    width: 100%;
    height:auto;

}

.preco-overit-vozidlo{
    position: relative;
}

.preco-overit-vozidlo h2 {

}

.preco-overit-vozidlo .five-block{
    left: 0;
    padding-top:1em;
    padding-bottom:1em;
    background-color:#fff;
}




@media only screen and (min-width : 992px) {
    .preco-overit-vozidlo .five-block{
        margin-top: -13em;
        box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.18);
    }
}



.five-block > a, .five-block > a:hover {
    position: relative;
    padding: 25px 0px;
    color: #101010;
    text-decoration: none;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
@media only screen and (min-width : 992px) {
    .five-block > a, .five-block > a:hover {
        min-height: 210px;
        padding: 10px 30px;
        text-align: center;
    }
}

.five-block > a:hover {
    color: #45d0f4;
}

.five-block > a > div > img {
    max-height: 60px;
}
@media only screen and (min-width : 992px) {
    .five-block > a > div {
        min-height: 120px;
    }


    .five-block > a > div > img {
        max-height: none;
    }
}


.five-block > a img {
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}

.five-block > a:hover img {
    transform: scale(1.05);
}

.five-block > a:after {
    content: "";
    position: absolute;
    left: 15%;
    bottom: 0px;
    border-bottom: 1px solid #e6e6e6;
    width: 70%;
}

@media only screen and (min-width : 992px) {
    .five-block > a:after {
        content: "";
        position: absolute;
        top: -5px;
        right: 0;
        bottom: 5px;
        border-right:1px solid #e6e6e6;
        border-bottom: none;
        left:initial;
        height: 100%;
    }
}

.five-block > a:last-of-type:after {
    border-right: none;
    border-bottom: none;
}

.five-block p {
    text-align:left;
    margin: 10px 0;
}
@media only screen and (min-width : 992px) {
    .five-block p {
        text-align:center;
    }
}

section + .payment {
    margin-top:4em;
}

.overenie-title {
    padding-top: 1em;
    padding-bottom:1em;
    margin-top:2.5em;
    margin-bottom:2.5em;

}
.overenie-title > h3 {
    color: #45d0f4;
    font-weight: 600;
    margin-top:1em;
    margin-bottom:0em;
}

.overenie-block {
    background-color:#002653;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 10px;
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.18);
}
.overenie-block h2 {
    color: #fff;
    margin-top: 0;

}
.overenie-block label {
    font-size: 17px;
    color: #fff;
    font-weight: 800;
}
.overenie-block input {
    height: 65px;
    background-color: #fff;
    border-radius: 10px;
    font-family: 'Inconsolata', monospace;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 600;
    color: #101010;

}
.overenie-block .form-group {
    margin-bottom: 0;
}

.overenie-block .btn-orange {
    margin-top:2em;
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .overenie-block .btn-orange {
        margin-top:0em;
    }
}


.ako-to-funguje {
    padding-top: 2em;
    padding-bottom: 2em;
    margin-top: 2em;
    margin-bottom: 3em;
}

.ako-to-funguje .col-sm-15 > div {
    min-height: 40px;
    position: relative;
}
.ako-to-funguje .col-sm-15 {
    margin: 1em 0;
}
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .ako-to-funguje .col-sm-15 > div {
        min-height: 92px;
        position: relative;
        margin-bottom: 1.5em;
    }
    .ako-to-funguje .col-sm-15 {
        margin: 0;
    }
}

.ako-to-funguje .col-sm-15 > div > span {
    color: #00c1f8;
    font-size: 20px;
    font-weight: 500;
    border: 2px solid #00c1f8;
    border-radius: 50%;
    text-align: center;
    width: 33px;
    height: 33px;
    display: block;
    margin-top:5px
}

.ako-to-funguje .col-sm-15 > div:last-child{
    text-align: left;
    padding: 0;
}
@media only screen and (min-width : 768px) {
    .ako-to-funguje .col-sm-15 > div:last-child{
        text-align: center;
        padding: initial;
    }
}


.ako-to-funguje .col-sm-15 > div > img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto; /* to keep proportions */
    height: auto; /* to keep proportions */
    max-width: 100%; /* not to stand out from div */
    max-height: 100%; /* not to stand out from div */
    margin: auto auto 0;
}

.ako-to-funguje .col-sm-15:nth-child(even) > div > img {
    margin: auto;
}
.ako-to-funguje button {
    margin-top:2.5em;
}

.referencie {
    padding-top: 3em;
    padding-bottom: 0em;
    width: 100%;
    height: auto;
    background-image: url('../img/bg2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
    overflow: hidden;
}
.referencie h2 {
    margin-bottom:30px;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .referencie h2 {
        margin-bottom:60px;
    }
}


.referencia {
    background-color: #fff;
    color: #101010;
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    border: 2px solid #a1a2a3;
    border-radius: 25px;
    position: relative;
    padding: 3em 1.5em 1em  1.5em;
}

@media only screen and (min-width : 375px) {
    .referencia {
        font-size: 17px;
    }
}


.referencia .img-circle {
    border: 2px solid #a1a2a3;
    max-height: 90px;
    position: absolute;
    top: -45px;
    left: 39%;
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
    .referencia .img-circle {
        left: 42%;
    }
}


.referencia .buble {
    position: absolute;
    bottom: -26px;
    right: 20%;
}
.name {
    position: absolute;
    bottom: -4em;
    right: 0;
    color: #45d0f4;
    font-size:14px;
    font-weight: 600;
    font-style: italic;
}

@media only screen and (min-width : 768px) {
    .name {
        bottom: -2.75em;
        right: 35%;
    }
}


.star-wrap {
    display: inline-block;

}

.referencie .carousel {
    min-height: 420px;
}

@media only screen and (min-width : 768px) {
    .referencie .carousel {
        min-height: 350px;
    }

}

.referencie .carousel .item > div {
    margin-top: 4em;
    margin-bottom: 4em;
}
.carousel-control {
    text-shadow: none;
}
.carousel-control.right, .carousel-control.left{
    background: none;
    background-image: none;
}

.carousel-control .glyphicon-chevron-right {
    color: #45d0f4;
}

.carousel-control .glyphicon-chevron-left{
    color: #45d0f4;
}


.referencie .carousel-control.right {
    display:none;
}
.referencie .carousel-control.left {
    display:none;
}


@media only screen and (min-width : 768px) {
    .referencie .carousel-control.right {
        display:block;
        right: -10%;
        -webkit-transition: right 500ms ease-out;
        -moz-transition: right 500ms ease-out;
        -o-transition: right 500ms ease-out;
        transition: right 500ms ease-out;
    }
    .referencie .carousel-control.left {
        display:block;
        left: -10%;
        -webkit-transition: left 500ms ease-out;
        -moz-transition: left 500ms ease-out;
        -o-transition: left 500ms ease-out;
        transition: left 500ms ease-out;
    }
}


/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .referencie .carousel-control.right {
        right: -230px;
        -webkit-transition: right 500ms ease-out;
        -moz-transition: right 500ms ease-out;
        -o-transition: right 500ms ease-out;
        transition: right 500ms ease-out;
    }
    .referencie .carousel-control.left {
        left: -230px;
        -webkit-transition: left 500ms ease-out;
        -moz-transition: left 500ms ease-out;
        -o-transition: left 500ms ease-out;
        transition: left 500ms ease-out;

    }

    .referencie:hover .carousel-control.right {
        right: -90px;
    }
    .referencie:hover .carousel-control.left {
        left: -90px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .referencie .carousel-control.right {
        right: -630px;
        -webkit-transition: right 500ms ease-out;
        -moz-transition: right 500ms ease-out;
        -o-transition: right 500ms ease-out;
        transition: right 500ms ease-out;
    }
    .referencie .carousel-control.left {
        left: -630px;
        -webkit-transition: left 500ms ease-out;
        -moz-transition: left 500ms ease-out;
        -o-transition: left 500ms ease-out;
        transition: left 500ms ease-out;

    }

    .referencie:hover .carousel-control.right {
        right: -130px;
    }
    .referencie:hover .carousel-control.left {
        left: -130px;
    }
}
.carousel-indicators ol {
    margin-bottom: -15px;
}

.carousel-indicators li {
    border-color: #acadae;
    background-color: #acadae;
}
.carousel-indicators .active {
    border-color: #45d0f4;
    background-color: #45d0f4;
}

.otazky {
    padding-top:3em;
    padding-bottom:2em;
}

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

.otazky .panel {
    box-shadow: none;
    border-bottom: 1px solid #e0e1e2;
    border-radius:0;
}

.visi {
    opacity:1;
    height: auto;
    visibility: visible;
    margin-left: 0;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.otazky .hidden-panel {
    opacity:0;
    height: 0;
    margin-left: -3em;
    visibility: hidden;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}



.otazky .panel:last-child {
    border-bottom: none;
}

.otazky .panel-title a:before {
    content: "";
    position: absolute;
    left: 0px;
    top: -1px;
    width: 50px;
    height: 50px;
    background-image: url("../img/quest.svg") ;
    background-repeat: no-repeat;
    background-position: left center ;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .otazky .panel-title a:before {
        left: 22px;
    }
}



.otazky .panel-title a, .otazky .panel-title a:hover {
    font-weight: 600;
    font-style: italic;
    color: #101010;
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: .8em 0;
    padding-left:3em;
    padding-right:2em;
    position: relative;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .otazky .panel-title a, .otazky .panel-title a:hover {
        padding-left:5em;
    }
}


.otazky .panel-heading.active .panel-title a {
    color: #45d0f4;
}

.otazky .panel-title a img {
    margin: 0 1.5em;
}

.otazky .panel-title a i {
    position: absolute;
    right:0;
    top:14px;
    margin: 0 1em;
    -webkit-transition: all 600ms ease-out;
    -moz-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
}

.otazky .panel-heading.active .panel-title a i {
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari */
    transform: rotate(180deg);
}

.otazky .panel-body {
    border-top:0px !important;
    font-size: 15px;
    font-weight:300;
    color: #101010;
    padding-bottom: 1.8em;
    padding-left: 4em;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .otazky .panel-body {
        padding-left: 6em;
    }
}



.payment {
    padding: 1em 0;
    background-color: #f2f3f4;
    text-align: center;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .payment {
        text-align: left;
    }
}


.payment p {
    color: #949596;
}

.payment .partners-logos {
    list-style: none;
    padding:0;
}
.payment .partners-logos li {
    display: inline-block;
    margin: 0 .4em;
}
.payment .partners-logos li:first-child{
    margin-left: 0;
}
.payment .partners-logos li img {
    max-height: 40px;
    width: auto;
}

.payment .partners-logos li svg {
    height:40px;
    max-width:100%;
}


.payment .banks {
    list-style: none;
    padding:0;
}
.payment .banks li {
    display: inline-block;
    margin: 0 .65em .7em;
}

.payment .banks li img {
    max-height: 25px;
    width: auto;
    max-width: 50px;
}

.payment .banks li svg {
    height:40px;
    max-width:100%;
}

.cards img{
    margin-top:0em;
    max-height:36px;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .payment .banks li img {
        max-height: 25px;
    }

    .payment .banks li svg {
        height:25px;
        max-width:100%;
    }

    .payment .partners-logos li img {
        max-height: 45px;
    }

    .payment .partners-logos li svg {
        height:45px;
        max-width:100%;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .payment .banks li img {
        max-height: 35px;
    }
    .payment .banks li svg {
        height:35px;
        max-width:100%;
    }

    .payment .partners-logos li img {
        max-height: 55px;
    }
    .payment .partners-logos li svg {
        height:55px;
        max-width:100%;
    }
}

/* Large Devices, Wide Screens
    @media only screen and (min-width : 1200px) {
        .payment .banks li img {
            max-height: 45px;
        }
        .cards img{
            margin-top:.8em;
        }
    }
    */


.banks-wrapper {
    position: absolute;
    left: 46px;
    right: 0;
    top: 27px;
    width: 80%;
}

@media only screen and (min-width : 768px) {
    .banks-wrapper {
        width: 100%;
    }
}




.footer {
    background: #0c99f4; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #0c99f4, #45d0f4); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #0c99f4, #45d0f4); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #0c99f4, #45d0f4); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #0c99f4 , #45d0f4); /* Standard syntax */
    padding-top: 1em;
}
.footer > div {
    padding-top: 2em;
    padding-bottom: 1em;
}
.footer strong {
    color: #101010;
    font-weight: 600;
    margin-bottom: .5em;
}
.footer p {
    color: #fff;
    font-weight: 300;
    margin-bottom: 0px;
    font-size: 17px;
}
.footer p.m_b_1 {
    margin-bottom: 1em;
}

.footer p.last {
    margin-top: 1em;
    color: #b4dafd;
    font-size: 15px;
}
.footer .legal {
    padding-top:1em;
}

.footer .legal a, .footer .legal a:hover{
    color: #fff;
    text-decoration: none;
    display: block;
}
.footer .legal a:hover{
    text-decoration: underline;
}


.footer .kontakt > p {
    margin-bottom:1em;
}
.footer .kontakt > p:first-child {
    margin-top:0em;
    margin-bottom:0em;
}


.classic-link {
    position: relative;
    font-size: 16px;
    margin-bottom: 1em !important;

    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.classic-link a, .classic-link a:hover {
    color: #fff;
    padding-left:0em;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.classic-link a:hover {
    padding-left:.5em;
}

.mobil, .fb, .email, .yt{
    position: relative;
    font-size: 16px;

    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.mobil a, .fb a, .email a,.yt a, .mobil a:hover , .fb a:hover, .email a:hover, .yt a:hover {
    color: #fff;
    padding-left:0em;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.mobil a:hover , .fb a:hover, .email a:hover,.yt a:hover {
    padding-left:.5em;

}
.mobil:before {
    color: #00547c;
    position: absolute;
    left: -30px;
    top: -5px;
    font-size: 26px;
    font-family: FontAwesome;
    content: "\f10b";
}
.fb:before {
    color: #00547c;
    position: absolute;
    left: -30px;
    top:0;
    font-family: FontAwesome;
    content: "\f230";
}

.email:before {
    color: #00547c;
    position: absolute;
    left: -30px;
    top:0;
    font-family: FontAwesome;
    content: "\f0e0";

}
.yt:before {
    color: #00547c;
    position: absolute;
    left: -30px;
    top:0;
    font-family: FontAwesome;
    content: "\f167";

}

.certifikaty .heureka{
    margin-top:2em;
    max-height: 90px;
    max-width: 90px;
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
    .certifikaty .heureka{
        margin-top:0;
        max-height: 117px;
        max-width: 117px;
    }
}

.certifikaty img {
    display: inline-block;
}






/* Global */


.input-info {
    margin-top:10px;
    font-weight: 300;
    font-size: 13px;
    color: #96aabb;
}
.input-info > span{
    text-decoration: none;
    color: #96aabb;

}

input {
    border:none !important;
    -webkit-appearance: none;
}

.input-spz {
    word-spacing: 4px;
    padding-left: 2.5em;
    background: url(../img/znacka.jpg), url(../img/znak.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left top , 115px 59%;
    background-size: 70px, 25px 25px;
    border: 1px solid #002653 !important;
}





p.small, span.small {
    font-size: 14px;
}

.line {
    width: 100%;
    display: block;
    height: 1px;
    margin: .5em 0;
    background-color: #e1e2e3;
    float: left;
    z-index: 9999;
}
.m_b_0{
    margin-bottom:0;
}

.m_b_3 {
    margin-bottom: 3em !important;
}

.fc_fff {
    color: #fff;
}

.m_l_05 {
    margin-left:.5em;
}

.m_l_1 {
    margin-left:1em;
}

.m_l_5 {
    margin-left:5px;
}

.m_r_05 {
    margin-right: .5em;
}

.m_r_1 {
    margin-right: 1em;
}

.m_t_1 {
    margin-top:1em;
}

.m_t_2 {
    margin-top:2em;
}

.m_tb_1{
    margin-top:1em;
    margin-bottom:1em;
}

.m_t_3_4 {
    margin-top:3.4em;
}

.m_t_min15 {
    margin-top:-1.5em;
}

.m_t_4{
    margin-top: 4em;
}

.m_t_5{
    margin-top:5em;
}
.p_lr_0{
    padding-left:0;
    padding-right:0;
}
.p_tb_1 {
    padding-top: 1em;
    padding-bottom: 1em;
}
.p_b_1 {
    padding-bottom: 1em;
}
.m_b_1 {
    margin-bottom: 1em;
}


.max_h_30 {
    max-height:30px;
}

a[href="#"] {
    cursor: default;
}

.btn-our {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    border:none;
    text-transform: uppercase;
    border-radius: 500px;
    box-sizing: border-box;
    line-height: initial;
}


.btn-big,.btn-big:hover, .btn-big:after  {
    padding: 1.6em 3em;
}

.btn-small,.btn-small:hover, .btn-small:after  {
    padding: 1em 3em;
}

.light_gray {
    color: #aaa;
}

.orange-link, .orange-link:hover {
    color: #ff9c00;
    font-weight: 600;
}
.orange-link:hover {
    text-decoration: underline;
}


.btn-orange {
    color: #002653;
    background: #ff9c00; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #ff9c00, #ffdf4b); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #ff9c00, #ffdf4b); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #ff9c00, #ffdf4b); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #ff9c00 , #ffdf4b); /* Standard syntax */
    position:relative;
}

.btn-orange:after {
    text-transform: uppercase;
    content: "" attr(data-btn-text) "";
    position: absolute;
    top: 0;
    left: 0;
    bottom:0;
    right:0;
    height: 100%;
    width: 100%;
    background: #e18a03;
    padding: 1.6em 3em;
    opacity: 0;
    border-radius: 500px;
    -webkit-transition: opacity 500ms ease-out;
    -moz-transition: opacity 500ms ease-out;
    -o-transition: opacity 500ms ease-out;
    transition: opacity 500ms ease-out;
}

.btn-orange:hover:after {
    opacity: 1;
}


.btn-orange-ghost,.btn-orange-ghost:hover  {
    color: #e18a03;
    border: 1px solid #e18a03;
    background: transparent;
    position:relative;
}

.btn-orange-ghost:hover  {
    color: #002653;
    background-color: #e18a03;
}



.btn-blue{
    color: #fff;
    background: #0c99f4;
    background: -webkit-linear-gradient(left, #0c99f4, #45d0f4);
    background: -o-linear-gradient(right, #0c99f4, #45d0f4);
    background: -moz-linear-gradient(right, #0c99f4, #45d0f4);
    background: linear-gradient(to right, #0c99f4 , #45d0f4);
    position:relative;
}


.btn-blue:after{
    text-transform: uppercase;
    content: "" attr(data-btn-text) "";
    position: absolute;
    top: 0;
    left: 0;
    bottom:0;
    right:0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 500px;
    -webkit-transition: opacity 500ms ease-out;
    -moz-transition: opacity 500ms ease-out;
    -o-transition: opacity 500ms ease-out;
    transition: opacity 500ms ease-out;


    background: #006ab8;
    background: -webkit-linear-gradient(left, #006ab8, #006ab8); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #006ab8, #006ab8); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #006ab8, #006ab8); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #006ab8 , #006ab8); /* Standard syntax */
}

.btn-blue:hover:after {
    opacity: 1;
}

.btn-ghost-white, .btn-ghost-white:hover {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    padding: .5em 2em;
    border-radius: 500px;
}
.btn-ghost-white:hover {
    color: #0c99f4;
    border: 1px solid #fff;
    background: #fff;
    padding: .5em 2em;
}
.btn-ghost-blue, .btn-ghost-blue:hover {
    color: #0c99f4;
    border: 1px solid #0c99f4;
    background: transparent;
    padding: .5em 2em;
    border-radius: 500px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
.btn-ghost-blue:hover {
    color: #fff;
    border: 1px solid #0c99f4;
    background: #0c99f4;
    padding: .5em 2em;
}
.btn-ghost-blue:hover a {
    color: #fff;
}

.btn-ghost-blue a {
    display: block;
    text-decoration: none;
}

.btn-ghost-blue img ~ span, .btn-ghost-blue img ~ i{
    margin-left:10px;
}
.btn-ghost-blue img {
    max-height: 20px;
    margin-top:-4px;
}


.cookies {
    display:none;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    color: #fff;
    background: #0c99f4;
    background: -webkit-linear-gradient(left, #0c99f4, #45d0f4);
    background: -o-linear-gradient(right, #0c99f4, #45d0f4);
    background: -moz-linear-gradient(right, #0c99f4, #45d0f4);
    background: linear-gradient(to right, #0c99f4 , #45d0f4);
    z-index: 99999;
    padding: 1em 0;
    opacity: .75;
}
.cookies .btn-ghost-white, .cookies p ,  .cookies a.viac{
    display: inline-block;
}
@media only screen and (min-width : 1200px) {
    .cookies .btn-ghost-white{
        margin-left: 2em;
    }
}


.cookies p {
    font-weight: 600;
}

.cookies p, .cookies a.viac  {
    margin-top:.4em;
}
.cookies a,.cookies a:hover {
    text-decoration: underline;
    color: #fff;
}

.cookies a.viac, .cookies a.viac:hover {
    float:right;
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}



/* Overenie */
.box-wrapper {
    padding: 1em;
    border: 1px solid #e1e2e3;
    background-color: #f1f2f4;
}

.box-wrapper > div {
    padding:0;
    margin-top:.5em;
}
.box-wrapper > div > div {
    margin-top: .5em;
}
.box-wrapper strong {
    color: #101010;
    font-weight: 600;
    font-size: 15px;
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .box-wrapper strong {
        font-size: 16px;
    }
}

.box-wrapper .box-info p {
    margin-top: 2.5em;
    text-align: center;
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .box-wrapper .box-info p {
        margin-top: 3.2em;
    }
}

.box-wrapper .box-info p strong {
    color: #ff9e02;
}
.box {
    background: #fff;
    color: #101010;
    font-weight: 300;
    border: 1px solid #e1e2e4;
    width: 100%;
    display: block;
    font-weight: 300;
    font-size: 15px;
    padding: .7em;
    margin-top: .5em;
    overflow: hidden;
}

.box.blocked {
    border:1px solid #c9cacb;
    background-color: #dcddde;
    color: #101010;
    text-align: center;
    position:relative;
    overflow: hidden;
    padding: .58em;
    -webkit-transition: all  200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.box.blocked i {
    font-size:1.5em;
}
.box.blocked:hover {
    color: #ff9e02;
}
/*
    .box.blocked:after {
        content:"Platené";
        position: absolute;
        left:0;
        right:0;
        top:0;
        bottom:0;
        visibility: hidden;
        opacity:0;
        -webkit-transition: all  200ms ease-out;
        -moz-transition: all 200ms ease-out;
        -o-transition: all 200ms ease-out;
        transition: all 200ms ease-out;
        background-color: #dcddde;
        border:1px solid #c9cacb;
        color: #ffdf4b;
        font-weight: 600;
    }

    .box.blocked:hover:after {
        visibility: visible;
        opacity:1;
        padding-top:.8em;
    }
    */
.results {
    padding-top: 1em;
}

.panel-group .panel.result-panel {
    box-shadow: none;
    border-radius:0 !important;
    border: 1px solid #e1e2e3;
}

.result-panel .panel-heading {
    padding:0;
    background-color: #dcddde;
    border-radius: 0;
}

.result-panel .panel-title a, .result-panel .panel-title a:hover {
    display: block;
    padding: 1.8em 1em;
    background-color: #f1f2f4;
    font-size: 18px;
    color: #101010;
    font-weight: 300;
    text-decoration: none;
}


.result-panel .panel-title a span.result-name {
    display: block;
    margin-bottom:1em;
    text-align: center;
    position:relative;
}

.result-panel .panel-title a span.viac {
    font-size: 14px;
    margin-left:35px;
    text-decoration: underline;
    float:right;
}

.result-panel .panel-title a strong {
    color: #ff9e02;
    float:left;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 2em;
    line-height: .85em;
}

@media (min-width: 768px) {
    .result-panel .panel-title a span.result-name {
        display: initial;
        margin-bottom:0;
        text-align: left;
    }
    .result-panel .panel-title a span.viac {
        float:none;
    }
    .result-panel .panel-title a strong {
        float:right;
    }
}

.availability small {
    color: #46a1ed;
    font-size: 65% !important;
}

.availability.no {
    color: #ff4200 !important;
}



.result-panel .panel-title a .box {
    max-width: 180px;
    float:right;
    margin-top: -.9em;
}

.result-panel .panel-body {
    border-top:0px !important;
    text-align: center;
    font-weight: 400;
    color: #101010;
    font-size: 15px;
    background-color: #f1f2f4;
}
.result-panel .panel-title a .fa-angle-down {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.result-panel .active .panel-title a .fa-angle-down {
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari */
    transform: rotate(180deg);
}

.result-panel .panel-title a input {
    max-width: 180px;
    float:left;
    margin-top:-.8em;

    border: 1px solid #e1e2e3 !important;
    color: #aaa;
    padding: .5em 1em;
    margin-right: 2em;
    font-size: .9em;
    line-height: 1.3em;
}





.result-panel .panel-title a button {
    width: 180px;
    float:right;
    margin-top: -1.5em;
}

.result-panel .panel-title a #form-actual button {
    margin-top: -3em;
}
.result-panel .panel-title a #form-actual input {

    display: block;
    float: none;
    margin: 0 auto;
    margin-top: -3em;
}

.result-panel .panel-title a #form-actual .btn-big {
    padding-top: 1em !important;
    padding-bottom: 1em !important;

    display: block;
    float: none;
    margin-top: 1em;
    margin-bottom: 1em;
    top: 50px;
}

.result-panel .panel-title a #form-actual .btn-big:after {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
}

.result-panel .panel-title a #form-actual p {
    font-size:13px;margin:0;
}


@media (min-width: 768px) {
    .result-panel .panel-title a input {
        float:right;
    }
    .result-panel .panel-title a #form-actual input {
        margin-top: -1.85em;
        display: inline-block;
        float: right;
        margin-right: 2em;
    }
    .result-panel .panel-title a #form-actual .btn-big {
        padding-top: 1.6em !important;
        padding-bottom: 1.6em !important;
        margin-top: -3em;

        display: inline-block;
        float: right;

        top: 0px;

    }

    .result-panel .panel-title a #form-actual .btn-big:after {
        padding: 1.6em 3em !important;
    }

}



.result-panel .panel-title a #after-form-actual .box {
    margin-top: -2.1em;
}

.result-panel .panel-title a #after-form-actual .availability {
    margin-top: 0em;
}
@media (min-width: 768px) {
    .result-panel .panel-title a #after-form-actual .availability {
        margin-top: -1em;
    }
}


.km_count,.km_dates,.vin_count {
    font-size: .8em;
    color: #ff9e02;
    font-weight: 600;
}

.km_dates {
    font-size: .7em;
    position: absolute;
    top: 23px;
    left:0;
}


#after-form-actual, #form-actual {
    display:none;
    -webkit-transition: opacity 300ms ease-out;
    -moz-transition: opacity 300ms ease-out;
    -o-transition: opacity 300ms ease-out;
    transition: opacity 300ms ease-out;
}
#after-form-actual.in, #form-actual.in {
    display:block;
    margin: 1em 0;
}

@media (min-width: 768px) {
    #after-form-actual.in, #form-actual.in {
        margin: initial;
    }
}




#after-form-actual p {
    display:none;
    font-size: 14px;
    color: #c8c8c8;
    text-align: right;
}

#after-form-actual #edit-km {
    text-decoration:underline;
    cursor: pointer;
}

#after-form-actual.in p {
    display: inline-block;
    float: right;
    margin-top: -.5em;
    margin-right: 2em;
}
@media (min-width: 768px) {
    #after-form-actual.in p {
        margin-top: -1.6em;
    }
}






/*
    * Panel right
    *
    */

.result-panel .panel-title a .panel-title-right .box {
    margin-top: -2.1em;
}

.result-panel .panel-title a .panel-title-right .availability {
    margin-top: 0em;
}
@media (min-width: 768px) {
    .result-panel .panel-title a .panel-title-right .availability {
        margin-top: -1em;
    }
}

.panel-title-right-first >  .btn-our {
    margin-top:-2.9em !important;
}

.panel-title-right, .panel-title-right-first {
    display:none;
    -webkit-transition: opacity 300ms ease-out;
    -moz-transition: opacity 300ms ease-out;
    -o-transition: opacity 300ms ease-out;
    transition: opacity 300ms ease-out;
}
.panel-title-right.in, .panel-title-right-first.in {
    display:block;
    margin: 2.5em 0;
}

@media (min-width: 768px) {
    .panel-title-right.in, .panel-title-right-first.in {
        margin: initial;
    }
}

.panel-title-right p {
    display:none;
    font-size: 14px;
    color: #c8c8c8;
    text-align: right;
}

.panel-title-right.in p {
    display: inline-block;
    float: right;
    margin-top: -.5em;
    margin-right: 2em;
}
@media (min-width: 768px) {
    .panel-title-right.in p {
        margin-top: -1.6em;
    }
}


.small_strong {
    font-weight: 400;
    font-size: 14px;
    color: #c8c8c8;
    text-decoration: underline;
    margin-left:1em;
}



.panel-title-right-first .btn-big {
    padding-top: 1em !important;
    padding-bottom: 1em !important;

    display: block;
    float: none !important;
    margin-top: 1em;
    margin-bottom: 1em;
    top: 50px;
}

.panel-title-right-first .btn-big:after {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
}


@media (min-width: 768px) {

    .panel-title-right-first .btn-big {
        padding-top: 1.6em !important;
        padding-bottom: 1.6em !important;
        margin-top: -3em;

        display: inline-block;
        float: right !important;

        top: 0px;

    }

    .panel-title-right-first .btn-big:after {
        padding: 1.6em 3em !important;
    }

}


#ex_info {
    float: none;
    display: block;
    text-align: center;
    margin-left: 0px;
}
@media (min-width: 768px) {
    #ex_info {
        float: none;
        display: initial;
        text-align: left;
        margin-left: 35px;
    }
}



/*
    *
    * Modal
    *
    */

.modal-content {
    border-radius: 0px !important;
    border: 1px solid #e1e2e3;
}




.our-ul {
    text-align: center;
    list-style: none;
    margin:0;
    padding:0;
}

.our-ul li {
    display:inline-block;
    margin: 5px;
    padding: 5px;
}

.flags img {
    margin: 5px auto;
    height: 20px;
    width: auto;
}
@media (min-width: 768px) {
    .flags img {
        height: 30px;
    }
}


.lease img {
    margin: 5px auto;
    height: 35px;
    width: auto;
}
@media (min-width: 768px) {
    .lease img {
        height: 60px;
    }
}

.kilometres img {
    margin: 5px auto;
    height: 35px;
    width: auto;
}
@media (min-width: 768px) {
    .kilometres img {
        height: 60px;
    }
}



.zobrazit-viac {
    text-decoration:underline;
    font-weight: 400;
    color: #101010;
}
#collapse_viac {
    padding-top:20px;
}
#collapse_viac p {
    font-weight: 300;
}

.notary {
    text-align: center;
    list-style: none;
    margin:0;
    padding:0;
}
.notary li {
    display:inline-block;
    margin: 5px;
    padding: 5px;
}

.notary img {
    margin: 5px auto;
    height: 20px;
    width: auto;
}
@media (min-width: 768px) {
    .notary img {
        height: 60px;
    }
}

#eobjednavka {
    padding: 1em 0em;
}
#eobjednavka p {
    font-size: 14px;
}

.inline-new-line {
    display: inline-block;
    margin-left:2em;
}

.custom-radio {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    min-height: 40px;
    padding-left: 0em;
    padding-right: 0em;
}

@media only screen and (min-width : 480px) {
    .custom-radio {
        padding-left: 6em;
        padding-right: 4em;
    }
}

@media only screen and (min-width : 768px) {
    .registracia-platba .custom-radio{
        margin-left: 6.3em;
    }
}
@media only screen and (min-width : 992px) {
    .registracia-platba .custom-radio{
        margin-left: 7.25em;
    }
}
@media only screen and (min-width : 1200px) {
    .registracia-platba .custom-radio{
        margin-left: 6.8em;
    }
}

.pm {
    margin-bottom: 2.8em !important;
}

.pm-plus {
    margin-bottom: 3.8em !important;
}


.custom-radio input[type=radio]{
    position: absolute;
    visibility: hidden;
}

.custom-radio label{
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1em;
    padding: 0px 0px 0px 55px;
    margin: 10px auto;
    height: 30px;
    z-index: 9;
    cursor: pointer;
    color: #101010;
    -webkit-transition: all 0.25s linear;
}

/* iPhones 6-7 */
@media only screen and (min-width : 375px) {
    .custom-radio label{
        font-size: 1.2em;
        margin: 9px auto;
    }
}


@media only screen and (min-width : 1200px) {
    .custom-radio label{
        font-size: 1.4em;
        margin: 7px auto;
    }
}

.custom-radio label > strong {
    font-size: 1.2em;
    margin-top: -.2em;
    margin-right: 1em;
    font-weight:600;
    position: relative;
}

.custom-radio label > strong > .discount {
    font-size: 8px;
    font-weight: 400;
    position: absolute;
    bottom: -10px;
    right: 0px;
}

/* iPhones 6-7 */
@media only screen and (min-width : 375px) {
    .custom-radio label > strong > .discount {
        font-size: 8px;
    }
}
@media only screen and (min-width : 1200px) {
    .custom-radio label > strong > .discount {
        font-size: 10px;
    }
}

.custom-radio label > strong > .discount.new {
    font-size: 13px !important;
    color: #aaa !important;
    font-weight: 400;
    position: absolute;
    bottom: -14px !important;
    right: 0px;
    width: 120px;
    text-align: right;
}



.custom-radio .check{
    display: block;
    position: absolute;
    border: 1px solid #101010;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 10px;
    left: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
    .custom-radio .check{
        left: 100px;
    }
}

.custom-radio:hover .check {
    border: 1px solid #ff9e02;
}

.custom-radio .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 10px;
    width: 10px;
    top: 4px;
    left: 4px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
    border: 1px solid #ff9e02;
}

input[type=radio]:checked ~ .check::before{
    background: #ff9e02;
}

input[type=radio]:checked ~ label{
    color: #ff9e02;
}

input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label {

}

input[type="checkbox"] + span {
    display:inline-block;
    width:20px;
    height:20px;
    border: 1px solid #5d5e60;
    border-radius: 4px;
    margin:-2px 10px 0 0;
    vertical-align:middle;
    background:#fff;
    cursor:pointer;
    position:relative;
}

input[type="checkbox"]:checked + span:after {
    position:absolute;
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size:13px;
    color:#fff;
    padding-left:5px;
    padding-top:3px;
    top:-2px;
    bottom:-2px;
    left:-2px;
    right:-2px;
    border-radius: 4px;
    background:#ff9e02;
}

.prevody {
    display:none;
}
@media only screen and (min-width : 768px) {
    .prevody {
        width: 120%;
        margin-left: -10%;
    }

    .prevody h3 {
        margin-left:4.3em;
    }
}


.custom-radio.under {
    display: inline;
    width: initial;
    padding:0;
    margin:0;
    min-height: 100px;
    min-width: 60px;
    margin: 0 5px;
    border:1px solid transparent;
}

.custom-radio.under .check {
    left: 35%;
}

.custom-radio.under label {
    padding:0;
    padding-top: 45px;
    text-align:center;
}

.custom-radio.under label .label-logo {
    max-width: 90px;
    max-height: 40px;
    margin:0;
}

.custom-radio.under.active-radio {
    border:1px solid #e1e2e3;
}


.custom-radio.under-img label .label-logo {
    max-width: 50px;
    max-height: 40px;
    margin:0 5px;
}

@media only screen and (min-width : 480px) {
    .custom-radio.under-img label .label-logo {
        max-width: 60px;
    }
}

@media only screen and (min-width : 768px) {
    .custom-radio.under-img label .label-logo {
        max-width: 75px;
    }
}




.label-logo {
    display:inline-block;
    max-width:40px;
    margin:0 5px;
}
@media only screen and (min-width : 768px) {
    .label-logo {
        margin:0 10px;
        max-width:40px;
    }
}
.label-logo-paypal {
    max-width: 60px !important;
}
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.select{
    color: #000000;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
    min-width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0em 2em 0 .6em;
    text-indent: 0.01px;
    text-overflow: '';


}

.select-style {
    line-height: 32px;
    border: none;
    border-radius: 4px;
    background: #fff;
    width: 100%;
}


.select-style:before{
    content: '';
    position: absolute;
    height: 10px;
    top: 50%;
    right: 1px;
    margin-top: -15px;
    padding: 30px 130px 10px 0;
    pointer-events: none;
    background-image: url("../img/caret.png");
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: 74% 40%;
    z-index: 999;
}



.blue-gradient {
    background: -webkit-linear-gradient(left, #0c99f4, #45d0f4);
    background: -o-linear-gradient(right, #0c99f4, #45d0f4);
    background: -moz-linear-gradient(right, #0c99f4, #45d0f4);
    background: linear-gradient(to right, #0c99f4 , #45d0f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.black-link, .black-link:hover {
    color: #101010;
    font-size:15px;
    font-weight: 400;
    margin: 1.5em auto;
    text-align: center;
    text-decoration: underline;
}

.black-link:hover {
    cursor: pointer;
}
.border-right {
    margin-top: 2em;
}

.border-right:after {
    position:absolute;
    top:0;
    left:10%;
    height:1px;
    width:80%;


    background-color: #cbcccd;
    content: "";
}


/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .left-col.border-right:after{
        width: 1px;
        height:80%;
        right:0;
        top:20%;
        left: initial;
    }
    .border-right {
        margin-top: initial;
    }
}



.bottom-ecomerce {
    padding-top: 2em;
    padding-bottom: 2em;
}
/*
    .bottom-ecomerce .left-col p {
        padding: .5em 1em;
        font-size: 1em;
        margin:0;
        padding-top:0.3em;
        text-align: center;
    }
    */

/* Medium Devices, Desktops
    @media only screen and (min-width : 992px) {
        .bottom-ecomerce .left-col p {
            text-align: left;
        }
    }*/

.bottom-ecomerce .left-col > img {
    max-height: 230px;
    margin: 0 auto;
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .bottom-ecomerce .left-col > img {
        margin: 0;
    }
}

.partners {
    list-style:none;
    padding:0;
    margin:0;
    text-align:center;
}
.partners > li {
    display: inline-block;
    text-align: center;
    width: 45%;
}
.partners > li > img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
}

.registracia-platba {
    padding-bottom: 1em;
}
.registracia-platba h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding:0;
}

.code, .select-product {
    display: none;
}

.summary {
    margin-top:3em;
    padding: 1em;
    border: 1px solid #e1e2e3;
    background-color: #f1f2f4;
}

.summary p {
    color: #000000;
}

.tab-wrap ul {
    display:block;
    list-style: none;
    margin:2em auto;
    padding:0;
    text-align: center;
    background-color: #fff;
    margin-bottom:2em;

}

.tab-wrap > ul > li {
    display: inline-block;
    background-color: transparent;
}

.tab-wrap > ul > li > a,.tab-wrap > ul > li > a:hover {
    display: block;
    text-align: center;
    text-decoration:none;
    padding: .5em 1em;
    color: #101010;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #ecedee;
    position:relative;
}
@media only screen and (min-width : 480px) {
    .tab-wrap > ul > li > a,.tab-wrap > ul > li > a:hover {
        padding: .5em 1.5em;
        font-size: 16px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
    .tab-wrap > ul > li > a,.tab-wrap > ul > li > a:hover {
        padding: .5em 1.8em;
        font-size: 17px;
    }
}
.tab-wrap > ul > li > a.active-tab {
    color: #45d0f4;
    border-bottom: 3px solid #45d0f4;
}

.tab-content {
    display:none;
}

.form-style .form-group label {
    font-size: 11px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #101010;
}


/* iPhones 6-7 */
@media only screen and (min-width : 375px) {
    .form-style .form-group label {
        font-size: 13px;
    }
}
@media only screen and (min-width : 480px) {
    .form-style .form-group label {
        font-size: 15px;
    }
}
@media only screen and (min-width : 768px) {
    .form-style .form-group label {
        font-size: 17px;
    }
}


.form-style .form-group .control-label{
    margin-top: .1em
}
.form-style .form-group .form-control {
    border: 1px solid #e1e2e4 !important;
    background-color: #f1f2f4;
    padding: .45em 1em;
    color:#101010;
    height: initial;
    font-weight: 300;
    font-size: 17px;
    border-radius: 1px;
    box-shadow: none !important;
}


.form-style .form-group .checkbox label {
    font-weight: 300;
    padding-left:0;
}

.err {
    color: orangered !important;
}

.err-help {
    color: orangered !important;
}

.form-style .form-group .err + div > .form-control {
    border: 1px solid orangered !important;
}





.form-style h3 {
    font-size: 17px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #101010;
}

.pravnicka-osoba,.zabudnute-heslo {
    display:none;
}

.content {
    height: auto !important;
    height: 100%;
    min-height: 100%;
}

.nove-heslo {
    padding-top: 2em;
    padding-bottom: 4em;
}


.nove-heslo h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Report */
.reports {
    min-height: 500px;
}
.reports h1 {
    margin: 1em 0;
    text-align: center;
}
.report-box {
    border: 1px solid #e1e2e4;
    background-color: #f1f2f4;
    padding: 1em 1.5em;
}
.report-box + .report-box {
    margin-top: 2em;
}

.report-box h4 {
    padding-left:.3em;
    margin-bottom: 0;
}

.report-box > div {
    padding-top: 0em;
    padding-bottom:1em;
}

.report-box > div strong {
    color: #101010;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 15px;
}

.report-box > div:last-child {
    padding-top: 1em;
    padding-bottom: 0;
}
.report-pdf > a, .report-pdf > a:hover {
    display: inline-block;
    text-decoration: none;
}


.steps {
    margin-bottom: 2em;
}

.steps > div {
    border-top: 1px solid #e6e7e8;
    border-bottom: 1px solid #e6e7e8;
}
.step {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    position:relative;
    min-height:62px;
}
.step a, .step a:hover {
    color: #101010;
    text-decoration: none;
}

.step a span.number {
    font-size: 20px;
    font-weight: 600;
    -webkit-transition: all  200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.step.past a, .step.actual a {
    color: #fff;
    text-decoration:none;
}
.step.past a span.number,.step.actual a span.number{
    text-decoration:underline;
}

.step {
    display: inline-block;
    background-color: #f1f2f4;
    text-align: right;
}

@media only screen and (min-width : 480px) {
    .step {
        text-align: center;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .step {
        text-align: right;
        font-size:12px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .step {
        text-align: center;
        font-size:15px;
    }
}

.step.past {
    background-color: #05b9f2;
}
.step.actual {
    background-color: #05b9f2;
}

.col-xs-special {
    width: 20%; /* 100% / 5 columns = 20% */
    float: left; /* Ensure columns sit side-by-side */
    box-sizing: border-box; /* include padding and border in the width/height */
}

.arrow{
    position: absolute;
    z-index: 999;
    top: 0;
    right: -31px;
    width: 0;
    height: 0;
    border-top: 31px solid transparent;
    border-bottom: 31px solid transparent;
}
.arrow > div {
    width: 0;
    position: relative;
    top: -31px;
    left: -32px;
    border-top: 31px solid transparent;
    border-bottom: 31px solid transparent;
}

.step.past > .arrow{
    border-left: 31px solid white;
}
.step.past > .arrow > div {
    border-left: 31px solid #05b9f2;
}
.step.actual .arrow {
    border-left: 31px solid #05b9f2;
}
.step.actual > .arrow > div {
    border-left: 31px solid #05b9f2;
}

.step.next .arrow {
    border-left: 31px solid #d9dadc;
}
.step.next > .arrow > div {
    border-left: 31px solid #f1f2f4;
}

.step.last.actual .arrow {
    display: none;
}


.min-height-wrapper {
    height:70vh;
    min-height:70vh;
}

/* Clanky */
.background-kradez {
    background-image:url('../img/clanky/car-theft.jpg');
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    height: 400px;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}


.background-vyroba {
    background-image:url('../img/clanky/vyroba.jpg');
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    height: 400px;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}

.background-km {
    background-image:url('../img/clanky/kilometre.JPG');
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    height: 400px;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}

.background-leasing {
    background-image:url('../img/clanky/leasing.jpg');
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    height: 400px;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}

.background-exekucia {
    background-image:url('../img/clanky/exekucia.jpg');
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    height: 400px;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}

.background {
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    height: 400px;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}



.clanok-header {
    background-color: #fff;
    margin-top: -200px;
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.18);
    text-align: center;
    padding: 2em;
}

.clanok-header h1 {
    margin-top: 1em;
}

.clanok-header h2 {
    font-size: 16px;
    margin-bottom:2em;
    margin-top:2em;
}
.clanok-header p {
    text-align: left;
    margin-bottom:0;
}
.clanok-header p a, .clanok-header p a:hover  {
    color: #0c99f4;
    text-decoration: none;
}
.clanok-header p a:hover  {
    text-decoration: underline;
}

.clanok-body {
    padding-top: 4em;
    padding-bottom: 3em;
    max-width: 800px;
    margin: 0 auto;
}


.clanok-body h2 {
    margin-top: 2em;
    margin-bottom:2em;
}

#ex_edit, #ex_remove {
    cursor: pointer;
}

.clanok-body h3 {
    color: #0c99f4;
    font-weight: 300;
    margin-bottom:2em;
}

.clanok-body p {
    color: #101010;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .02em;
    margin-bottom:2em;
}


.clanok-body.no-article h2 {
    margin-top: 1em;
    margin-bottom:1em;
    padding:0;
}
.clanok-body.no-article h3 {
    margin-bottom:1em;
}

.clanok-body ol {
    list-style-type: decimal;
}
.clanok-body ol li {
    color: #101010;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .02em;
}

.clanok-body ol ol {
    list-style-type: lower-alpha;
}

.clanok-body ul {
    list-style-type: decimal;
}
.clanok-body ul li {
    color: #101010;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .02em;
}


#nav-icon2 {
    position: relative;
    margin-top: .7em;
}

#nav-icon2 .bubble-orange {
    position:absolute;
    bottom:17px;
    right:-3px;
    width: 12px;
    height:12px;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 0px 1px rgba(255,255,255,1);
    box-shadow: 0px 0px 0px 1px rgba(255,255,255,1);
    border-radius:50%;
    background-color: #ff9e02;
    transform:scale(0,0);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /*
        -webkit-transition-delay: .5s;
        transition-delay: .5s;
        */
}

#nav-icon2.open .bubble-orange {
    transform:scale(1,1);
}



/* Small Devices, Tablets
    @media only screen and (max-width : 768px) {
        #nav-icon2 img {
            -webkit-transform: rotateY(0deg);
            -moz-transform: rotateY(0deg);
            -o-transform: rotateY(0deg);
            transform: rotateY(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
        }

        #nav-icon2.open img {
            -webkit-transform: rotateY(180deg);
            -moz-transform: rotateY(180deg);
            -o-transform: rotateY(180deg);
            transform: rotateY(180deg);

            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
        }

    }
    */

/* Icon 1 */

#nav-icon1 {
    display:block;
    float:left;
    width: 35px;
    height: 35px;
    position: relative;
    margin-top: 1.5em;
    margin-left:1.5em;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #3eb9ec;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;

}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}

#nav-icon1 span:nth-child(2) {
    top: 10px;
}

#nav-icon1 span:nth-child(3) {
    top: 20px;
}

#nav-icon1.open span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

#nav-icon1.open span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}


/* Tooltip container */
.tooltipp {
    position: relative;
    display: inline-block;
    cursor:help;
}

/* Tooltip text */
.tooltipp .tooltipptext {
    visibility: hidden;
    width: 200px;
    top: 100%;
    left: 50%;
    margin-left: -100px; /* Use half of the width (120/2 = 60), to center the tooltip */
    background-color: #45d0f4;
    color: #fff;
    text-align: center;
    padding: .5em;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipp:hover .tooltipptext {
    visibility: visible;
    font-size: 12px;
    color: #fff;
}
.tooltipp .tooltipptext p {
    margin-bottom:0px;
}

.tooltipptext ul {
    list-style: none;
    padding-left:10px;
}



/* BLOG */
.blog {
    padding-bottom: 5em;
    overflow: hidden;
}

.blog h1 {
    margin: 1em 0;
}

.blog h1 {
    color: #101010;
    font-size: 24px;
    font-weight: 600;
    padding-left: 1em;
}
.blog h1 > span {
    position: relative;
}

.blog h1 > span:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1em;
    bottom: 0;
    border-left: 3px solid #00c1f8;
}

.blog article {
    background-color: transparent;
    position:relative;
    min-height: 400px;
    padding: 0 15px;
}

.blog article .inner-wrap {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    background-color: #fff;
    border-bottom: 2px solid transparent !important;
}

@media only screen and (min-width : 768px) {
    .blog article:hover .inner-wrap {
        position: absolute;
        top:0;
        left:0;
        bottom:0;
        right:0;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.24);
        border-bottom: 2px solid #00b4f7 !important;
        -webkit-transition: all 300ms ease-in;
        -ms-transition: all 300ms ease-in;
        -moz-transition: all 300ms ease-in;
        transition: all 300ms ease-in;
        -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
        -moz-transform: scale(1.02);
        transform: scale(1.02);
        z-index: 9999;
    }
}


.blog article h3 {
    font-size:20px;
    padding: 0 20px;
    font-weight:600;
    color: #00b6f7;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
}

.blog article p.article-category {
    color: #00b6f7;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
}

.blog article p.article-text {
    padding: 1em;
    font-size: .9em;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
}
.blog article a {
    color: inherit;
}

.blog article button {
    visibility: hidden;
    opacity:0;
    -webkit-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}

@media only screen and (min-width : 768px) {
    .blog article:hover button {
        visibility: visible;
        opacity:1;
    }
}




.blog article button.btn-orange {
    padding: 1em 3em;
}
.blog article button.btn-orange:after {
    padding: 1em 3em;
}



.blog-right .search {
    position: relative;
}
.blog-right .search input {
    max-width: 100%;
    width:100%;
    border: 2px solid #e7e8ea !important;
    background-color: #f1f2f4;
    color: #919293;
    padding: .4em 1em;
    font-size: 1.2em;
    line-height: 1.6em;
    position: relative;
    padding-left: 2em;
}
.blog-right .search > .input-wrap {
    position:relative;
}
.blog-right .search .input-wrap:before {
    content: "\f002";
    font-family: FontAwesome;
    left: 26px;
    color: #000000;
    font-size: 1.2em;
    position: absolute;
    top: 10px;
    z-index:99999;
}

.blog-right h2 {
    padding:0;
    margin: 1.5em 0em;
    color: #45d0f4;
    font-size: 18px;
    font-weight: 300;
}

.blog-right h2 p {
    font-size:14px;
}

.blog-right h2 i{
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.blog-right h2.activator i{
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari */
    transform: rotate(180deg);
}


.blog-right .category ul{
    list-style: none;
    padding:0;
    margin:0;
}

.blog-right .category ul li {
    display: block;
    border-top: 1px solid #ecedee;
}

.blog-right .category ul li:last-child {
    border-bottom: 1px solid #ecedee;
}

.blog-right .category ul li a {
    color: #838586;
    font-weight: 500;
    font-style: italic;
    letter-spacing: .03em;
    padding: .7em 0;
    display: block;
    text-decoration: none;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.blog-right .category ul li a:hover {
    color: #000;
    cursor: pointer;
}

.blog-right .category ul li.active a {
    color: #000;
}

.blog-category, .blog-category:hover {
    text-decoration: none;
    cursor:default;
}

.blog-category-items {
    display:none;
    margin-bottom:2em;

}
@media only screen and (min-width : 768px) {
    .blog-category-items {
        display:block;
    }
}




.pagin {
    list-style: none;
    margin:0;
    margin-top:4em;
    margin-bottom:2em;
    padding: 0;
    text-align: center;
}
.pagin > li {
    display: inline-block;
    margin: 0 .5em;
    color: #7e7f80;
    font-weight:600;
    line-height:22px;
    vertical-align: middle;
}
.pagin > li i {
    font-size: 28px;
    position: absolute;
    top:5px;
    left:0px;
}

.pagin > li i.left {
    top: -6px;
    left: -15px;
}
.pagin > li i.right {
    top: -6px;
    right: -65px;
}
.pagin > li > p {
    margin:0;
}
.pagin > li > a, .pagin > li > a:hover {
    position:relative;
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.pagin > li > p a, .pagin > li > p a:hover {
    position:relative;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    padding: 0 .15em;
}

.pagin > li > p a.disabled {
    color: #7e7f80;
    text-decoration: underline;
    cursor: default;
}

.pagin > li > a.disabled {
    color: #7e7f80;
    cursor: default;
}



.review_form {
    margin-top:8em;
    background-color: #f1f2f4;
    border:1px solid #e8e9eb;
}

.review_form input, .review_form textarea {
    background-color:#fff !important;
    resize: none;
}
.rating-label {
    color: #000;
    font-size:1.2em;
    display:inline;
    position:relative;
    padding: 0 5em;
}
.rating-label span {
    font-weight:500;
    position:absolute;
    top: -8px;
    left:0;
}

.rating-inline {
    display:inline;
}

.rating-stars {
    unicode-bidi: bidi-override;
    direction: rtl;
}




.rating-stars > a {
    text-decoration:none;
    font-size: 1em;
    display: inline-block;
    position: relative;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    cursor: default;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .rating-stars > a {
        font-size: 1.6em;
    }
}


.rating-stars.big > a {
    font-size: 2.4em;
}

.rating-stars  > a:before {
    content: "\f006";
    padding-right: 5px;
    color: #777777;
}

.rating-stars.allow  > a:hover:before, .rating-stars.allow  > a:hover ~ a:before {
    content: "\f005";
    color: #e3cf7a;
    text-decoration:none;
    cursor: default;
}

.rating-stars.allow > a.active-star:hover:before, .rating-stars.allow  > a.active-star:before{
    content: "\f005";
    color: #e3cf7a;
    text-decoration:none;
    cursor: default;
}
.rating-stars > a.active-star:before{
    content: "\f005";
    color: #e3cf7a;
    text-decoration:none;
    cursor: default;
}

.rating-stars.allow > a.full:hover:before, .rating-stars.allow  > a.full:before{
    content: "\f005";
    color: #e3cf7a;
    text-decoration:none;
    cursor: default;
}
.rating-stars > a.full:before{
    content: "\f005";
    color: #e3cf7a;
    text-decoration:none;
    cursor: default;
}

.rating-stars.allow > a.half:hover:before, .rating-stars.allow  > a.half:before{
    content: "\f123";
    color: #e3cf7a;
    text-decoration:none;
    cursor: default;
}
.rating-stars > a.half:before{
    content: "\f123";
    color: #e3cf7a;
    text-decoration:none;
    cursor: default;
}

.background-referencie {
    background-image:url('../img/referencie.jpg');
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    height: 400px;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}

.p_tb_1 {
    padding-top:1em;
    padding-bottom:1em;
}
.p_tb_2 {
    padding-top:2em;
    padding-bottom:2em;
}
.m_b_05{
    margin-bottom:.5em;
}
.m_b_0{
    margin-bottom:0em;
}
.block-referencie {
    background-color:#fff;
    margin-top:4em;
    padding:1em;
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.18);
}


.reviews {
    margin-top:3em;
}
.review-left {
    margin-top:2em;
    padding:2em;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .review-left {
        margin-top:7em;
    }
}

.review-left p {
    padding-left:2em;
}
.reviews-widget img {
    max-height:60px;
}
.reviews-widget .average-review {
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.18);
    margin-bottom:2em;
}

.reviews-widget .one-review {
    margin-bottom:1em;
    padding-bottom:.5em;
}

.one-review {
    border-bottom: 2px solid #eeeff0;
    margin-bottom:2em;
    padding-bottom:1em;
}
.one-left p {
    margin-bottom:.3em;
}

.one-left .date {
    font-weight: 400;
    color: #aaabad;
    font-style: italic;
}
.one-right {
    padding:1em;
    color:#000;
}

.euro {
    font-size: .7em;
}

.partneri h2 {
    display: inline;
}

.partneri ul {
    display: inline;
    list-style:none;
    text-align:right;
    margin:0;
}

.partneri ul li {
    display:inline-block;
    margin:.3em;
    text-align:center;
}
.partneri ul li img {
    margin: 0 auto;
    max-height: 33px;
    margin-bottom:.8em;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 1024px) {
    .partneri ul li img {
        max-height: 50px;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 1200px) {
    .partneri ul li img {
        max-height: 60px;
        margin-bottom:0em;
    }
}


.partneri-slider img {
    max-height: 90px;
    margin: 0 auto;
}

.search-panel {
    border: 1px solid #e1e2e4;
    background-color: #f1f2f4;
    padding-top:1em;
    padding-bottom:1em;
    margin-bottom:2em;
}
.search-panel h2 {
    padding-left: 0;
    margin-bottom: .8em;
}

.search-panel input {
    background-color: #fff !important;
}

.table>thead>tr>th {
    font-weight: 600;
}

.cart-mobile {
    width: 140px;
    margin: 1em auto;
    float: none;
}

.line-through {
    text-decoration: line-through !important;
}


.zlava-hide {
    display: none;
}
#use-code{
    margin-top: -.2em;
}
#deuse-code {
    display:none;
    margin-top: -.2em;
}


/*
    Nove overenie vozidla
*/

.result-block {
    border: 2px solid #dddedf;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}


.n_panel-wrapper {
    padding-left: 0px;
    padding-right: 0px;
}




.n_result_title_left {
    position: absolute;
    top:0;
    width:40px;
    left:0;
    bottom:0;
    background-color: #eeeff0;

}

.n_result_title_left p {
    color: #000;
    font-size: 1.3em;
    white-space: nowrap;
    position: absolute;
    top: 165px;
    left: -14px;
    -ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
}

.n_result_title {
    background-color: #eeeff0;
}

.n_result_title p {
    color:#000;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    padding: .5em 0;
    font-size: 15px;
}

.relative {
    position:relative;
}

.n_panel-row {
    line-height: 16px;
    height: 90px;
    border-bottom: 1px solid #eeeff0;
    padding-left: 25px;
    padding-right: 25px;
}

@media only screen and (min-width : 768px) {
    .n_panel-row {
        padding-left: 65px;
    }
}

@media only screen and (min-width : 200px) {
    .n_panel-row {
        height: 110px;
    }
}

@media only screen and (min-width : 480px) {
    .n_panel-row {
        height: 70px;
    }
}


#exekucie {
    height: 110px;
}

@media only screen and (min-width : 480px) {
    #exekucie {
        height: 70px;
    }
}



.n_panel-row .pull-left {
    margin-top: 14px;
}

@media only screen and (max-width : 479px) {
    .n_panel-row#continue1 .pull-left {
        float: none !important;
        text-align: center;
    }

    .n_panel-row#continue1 .pull-right {
        float: none !important;
        text-align: center;
    }



    .n_panel-row#continue2 .pull-left {
        float: none !important;
        text-align: center;
    }

    .n_panel-row#continue2 .pull-right {
        float: none !important;
        text-align: center;
    }

    .n_panel-row#continue2 #objednat-overenie2 {
        margin-top: 1em;

    }
}





.n_panel-row:last-child {
    border-bottom: none;
}

.n_panel-row p {
    margin: 0;
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
}

.n_panel-row.continue-panel {
    background-color:#002653;
}

.n_panel-row.continue-panel p.continue-title {
    font-size: 14px;
    color: #fff;
    font-weight: 500
}

.n_panel-row.continue-panel#continue2 p.continue-title {
    font-size: 16px;
}

.n_panel-row.continue-panel p.info {
    margin-top: 0.3em;
    color: #fff;
}

#continue2 {
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 10px;
    margin-top: 1em;
    height: 140px;
}

@media only screen and (min-width : 480px) {
    .n_panel-row p {
        font-size: 14px;
    }

    .n_panel-row.continue-panel p {
        font-size: 15px;
    }

    #continue2 {
        height: 100px;
    }
}


.n_panel-row p i {
    font-size: 1.2em;
    margin-left: .3em;
}

.n_panel-row p.info {
    font-size: 12px;
    color: #0093f7;
    line-height: 20px;
}


.v-m-b {
    display: block !important;
}

@media only screen and (min-width : 480px) {
    .v-m-b {
        display: none !important;
    }
}

.n_panel-row .availability img {
    margin-top: 0px;
    width: 20px;
    margin-left: 5px;
}


.n_panel-row .pull-right {
    line-height: 16px;
    margin-top: 1em;
    float: left !important;
}

@media only screen and (min-width : 480px) {
    .n_panel-row .pull-right {
        line-height: 16px;
        margin-top:1.5em;
        float: right !important;
    }
}

.n_panel-row .availability {
    color: #46a1ed;
    font-size: 0.9em;
}

.n_panel-row .availability small {
    color: #46a1ed;
    display: inline;
    font-size: 75% !important;
    font-weight: 400;
}

@media only screen and (min-width : 768px)  and (max-width : 991px) {
    .n_panel-row .availability {
        font-size: 0.7em;
    }

    .n_panel-row .availability img {
        width: 18px;
        margin-left: 3px;
    }
}

@media only screen and (min-width : 480px)  and (max-width : 767px) {
    .n_panel-row .availability {
        font-size: 0.65em;
    }

    .n_panel-row .availability img {
        width: 17px;
        margin-left: 3px;
    }
}


@media only screen and (min-width : 480px) {
    .n_panel-row .availability small {
        display: block;
    }
}

.m_t_1i {
    margin-top: 1em !important;
}

.actuality-box {
    border: 2px solid #70f5cb;
    border-radius: 3px;
    background-color: #bffce7;
    text-align: left;
    padding: 1em;
    color: #000;
}
.actuality-box p {
    margin:0;
}

.header-box h3 {
    color: #000;
    font-size: 1.4em;
    padding-left: 2rem;
    padding-right: 2rem;
}

.header-box p {
    color: #a8a9ab;
    font-size: .9em;
}

.offer-box {
    overflow: hidden;
}

.offer-box .custom-radio {
    padding:0;
}

.offer-box .custom-radio label {
    padding: 0px 0px 0px 40px;
    font-size: 1.2em;
}

@media only screen and (min-width : 768px) {
    .offer-box .custom-radio label{
        padding: 0px 0px 0px 25px;
        font-size: .9em;
    }
}

@media only screen and (min-width : 992px) {
    .offer-box .custom-radio label{
        padding: 0px 0px 0px 40px;
        font-size: 1.2em;
    }
}

.s_dph {
    font-size: 11px;
    color: #aaa;
}

.offer-box .custom-radio label > strong {
    margin-right: 0;
}

.offer-box .custom-radio .check {
    left: 0px !important;
}


.devider {
    height: 2px;
    margin-top: 1em;
    margin-bottom: 1em;
    width:100%;
    background-color: #ecedee;
    display: block;
    float: left;
}

.result-fade {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background-color: transparent;
    z-index: -9999;
    visibility: hidden;
    opacity:0;
}

.result-fade.in {
    background-color: rgba(154, 155, 156, 0.8);
    z-index: 999;
    visibility: visible;
    opacity:1;
}

.result-fade p {
    color: #fff;
    text-align: center;
    margin-top: 5em;
    font-size: 26px;
    font-weight: 500;
}

.modal-body .form-style input.form-control {
    line-height:28px !important;
}

.fa-question-circle:hover {
    cursor: pointer;
}

.fixed-panel {
    position: fixed;
    z-index: 99999;
    bottom:0;
    left: 0;
    right:0;
    height: 68px;
    padding: .3em 2em;
    background-color: #fff;
    box-shadow: 0px 0px 5px #888888;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;

}

.fixed-panel.hide-this{
    opacity: 0;
    visibility: hidden;
}



.fader {
    display: none;
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index: 9998;
    background-color: rgba(240,240,240,.6);
}

.fader.in{
    display: block;
}

.fader p {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-top: 300px;
}

.display-no{
    display: none;
}

.fc_orange {
    color: #ff9e02;
}


#new_products_wrapper {
    padding-left: 0;
    padding-right: 0;
    min-height: 162px;
}


.preco-mechanicke .five-block{
    left: 0;
    padding-top:1em;
    padding-bottom: 0em !important;
    background-color:#fff;
}

.preco-mechanicke .five-block p {
    color: #000;
    font-size: 16px;
}

.preco-mechanicke .five-block hr {
    border-top: 1px solid #e0e1e2;
    margin-top: 5px;
    margin-bottom: 5px;
}

.mt-10px {
    margin-top: 10px;
}

.mt-42px {
    margin-top: 42px !important;
}

.my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.pl-5px {
    padding-left: 5px;
}

.py-6rem {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-blue {
    background-color: #0b2a4f;
}

.fs-17px {
    font-size: 17px !important;
}

.fs-56px {
    font-size: 56px !important;
}

@media only screen and (min-width : 992px) {
    .preco-mechanicke .five-block{
        margin-top: -3em;
        box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.18);
    }

    .preco-mechanicke .five-block p {
        text-align: left;
    }
}

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

.fw-400 {
    font-weight: 400;
}

.hr-blue {
    border-top: 1px solid #49627b !important;
}

.text-light-blue {
    color: #8caacc !important;
}

.text-blue {
    color: #46a1ed !important;
}

.preco-mechanicke .old-cost .first {
    margin-top: 22px;
}

.preco-mechanicke .old-cost .first p, .preco-mechanicke .new-cost .first p {
    margin-bottom: 0px;
}

.preco-mechanicke .old-cost, .preco-mechanicke .new-cost {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.preco-mechanicke .btn-wrap {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 2.7rem;
}

.py-4rem {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.mt-10rem {
    margin-top: 10rem;
}

.preco-mechanicke .stamp-zlava {
    position: absolute;
    bottom: 270px;
    left: 20px;

    -ms-transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
}


@media only screen and (min-width : 768px) {
    .preco-mechanicke .stamp-zlava {
        position: absolute;
        bottom: 250px;
        left: 15px;
    }
}

@media only screen and (min-width : 992px) {
    .preco-mechanicke .stamp-zlava {
        position: absolute;
        bottom: 150px;
        left: 115px;
    }
}

.box-shadow {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.18)
}

#partneri-carousel a img{-webkit-filter:grayscale(100%);filter:grayscale(100%)}
#partneri-carousel a:hover img{-webkit-filter:grayscale(0);filter:grayscale(0)}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.px-4 {
    padding-left: 1.5rem!important;
    padding-right: 1.5rem!important;
}


.discount-arrow {
    position: absolute;
    top: -9px;
    right: -33px;
    background-color: #5CD4F5;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 30px 8px 30px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.verification-block {
    padding: 1em;
    margin-top: 1em;
    border-radius: 10px;
}

.verification-block p {
    color: white;
}

.verification-title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.verification-price {
    font-weight: normal;
    margin: 0.25em 0 0 0;
    font-size: 22px;
    padding: 0;
}

.objednat-overenie, .objednat-overenie:hover, .objednat-overenie, .objednat-overenie:after {
    padding: 1em 3em;
}

.result-block-container {
    padding-top: 0;
    padding-bottom: 2em;
}

.overenie-block.verification-block .btn-orange {
    margin-top: 1em;
}

@media only screen and (min-width: 768px) {
    .verification-block {
        padding: 2em;
    }

    .verification-title {
        margin: 0;
        font-size: 28px;
    }

    .verification-price {
        font-size: 30px;
    }

    .result-block-container {
        padding-top: 1em;
        padding-bottom: 2em;
    }

    .verification-block {
        margin-top: 0em;
    }

    .overenie-block.verification-block .btn-orange {
        margin-top: 2em;
    }

    .objednat-overenie, .objednat-overenie:hover, .objednat-overenie, .objednat-overenie:after {
        padding: 1.6em 3em;
    }
}

.verification-block hr {
    max-width: 15%;
    margin-left: auto;
    margin-right: auto;
    border-top: 3px solid #05b9f2;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Remove bottom border and padding when the block is collapsed */
.result-block.collapsed {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Set up the container for the fade effect */
.result-block.collapsed .n_panel-wrapper {
    position: relative;
    overflow: hidden;
}

/* The fade-out effect */
.result-block.collapsed .n_panel-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    pointer-events: none;
}

#show-all-results-btn {
    color: black;
}

.hide-important {
    display: none !important;
}


/* Final Arrow Steps Component v2 */
.steps-container {
    display: flex;
    padding: 0;
    margin: 0 0 20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.step-arrow {
    position: relative; /* Crucial for z-index to work */
    display: flex;
    align-items: center;
    justify-content: right;
    flex-grow: 1;
    flex-shrink: 0;
    height: 80px;
    padding: 0 30px;
    color: #fff;
    background-color: #f0f0f0;
    transition: background-color 0.3s, border-color 0.3s;
}

/* FIX 1: Reverse the stacking order. Higher z-index means "on top". */
.step-arrow:nth-child(1) { z-index: 5; }
.step-arrow:nth-child(2) { z-index: 4; }
.step-arrow:nth-child(3) { z-index: 3; }
.step-arrow:nth-child(4) { z-index: 2; }
.step-arrow:nth-child(5) { z-index: 1; }

/* Pulls steps together to interlock */
.step-arrow + .step-arrow {
    margin-left: -40px;
}

.step-arrow a {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
}

.step-arrow a .number {
    font-size: 1.75rem;
    font-weight: bold;
}

.step-arrow.actual a .number {
    text-decoration: underline;
}


/* Arrowhead */
.step-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid #f0f0f0;
    z-index: 1;
    transition: border-color 0.3s;
    /* FIX 2: Add a "shadow" that acts as a white outline on the left of the arrowhead */
    filter: drop-shadow(1px 0 0 #fff);
}

/* Cutout */
.step-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid #fff;
}

/* --- Step States --- */
.step-arrow.last {
    margin-right: 1px;
    color: #000;
}
.step-arrow.past,
.step-arrow.actual {
    background-color: #05b9f2;
    color: #fff;
}
.step-arrow.past::after,
.step-arrow.actual::after {
    border-left-color: #05b9f2;
}
.step-arrow.next {
    background-color: #f0f0f0;
    color: #333;
}
.step-arrow.next::after {
    border-left-color: #f0f0f0;
}

/* --- Edge Cases --- */
.step-arrow:first-child { padding-left: 20px; }
.step-arrow:first-child::before { display: none; }
.step-arrow:last-child { padding-right: 20px; }
.step-arrow:last-child::after { display: none; }


/* --- Responsive Design --- */
/* --- Responsive Design --- */
@media (max-width: 767px) {
    .steps-container {
        flex-wrap: nowrap;
    }
    .step-arrow {
        /* FIX: Allows steps to grow and fill the available width on mobile */
        flex-grow: 1;
        height: 40px;
        /* FIX: Symmetrical padding to ensure the number is centered properly within the visible area of the arrow. */
        padding: 0 25px;
    }
    .step-arrow .text {
        display: none;
    }
    /* The overlap must match the width of the arrowhead */
    .step-arrow + .step-arrow {
        margin-left: -20px;
    }

    /* Arrowhead and cutout sizes for mobile */
    .step-arrow::after {
        right: -20px;
        border-top-width: 20px;
        border-bottom-width: 20px;
        border-left-width: 20px;
    }
    .step-arrow::before {
        border-top-width: 20px;
        border-bottom-width: 20px;
        border-left-width: 20px;
    }

    /* Adjust padding for the first and last steps which have no cutout/arrowhead */
    .step-arrow:first-child {
        padding-left: 15px;
    }
    .step-arrow:last-child {
        padding-right: 15px;
    }
}

@media (min-width: 1200px)  {
    .step-arrow {
        justify-content: center;
    }
}
