@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*** GENERIC CSS ***/
html,body {
    font-family: "Poppins", serif;
}

body {
    font-size: 16px;
    color: #272320;
    overflow-x: hidden;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #272320;
}

button {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

a:hover {
    text-decoration: none;
    color: #272320;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

@font-face {
    font-family: 'BrownBold';
    src: url('../fonts/BrownBold.eot');
    src: url('../fonts/BrownBold.eot') format('embedded-opentype'),
         url('../fonts/BrownBold.woff2') format('woff2'),
         url('../fonts/BrownBold.woff') format('woff'),
         url('../fonts/BrownBold.ttf') format('truetype'),
         url('../fonts/BrownBold.svg#BrownBold') format('svg');
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #272320;
    font-weight: 400;
    font-family: "Poppins", serif;
}

h1 {
    font-size:43px;
    line-height: 52px;
    font-weight: 600;
}

h2 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
}

h3 {
    font-size:30px;
    line-height: 45px;
    font-weight: 600;
}

h3.small {
    font-size:20px;
    line-height: 25px;
}

h4 {
    font-size:20px;
    line-height: 30px;
    font-weight: 600;
}

h5 {
    font-size:24px;
    line-height: 1.5;
}

p {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 15px;
    font-weight: 300;
}

p:last-child {
    margin-bottom: 0;
}

p.small {
    font-size: 14px;
    line-height: 24px;
}

p.large {
    font-size: 20px;
    line-height: 47px;
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-default {
    display: inline-block;
    color: #fff;
    background: #F1B342;
    min-width: 175px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 50px;
    border-radius: 25px;
    text-transform: uppercase;
    padding: 0px 35px;
}

.btn-default:hover {
    background: none;
    border:2px solid #F1B342;
    color: #F1B342;
}

.grey-borderbtn {
    display: inline-block;
    border: 1px solid #cccccc;
    color: #272320;
    border-radius: 45px;
    padding: 0px 25px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    line-height: 48px;
}

.grey-borderbtn span {
    top: 5px;
    position: relative;
    margin-right: 3px;
}

.semibold {
    font-weight: 600;
}

.grey-color {
    color: #9D9D9C !important;
}

/*** ***/
.sticky-bar {
    border: 1px solid #CCCCCC;
    border-radius: 15px 15px 0px 0px;
    display: inline-block;
    width: 100%;
    padding: 20px 10px;
    border-bottom: none;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    bottom: 10px;
}

.sticky-bar.active {
    bottom: 0px;
    opacity: 1;
    pointer-events: all;
    z-index:99999;
}

.sticky-bar h3 {
    color: #272320;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.sticky-bar h3 a {
    display: flex;
    align-items: center;
}

.sticky-bar h3 a .tagimg {
    /* filter: invert(87%) sepia(34%) saturate(1502%) hue-rotate(326deg) brightness(100%) contrast(90%); */
    /* max-width: 20px; */
    margin-right: 10px;
}

.sticky-bar h3 a span {
    margin-left: auto;
}

.sticky-bar h3 a span img {
    margin-left: 3px;
    width: 18px;
    transform: rotate(-90deg);
    margin-right: 0px;
}

.sticky-bar p {
    color: #272320;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

/*** form-bar ***/
.form-bar {
    background: #56BEA4;
    padding: 20px 15px 15px 15px;
    position: fixed;
    top: 0;
    left: 0;
}

.form-bar .tagimg {
    max-width: 30px;
}

.form-bar h3 {
    color: #fff;
    margin: 10px 0px;
}

.form-bar .form-control {
    background: #fff;
    border-radius: 5px;
    height: 35px;
    padding: 0px 15px;
    font-family: "Poppins", serif;
    font-weight: 300;
    font-size: 14px;
    border: 1px solid #CCCCCC;
    box-shadow: none !important;
    outline: none !important;
    margin-bottom: 15px;
    color: #272320;
}

.form-bar .form-control::-webkit-input-placeholder {
    color: #272320;
}

.form-bar .btn-default {
    margin-bottom: 5px;
}

.form-bar p {
    color: #fff;
    margin: 10px 0px;
    margin-bottom: 20px;
}

/*** main-info ***/
.main-info {
    border-radius: 20px 20px 0px 0px;
    position: relative;
    z-index: 3;
    background: #fff;
    padding: 25px 0px 25px 0px;
}

.main-info h1 {
    margin-bottom: 15px;
}

.main-info .upbar a {
    margin-bottom: 10px;
}

.main-info .logo {
    margin-bottom: 10px;
}

.main-info .logo img {
    max-height: 40px;
    margin-left: 5px;
}

.main-info .grey-borderbtn {
    margin-left: 10px;
}

.quick-links a {
    border-bottom: 1.5px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0px;
}

.quick-links a:last-child {
    border: none;
}

.quick-links a span {
    display: flex;
    align-items: center;
    transition: all .3s;
    white-space: nowrap;
    position: relative;
    font-size: 18px;
    font-weight: 300;
}

.quick-links a span img {
    margin-left: 5px;
    max-width: 18px;
    transform: rotate(-90deg);
    margin-right: 15px;
    transition: all .3s;
}

.quick-links a:hover span img {
    filter: invert(72%) sepia(57%) saturate(635%) hue-rotate(338deg) brightness(105%) contrast(89%);
}

.quick-links a:hover span {
    color: #F1B342;
}

.quick-links .tag {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    background: #F1B342;
    line-height: 24px;
    min-width: 70px;
    text-align: center;
    border-radius: 15px;
    margin-left: 15px;
}

.main-info .stats {
    padding: 0px 25px;
    padding: 0px 0px;
    padding-top: 25px;
    padding-bottom: 40px;
}

.main-info .stats h2 {
    color: #000;
}

.main-info #pricing .bgimg img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.main-info #pricing h2 {
    margin-top: 33px;
    margin-bottom: 20px;
}

.discountbox {
    display: flex;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 0px;
}

.discountbox .img {
    height: 45px;
    line-height: 45px;
    position: relative;
    margin-top: -1px;
    margin-bottom: -1px;
    left: -1px;
    width: 45px;
    text-align: center;
    background: #56BEA4;
    border-radius: 5px 0px 0px 5px;
    margin-right: 10px;
}

.discountbox .img img {
    max-width: 25px;
}

.discountbox span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s;
    white-space: nowrap;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    width: calc(100% - 55px);
}

.discountbox span img {
    max-width: 18px;
    transform: rotate(-90deg);
    margin-right: 5px;
    transition: all .3s;
}

.discountbox:hover span {
    color: #F1B342;
}

.discountbox:hover span img {
    filter: invert(72%) sepia(57%) saturate(635%) hue-rotate(338deg) brightness(105%) contrast(89%);
}

.quick-links.rounded {
    border: 1px solid #CCCCCC;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 15px;
}

.quick-links.rounded a {
    padding: 15px 15px 15px 20px;
}

.list {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 22px;
    color: #000;
}

.list li {
    position: relative;
    background: url(../img/check.svg) 0px 7px no-repeat;
    background-size: 16px auto;
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    list-style: none;
    padding-left: 25px;
    margin-bottom: 15px;
}

.main-info .perfect-vehicle {
    padding-bottom: 40px;
}

.main-info .perfect-vehicle h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.main-info .bg-built {
    background: #16151D url(../img/bg-built.png) -16% 60% no-repeat;
    border-radius: 20px;
    padding: 40px 70px 40px 20px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.main-info .bg-built h3,
.main-info .bg-built p {
    color: #fff;
}

.text-orange {
    color: #F1B342 !important;
}

.imgtext-card {
    background: #56BEA4;
    border-radius: 15px;
    overflow: hidden;
}

.imgtext-card .img {
    height: 200px;
    position: relative;
}

.imgtext-card .text {
    padding: 17px 30px 18px 30px;
}

.imgtext-card h3 {
    font-weight: 600;
    color: #fff;
}

.imgtext-card p {
    color: #fff;
    margin-bottom: 5px;
    font-weight: 300;
}

.imgtext-card.bgimg {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.imgtext-card.bgimg .img {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
}

.imgtext-card.bgimg .img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}

.imgtext-card.bgimg .img>img {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 3;
    max-width: 75px;
}

.imgtext-card.bgimg .img .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: none;
    z-index: 3;
}

.main-info #how-to-order {
    padding-top: 40px;
}

