@font-face {
    font-family: Inter;
    src: url(font/Inter-Regular.ttf);
}
@font-face {
    font-family: Inter;
    font-weight: 600;
    src: url(font/Inter-SemiBold.ttf);
}
@font-face {
    font-family: Inter;
    font-weight: 700;
    src: url(font/Inter-Bold.ttf);
}
@font-face {
    font-family: Montserrat;
    src: url(font/Montserrat-Regular.ttf);
}
@font-face {
    font-family: Montserrat;
    font-weight: 600;
    src: url(font/Montserrat-SemiBold.ttf);
}
@font-face {
    font-family: Montserrat;
    font-weight: 700;
    src: url(font/Montserrat-Bold.ttf);
}

.col * {
    margin: 0;
}
.row{
    padding: 0;
    margin: 0;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}

a, a:hover{
    text-decoration: none;
    color:#3AA5D1;
}
a:hover.link{
    text-decoration: underline;
}

body{
    background: #FFFFFF;
    padding-right: 0 !important;
    font-family: Montserrat;
    color: #2E2E2E;
}

.main_wrapper{
    max-width: 1760px;
    margin-left:auto;
    margin-right:auto;
    position:relative;
    background: #F9F9F9;
}

.content_wrapper{
    margin: 0px 48px;
    padding-bottom: 0px;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
  /*box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);*/
}

@media (max-width: 1199px){
}

@media (max-width: 767px){
    .content_wrapper{
        margin: 0px 16px;
    }
    .select-content_wrapper{
        margin: 0px 9px;
    }
}



.row {
    margin-left: 0px;
    margin-right: 0px;
}
.mobile {
    display:none;
}
.mobile-block {
    display:none;
}

@media (max-width: 767px) {
    .mobile {
        display: flex;
    }

    .mobile-block {
        display: block;
    }

    .no-mobile{
        display:none;
    }
}

.form-control-label{
    font-family: Montserrat;
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 12px;
}
.form-control-desc{
    font-size: 16px;
    line-height: 22px;
    color: #737373;
}
.form-control{
    background: #FFFFFF;
    border: 2px solid #939393;
    border-radius: 16px;
    padding: 8px 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #2E2E2E;
    height: auto;
    margin-bottom: 8px;
}
.form-control:hover{
    outline: none;
    border: 2px solid #2E2E2E;
}
.form-control:focus{
    outline: none;
    box-shadow: none;
    border: 2px solid #2E2E2E;
}
.input-novalid .form-control{
    border-bottom: 1px solid red;
}
.form-control-errortext{
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: red;
    padding-left:10px;
}

.form-control-checkbox {
    display:none;
}

.form-control-checkbox-label{
    padding-left:28px;
    min-height: 24px;
    margin-right: 20px;
}

.form-control-checkbox-label-white{
    color:#FFFFFF;
}

.form-control-checkbox + label
{
    background-image: url('/static/gfx2/Checkbox_disselect.svg');
    background-repeat: no-repeat;
    background-position: left 0px top 0px;
    margin-bottom: 0px;
    padding-left: 30px;
    font-size: 14px;
}

.form-control-checkbox:checked + label
{
    background-image: url('/static/gfx2/Checkbox.svg');
    background-repeat: no-repeat;
    background-position: left 0px top 0px;
}

.input-novalid .form-control-checkbox + label{
    background-image: url('/static/gfx2/Checkbox_error.svg');
}

.input-novalid .form-control-checkbox:checked + label
{
    background-image: url('/static/gfx2/Checkbox.svg');
}

.form-control-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
    user-select: none;
}

.form-control-radio input {
    display: none;
}

.form-control-radio .checkmark {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    transition: filter 0.2s ease;
    flex-shrink: 0;
    background-image: url('/static/gfx2/Radiobutton_disselect.svg');
}

.form-control-radio input:checked + .checkmark {
    background-image: url('/static/gfx2/Radiobutton.svg');
}

.form-control-radio.is-error .checkmark {
    background-image: url('/static/gfx2/Radiobutton_error.svg');
}







.cbox-custom-select {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2E2E2E;
    width:100%;
    padding:15px 16px;
    background: #FFFFFF;
    border: 2px solid #939393;
    border-radius: 4px;
    outline: none !important;
    position:relative;
    margin-bottom:20px;
}

