@charset "utf-8";
:root {
  --color-blue: #007bff;
  --color-indigo: #6610f2;
  --color-purple: #6f42c1;
  --color-pink: #e83e8c;
  --color-red: #dc3545;
  --color-orange: #fd7e14;
  --color-yellow: #ffc107;
  --color-green: #28a745;
  --color-teal: #20c997;
  --color-cyan: #17a2b8;
  --color-white: #fff;
  --color-black: #000;
  --color-bg: #292929;
  --color-transparent: rgba(0, 0, 0, 0);
  --color-gray: #868e96;
  --color-gray-dark: #343a40;
  --color-primary: #007bff;
  --color-secondary: #868e96;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-light: #f8f9fa;
  --color-dark: #343a40;
  --color-theme-yellow: #f9ca2d;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-headline: 'proxima-nova', sans-serif;
  --font-theme: 'proxima-nova', sans-serif;
}
@-ms-viewport {
  width: device-width
}
body {
  font-size: 17px;
  font-weight: 600;
/*  background: var(--color-white);*/
  font-family: var(--font-theme);
  color: var(--color-white);
  opacity: 1;
  overflow-x: hidden;
  font-style: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
		
}

body::before{
	transition: all 0.3s ease-in-out;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translate3d(0,0,0);
	display: block;
	content: '';
	pointer-events: none;
  background-image: -webkit-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -moz-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -ms-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -o-linear-gradient(to bottom, #045979, #0a324d);
  background-image: linear-gradient(to bottom, #045979, #0a324d);
	
	
}




.is-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}
.is-loading .app-container {
  opacity: 0;
}
.loading {
  display: none;
}
.is-loading .loading {
  display: block;
}
span.loading {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background-image: url(../images/loading.svg);
  z-index: 9999;
}
html, body {
  /*
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
  transform: translateZ(0);
*/
}
p {
  line-height: 160%;
  margin-bottom: 25px;
  margin: 0;
}
a {
  text-decoration: none;
  outline: none;
}
button, a {
  outline: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-size: 100%;
  font-family: var(--font-headline);
}
.app-container {
  width: 100%;
  height: 100%;
  background: var(--color-transparent);
  position: relative;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.intro {
/*  z-index: 100;	*/
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100vh;
/*
  background-image: -webkit-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -moz-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -ms-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -o-linear-gradient(to bottom, #045979, #0a324d);
  background-image: linear-gradient(to bottom, #045979, #0a324d);
*/
}
.cal {	
  position: fixed;
  transform: translate3d(0, -100%, 0);
  transition: all 0.6s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
 
}
.cal-header {
  height: 30vh;
  position: relative;
  text-align: center;
  overflow: hidden;
  background-image: -webkit-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -moz-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -ms-linear-gradient(to bottom, #045979, #0a324d);
  background-image: -o-linear-gradient(to bottom, #045979, #0a324d);
  background-image: linear-gradient(to bottom, #045979, #0a324d);
}
.cal-body{
	position: relative;
	height: 70vh;
	z-index: 999;
	background-color: var(--color-white);

}

/* https://codepen.io/japick/pen/rwXMPW */

.cal-container{
	position: relative;
	margin: 0 auto;
	padding: 0px 30px;
	top: 50%;
	transform: translateY(-50%);
	max-width: 60%;
}

.cal-container h4{
	margin: 0 0 4% 0;
	padding: 0;
	text-align: center;
	color: var(--color-bg);
	font-weight: 700;
	font-size: 20px;
	
}

.cal-container ul{
	margin: 0px -3%;
}

.cal-container li{
	float: left;
	width:33.333%;
	padding: 0px 3%;
	margin:0 0 6% 0;
}

.cal-container .single-list{
	padding: 0px 15px;
	height: 16vh;
	background-color: #084261;
	border-radius: 4px;
	text-align: center;
}

.single-list-content{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.single-list h3{
	line-height: 100%;
	font-size: 18px;
	font-weight: 600;
	display: block;
	margin: 0 0 20px 0;
	letter-spacing: 1px;
}

.inputs{
	position: relative;
	display: inline-block;
	padding-left: 55px;
}



.inputs input[type="text"]{
	color: var(--color-white);
	font-weight: 700;
	font-size: 33px;
	background: rgba(0,0,0,0);
	width: 55px;
	height: 36px;
	border: 0;
	border-radius: 5px;
	overflow: hidden;
	position: absolute;
	top: 1px;
	left: 0;
	text-align: left;
	pointer-events: none;
}

.qty-minus, .qty-plus{
	width: 35px;
	height: 35px;
	border: 0;
	border-radius: 100%;
	line-height: 36px;
	cursor: pointer;
	font-size: 0px;
	position: relative;
	background-color: var(--color-theme-yellow);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 48%;
	float: left;
	margin-left: 10px;
}

.qty-minus{
	background-image: url("../images/minus.svg");
}

.qty-plus{
	background-image: url("../images/plus.svg");
}

.result{
	text-align: center;
	display: inline-block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	z-index: 103;
}


.result h1{
	margin: 0;
	padding: 0;
	line-height: 100%;
	color: var(--color-yellow);
}
.result h1 strong{
	font-size: 52px;
    font-weight: 700;
    color: var(--color-yellow);
    line-height: 100%;
    letter-spacing: 2px;
    display: inline-block;

	
}

.result h1 span{
	font-size: 20px;
	font-weight: 600;
	display: inline-block;
	letter-spacing: 1px;
	opacity: 0.9;
	line-height: 100%;
}
.result p{
	line-height: 160%;
    margin-bottom: 25px;
    margin: 0;
    font-size: 18px;
	letter-spacing: 1px;
	padding-top: 10px;
	font-weight: 600;
}

.lifetime-cons{
	padding-top: 2px;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 160%;
}
.lifetime-cons strong{
	font-size: 28px;
    font-weight: 700;
    color: var(--color-yellow);
    line-height: 100%;
    letter-spacing: 1px;
    display: inline-block;
	padding-left: 6px;
}

.lifetime-cons span{
	text-transform: lowercase;
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	letter-spacing: 1px;
	opacity: 0.9;
	line-height: 100%;
	 color: var(--color-yellow);
}


.is-cal .intro, body.is-cal::before {
  transform: translate3d(0, -100%, 0);
}
.is-cal .intro-text {
  display: none;
}
.is-cal .cal {
  transform: translate3d(0, 0%, 0);
}

.btn-back {
  display: block;
  position: absolute;
  top: 30px;
  left: 40px;
  width: 35px;
  transition: all 0.2s ease-in-out;
	
	z-index: 103;
}
.btn-back:hover {
  left: 30px;
}
.btn-back svg {
  width: 100%;
}
.logo-tq {
z-index: 103;		
  width: 110px;
  display: block;
  position: absolute;
  top: 30px;
  left: 35px;
}
.logo-tq svg {
  width: 100%;
}
.intro-container {
  z-index: 102;	
  max-width: 40%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.logo-plastic-footprint {
  display: block;
  pointer-events: none;
}
.logo-plastic-footprint svg {
  width: 100%;
}
.btn-container {
  position: relative;
  text-align: center;
  margin: 18% 0 0 0;
}
.btn-text {
  text-transform: uppercase;
  text-shadow: 0 3px 4px rgba(0, 0, 0, 0.16);
  font-size: 90%;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.22;
  letter-spacing: 1.44px;
  padding: 0 0 15px 0;
  cursor: pointer;
}

.text-btn{
	text-align: center;
	padding-top: 15px;
}

.btn {
     display: inline-block;
    border: 0;
    cursor: pointer;
    background: var(--color-white);
    height: 50px;
    line-height: 50px;
    font-size: 100%;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 1.54px;
    text-align: center;
    color: var(--color-bg);
    padding: 0px 30px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.btn.btn-fill {
  background-color: var(--color-theme-yellow);
}

.btnCal{
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.22);	
}

.btnCal:hover {
  box-shadow: 1px 1px 25px 10px rgba(249, 202, 45, 0.2);
}
.intro-text {
  z-index: 103;	
  position: relative;
  max-width: 50%;
  margin: 0 auto;
  padding: 0px 30px 60px 30px;
  color: var(--color-white);
}
.intro-text p {
  line-height: 170%;
  font-size: 18px;
  margin: 0px 0px 30px 0;
  font-weight: 600;
}
.intro-text p:last-child {
  margin: 0;
}


.bg{
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	content: '';
	z-index: 101;
	pointer-events: none;

	
}
.cal .bg{
	display: none;
}
.is-cal .bg{
	display: none;
}

.is-cal .cal-header .bg{
	display: block;
}


.bg-desktop{
	position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale3d(1.9, 1.9, 1.9) translate3d(1.5%,6%,0);
    transform-origin: center;
}

.bg-desktop img{
	width: 100%;
	height: 100%;
}

.bg-desktop img.is-desktop{
	display: block;
}

.bg-desktop img.is-mob{
	display: none;
}

/*


.bg-item{
	position: absolute;
}
.bg-item img{
	width: 100%;
}

.bg-item-1{
	top: 5%;
    left: -6%;
    width: 15%;
}

.bg-item-2{
	top: -11%;
	left: 50%;
    transform: translateX(-50%);
    width: 16%;
}

.bg-item-3{
	top: -20%;
    right: -10%;
    width: 26%;
}

.bg-item-4{
	top: 50%;
    right: -6%;
    transform: translateY(-50%);
    width: 17%;
}

*/


.cal-btns{
	text-align: center;
}
.cal-btns .btn{
	border: 0px solid rgba(0,0,0,0.3);
	margin: 0px 10px;
	text-align: center;
	width: 160px;
}

.btn.btn-border{
	background: rgba(0,0,0,0.1);
}

.btn.btn-border:hover{
	background: rgba(0,0,0,0.2);
}

.link-text{
	text-align: center;
}
.link-text a{
	display: inline-block;
    color: var(--color-theme-yellow);
    margin-top: 8px;
    font-size: 15px;
}
.link-text a:hover{
	text-decoration: underline;
}