.main-info #how-to-order .btn-default {
    margin-bottom: 12px;
}

/*** info ***/
.info {
    background: url(../img/cycle-img-2.png) 50% 50% no-repeat;
    background-size: cover;
    padding-top: 80px;
}


/*** footer ***/
.footer {
    padding: 10px 10px 35px 10px;
    background: #272320;
    margin-top: -2px;
}

.footer.active {
    padding-bottom: 135px;
}

.footer h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.footer h3.footer-anchor.first {
    border-top: none;
}

.footer h3.footer-anchor {
    pointer-events: none;
}

.footer p {
    color: #FFFFFF;
}

.footer p a {
    color: #FFFFFF;
}

.footer p a:hover {
    color: #F1B342;
}

.footer .material-symbols-outlined {
    color: #fff;
}

.footer .footer-submenu {
    padding-bottom: 20px;
    width: 100%;
}

.footer .appicon {
    margin-right: 10px;
}

.footer .appicon img {
    max-height: 50px;
}

/*** sidebar ***/
.about-region-card {
    background: #56BEA4;
    border-radius: 15px;
    overflow: hidden;
    max-width: 385px;
}

@media only screen and (min-width:768px) {
.main-info .logo img {
    max-height: 60px;
    margin-left: 5px;
    margin-bottom: 20px;
}

.main-info #pricing .bgimg img {
    height: 280px;
}