.cbox-custom-select:hover{
    outline: none;
    /*border: 2px solid #2E2E2E;*/
}
.cbox-custom-select:focus{
    outline: none;
    box-shadow: none;
    border: 2px solid #2E2E2E;
}

.cbox-custom-select select {
  display: none; /*hide original SELECT element:*/
}

.cbox-select-selected {
    color: #0A285C;
}

/*style the arrow inside the select element:*/
.cbox-select-selected:after {
    transition: all 0.6s ease;
    position: absolute;
    content: url("../gfx2/dropdown-arrow.svg");
    top: 16px;
    right: 0px;
    width: 30px;
    height: 20px;

}

/*point the arrow upwards when the select box is open (active):*/
/*.cbox-select-selected.cbox-select-arrow-active:after {
  transform: rotateZ(-180deg);
}*/

/*style the items (options), including the selected item:*/
.cbox-select-items div,.cbox-select-selected {
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.cbox-select-items {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2E2E2E;
    position: absolute;
    background-color: #FFFFFF;
    top: 125%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 2px solid #444;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 6px;
}

.cbox-select-items div{
    padding:15px 16px;
    cursor: pointer;
    border-bottom: 2px #F1F1F1 solid;
}

/*hide the items when the select box is closed:*/
.cbox-select-hide {
  display: none;
}

.cbox-select-items div:hover {
  /*background-color: #8F8F8F;
  color:#FFFFFF;*/
}


.main-button, .main-button:hover{
    padding:16px 24px;
    background: #3AA5D1;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    border: 2px #3AA5D1 solid;
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
}

.main-button-white, .main-button-white:hover{
    padding:16px 24px;
    background: #FFFFFF;
    text-transform: uppercase;
    color: #BD004F;
    font-size: 16px;
    line-height: 24px;
    font-family: Roboto-Bold;
    border: 2px #BD004F solid;
    border-radius: 4px;
    text-decoration: none;
}

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.car-box-col{
    padding:7px 7px;
    min-width:319px;
}
@media (max-width: 1300px) {
    .car-box-col{
        width: 33%;
    }
}
@media (max-width: 980px) {
    .car-box-col{
        width: 50%;
    }
}
@media (max-width: 661px) {
    .car-box-col{
        width: 100%;
    }
}


.car-box{
    border: 2px solid #FFFFFF;
    border-radius: 16px;
    color: #2E2E2E;
    padding: 20px;
    background: #FFFFFF;
    text-align: center;
}
.car-box:hover{
    border: 2px solid #3AA5D1;
}
.car-box-promowane{
    background: #FBF1F5;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 60%, rgba(251, 241, 245, 1) 100%);
}
.car-box-promowane-znacznik{
    background: #1C5CAD;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 15px;
    position: absolute;
    font-size: 12px;
    line-height: 18px;
    font-family: Roboto-Bold;
}
.car-box-image{
    width: 100%;
    height:180px;
    object-fit:contain;
}
.car-box-info{
    height:180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.car-box-markamodel{
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}
.car-box-wersja{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}
.car-box-opis{
    color:#000000;
    font-size: 16px;
    line-height: 24px;
}
.car-box-rata{
    font-size: 28px;
    line-height: 32px;
    color: #3AA5D1;
    font-weight:700;
}
.car-box-rata-opis{
    font-size: 14px;
    line-height: 18px;
    color: #737373;
}
.car-box-cena{
    color:#737373;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    justify-content: space-between;
    margin-top:5px;
}
.car-box-button{
    color:#BD004F;
    padding:16px 24px;
    background: #FFFFFF;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    font-family: Roboto-Bold;
    border: 2px solid #BD004F;
    border-radius: 4px;
    margin-top:32px;
    display: block;
    text-align: center;
}
.car-box-button:hover, .car-box-button:focus {
    color: #BD004F;
}

.index-car-slide{
    max-height:550px;
}
.index-car-slide .slick-slide{
    width:310px;
}
.special-offer-slider{
    display: none;
}
@media (max-width: 1270px) {
    .special-offer-slider{
        display: block;
    }
    .special-offer-grid{
        display: none;
    }
}




.site-header{
    font-size: 24px;
    line-height: 32px;
    font-weight:600;
    margin:48px;
}
.site-header-sub{
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #737373;
    font-weight:400;
    margin:16px;
}

.site-header-left{
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    margin:32px 0px;
}
.site-header-center{
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    margin:32px 0px;
    text-align: center;
}


/* breadcrumb */
.breadcrumb{
    background:none;
    padding: 30px 100px;
}

.breadcrumb-item, .breadcrumb-item a{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #737373;
}

.breadcrumb-item.active {
    color: #2E2E2E;
    font-weight:600;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1px solid #737373;
    border-bottom: 1px solid #737373;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    margin-top: 5px;
    margin-right: 15px;
}
@media (max-width: 991px) {
    .breadcrumb{
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* end breadcrumb */

/* cookies */
    #cookies-message{
        border-radius: 5px;
        width: 760px;
        right:50px;
        padding: 20px 20px;
        font-size: 12px;
        line-height: 22px;
        text-align: center;
        position: fixed;
        bottom: 50px;
        background-color: #3AA5D1;
        z-index: 999;
        color: #FFFFFF;
    }
   #cookies-message table{
        color: #FFFFFF;
   }

    #accept-cookies-checkbox{
        color: #FFFFFF;
        background: #3AA5D1;
        border: 2px #FFFFFF solid;
        border-radius: 4px;
        padding: 10px 40px;
        font-size: 14px;
        margin: 5px;
        text-transform: uppercase;
    }

    #accept-cookies-checkbox:hover{
        color:#3AA5D1;
        background: #FFFFFF;
        text-decoration: none;
    }

