
/* HEATSEEKER */
.heat-seeker-wrapper {
	background: url('//www.ripcurl.com.au/Content-Library/images/LandingPages/HeatSeeker/img/thermo-bkg.jpg');
	background-position: top left;
	background-repeat: no-repeat;
}
.hs-content-wrapper {
	width: 50%;
	float: left;
	text-align: center;
}
.hs-features-wrapper {
	width: 50%;
	float: left;
}

.hs-features-text {
	width: 50%;
	text-align: center;
	float: left;
}
.hs-text-pad a {
	color: #fff;
	text-decoration: none;
	opacity: 0.8;
}
.hs-text-pad a:hover {
	text-decoration: none;
	opacity: 1;
}
.hs-text-pad {
	padding: 20px;
	margin-top: 60px;
}
.hs-text-pad p {
	margin: 0 0 20px 0;
	font-size: 11px;
	line-height: 13px;
}
.hs-text-pad img {
	/* margin-top: 10px; */
}
.hs-thermo-image {
	width: 50%;
	max-width: 300px;
	float: right;
}
.heat-seeker-logo {
	padding: 20px 20px 0 20px;
}
.hs-video {
	margin: 20px;
	border: 3px solid #000;
	background-color: #000;
}
.heat-panel {
	background: linear-gradient(44deg, #610089, #e05b00, #fbbc0f, #e05b00, #610089);
	background-size: 20px 1000%;
	-webkit-animation: heat-gradient 8s ease infinite;
	-moz-animation: heat-gradient 8s ease infinite;
	-o-animation: heat-gradient 8s ease infinite;
	animation: heat-gradient 8s ease infinite;
}
@-webkit-keyframes heat-gradient {
    0%{background-position:100% 0%}
    50%{background-position:0% 100%}
    100%{background-position:100% 0%}
}
@-moz-keyframes heat-gradient {
    0%{background-position:100% 0%}
    50%{background-position:0% 100%}
    100%{background-position:100% 0%}
}
@-o-keyframes heat-gradient {
    0%{background-position:100% 0%}
    50%{background-position:0% 100%}
    100%{background-position:100% 0%}
}
@keyframes heat-gradient {
    0%{background-position:100% 0%}
    50%{background-position:0% 100%}
    100%{background-position:100% 0%}
}
@media only screen and (max-width: 1200px) {
	.hs-content-wrapper {width: 40%;}
	.hs-features-wrapper {width: 60%;}
}
@media only screen and (max-width: 930px) {
	.hs-text-pad {margin-top: 0;}
}
@media only screen and (max-width: 780px) {
	.hs-content-wrapper,
	.hs-features-wrapper {width: 100%;clear: left;}
	.hs-text-pad {padding: 40px;}
}
@media only screen and (max-width: 620px) {
	.hs-features-text,
	.hs-thermo-image {
		width: auto;
		clear: both;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 17%, rgba(0,0,0,0.65) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 17%,rgba(0,0,0,0.65) 100%)
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 17%,rgba(0,0,0,0.65) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
	}
}

/* THERMO IMAGE */
.cd-image-container {
  position: relative;
  width: 100%;
  margin: 0px auto;
}
.cd-image-container img {
  display: block;
}
.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 12px;
  line-height: 7px;
  padding: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}
.cd-image-label.is-hidden {
  visibility: hidden;
}
.is-visible .cd-image-label {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 1s, height 4s;
  transition: opacity 1s, height 4s;
}
.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}
.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}
.is-visible .cd-resize-img {
  width: 50%;
  -webkit-animation: cd-bounce-in 0.7s;
  -moz-animation: cd-bounce-in 0.7s;
  animation: cd-bounce-in 0.7s;
}
@-webkit-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@-moz-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
.cd-handle {
  position: absolute;
  height: 44px;
  width: 44px;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 50%;
  background: #f2f2f2 url("//www.ripcurl.com.au/Content-Library/images/LandingPages/HeatSeeker/img/cd-arrows.svg") no-repeat center center;
  cursor: move;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -moz-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  -o-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
}
.cd-handle.draggable {
  background-color: #ffffff;
}
.is-visible .cd-handle {
  opacity: 1;
  -webkit-transition: opacity 1s, height 4s;
  transition: opacity 1s, height 4s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}
.drag-info {
	width: 44px;
	text-align: center;
	margin-top: 48px;
	color: #fff;
	font-size: 11px;
}