.footer {
    padding-top: 40px;
}

    margin-right: 10px;
}
 
.banner.ketler-cargo-banner.region-page {
    background: #000000;
    padding: 50px 0px;
}
 
.banner.ketler-cargo-banner.region-page .bgimg {
    padding: 30px 45px 0px 45px;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 20px;
}
 
.zindex {
    position: relative;
    z-index: 99;
}
 
.banner.ketler-cargo-banner.region-page .bgimg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
}

}

@media only screen and (min-width:992px) {
.sidebar.about-region-card.fixed {
    top: 20px;
    position: fixed;
}

}

.sidebar.about-region-card .img {
    height: 200px;
    position: relative;
}

.sidebar.about-region-card .img img {
    position: absolute;
    top: 15px;
    right: 15px;
    max-width: 60px;
    border-radius: 10px;
}

.sidebar.about-region-card .text {
    padding: 15px 25px;
}

.sidebar.about-region-card p {
    margin-bottom: 5px;
    line-height: 25px;
    color: #fff;
}

.sidebar.about-region-card .lg {
    margin-bottom: 10px;
    line-height: 28px;
}

.sidebar.about-region-card .text .btn-default {
    width: auto;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 0px 25px;
    line-height: 45px;
    margin-top: 10px;
    margin-bottom: 10px;
    background:none;
}

.sidebar.about-region-card .text .btn-default

@font-face {
    font-family: 'BrownRegular';
    src: url('../fonts/BrownRegular.eot');
    src: url('../fonts/BrownRegular.eot') format('embedded-opentype'),
         url('../fonts/BrownRegular.woff2') format('woff2'),
         url('../fonts/BrownRegular.woff') format('woff'),
         url('../fonts/BrownRegular.ttf') format('truetype'),
         url('../fonts/BrownRegular.svg#BrownRegular') format('svg');
}
 
@font-face {
    font-family: 'BrownLight';
    src: url('../fonts/BrownLight.eot');
    src: url('../fonts/BrownLight.eot') format('embedded-opentype'),
         url('../fonts/BrownLight.woff2') format('woff2'),
         url('../fonts/BrownLight.woff') format('woff'),
         url('../fonts/BrownLight.ttf') format('truetype'),
         url('../fonts/BrownLight.svg#BrownLight') format('svg');
}
 
.quick-links a span {
    font-family: 'BrownLight';
}

 
/**/
.form-bar .form-control {
    padding: 0;
    border: none;
    margin-bottom: 0;
}
 
.form-bar .form-control input.large {
    background: #fff;
    border-radius: 5px;
    height: 35px;
    padding: 0px 15px;
    font-family: "Poppins", serif;
    font-weight: 300;
    font-size: 14px;
    border: 1px solid #CCCCCC !important;
    box-shadow: none !important;
    outline: none !important;
    margin-bottom: 15px;
    color: #272320;
}
 
.form-bar .gform-theme--foundation .gform_fields {
    row-gap: 15px;
}
 
.form-bar .gform-footer {
    margin-top: 15px !important;
}
 
.form-bar .gform_button {
    display: inline-block !important;
    width: 100% !important;
    color: rgb(255, 255, 255) !important;
    min-width: 175px !important;
    text-align: center !important;
    font-size: 17px !important;
    line-height: 42px !important;
    padding: 0px 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    background: rgb(241, 179, 66) !important;
    border-radius: 25px !important;
}
 