@media (max-width: 768px) {
  #cookies-message {
    border-radius: 4px;
    width: 100vw;
    right: 0px;
    padding: 20px 20px;
    font-size: 10px;
    line-height: 22px;
    text-align: center;
    position: fixed;
    bottom: 0px;
    z-index: 999;
  }
}
/* end cookies */


/* footer */
.footer_area{
    background: linear-gradient(90deg,rgba(3, 63, 88, 1) 40%, rgba(1, 15, 20, 1) 70%);
    padding: 60px 30px;
    margin-top:72px;
    font-family: Montserrat;
}
.footer-logo{
    margin-top:30px;
    margin-bottom:30px;
    width:130px;
    height:auto;
    display:block;
    margin-left:100px;
}
.footer_line{
    border-top: 2px #F1F1F1 solid;
    margin-top: 12px;
    margin-bottom: 12px;
}
.footer{
    display:flex;
    flex-wrap: wrap;
}
.footer_p{
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    margin:8px 16px;
    display: inline;
    width:100%;
}
.footer_p a, .footer_p a:hover{
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
}
.footer_p_bold{
    font-size: 14px;
    line-height: 18px;
    color: #2E2E2E;
    margin:12px 16px;
    display: inline;
}
.footer_p_bold img{
    margin-top:-3px;
}

@media (max-width: 767px) {

    .footer{
        display:block;
    }
    .footer_p{
        display:block;
        text-align: left;
        margin: 15px 0px;
    }
    .footer_p_bold{
        display: block;
        text-align: center;
    }
}
/* end footer */

.slider-bubble {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #3AA5D1;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid #3AA5D1;
}
.slider-bubble::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #BD004F;
}

/* slider */
.slider {
    width: 100%;
    margin: 0px auto;
}

.slick-slide {
  margin: 0px -10px 0px 10px;
}

.slider.slider-horizontal {
  width: 100%;
  height: 20px;
  margin-top: 20px;
}

.slider.slider-horizontal .slider-track {
    height: 5px;
    margin-top: -2px;
}

.slider-handle {
    width: 30px;
    height: 30px;
    radius: 30px;
    background: #3AA5D1;
    /*border: 6px solid #F4D6E3;*/
    border-radius: 100px;
    outline: 1px solid #F9F9F9;
}

.slider-handle.round {
  border-radius: 100%;
}

.slider.slider-horizontal .slider-tick, .slider.slider-horizontal .slider-handle {
    margin-left: -14px;
    margin-top: -4px;
}

.slider.slider-horizontal {
  width: 100%;
  height: 20px;
}

.slider .tooltip.top {
    display: none;
}
.slider .tooltip.bs-tooltip-top{
    top:-15px;
}

