:root {
  --lightgreen: #EDFAFA;
	--green: #1BC6C0;
	--font: #343F53;
}

.hero-alt{
	background-size:cover;
	background-position:center;
	position:relative;
	z-index:1;
}

.hero-alt:after{
	content:'';
	width:100%;
	height:100%;
	position:absolute;
	background:#000; 
	top:0;
	opacity:0.6;
	z-index:-1;
}

.hero-alt h1{
	text-align:center;
	color:#fff; 
	line-height:1.2em;
	font-size:42px;
	font-weight:500;
}
.hero-alt h1 b{
	font-weight:500;
	color:#F2CD4A;
}

.hero-alt img{
	max-width:230px;
	margin-bottom:80px;
}

.hero-alt .inner-row{
	min-height:100vh;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
}

@media (min-height:760px){
	.hero-alt .inner-row{
		min-height:calc(100vh - 168px);
	}
}

.hero-alt .hero-alt-content{
	text-align:center;
	max-width:600px;
	margin-left:auto;
	margin-right:auto;
	padding-bottom:118px;
}

.hero-icons{
	background:#0F1011;
}

.hero-icons .inner-row{
	display:flex;
	padding-top:32px;
	padding-bottom:32px;
	justify-content:space-between;
}

.hero-icons .icon-box{
	text-align:center;
}

.hero-icons .icon-box img{
	margin-bottom:12px;
	height:32px;
	max-width:37px;
}

.hero-icons .icon-box p{
	color:#fff;
	font-size:15px;
}


section.calculator{
	padding-top:80px;
	background:#E7E8E9;
	position:relative;
	z-index:1;
}

section.calculator:after{
	content:'';
	width:100%;
	height:100px;
	bottom:0;
	background:#fff;
	position:absolute;
	z-index:-1;
}


.calculator-image{
	text-align:center;
}

.calculator-image img{
	max-width:740px;
	width:100%;
}

.calculator .accordion{
	background:#fff;
	border-radius:30px;
	padding:24px;
	margin-bottom:60px;
}

.accordion-header{
	display:flex;
	align-items:center;
	padding-left:24px;
	padding-right:24px;
	h3{
		font-size:26px;
		font-weight:600;
		b{
			color:#1BC6C0;
			font-weight:500;
		}
	}
}

.accordion-header img{
	max-width:140px;
	margin-right:24px;
}

.accordion-body{
	margin-top:24px;
	margin-bottom:24px;
	display:none;
}

.accordion-body ul li{
	display:flex;
	padding:12px 24px;
	align-items:center;
}

.toggle-accordion{
  padding:0;
	margin-left:auto;
	border-radius:0;
	outline:none;
	line-height:1.2em;
	height:1.2em;
	cursor:pointer;
	background:transparent;
	font-size:20px;
	font-weight:600;
}

.toggle-accordion span.parent-span{
	display:flex;
	align-items:center;
}

.toggle-accordion .toggle-accordion-open{
	margin-right:8px;
	display:none;
}

.toggle-accordion.is-open .toggle-accordion-open{
	display:inline-block;
}

.toggle-accordion svg{
	width:22px;
	margin-left:24px;
	transform:rotate(180deg);
	transition:.3s;
}

.toggle-accordion.is-open svg{
	transform:rotate(0deg);
	transition:.3s;
}

.toggle-accordion:hover{
	background:transparent;
}

.specs-columns{
	display:flex;
	justify-content:space-between;
}

.accordion-body ul{
  flex-basis:calc(50% - 12px);
}

.accordion-body ul li:nth-child(odd){
	background:var(--lightgreen);
	border-radius:16px;
}

.accordion-body ul li p{
	margin-bottom:0 !important;
	margin-top:0;
}

.accordion-body ul li p.label{
	flex-basis:50%;
}

.accordion-body ul li p.value{
	color:#343F53;
}

.price-calculator{
	background:#0F1011;
	border-radius:24px;
}

.calculator-top{
	padding-top:80px;
	padding-bottom:40px;
	max-width:800px;
	width:calc(100% - 56px);
	margin-left:auto;
	margin-right:auto;
}

.calculator-header h2{
	color:#fff;
	font-weight:600;
	font-size:38px;
}


.range-row ul {
	  margin-top:24px;
    display: flex;
    justify-content: space-evenly;
}

.range-row ul li{
background: #ffffff;
background: linear-gradient(0deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 60%);
	height:24px;
	cursor:pointer;
	flex-basis:100%;
	position:relative;
}

.range-row ul li:before{
	content:'';
	background:transparent;
	width:100%;
	height:8px;
	top:8px;
	position:absolute;
}

.range-row ul li:after{
	content:'';
	background: #ffffff;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
	width:8px;
	height:24px;
	right:0;
	top:0px;
	position:absolute;
}