.form-bar .gform_button:hover {
    color: rgb(241, 179, 66) !important;
    background: none !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: rgb(241, 179, 66) !important;
    border-image: initial !important;
}
 
.main-info .upbar a {
    margin-bottom: 10px;
    vertical-align: top;
}
 

@media only screen and (min-width:992px) {
.main-info .mainspace>div {
    padding-left: 30px;
    padding-right: 40px;
}

.main-info .mainspace>div:last-child {
    padding-left: 40px;
    padding-right: 15px;
}

}




/******* Contact & support page css ********/
.contact-section {
    border-radius: 20px 20px 0px 0px;
    position: relative;
    z-index: 3;
    background: #fff;
    padding: 35px 0px 25px 0px;
}

.contact-section .pricing-card {
    border: 1px solid #CCCCCC;
    background: #FFFFFF;
    border-radius: 28px;
    padding: 30px 22px 30px 30px;
    margin-bottom: 20px;
}

.contact-section .pricing-card p.lg {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
}

.contact-section .pricing-card p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 18px;
}

.contact-section .pricing-card .material-symbols-outlined {
    font-size: 50px;
}

.userinfo {
    display: flex;
    align-items: center;
    color: #000;
    margin-bottom: 20px;
}

.userinfo .img {
    min-width: 56px;
    margin-right: 20px;
}

.userinfo .img img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
}

.userinfo p span {
    font-size: 18px;
}

.userinfo p {
    font-size: 14px;
    color: #272320;
    line-height: 25px;
}