.slider .tooltip {
    /*
    width: 60px;
    text-align: center;
    position: absolute;
    margin-left: -7px;
    */
    width: auto;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-13%);
    display: none;
}
.slider .tooltip::after{
    content: "";
    position: absolute;
    left: 14%;
    transform: translateX(-50%);
    top: 45px;
    border: 6px solid transparent;
    border-top-color: #3AA5D1;
}

@media (max-width: 767px) {
    .slider.slider-horizontal{
        width:95%;
    }
}


.tooltip-inner {
  max-width: 200px;
  padding: 9px 13px;
  color: #fff;
  text-align: center;
  background-color: #3AA5D1;
  border-radius: 4px;
}
.bs-tooltip-top .arrow::before {
    top: 0;
    border-width: .4rem .4rem 0;
    border-top-color: #3AA5D1;
}
.slider-tick{
    display: none;
}

.slider-tick-label{
    margin-top: 15px;
    font-size: 14px;
}

.slider.slider-horizontal .slider-selection {
  background: #3AA5D1;
}

.slider-track-low, .slider-track-high {
  background: #F9F9F9;
}

    @media (max-width: 1199px){
        .slider{
            /*margin-left: 16px;*/
        }
    }
    @media (max-width: 767px){
        .slider{
            /*margin-left: 8px;*/
            margin-left: 0px;
        }
    }

/* end slider */

/* accordion */
.accordion{
    max-width: 800px;
}

.accordion .item {
    margin-bottom: 10px;
    border-top: 2px solid #F1F1F1;
    overflow: hidden;
}

/* ukrywamy checkbox */
.accordion input {
    display: none;
}

.accordion .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 16px;
    background: transparent;
    cursor: pointer;
    font-family: Roboto-Bold;
    font-size: 16px;
    line-height: 22px;
    transition: background 0.2s;
}

.accordion .title:hover {
    background: transparent;
}

/* strzałka */
.accordion .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* treść */
.accordion .content {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    line-height: 22px;
    color: #737373;
    padding: 0 16px;
    background: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* po otwarciu */
.accordion input:checked ~ .content {
    /*max-height: 200px;*/
    max-height: none;
    padding: 12px 16px;
}

/* obrót strzałki */
.accordion input:checked + .title .arrow {
    transform: rotate(225deg);
}

/* end accordion */




.select-galeria-img {
  width: 50%;
  object-fit: cover;
}


.rodzaj-prod-box {
    display: inline-block;
    margin: 0px 20px;
}

.rodzaj-prod {
    display:none;
}

.rodzaj-prod-label{
    padding: 4px 35px;
    font-size: 16px;
    border: 1px #3AA5D1 solid;
}
.rodzaj-prod-left-label{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.rodzaj-prod-right-label{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-left: -7px;
}

.rodzaj-prod + label
{
    color: #3AA5D1;
    background:none;
}

.rodzaj-prod:checked + label
{
    color: #FFFFFF;
    background: #3AA5D1;
}


/* naglowek ala Drivemore*/
.subpage-top  {
  width: 100%;
  min-height: 416px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.subpage-top--main {
  background:url('/static/gfx2/bg_400.jpg') no-repeat;
  background-size: cover;
  background-position: top;
}
.subpage-top--insidecar {
  background:url('/static/gfx2/bg_insidecar.jpg') no-repeat;
  background-size: cover;
  background-position: top;
}
.subpage-top--user {
  background:url('/static/gfx2/bg_user.jpg') no-repeat;
  background-size: cover;
  background-position: top;
}
.subpage-top--3persons {
  background:url('/static/gfx2/bg_5.jpg') no-repeat;
  background-size: cover;
  background-position: top;
}
.subpage-top--6 {
  background:url('/static/gfx2/bg_6.jpg') no-repeat;
  background-size: cover;
  background-position: top;
}
.subpage-top--7 {
  background:url('/static/gfx2/bg_7.jpg') no-repeat;
  background-size: cover;
  background-position: top;
}

.subpage-top--offer {
  background:url('/static/gfx2/slider_img_2.jpg') no-repeat;
  background-size: cover;
  background-position: top;
}

.subpage-top__text  {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  margin: 0px auto 40px auto;
  color: #2785ff;
  font-size: 68px;
  text-transform: uppercase;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1199px){
    .navbar {
      padding: 0px 20px;
    }
    .footer-logo {
        margin-left: 20px;
    }
}