.range-row ul li.past,
.range-row ul li.active{
		background: #F2CD4A;
background: linear-gradient(0deg, rgba(242, 205, 74, 0) 40%, rgba(242, 205, 74, 1) 40%, rgba(242, 205, 74, 1) 60%, rgba(242, 205, 74, 0) 60%);
}

.range-row ul li.past:before,
.range-row ul li.active:before{
		background:#F2CD4A;
}

.range-row ul li.past:after,
.range-row ul li.active:after{
	background: #ffffff;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(242, 205, 74, 1) 50%, rgba(242, 205, 74, 1) 100%);
}

.range-row ul label{
	color:#fff;
	top:36px;
	right:0;
	position:absolute;
}


.range-label{
	color:#F2CD4A;
	font-weight:600;
	font-size:24px;
	margin-bottom:40px;
	margin-top:24px;
}



.range-row{
	margin-bottom:80px;
}

[type="range"]{
	width:100%;
}

.tabs-header{
	display:flex;
	justify-content:space-between;
}

.tabs-header .tab{
	background:#FEF7E1;
	padding:48px;
	flex-basis:50%;
	border:solid 4px transparent;
	border-bottom:0;
	display:flex;
	justify-content:space-between;
	position:relative;
}

.tabs-header .tab .desc{
	flex-basis:calc(100% - 200px);
}

.tabs-header .tab:after{
	content:'';
	width:calc(100% + 8px);
	height:4px;
	background:#F2CD4A;
	position:absolute;
	bottom:0;
	left:-4px;
}

.tabs-header .tab.active:after{
	background:transparent;
}

.btn-book{
	cursor:pointer;
}

.plan-price .price{
	font-size:48px;
	font-weight:600;
	line-height:1em;
}

.plan-price{
	line-height:1em;
	display:inline-flex;
	flex-direction:column;
	justify-content:flex-end;
	align-items:flex-end;
	margin-right:auto;
	margin-left:auto;
	width:auto;
}

.plan-desc{
	color:#00000070;
	font-size:14px;
	max-width:340px;
	margin-top:24px;
}

.include-desc{
	margin-bottom:24px;
	font-size:16px;
	font-weight:500;
}

.plan-price .per{
	color:#000;
	font-weight:600;
	margin-bottom:24px;
	display:block;
	text-align:right;
	margin-top:0;
}

.price-col button{
	background:#F2CD4A;
	font-size:16px;
	font-weight:700;
	text-transform:uppercase;
}

.tabs-header .tab .desc h3{
	font-size:24px;
	font-weight:600;
}


.tabs-header .tab.active{
	background:#fff;
	border:solid 4px #F2CD4A;
	border-bottom:0;
}

.tabs-header .tab:nth-child(1){
	border-radius:0 40px 0 0;
}

.tabs-header .tab:nth-child(2){
	border-radius:40px 0 0 0;
}

.tabs-content{
	background:#fff;
	border:solid 4px #F2CD4A;
}

.tabs-content .flex-row{
	display:flex;
	justify-content:space-between;
	padding-top:54px;
	padding-bottom:40px;
	max-width:calc(100% - 96px);
	max-width:800px;
	margin-left:auto; 
	margin-right:auto;
}

.tabs-content .flex-row .price-col{
	max-width:260px;
	width:auto;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
}

.tab-column.addons h4:last-of-type{
	margin-top:24px;
}

.tabs-content h4{
	font-size:20px;
	font-weight:600;
	text-transform:uppercase;
	margin-bottom:24px;
}

.tabs-content .tab-column.price--{
	flex-basis:300px;
	padding:0;
}

.tabs-content .tab-column.addons{
	flex-basis:calc(100% - 340px);
	padding:0;
}

.tabs-content .tab-column ul li{
	border-bottom:1px solid #F2CD4A;
	padding-bottom:12px;
	margin-bottom:12px;
}

.tabs-content .tab-column ul li .num{
	color:#F2CD4A;
	margin-right:24px;
}

.rental-form-overlay{
	position:fixed;
	background:#000;
	width:100%;
	height:100%;
	z-index:111;
	top:0;
	left:0;
	opacity:0;
	visibility:hidden;
	transition:.4s;
}

.rental-form{ 
	position:fixed;
  opacity:0;
	visibility:hidden;
	top:50%;
	left:50%;
	background:#fff;
	z-index:11111;
	max-width:800px;
	width:calc(100% - 48px);
	transform:translate(-50%, -50%);
	padding:30px 32px 12px 32px;
	border-radius:24px;
	text-align:center;
	transition:.4s;
}

.popup-visible .rental-form-overlay{
  opacity:0.5;
	visibility:visible;
}