.mapinfo-card {
    border: 1px solid #CCCCCC;
    background: #FFFFFF;
    border-radius: 23px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.mapinfo-card .grey-borderbtn {
    line-height: 42px;
}

.mapinfo-card .map-bg {
    height: 172px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    float: left;
}

.mapinfo-card .map-bg.lg {
    height: 240px;
}

.mapinfo-card .map-bg img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.mapinfo-card .text {
    padding: 20px 33px 25px 33px;
    float: left;
    width: 100%;
}

.mapinfo-card h4 {
    margin-bottom: 12px;
}

.mapinfo-card h4 span {
    margin-right: 5px;
    position: relative;
    top: 5px;
}

.mapinfo-card h4 img {
    margin-right: 10px;
}

.grey-borderbtn {
    font-weight: 600;
}

.orange-borderbtn {
    display: inline-block;
    border: 1px solid #F1B342;
    color: #F1B342;
    border-radius: 45px;
    padding: 0px 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
}

.orange-borderbtn:hover {
    background-color: #F1B342;
    color: #fff;
}

.grey-btn {
    display: inline-block;
    background: #F0F4F9;
    color: #000000;
    border-radius: 45px;
    padding: 0px 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 42px;
    text-transform: uppercase;
}

.grey-btn:hover {
    background-color: #F1B342;
    color: #fff;
}

.mapinfo-card.verticle {
    display: flex;
    margin-bottom: 40px;
    border-radius: 20px;
}

.mapinfo-card.verticle .map-bg {
    width: 40%;
    height: initial;
}

.mapinfo-card.verticle p {
    margin-bottom: 25px;
}

.mapinfo-card.verticle .text {
    width: 60%;
    align-self: center;
    padding-bottom: 30px;
}

.mapinfo-card.verticle .orange-borderbtn {
    margin-bottom: 15px;
}

.contact-section .space-right {
    padding-right: 20px;
}

.contact-section .space-left {
    padding-left: 20px;
}

.trusted-by {
    padding-bottom: 30px;
}

.trusted-by .logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

/*** Modal Css */
.business-modal.normalmodal .modal-dialog {
    max-width: 800px !important;
}

.business-modal.normalmodal .modal-content {
    padding: 0px;
    border-radius: 0px;
    overflow: hidden;
    border: none;
    background: #fff;
    border-radius: 20px;
}

.business-modal.normalmodal .modal-body {
    padding: 0px;
    overflow: hidden;
}

.business-modal.normalmodal h3 {
    font-weight: 600;
}

.business-modal.normalmodal h4 {
    margin-bottom: 30px;
}

.business-modal.normalmodal p {
    margin-bottom: 20px;
}

.business-modal.normalmodal p.small {
    font-size: 13px;
    margin-top: 20px;
}

.business-modal.normalmodal p.small a {
    color: #999;
}

.business-modal.normalmodal p.small a:hover {
    color: #000;
    text-decoration: underline;
}

.color-grey {
    color: #999;
}

.business-modal.normalmodal .large-img {
    border-radius: 5px 0px 0px 5px;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0px;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background: url(../img/bg-banner-region.png) 50% 20% no-repeat;
    background-position:42% 34%;
    background-size: cover;
}

.business-modal.normalmodal .large-img img {
    position: relative;
    z-index: 3;
}

.business-modal.normalmodal .text {
    padding: 35px 35px 20px 35px;
}

.business-modal.normalmodal .btn-default {
    line-height: 45px;
}

.business-modal.normalmodal .btn-default, 
.business-modal.normalmodal .normalborder-btn {
    width: 95%;
}

.business-modal.normalmodal .btn-default {
    margin-bottom: 15px;
}

.business-modal.normalmodal .normalborder-btn {
    line-height: 42px;    
}


.business-modal.normalmodal .quick-links {
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 25px;
}

.business-modal.normalmodal .quick-links a {
    padding: 10px 0px 10px 16px;
    font-family: 'BrownLight';
    font-weight: 300;
}

.business-modal.normalmodal .quick-links .flag-img {
    margin-left: 0;
    margin-right: 10px;
}

.business-modal.normalmodal .normalborder-btn {
    margin-bottom: 13px;
}

.business-modal.normalmodal .quick-links a span img {
    width: 18px;
    height: 9px;
}


/*** contact-section support ***/
.contact-section.support {
    
}

.contact-section h1 span {
    font-size: 41px;
    font-weight: 300;
    margin-right: 9px;
    position: relative;
    top: 3px;
}

.contact-section.support .nav-tabs {
    border: none;
    margin: 0;
    display: flex;
    align-items: start;
    gap:20px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.contact-section.support .nav-tabs .nav-link {
    border: none;
    border-radius: 0px;
    padding: 0px;
    text-align: left;
    color: #000;
    background: none !important;
}

.contact-section.support .nav-tabs .nav-link:hover.tab-card,
.contact-section.support .nav-tabs .nav-link.active .tab-card {
    border: 2px solid #F1B342;
}

.contact-section.support .tab-content {
    padding-top: 20px;
}

.contact-section .tab-card {
    border: 1px solid #CCCCCC;
    background: #FFFFFF;
    border-radius: 22px;
    padding: 20px 25px;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    transition: all .3s;
}

.contact-section .tab-card p.lg {
    margin-top: 0px;
    margin-bottom: 7px;
    font-size: 20px;
    line-height: 28px;
}

.contact-section .tab-card p {
    margin-bottom: 0px;
}

.contact-section .tab-card p.small {
    width: 75%;
}

.NL_support-form textarea.form-control {
    padding: 10px 15px;
    resize: none;
    height: 100px;
    margin-bottom: 20px;
}

.NL_support-form .form-control {
    height: 40px;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    padding: 0px 15px;
    color: #272320;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    box-shadow: none !important;
    outline: none !important;
}

.NL_support-form .form-control::-webkit-input-placeholder {
    color: #272320;
}

.NL_support-form .form-control:focus {
    border-color: #F1B342;
    border-width: 2px;
}



.vehicle-overview {
    position: relative;
    z-index: 3;
    background: #fff;
    padding: 35px 0px 25px 0px;
}

.vehicle-overview .mapinfo-card .text {
    padding: 20px 24px 25px 24px;
}

.vehicle-card {
    border: 1px solid #CCCCCC;
    background: #FFFFFF;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 17px 25px 25px 25px;
    margin-bottom: 20px;
}

.vehicle-card .tags {
    margin-top: 15px;
}

.vehicle-card .tags a {
    display: inline-block;
    background: #F0F4F9;
    min-width: 67px;
    text-align: center;
    line-height: 24px;
    border-radius: 15px;
    color: #000000;
    font-weight: 300;
    font-size: 13px;
    padding: 0px 15px;
    margin-bottom: 10px;
    margin-right: 5px;
}

.vehicle-card p {
    margin-top: 5px;
}

.vehicle-card .orange-borderbtn {
    text-transform: uppercase;
    border-width: 2px;
    min-width: 165px;
}
 
.vehicle-overview h2 {
    line-height: 45px;
    margin-bottom: 15px;
}

.vehicle-overview .rightside select.form-control {
    background: #F0F4F9 url(https://ridetoday.at/wp-content/themes/ride-today/assets/img/down-arrow.svg) 95% 50% no-repeat;
    background-size: 17px auto;
    height: 45px;
    padding: 0px 20px;
    border-radius: 5px;
    font-family: "Poppins", serif;
    font-weight: 300;
    font-size: 18px;
    color: #000;
    border: none;
    margin: 0;
    margin-bottom: 25px;
}

.vehicle-overview .pricing-card {
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    padding: 10px 22px 10px 22px;
}

.vehicle-overview .pricing-card.green {
    background: #56BEA4;
    border-color: #56BEA4;
}

.vehicle-overview .pricing-card.green .material-symbols-outlined {
    color: #fff;
}

.vehicle-overview .pricing-card.green p {
    color: #fff !important;
}

.vehicle-overview .pricing-card.grey {
    background: #F0F4F9;
    border-color: #F0F4F9;
}

.vehicle-overview .pricing-card p {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 3px;
    color: #000;
}

.vehicle-overview .pricing-card p.lg {
    line-height: 25px;
    min-height: 70px;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 25px;
    color: #272320;
}

.vehicle-overview .pricing-card .material-symbols-outlined {
    font-size: 55px;
}

/**/
.vehicle-overview .left h4 {
    
}

.vehicle-overview .left h4 span {
    position: relative;
    top: 8px;
    margin-right: 3px;
    font-size: 28px;
}

.filter-accordion .accordion-button {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    padding: 15px 0px !important;
}

.filter-accordion .accordion-item {
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #CCCCCC;
    padding: 10px 0px;
}

.filter-accordion .accordion-item:last-child {
    border-bottom: none;
}

.filter-accordion .accordion-button::after {
    width: 25px;
    height: 25px;
    border: none !important;
    background: url(../img/down-arrow.svg) 50% 50% no-repeat;
    background-size: 20px auto !important;
    border-radius: 0;
    transform: rotate(0deg);
}

.filter-accordion .accordion-button:not(.collapsed)::after {
    background: url(../img/down-arrow.svg) 50% 50% no-repeat;
    transform: rotate(-180deg);
}

.filter-accordion .accordion-body {
}

.form-check {
    display: block;
    margin-bottom: 6px;
    padding-left: 35px;
}

.form-check label {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
}

.form-check .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    margin-left: -35px;
}

/**/
.form-check.radio-check {
    padding: 0;
    overflow: hidden;
    position: relative;
    margin: 0;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0px;
}

.form-check.radio-check .form-check-input {
    position: absolute;
    opacity: 0;
}

.form-check.radio-check .form-check-label {
    display: inline-block;
    padding: 0px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #CCCCCC;
    background: #fff;
    padding: 0px 16px;
    line-height: 36px;
    min-width: 75px;
    border-radius: 25px;
}

.form-check.radio-check input:checked + label {
    background: #F1B342 !important;
    border-color: #F1B342 !important;
    color: #fff !important;
}

.form-check-input[type="checkbox"]:checked {
    background-color: #F1B342;
    border-color: #F1B342;
}

.form-check-input[type="checkbox"]:focus {
    box-shadow: 0 0 0 .25rem rgba(241, 179, 66,.25);
    background-color: #F1B342;
    border-color: #F1B342;
}



/**/
.faq {
    margin-top: 60px;
    margin-bottom: 40px;
}

.faq h2 {
    margin-bottom: 15px;
}

.faq .accordion {
    border: none;
    border-radius: 0;
}

.faq .accordion p {
    max-width: 80%;
}

.faq .accordion .accordion-item {
    border: none !important;
    border-radius: 0px !important;
    border-bottom:.5px solid #808080 !important;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.accordion-button {
    padding: 10px 0px 10px 0px;
    background: none !important;
    border: none !important;
    color: #000 !important;
    font-size:19px;
    font-weight: 600;
    box-shadow: none !important;
    gap: 15px;
}

.accordion-button:not(.collapsed) {
    padding: 10px 0px;
    padding-bottom: 0px;
}

.accordion-body {
    padding: 0px 0px 20px 0px;
    border: none !important;
}

.accordion-button:not(.collapsed)::after {
    background: url(../img/down-arrow.svg) 50% 50% no-repeat;
    transform: rotate(-180deg);
}

.accordion-button::after {
    width: 53px;
    height: 53px;
    border: none !important;
    background: url(../img/down-arrow.svg) 50% 50% no-repeat;
    background-size: 20px auto !important;
    border: 1px solid #9D9D9C !important;
    border-radius: 50%;
    transform: rotate(-90deg);
    margin-left: auto;
}


/**/
.trusted-by .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.trusted-by .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}


