@import url(theme.css);
@import url(dubai.css);
@import url(neo.css);

.accent{background-color: #0ca750 !important;}

.circle{position: relative;width: 12px;height: 12px;border-radius: 50%;}
.circle.red{background: #e01f3d;}
.green{background: #0ca750;}
.circle:after{background: #ffffff;}
.circle:after{content: '';border-radius: 50%;position: absolute;top: 3px;left: 3px;width: 6px;height: 6px;}

.calculator-section>div{
	background: -webkit-linear-gradient(to bottom, rgba(12,167,80,0.6), rgba(12,167,80,0));
	background: -moz-linear-gradient(to bottom, rgba(12,167,80,0.6), rgba(12,167,80,0));
	background: linear-gradient(to bottom, rgba(12,167,80,0.6), rgba(12,167,80,0));
	padding: 90px 0 0 0;
	min-height: 400px;
}

.calculator-section .body{
	padding-top: 65px;
}

.banner{
	min-height: 300px;
}

.calculator .slider{
	box-sizing: border-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;

	width: 100%;
	min-height: 70px;
	/*touch-action: none;*/

	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;

	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.calculator .slider input{
	visibility: hidden;
}

.calculator .slider span.title{
	font: 400 14px/1.4 "NeoSans", sans-serif;
	min-width: 95px;
	max-width: 95px;
	margin-left: 0.5rem;
	color: #082137;
}

.calculator .slider span.suffix{
	font: 400 15px/1 "NeoSans", sans-serif;
	min-width: 30px;
	max-width: 50px;
	text-align: left;
	margin-right: 0.5rem;
}

.calculator .slider .rangeslider {
	width: 100%;
	height: 3px;
	position: relative;
}

.calculator .slider .rangeslider .rangeslider__fill__bg,.slider .rangeslider .rangeslider__fill {
	position: absolute;
	left: 0;
	z-index: 1;
	top: 3px;
	height: 4px;
	background: rgba(255,255,255, 0.2);
	border-radius: 4px;
}

.calculator .slider .rangeslider .rangeslider__fill{
	background: rgba(12,167,80,1);
}

.calculator .slider .rangeslider .rangeslider__fill__bg {
	width: 100%;
}

.calculator .slider .rangeslider .rangeslider__handle {
	width: 33px;
	height: 33px;
	left: 0;
	top: 0;
	z-index: 2;
	position: absolute;
	cursor: pointer;
}

.calculator .slider .rangeslider .rangeslider__handle:before {
	content: attr(data-value);
	top: 8px;
	right: 3px;
	left: 0;
	position: absolute;
	text-align: center;
	font-family: "NeoSans", sans-serif;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	font-size: 16px;
	font-weight: 500;
	line-height: 21px;
	color: #082137;
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
	-webkit-transform: translateY(var(--y, 0)) scale(var(--s, 0.9));
	transform: translateY(var(--y, 0)) scale(var(--s, 0.8));
}

.calculator .slider .rangeslider .rangeslider__handle:after {
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: block;
	border: 2px solid rgba(255,255,255,1);
	background: rgb(255,255,255);
	-webkit-box-shadow: 0 1px 5px 1px rgba(160, 161, 188, 0.05), 0 25px 40px -20px rgba(217,222,228,0);
	-moz-box-shadow: 0 1px 5px 1px rgba(160, 161, 188, 0.05), 0 25px 40px -20px rgba(217,222,228,0);
	-ms-box-shadow: 0 1px 5px 1px rgba(160, 161, 188, 0.05), 0 25px 40px -20px rgba(217,222,228,0);
	box-shadow: 0 1px 5px 1px rgba(160, 161, 188, 0.05), 0 25px 40px -20px rgba(217,222,228,0);
}

.calculator .slider .rangeslider .rangeslider__handle:active:before{
	color: #082137;
}

.calculator .slider .rangeslider .rangeslider__handle:active, .slider .rangeslider .rangeslider__handle.active {
	--s: 1;
	--y: -30px;
}

.contact-alert{

	box-sizing: border-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;

	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;

	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;

	text-align: center;
	min-height: 75px;
}

.contact-alert span{
	font: 500 15px/1.6 "NeoSans", sans-serif;
	opacity: 0;
	margin-top: 5px;
}

.contact-alert span a{
	color: #ffffff;
	background:rgb(12,167,80);
	padding: 10px 20px;
	margin-top: 15px;
	margin-right: 15px;
}

.tabbar, .tabbar-tblt{display: none;}

.price-plan-inactive, .price-plan-active>div, .price-plan-disabled>div{
	-webkit-transition: -webkit-box-shadow .3s ease-in-out;
	-moz-transition: -moz-box-shadow .3s ease-in-out;
	-ms-transition: -ms-box-shadow .3s ease-in-out;
	transition: box-shadow .3s ease-in-out;

	border-radius: 8px;
	position: relative;
	padding: 0;
}


.price-plan-inactive .col-header{
	width: 100%;
	height: 220px;
	text-align: center;
	padding: 1rem 0;
}

.price-plan-inactive .col-header{
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.price-plan-inactive .col-header .annual-holder{
    box-sizing: border-box;
    -ms-flex: none;
    -webkit-box-flex: none;
    flex: none;

	margin: 32px 0 43px 0;
	text-align: right;
}

.price-plan-inactive .col-header .annual-holder .discount-label{
	font-family: "NeoSans", sans-serif;
	font-size: 17px;
	font-weight: normal;
	line-height: 1.1;
	text-align: right;
	color: rgba(12,167,80,1);
}

.price-plan-inactive .col-header .annual-holder .currency-label{
	display: block;
	font-size: 14px;
	text-align: right;
	margin-top: 2.1rem;
}

.price-plan-inactive .col-header .annual-holder .switch-holder, .price-plan-disabled .col-header .annual-holder .switch-holder{
	box-sizing: border-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;

	-ms-flex-align: start;
	-webkit-box-align: start;
	justify-content: flex-start;

	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;

	padding: 0;
	margin-top: 20px;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .title, .price-plan-disabled .col-header .annual-holder .switch-holder .title{
	font-family: "NeoSans", sans-serif;
	text-align: center;
	font-weight: normal;
	min-width: 35px;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .title.active{
	color: #082137;
	font-weight: 500;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch{
	--line: #E8EBFB;
	--dot: rgba(12,167,80,1);
	--circle: #D3D4EC;
	--background: #fff;
	--duration: .3s;
	--text: #9EA0BE;
	--shadow: 0 1px 3px rgba(0, 9, 61, 0.08);
	cursor: pointer;
	position: relative;
	display: block;
	margin: 0 10px;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input {
	display: none;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch:before{
	content: '';
	width: 60px;
	height: 32px;
	border-radius: 16px;
	background: var(--background);
	position: absolute;
	left: 0;
	top: 0;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input + div {
	position: relative;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input + div:before, .price-plan-inactive .col-header .annual-holder .switch-holder .switch input + div:after{
	--s: 1;
	content: '';
	position: absolute;
	height: 4px;
	top: 14px;
	width: 24px;
	background: var(--line);

	-webkit-transform: scaleX(var(--s));
	transform: scaleX(var(--s));

	-webkit-transition: -webkit-transform var(--duration) ease;
	transition: -webkit-transform var(--duration) ease;
	transition: transform var(--duration) ease;
	transition: transform var(--duration) ease, -webkit-transform var(--duration) ease;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input + div:before{
	left: 4px;
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	border-radius: 2px 0 0 2px;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input + div:after{
	--s: 0;
	left: 32px;
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	border-radius: 0 2px 2px 0;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input + div span{
	padding-left: 60px;
	line-height: 28px;
	color: var(--text);
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input + div span:before{
	--x: 28px;
	--b: var(--circle);
	--s: 4px;
	content: '';
	position: absolute;
	left: 4px;
	top: 4px;
	width: 24px;
	height: 24px;
	border-radius: 50%;

	-webkit-box-shadow: inset 0 0 0 var(--s) var(--b);
	-moz-box-shadow: inset 0 0 0 var(--s) var(--b);
	-ms-box-shadow: inset 0 0 0 var(--s) var(--b);
	box-shadow: inset 0 0 0 var(--s) var(--b);

	-webkit-transform: translateX(var(--x));
	transform: translateX(var(--x));

	-webkit-transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
	transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
	transition: box-shadow var(--duration) ease, transform var(--duration) ease;
	transition: box-shadow var(--duration) ease, transform var(--duration) ease, -webkit-transform var(--duration) ease;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input + div span:not(:empty){
	padding-left: 68px;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input:checked + div:before {
	--s: 0;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input:checked + div:after {
	--s: 1;
}

.price-plan-inactive .col-header .annual-holder .switch-holder .switch input:checked + div span:before {
	--x: 0px;
	--s: 12px;
	--b: var(--dot);
}

.price-plan-active>div{position: relative;}

.price-plan-active>div:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 5px;
	transition: width .3s ease-in-out;
	border-radius: 8px 8px 0 0;
	background: #0ca750; 
}

.price-plan-active:hover>div:after{
	width: 100%;
}

.price-plan-active .col-header h3, .price-plan-inactive .col-header h3, .price-plan-disabled .col-header h3{
	padding: 25px 0 0 0;
	margin: 0;
	font:  normal 1.4em 'NeoSans', sans-serif;
}

.price-plan-active .col-header p, .price-plan-inactive .col-header p, .price-plan-disabled .col-header p{
	padding: 0 24px;
	font-size: 13px;
	min-height: 50px;
	text-align: center;
}

.price-plan-active .col-header h2, .price-plan-disabled .col-header h2{
	font-family: 'NeoSans', sans-serif;
	font-weight: 500;
	transition: all 0.2s linear;
}

.price-plan-active .col-header h2 span, .price-plan-disabled .col-header h2 span{
	font-weight: normal;
	font-size: 18px;
	color: #9ea0be;
}


.price-plan-disabled .col-header h2,
.price-plan-disabled .col-header h3,
.price-plan-disabled .col-header p,
.price-plan-disabled .list li span,
.price-plan-disabled .list li .bold{
	color: #b4bad8;
}

.price-plan-disabled .circle.red{
	opacity: 0.5;
}


.price-plan-active .col-header .purchase, .price-plan-disabled .col-header .purchase{
	display: block;
	padding: 15px 0;
	border-radius: 5px;
	background-color: #E8EBFB;
	font: normal 16px/1.2 "NeoSans",sans-serif;
	color: #0d0c22;
	transition: all 0.2s linear;
}

.price-plan-disabled .col-header .purchase{
	cursor: not-allowed;
	pointer-events: none;
	color: rgba(178,183,190, 0.8);
}

.price-plan-active:hover .col-header .purchase{background-color: #0ca750;color: #ffffff;}


.price-plan-inactive .list, .price-plan-active .list, .price-plan-disabled .list{
	text-align: right;
	padding-right: 0 !important;
	padding-left: 0 !important;
	padding-bottom: 1.5rem
}

.price-plan-inactive .list li, .price-plan-active .list li, .price-plan-disabled .list li{
	padding: 15px;
	font-size: 14px;
	min-height: 20px;
}

.price-plan-active .list li, .price-plan-disabled .list li{
	text-align: center;
}

.price-plan-inactive .list li{
	padding-right: 0;
}

.price-plan-inactive .list li + li{
	border-top: 1px solid #eef2f8;
}

.price-plan-active .col-header, .price-plan-disabled .col-header{

	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;

	padding: 1rem;
	text-align: center;
	height: 220px;
}


.price-plan-active .list li>span:first-child, .price-plan-disabled .list li>span:first-child{
	display: none;
}

.price-plan-active .list li + li, .price-plan-disabled .list li + li{
	border-top: 1px solid rgba(255,255,255,0);
}

.price-plan-active .list li span, .price-plan-disabled .list li span{
	display: inline-block;
	line-height: 1.51;
}

.price-plan-active .list li>span:first-child, .price-plan-disabled .list li>span:first-child{
	text-align: right;
	min-width: 50%;
}

.price-plan-active .list li>span:last-child, .price-plan-disabled .list li>span:last-child{
	text-align: right;
}

.price-plan-disabled>div{background-color: #f3f4f7;}

.price-plan-active .list li .bold, .price-plan-disabled .list li .bold{
	color: #082137;
	font: 500 16px/1 "NeoSans", sans-serif !important;
}

.price-plan-disabled .list li .bold{color: #b4bad8;}

.title-holder h2{font-family: "NeoSans", sans-serif;}

.features-link{margin: 2.5rem 0;}
.features-link a{color: #0ca750;}

ul.one-col-table li{
	box-sizing: border-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;

	padding: 10px 22px;
	position: relative;

	-webkit-transition: padding-left 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	-moz-transition: padding-left 0.3s ease-in-out, opacity 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
	-ms-transition: padding-left 0.3s ease-in-out, opacity 0.3s ease-in-out, -ms-transform 0.3s ease-in-out;
	transition: padding-left 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	pointer-events: none;
}

ul.one-col-table li:nth-child(even){
	background: #f8f9fc;
}

ul.one-col-table li .title{
	box-sizing: border-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;

	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;

	color: #082137;
	width: 30%;
	font-weight: normal;
	font-family: "NeoSans", sans-serif;
	padding-left: 20px;
	transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
	text-align: right;
}

ul.one-col-table li .content{
	display: block;
	font: normal 14px/1.2px "Dubai", sans-serif;
	flex: 1;
	line-height: 1.51;
	padding-top: 7px;
	color: #4c596a;
	text-align: right;
}

.specific-featuers-section>div{padding: 2rem 0;}
.spicific-title{opacity: 0;scroll-margin-top: 70px;scroll-snap-margin-top: 70px;}

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

.table-stripe{width: 100%;line-height: 1.24;color: #082137;}
.table-stripe td:nth-child(2), .table-stripe td:nth-child(3), .table-stripe td:nth-child(4){display: table-cell;}
.table-stripe td, .table-stripe th{text-align: center;padding: 29px 15px;}
.table-stripe td:first-child, .table-stripe th:first-child{text-align: right;padding-left: 22px;}
.table-stripe th{font-family: 'NeoSans', sans-serif;font-weight: bold;font-size: 1.5em;border-bottom: 1px solid #eef2f8;}
.table-stripe td > span {display: inline-block;max-width: 500px;line-height: 1.51;}
.table-stripe td > span.small{font: normal 14px "NeoSans", sans-serif;color: #6b7c93;}

.table-stripe tbody tr:nth-child(even) td {background: #f8f9fc;}
.table-stripe td > span .circle.green{background: #0ca750;}
.table-stripe td > span .circle.red{background: #e01f3d;}
.table-stripe td > span .circle{position: relative;width: 12px;height: 12px;border-radius: 50%;}
.table-stripe tbody tr td .circle:after{content: '';border-radius: 50%;position: absolute;top: 3px;left: 3px;width: 6px;height: 6px;}
.table-stripe tbody tr:nth-child(odd) td .circle:after{background: #ffffff;}
.table-stripe tbody tr:nth-child(even) td .circle:after{background: #f8f9fc;}

.trend-section{margin: 4rem 0;}

.trend-section .trend-container{
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	align-items: center;
	min-height: 220px;
	border-radius: 12px;
	padding: 0 36px;
	background: rgba(12,167,80,0.05) url('../../img/svg/landing-curves.svg');
	background-position: right 20px top 10px;
	background-repeat: no-repeat;
	background-size: cover;
}

.trend-section .trend-container .trend-icon{color: #0ca750;}

.trend-section .trend-container .trend-body h2{font-family: 'NeoSans', sans-serif;margin: 0;}

.trend-section .trend-container .trend-body p{margin: 0.5rem 0 0 0;}

/* Smartphones (portrait) ----------- */
@media only screen and (min-width: 320px) and (max-width: 479px){
	.no-left-padding, .no-right-padding{padding: 0 !important;}

	.home-banner .body{position: unset;left: unset;width: unset;transform: unset;-webkit-transform: unset;}

	.contact-alert{min-height: 150px;}
	.contact-alert span a{display: block;}

	.price-plan-inactive{margin-bottom: 0;}
	.price-plan-inactive .annual-holder{margin-bottom: 0;text-align: center;}

	.price-plan-inactive .col-header{
		height: auto;
		justify-content: center;
		flex-direction: row;
		border-radius:4px;
		background: rgba(12,167,80,0.05);
		padding: 25px 0;
	}

	.price-plan-inactive .col-header .annual-holder{
		margin: 12px;

		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		-ms-flex-direction: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;

		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;

		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	}

	.price-plan-inactive .col-header .annual-holder .currency-label{margin-top: 1rem;}

	.price-plan-inactive .list{display: none;}


	.tabbar{
		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		height: 64px;
		position: relative;
		margin-bottom: 15px;
	}

	.tabbar input{display: none;outline: none;box-shadow: none;-webkit-box-shadow: none;-moz-box-shadow: none;-ms-box-shadow: none;}
	.tabbar input:active{outline: none;}
	.tabbar input:nth-of-type(1):checked + label + input + label + input + label + input + label + span {
		-webkit-transform: translateX(300%);
		-moz-transform: translateX(300%);
		-ms-transform: translateX(300%);
		transform: translateX(300%);
	}
	.tabbar input:nth-of-type(2):checked + label + input + label + input + label + span {
		-webkit-transform: translateX(200%);
		-moz-transform: translateX(200%);
		-ms-transform: translateX(200%);
		transform: translateX(200%);
	}
	.tabbar input:nth-of-type(3):checked + label + input + label + span {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
	.tabbar input:nth-of-type(4):checked + label + span {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	.tabbar input:checked + label span {
		-webkit-transform: translateY(-14px);
		-moz-transform: translateY(-14px);
		-ms-transform: translateY(-14px);
		transform: translateY(-14px);
		opacity: 1;
	}
	.tabbar label{
		display: flex;

		-ms-flex: 0 0 25%;
		-webkit-box-flex: 0 0 25%;
		flex: 0 0 25%;

		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;	
	
		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	
		position: relative;
		cursor: pointer;
		z-index: 1;
	}
	.tabbar label span{
		font: 500 1rem "NeoSans", sans-serif;
		color: #082137;
		display: block;

		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;

		-webkit-transition: -webkit-transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;
		-moz-transition: -moz-transform transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;
		-ms-transition: -ms-transform transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;  
		transition: transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;

		-webkit-transform: translateY(-8px) scale(1);
		-moz-transform: translateY(-8px) scale(1);
		-ms-transform: translateY(-8px) scale(1);
		transform: translateY(-8px) scale(1);

		transform-origin: 50% 0;

		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		text-align: center;
		opacity: 0.5;

	}
	.tabbar > span{
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 25%;

		-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		-moz-transition: -moz-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		-ms-transition: -ms-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		transition: transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);

		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);

		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
	}
	.tabbar > span:after{
		content: '';
		width: 100%;
		height: 2px;
		display: block;
		background: #0ca750;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.plans-holder>div:nth-child(1), .plans-holder>div:nth-child(2), .plans-holder>div:nth-child(3), .plans-holder>div:nth-child(4){display: none;}
	.plans-holder[data-active-plan='gold-plan-on'] div:nth-child(4){display: block;}
	.plans-holder[data-active-plan='silver-plan-on'] div:nth-child(3){display: block;}
	.plans-holder[data-active-plan='bronze-plan-on'] div:nth-child(2){display: block;}
	.plans-holder[data-active-plan='base-plan-on'] div:nth-child(1){display: block;}

	.price-plan-active, .price-plan-inactive, .price-plan-disabled{
		position: relative;
		border-radius: 8px;
		padding: 0 0 20px 0;
	}
	
	.price-plan-active, .price-plan-disabled{
		position: relative;
		border-radius: 0;
		padding: 0 1rem 35px 1rem;
		-webkit-box-shadow: unset;
		-moz-box-shadow: unset;
		-ms-box-shadow: unset;
		box-shadow: unset;
	}
	
	.price-plan-active .col-header, .price-plan-disabled .col-header{height: 200px;}
	.price-plan-active .col-header h2, .price-plan-disabled .col-header h2{margin:1.5rem 0;font-size: 50px;}
	.price-plan-active .purchase{background-color: #0a6ff9; color: #ffffff;}
	.price-plan-active .col-header h3, .price-plan-disabled .col-header h3{display: none;}
	.price-plan-active>div:hover:after{width: 0;}
	
	.price-plan-active>div:hover{
		-webkit-box-shadow: unset;
		-moz-box-shadow: unset;
		-ms-box-shadow: unset;
		box-shadow: unset;
	}

	.price-plan-active .col-header .purchase, .price-plan-disabled .col-header .purchase{padding: 20px 0;}
	.price-plan-active .col-header .purchase{background-color: #0ca750; color: #ffffff;}

	.price-plan-active .list li, .price-plan-inactive .list li, .price-plan-disabled .list li{
		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		-ms-flex-direction: row;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		flex-direction: row;
	
		-ms-flex-pack: justify;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
	
	.price-plan-active .list li>span:first-child, .price-plan-disabled .list li>span:first-child{display: block;}


	.title-holder h2{font-size: 20px;}
	.spicific-title{opacity: 1;scroll-margin-top: 120px;scroll-snap-margin-top: 120px;}

	ul.one-col-table li{padding: 22px 22px 10px 22px;-ms-flex-direction: column;-webkit-box-orient: vertical;-webkit-box-direction: normal;flex-direction: column;}
	ul.one-col-table li .title{width: auto;display: block;line-height: 1.28;text-align: right;}
	ul.one-col-table li .content{margin-top: 0;text-align: justify;}

	.table-stripe thead.cols{display: none !important;}
	.table-stripe td:nth-child(1){width: 60%;}
	.table-stripe-wrap tbody td:nth-child(2), .table-stripe-wrap tbody td:nth-child(3), .table-stripe-wrap tbody td:nth-child(4), .table-stripe-wrap tbody td:nth-child(5){display: none;}
	.table-stripe-wrap[data-active-plan='golden'] tbody td:nth-child(5){display: table-cell;}
	.table-stripe-wrap[data-active-plan='silver'] tbody td:nth-child(4){display: table-cell;}
	.table-stripe-wrap[data-active-plan='bronze'] tbody td:nth-child(3){display: table-cell;}
	.table-stripe-wrap[data-active-plan='base'] tbody td:nth-child(2){display: table-cell;}

	.trend-section{
		margin: 2rem 0 !important;
	}

	.trend-section .trend-container{
		min-height: 220px;
		border-radius: 12px;
		padding: 0;
		text-align: center;
	}

	.trend-section .trend-container p{
		margin: 1rem 0 2rem 0 !important;
		padding: 0 1.4rem !important;
		text-align: justify;
		text-align-last: center;
	}
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 480px) and (max-width: 767px){
	.banner{margin-bottom: 25px;}
	.no-left-padding, .no-right-padding{padding: 0 !important;}

	.home-banner .body{position: unset;left: unset;width: unset;transform: unset;-webkit-transform: unset;}


	.price-plan-inactive{margin-bottom: 0;}
	.price-plan-inactive .annual-holder{margin-bottom: 0;text-align: center;}


	.price-plan-inactive .col-header{
		height: auto;
		justify-content: center;
		flex-direction: row;
		border-radius:4px;
		background: rgba(12,167,80,0.05);
		padding: 25px 0;
	}

	.price-plan-inactive .col-header .annual-holder{
		margin: 12px;

		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		-ms-flex-direction: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;

		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;

		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	}

	.price-plan-inactive .col-header .annual-holder .currency-label{margin-top: 1rem;}

	.price-plan-inactive .list{display: none;}

	.price-plan-active .list li, .price-plan-inactive .list li, .price-plan-disabled .list li{
		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		-ms-flex-direction: row;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		flex-direction: row;
	
		-ms-flex-pack: justify;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
	
	.price-plan-active .list li>span:first-child, .price-plan-disabled .list li>span:first-child{display: block;}


	.tabbar-tblt{
		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		height: 64px;
		position: relative;
		margin-bottom: 15px;
	}

	.tabbar-tblt input{display: none;outline: none;box-shadow: none;-webkit-box-shadow: none;-moz-box-shadow: none;-ms-box-shadow: none;}
	.tabbar-tblt input:active{outline: none;}
	.tabbar-tblt input:nth-of-type(1):checked + label + input + label + span {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}

	.tabbar-tblt input:nth-of-type(2):checked + label + span {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	.tabbar-tblt input:checked + label span {
		-webkit-transform: translateY(-14px);
		-moz-transform: translateY(-14px);
		-ms-transform: translateY(-14px);
		transform: translateY(-14px);
		opacity: 1;
	}

	.tabbar-tblt label{
		display: flex;

		-ms-flex: 0 0 50%;
		-webkit-box-flex: 0 0 50%;
		flex: 0 0 50%;

		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;	
	
		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	
		position: relative;
		cursor: pointer;
		z-index: 1;
	}

	.tabbar-tblt label span{
		font: bold 1.2rem "NeoSans", sans-serif;
		color: #082137;
		display: block;

		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;

		-webkit-transition: -webkit-transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;
		-moz-transition: -moz-transform transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;
		-ms-transition: -ms-transform transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;  
		transition: transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;

		-webkit-transform: translateY(-8px) scale(1);
		-moz-transform: translateY(-8px) scale(1);
		-ms-transform: translateY(-8px) scale(1);
		transform: translateY(-8px) scale(1);

		transform-origin: 50% 0;

		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		text-align: center;
		opacity: 0.5;

	}

	.tabbar-tblt > span{
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 50%;

		-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		-moz-transition: -moz-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		-ms-transition: -ms-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		transition: transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);

		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);

		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
	}

	.tabbar-tblt > span:after{
		content: '';
		width: 100%;
		height: 2px;
		display: block;
		background: #0ca750;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.plans-holder>div:nth-child(1), .plans-holder>div:nth-child(2), .plans-holder>div:nth-child(3), .plans-holder>div:nth-child(4){display: none;}
	.plans-holder[data-tablet-active-plan='basic-plan'] div:nth-child(1){display: block;}
	.plans-holder[data-tablet-active-plan='basic-plan'] div:nth-child(2){display: block;}
	.plans-holder[data-tablet-active-plan='enterprise-plan'] div:nth-child(3){display: block;}
	.plans-holder[data-tablet-active-plan='enterprise-plan'] div:nth-child(4){display: block;}

	.price-plan-active{
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	
	.price-plan-active>div, .price-plan-disabled>div{border: 1px solid #f3f4f7;}

	.trend-section{
		margin: 2rem 0 !important;
	}

	.trend-section .trend-container{
		min-height: 220px;
		border-radius: 12px;
		padding: 0 1rem 0 0;
		text-align: right;
	}

	.trend-section .trend-container .trend-icon{
		text-align: right;
	}

	.trend-section .trend-container p{
		margin: 1rem 0 2rem 0 !important;
		text-align: right;
	}
}

/* Tablets ----------- */
@media only screen and (min-width: 768px) and (max-width: 991px){
	.banner{margin-bottom: 25px;}

	.home-banner .body{position: unset;left: unset;width: unset;transform: unset;-webkit-transform: unset;}


	.price-plan-inactive{margin-bottom: 0;}
	.price-plan-inactive .annual-holder{margin-bottom: 0;text-align: center;}

	.price-plan-inactive .col-header{
		height: auto;
		justify-content: center;
		flex-direction: row;
		border-radius:4px;
		background: rgba(12,167,80,0.05);
		padding: 25px 0;
	}

	.price-plan-inactive .col-header .annual-holder{
		margin: 12px;

		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		-ms-flex-direction: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;

		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;

		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	}

	.price-plan-inactive .col-header .annual-holder .currency-label{margin-top: 1rem;}

	.price-plan-inactive .list{display: none;}

	.price-plan-active .list li, .price-plan-inactive .list li, .price-plan-disabled .list li{
		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		-ms-flex-direction: row;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		flex-direction: row;
	
		-ms-flex-pack: justify;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
	
	.price-plan-active .list li>span:first-child, .price-plan-disabled .list li>span:first-child{display: block;}


	.tabbar-tblt{
		box-sizing: border-box;
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;

		height: 64px;
		position: relative;
		margin-bottom: 15px;
	}

	.tabbar-tblt input{display: none;outline: none;box-shadow: none;-webkit-box-shadow: none;-moz-box-shadow: none;-ms-box-shadow: none;}
	.tabbar-tblt input:active{outline: none;}
	.tabbar-tblt input:nth-of-type(1):checked + label + input + label + span {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}

	.tabbar-tblt input:nth-of-type(2):checked + label + span {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	.tabbar-tblt input:checked + label span {
		-webkit-transform: translateY(-14px);
		-moz-transform: translateY(-14px);
		-ms-transform: translateY(-14px);
		transform: translateY(-14px);
		opacity: 1;
	}

	.tabbar-tblt label{
		display: flex;

		-ms-flex: 0 0 50%;
		-webkit-box-flex: 0 0 50%;
		flex: 0 0 50%;

		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;	
	
		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	
		position: relative;
		cursor: pointer;
		z-index: 1;
	}

	.tabbar-tblt label span{
		font: bold 1.2rem "NeoSans", sans-serif;
		color: #082137;
		display: block;

		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;

		-webkit-transition: -webkit-transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;
		-moz-transition: -moz-transform transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;
		-ms-transition: -ms-transform transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;  
		transition: transform .4s cubic-bezier(.2, .64, .48, 1.12), opacity .4s ease, color .4s ease;

		-webkit-transform: translateY(-8px) scale(1);
		-moz-transform: translateY(-8px) scale(1);
		-ms-transform: translateY(-8px) scale(1);
		transform: translateY(-8px) scale(1);

		transform-origin: 50% 0;

		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		text-align: center;
		opacity: 0.5;

	}

	.tabbar-tblt > span{
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 50%;

		-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		-moz-transition: -moz-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		-ms-transition: -ms-transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);
		transition: transform 0.4s cubic-bezier(0.2, 0.64, 0.48, 1.12);

		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);

		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
	}

	.tabbar-tblt > span:after{
		content: '';
		width: 100%;
		height: 2px;
		display: block;
		background: #0ca750;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.plans-holder>div:nth-child(1), .plans-holder>div:nth-child(2), .plans-holder>div:nth-child(3), .plans-holder>div:nth-child(4){display: none;}
	.plans-holder[data-tablet-active-plan='basic-plan'] div:nth-child(1){display: block;}
	.plans-holder[data-tablet-active-plan='basic-plan'] div:nth-child(2){display: block;}
	.plans-holder[data-tablet-active-plan='enterprise-plan'] div:nth-child(3){display: block;}
	.plans-holder[data-tablet-active-plan='enterprise-plan'] div:nth-child(4){display: block;}

	.price-plan-active>div, .price-plan-disabled>div{border: 1px solid #f3f4f7;}

	.trend-section{
		margin: 2rem 0 !important;
	}

	.trend-section .trend-container{
		min-height: 220px;
		border-radius: 12px;
		padding: 0 1rem 0 0;
		text-align: right;
	}

	.trend-section .trend-container .trend-icon{
		text-align: right;
	}

	.trend-section .trend-container p{
		margin: 1rem 0 2rem 0 !important;
		text-align: right;
	}
}

/* Desktops and laptops and Tablets (landscape) ----------- */
@media only screen and (min-width: 992px) and (max-width: 1140px){
	.banner{margin-bottom: 25px;}
}

/* Between Medias Hacks -----------*/
@media only screen and (min-width: 1024px) and (max-width: 1200px){
	.navmenu>ul>li{margin-left: 16px;}
}

@media only screen and (min-width: 991px) and (max-width: 1024px){

}

@media only screen and (min-width: 991px){
	.price-plan-active>div, .price-plan-disabled>div{border: 1px solid #f3f4f7;}
	.price-plan-active:hover>div{
		-webkit-box-shadow: 0 30px 75px -15px rgba(217,222,228,1), 0 25px 40px -20px rgba(217,222,228,1);
		-moz-box-shadow: 0 30px 75px -15px rgba(217,222,228,1), 0 25px 40px -20px rgba(217,222,228,1);
		-ms-box-shadow: 0 30px 75px -15px rgba(217,222,228,1), 0 25px 40px -20px rgba(217,222,228,1);
		box-shadow: 0 30px 75px -15px rgba(217,222,228,1), 0 25px 40px -20px rgba(217,222,228,1);
	}
	.price-plan-active:hover>div, .price-plan-disabled:hover>div{border: 1px solid rgba(255,255,255,0);}
}