button.close-popup{
	position:absolute;
	cursor:pointer;
	right:24px;
	top:24px;
	background-image:url(/wp-content/themes/vokbikes/assets/close.svg);
	background-size:16px;
	background-repeat:no-repeat;
	background-position:center;
	background-color:transparent;
	border-radius:50%;
	border:solid 1px #bbb;
	padding:0;
	width:32px;
	height:32px;	
}

.rental-form-inner::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.rental-form-inner::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.rental-form-inner::-webkit-scrollbar-thumb
{
	background-color: #1BC6C0;
}

.popup-visible .rental-form{
	opacity:1;
	visibility:visible;
}

.form-header h2{
	font-size:38px;
	max-width:350px;
	font-weight:600;
	line-height:1.2em;
	margin-left:auto;
	margin-right:auto;
}

.form-header{
	margin-bottom:32px;
}

.form-header p{
	margin-top:.5em;
  font-size:16px;
	max-width:350px;
	margin-left:auto;
	margin-right:auto;
}

.rental-form-inner{
	margin:40px auto;
	padding-right:24px;
	padding-left:24px;
	overflow:auto;
	max-height:calc(100vh - 180px);
}

.form-header h2 b{
	color:#1BC6C0;
	font-weight:600;
}

.rental-form-inner form .success-message{
	width:100%;
	padding-top:80px;
	padding-bottom:80px;
	max-width:400px;
	margin-left:auto;
	margin-right:auto;
}

[data-status="invalid"]  .success-message,
[data-status="init"] .success-message{
	display:none;
}

[data-status="sent"] .form-no-sent{
	display:none;
}

.form-submit .form-header{
	display:none;
}

.rental-form-inner .wpcf7-response-output{
	display:none;
}

.form-close-popup{
	margin-top:24px;
	background: #F2CD4A;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
	cursor:pointer;
}


.form-close-popup:hover{
	background: #F2CD4A;
}

.rental-form-inner form .success-message h2{
	margin-top:0;
	line-height:1.1em;
	margin-bottom:24px;
	font-size:38px;
	font-weight:600;
	text-align:center;
}

.rental-form-inner form .success-message p{
	text-align:center;
}


.success-message img{
	max-width:400px;
	width:100%;
}

.rental-form-inner form p{
	text-align:left;
	font-size:14px;
	margin-bottom:12px;
}

.rental-form-inner form{
	max-width:464px;
	margin-left:auto;
	margin-right:auto;
}

.rental-form-inner form input,
.rental-form-inner form select{
	border-radius:24px;
	outline:none;
	padding-left:16px;
	width:100%;
	margin-top:4px;
	background:#fff;
	color:#000;
	font-size:16px;
	border:solid 1px #CDD2D6;
	line-height:40px;
	height:40px;
}

.rental-form-inner form input[name="rental-period"]{
	pointer-events:none;
}

.rental-form-inner form input.wpcf7-submit{
	margin-top:20px;
	margin-left:auto;
	margin-right:auto;
	display:block;
	width:auto;
	padding:0 32px;
	background:#F2CD4A;
	font-weight:600;
	font-family: Poppins, sans-serif;
	text-transform:uppercase; 
	color:#1E2125;
	border-color:#F2CD4A;
}



@media (max-width:1100px){
	.tabs-header .tab {
    padding: 24px;
		flex-direction:column;
	}
	
	.tabs-content .flex-row {
    padding-top:32px;
    padding-bottom: 32px;
    max-width: calc(100% - 48px);
	}
	
	.calculator .accordion{
		position:relative;
		margin-bottom:80px;
	}
	
	.accordion-header{
		padding:0;
	}
	
	.toggle-accordion{
		position:absolute;
		border-radius:0 0 24px 24px;
		padding:24px 24px 24px;
		right:24px;
		bottom:-48px;
		background:var(--green);
	}
	
	.toggle-accordion:hover{
		background:var(--green);
	}
	
	.toggle-accordion svg path{
		stroke:#fff;
	}
		
}

@media (max-width:820px){
	.specs-columns {
    flex-direction:column;
	}
	
	.calculator-top{
		padding-top:48px;
	}
	
	.tabs-content .tab-column:first-child {
    flex-basis: 240px;
	}
	
	.tabs-content .flex-row .price-col{
		margin-left:0;
	}
		.tabs-content .tab-column:nth-child(2) {
    flex-basis:calc(100% - 280px);
	}
}