/*** Vehicle download page css***/
.vehicle-overview h1 .material-symbols-outlined {
    top: 8px;
    font-weight: 300;
    position: relative;
    margin-right: 2px;
    font-size: 44px;
}

.vehicle-downloads-form {
    margin-top: 40px;
}

.vehicle-downloads-form h4 {
    margin-bottom: 20px;
}

.vehicle-downloads-form .form-control {
    height: 40px;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    padding: 0px 15px;
    color: #272320;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    box-shadow: none !important;
    outline: none !important;
}

.vehicle-downloads-form select.form-control {
    background: url(../img/down-arrow.svg) 97% 50% no-repeat;
    background-size: 20px auto !important;
}

.vehicle-downloads-form .form-control::-webkit-input-placeholder {
    color: #272320;
}

.vehicle-downloads-form .form-control:focus {
    border-color: #F1B342;
    border-width: 2px;
}





/*** Responsive Css ***/
@media only screen and (max-width:767px) {
.form-overlay {
    margin-top: 580px;
    background: #fff;
    position: relative;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
}

.btn-default {
    padding: 0px 25px;
    font-size: 17px;
    line-height: 42px;
}

.footer h3.footer-anchor {
    border-top: 1px solid #CCCCCC;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    padding: 10px 3px;
    position: relative;
    cursor: pointer;
    pointer-events: all;
}

.footer h3.footer-anchor:after {
    content: "\f107";
    position: absolute;
    top: 18px;
    right: 0;
    color: #fff;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: 29px;
}

.footer .footer-anchor.active:after {
    content: "\f106";
}

.footer .footer-anchor.active + .footer-submenu {
    display: inline-block;
    width: 100%;
}

.footer .footer-submenu {
    display: none;
    padding: 0px 3px 20px 3px;
}

.footer .btn-default {
    width: 100%;
    margin-bottom: 10px;
}

.grey-borderbtn {
    border-radius: 45px;
    padding: 0px 13px;
    font-size: 17px;
    line-height: 40px;
}

p.large {
    font-size: 18px;
    line-height: 36px;
}

h2 {
    font-size: 28px;
}

p {
    font-size: 16px;
    line-height: 34px;
}

h3.small {
    font-size: 18px;
    line-height: 23px;
}

.main-info .bg-built {
    background: #16151D url(../img/bg-built.png) -322% 335% no-repeat;
    background-size: 95% auto;
    border-radius: 20px;
    padding: 20px 15px 40px 15px;
    margin: 0 auto;
    margin-bottom: 20px;
    min-height: 550px;
}

.imgtext-card {
    margin-bottom: 20px;
}

.discountbox span {
    font-size: 13px;
}
.main-info .bg-built {
    background: #16151D url(../img/bg-built.png) -322% 335% no-repeat !important;
    background-size: 95% auto !important;
}
 
.main-info #how-to-order .btn-default {
    width: 100%;
}
 