@media (max-width:660px){
	.hero-alt h1{
		font-size:38px;
		max-width:360px;
	}
	
	.hero-alt .inner-row{
		min-height:580px;
	}
	
	.hero-alt img{
		margin-bottom:40px;
	}
	
	.hero-alt .hero-alt-content{
		padding-bottom:64px;
	}
	
	.hero-alt{
		background-position:right 33% center;
	}
	
	.hero-icons .inner-row{
		flex-wrap:wrap;
	}
	
	.hero-icons .icon-box{
		flex-basis:calc(50% - 24px);
		margin-bottom:28px;
	}
	
	.hero-icons .icon-box img{
		margin-bottom:12px;
	}
	
	section.calculator{
		padding-top:24px;
	}
	
	.accordion-header h3{
		font-size:18px;
	}
	
	.accordion-header img{
		height:24px;
	}
	
	.toggle-accordion{
		font-size:14px;
		font-weight:700;
	}
	.toggle-accordion svg{
		margin-left:12px;
	}
	
	.calculator-header h2{
		font-size:20px;
	}
	
	.range-label{
		font-size:16px;
	}
	
	.range-row{
		margin-bottom:54px;
	}
		
	.plan-price .per{
		margin-bottom:10px;
	}
	
	.tabs-header .tab .desc h3{
		font-size:16px;
		line-height:1em;
	}
	
	.price-col button{
		font-size:14px;
		margin-top:12px;
	}
	.tabs-header .tab:after{
		height:2px;
	}
	
	.tabs-content,
	.tabs-header .tab.active{
		border-width:2px;
	}
	
	.tabs-content .flex-row{
		flex-direction:column;
		gap:24px;
		align-items:flex-start;
	}
	
	.tabs-content .tab-column:nth-child(2){
		flex-basis:unset;
	}
	
	.tabs-content .tab-column:first-child{
		margin-left:auto;
		margin-right:auto;
		flex-basis:unset;
		margin-bottom:24px;
	}
	
	.tabs-content h4{
		font-size:16px;
	}
	
	.tabs-content .tab-column ul li{
		font-size:15px;
	}
	
	.hero-icons .inner-row{
		padding-bottom:12px;
	}
	
	.accordion-header h3{
		line-height:1.4em;
	}
	
  .price-calculator,
	.calculator .accordion{
		border-radius:20px;
	}
	
	.toggle-accordion{
		border-radius:0 0 20px 20px;
	}
}

@media (max-width:560px){
	.rental-form{
		width:100%;
		height:100%;
		border-radius:0;
		padding-left:0;
		padding-right:0;
	}
	
	.form-header h2{
		font-size:32px;
	}
	
	.rental-form-inner{
		max-height:calc(100% - 32px);
		padding-left:24px;
		padding-right:24px;
	}
}

@media (max-width:480px){
	.hero-icons .inner-row{
		width:calc(100% - 32px);
	}
	
	  .hero-icons .icon-box {
      flex-basis: calc(50% - 12px);
      margin-bottom: 24px;
    }
	
	 .accordion-header h3 {
      font-size: 16px;
   }
	
	.accordion-header img{
		margin-right:12px;
		max-width:calc(100% - 230px);
		max-height:20px;
		height:auto;
	}
	
	.calculator .accordion{
		padding:16px;
	}
	
	.accordion-body ul li p.value,
	.accordion-body ul li p.label{
		font-size:12px;
	}
	

	.accordion-body ul li {
    padding: 8px 18px;
	}
	
	.accordion-body ul li:nth-child(odd){
		border-radius:12px;
	}
	
	.accordion-body ul li p.label{
		flex-basis:38%;
	}
	
	.tabs-header .tab{
		padding:16px;
	}
	
	.tabs-content .flex-row {
		padding-top: 24px;
		padding-bottom: 24px;
		max-width: calc(100% - 32px);
	}
	
	.plan-price .per{
		font-size:14px;
	}
	
	.tabs-content .flex-row{
		gap:12px;
	}
	
	.tabs-content .tab-column ul li .num{
		margin-right:12px;
	}
	
	.range-row ul label{
		font-size:12px;
	}
}

@media (max-width:340px){
		.hero-alt h1{
		font-size:28px;
	}
	
	.hero-alt img{
		max-width:180px;
	}
	
	.hero-alt .inner-row{
		min-height:470px;
		height: calc(100vh - 168px);
	}
	
	.hero-alt img{
		margin-bottom:40px;
	}
	
	.calculator .accordion{
		border-radius:16px;
	}
	
	.plan-price .price{
		font-size:24px;
	}
	
	.plan-price .per{
		font-size:12px;
	}
	
	.price-col button{
		padding:0 12px;
		white-space:nowrap;
	}
	
	.tabs-header .tab{
		padding:12px;
	}
	
	.tabs-content .flex-row {
		max-width: calc(100% - 24px);
	}
	
}


@media (min-width:601px){
	.mlabel,
	.range-label span.mb-title{
		display:none;
	}
}

@media (max-width:600px){
 .dtlabel,
	.range-label span.dt-title{
		display:none;
	}

}