.banner.ketler-cargo-banner.region-page .container {
    padding: 0;
}
 
.banner.ketler-cargo-banner.region-page .bgimg {
    padding: 0px 50px;
    padding-top: 60px;
}
 
.banner.ketler-cargo-banner.region-page .text-end {
    text-align: center !important;
}
 

.form-overlay {
    margin-top: -17px;
}
 
#form {
    background: #56BEA4;
    min-height: 440px;
}


.trusted-by .logos {
}

.trusted-by .logos img {
    margin-bottom: 25px;
    max-height: 13px;
}

.mapinfo-card.verticle {
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 20px;
}

.mapinfo-card.verticle .map-bg {
    width: 100%;
    height: 172px;
}

.mapinfo-card.verticle .text {
    width: 100%;
    align-self: center;
    padding-bottom: 30px;
}

.contact-section .space-right {
    padding-right: 12px;
}

.contact-section .space-left {
    padding-left: 12px;
}

.business-modal.normalmodal .large-img {
    height: 280px;
    border-radius: 5px 5px 0px 0px;
}

.contact-section.support .nav-tabs {
    gap: 0px;
    flex-wrap: wrap;
}

.mapinfo-card .text {
    padding: 20px 30px 25px 30px;
}
h1 {
    font-size: 31px;
    line-height: 38px;
}

.vehicle-overview .container {
    padding-left: 25px;
    padding-right: 25px;
}

.vehicle-overview .mapinfo-card p.small ,
.vehicle-overview .mapinfo-card .userinfo p {
    font-size: 12px !important;
    line-height: 21px !important;
}

.vehicle-card p {
    display: none;
}

.vehicle-overview .mapinfo-card .userinfo .img img {
    width: 50px;
    height: 50px;
}

.vehicle-overview .mapinfo-card .userinfo .img {
    min-width: 56px;
    margin-right: 13px;
}

.vehicle-overview p {
    font-size: 14px;
    line-height: 29px;
}

.vehicle-overview h2 {
    font-size: 24px;
    line-height: 36px;
}

.vehicle-card {
    display: flex;
    flex-wrap: wrap;
}

.vehicle-card h4 {
    order: 1;
}

.vehicle-card .vehicle-img {
    order: 3;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.vehicle-card .vehicle-img img {
    width: 100%;
}

.vehicle-card .tags {
    order: 2;
}

.vehicle-card .orange-borderbtn {
    order: 4;
    min-width: 143px;
    padding: 0px 8px;
    font-size: 14px;
    line-height: 35px;
}

.vehicle-overview .downinfo h2 {
    margin-bottom: 20px;
    margin-top: 30px;
}

.vehicle-overview .faq {
    margin-top: 30px;
    margin-bottom: 40px;
}

.accordion-button {
    font-size: 14px;
    line-height: 23px;
}

.faq .accordion .accordion-item {
    margin-bottom: 14px;
    padding-bottom: 14px;
}

.accordion-button::after {
    width: 40px;
    height: 40px;
    background-size: 18px auto !important;
}

.accordion-body {
    padding: 15px 0px 20px 0px;
}

.faq .accordion p {
    max-width: 100%;
}

/**/
.filter-popup {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0,0,0,.3);
    padding-top: 50px;
    transition: all .5s;
    opacity: 0;
    pointer-events: none;
}

.filter-popup.active {
    top: 0;
    opacity: 1;
    pointer-events: all;
}

.filter-popup .bg {
    background: #fff;
    border-radius: 25px 25px 0px 0px;
    padding: 25px 20px;
    height: calc(100vh - -60px);
    overflow-y: scroll;
}

.filter-popup .grey-borderbtn {
    margin-top: 10px;
}

.filter-btn {
    margin-bottom: 20px;
    display: inline-block;
}

.vehicle-overview {
    padding: 35px 0px 0px 0px;
}

.vehicle-overview h1 .material-symbols-outlined {
    margin-right: 0px;
    font-size: 36px;
}	
	
	
}


@media only screen and (min-width:768px) and (max-width:991px) {
.about-region-card {
    max-width: 100%;
    margin-top: 20px;
    position: relative !important;
    top: auto !important;
}

.about-region-card {
    max-width: 100%;
}
 
.about-region-card {
    max-width: 100%;
    margin-top: 20px;
    position: relative !important;
    top: 0 !important;
}
 
 
 .trusted-by .logos img {
    max-height: 25px;
}

.business-modal.normalmodal .modal-dialog {
    max-width: 750px !important;
}

	.vehicle-overview .pricing-card p.lg {
    font-size: 18px;
}

.trusted-by .logos img {
    max-height: inherit;
}
}


@media only screen and (min-width:992px) and (max-width:1199px) {
.main-info .mainspace>div:last-child {
    padding-left: 10px;
    padding-right: 15px;
}
 
.about-region-card {
    max-width: 294px;
}

.footer .btn-default {
    font-size: 15px;
    padding: 0px 14px;
}

.btn-default {
    min-width: 175px;
    font-size: 17px;
    line-height: 47px;
    border-radius: 25px;
    padding: 0px 32px;
}

.grey-btn {
    padding: 0px 20px;
    font-size: 15px;
}

.orange-borderbtn {
    padding: 0px 20px;
    font-size: 15px;
}

.mapinfo-card.verticle p.small {
    margin-bottom: 25px;
    font-size: 13px;
}

.mapinfo-card h4 {
    font-size: 15px;
}


}

@media only screen and (min-width:1200px) and (max-width:1399px) {
.about-region-card {
    max-width: 325px;
}


}