/* ==========================================================================
   Audio Hijack Website Redesign
   by Neale Van Fleet
   ========================================================================== */
   
   
 /* ==========================================================================
   Colors
   ========================================================================== */

#header {
	border-bottom: none;
}

::-moz-selection {
	color: #fff;
    background: #4689C7;
    text-shadow: none;
}

::selection {
	color: #fff;
    background: #4689C7;
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
}

a, a:link, a:visited {
	color: #4689C7;
}

a:hover {
	color: #333;
}

.new-badge{
	border-radius: 6px;
	color: #000;
	background: #FFEC51;
	padding: 5px 5px;
	margin: 0;
	font-size: 10px;
	display: inline;
}

.new {
	color: #FFEC51
}

.column.new {
	color: #000;
	padding: 0 0 0 55px;
}

.column.new:before {
	content: 'New';
	float: left;
}

p {
	margin-bottom: 15px;
}

/* ==========================================================================
   Splash Section
   ========================================================================== */

.section.splash {
	overflow: hidden;
	padding-bottom: 30px;
	color: #333;
	
	background: #edf5ff; /* Old browsers */
	background: -moz-linear-gradient(top, #73bbff 0%, #edf5ff 50%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #73bbff 0%,#edf5ff 50%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #73bbff 0%,#edf5ff 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

h1 {
	font-family: '.SFNSDisplay-Heavy', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	font-weight: 900;
	color: #000;
	text-transform: uppercase;
	font-size: 48px;
	line-height: 48px;
	padding-top: 8px;
}

.splash h2 {
	color: #4689C7;
	font-family: '.SFNSDisplay-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	font-weight: 300;
	font-size: 32px;
}


.action-small.purchase, .action-large.purchase {
	background: url('../../global/images/siteimages/icon-basket.png') no-repeat 12px center, #4689C7;
	background-size: 24px 24px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-left: 25px;
}

.action-small .basket-handle-left, .action-large .basket-handle-left {
	position: absolute;
	display: inline-block;
	left: 18px;
	top: 12px;
	height: 10px;
	width: 2px;
	border-radius: 0px;
	background: #fff;
	
	-ms-transform: rotate(-20deg); /* IE 9 */
    -webkit-transform: rotate(-20deg); /* Chrome, Safari, Opera */
    transform: rotate(-20deg);
    
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    
    transform-origin: bottom center;
}

.action-small .basket-handle-right, .action-large .basket-handle-right {
	position: absolute;
	display: inline-block;
	left: 28px;
	top: 12px;
	height: 10px;
	width: 2px;
	border-radius: 0px;
	background: #fff;
	
	-ms-transform: rotate(20deg); /* IE 9 */
    -webkit-transform: rotate(20deg); /* Chrome, Safari, Opera */
    transform: rotate(20deg);
    
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    
    transform-origin: bottom center;
}

/* Rotate Left Handle on Hover */
.action-small:hover .basket-handle-left, .action-large:hover .basket-handle-left {	
	-ms-transform: rotate(20deg); /* IE 9 */
    -webkit-transform: rotate(20deg); /* Chrome, Safari, Opera */
    transform: rotate(20deg);
    
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

/* Rotate Left Handle on Hover */
.action-small:hover .basket-handle-right, .action-large:hover .basket-handle-right {
	-ms-transform: rotate(-20deg); /* IE 9 */
    -webkit-transform: rotate(-20deg); /* Chrome, Safari, Opera */
    transform: rotate(-20deg);
    
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;	
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){ 
    .action-small.purchase, .action-large.purchase {
		background: url('../../global/images/siteimages/icon-basket@2x.png') no-repeat 12px center, #4689C7;
		background-size: 24px 24px;
	}
}

.action-small.purchase:hover, .action-large.purchase:hover {
	background: url('../../global/images/siteimages/icon-basket.png') no-repeat 12px center, #333;
	background-size: 24px 24px;
	color: #fff;
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){ 
	.action-small.purchase:hover, .action-large.purchase:hover {
		background: url('../../global/images/siteimages/icon-basket@2x.png') no-repeat 12px center, #333;
		background-size: 24px 24px;
	}
}

/* Download Button */

.action-small.download, .action-large.download {
	background: url('../../global/images/siteimages/icon-download-small.png') no-repeat 15px 15px, url('../../global/images/siteimages/icon-download-small-stem.png') no-repeat 15px 15px, #4689C7;
	background-size: 16px 20px;
	color: #fff;
	padding-left: 25px;
	position: relative;
	font-weight: 600;
}

.action-small.download:hover, .action-large.download:hover {
	background: url('../../global/images/siteimages/icon-download-small.png') no-repeat 15px 20px, url('../../global/images/siteimages/icon-download-small-stem.png') no-repeat 15px 15px, #333;
	background-size: 16px 20px;
	color: #fff;
	
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;	
}



@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){ 
	.action-small.download, .action-large.download {
		background: url('../../global/images/siteimages/icon-download-small@2x.png') no-repeat 15px 15px, url('../../global/images/siteimages/icon-download-small-stem@2x.png') no-repeat 15px 15px, #4689C7;
		background-size: 16px 20px;
	}
	
	.action-small.download:hover, .action-large.download:hover {
		background: url('../../global/images/siteimages/icon-download-small@2x.png') no-repeat 15px 20px, url('../../global/images/siteimages/icon-download-small-stem@2x.png') no-repeat 15px 15px, #333;
		background-size: 16px 20px;
	}
}

/* ==========================================================================
   Screenshots Section
   ========================================================================== */

/* Photoswipe Customizations */

.pswp__bg {
	background: #18293c !important;
}

.pswp__img--placeholder--blank {
	background: none !important;
}

.pswp__images--placeholder--blank {
	background: none !important;
}

.pswp__caption__center {
	font-size: 32px !important;
	line-height: 32px !important;
	text-align: center !important;
	font-weight: 300 !important;
	color: #fff !important;
	padding: 30px;
	opacity: 1 !important;
	background: none;
	
	width: 100% !important;
	max-width: 100% !important;
}

.pswp__ui--fit .pswp__top-bar, .pswp__top-bar {
	background: none !important;
}

pswp__caption pswp__caption--fake, .pswp__ui--fit .pswp__caption {
	background: none !important;
	opacity: 1 !important;
	padding: 30px;
}

.pswp__img {
	border-radius: 25px;
}

/* Screenshots */

.screenshot {
	border: 2px solid #fff;
	
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: none !important;
}

.screenshot:hover {
	border: 2px solid #5689C2;
	-webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}

.screenshot:active {
	border: 2px solid #333;
	-webkit-transition: all 50ms ease;
    -moz-transition: all 50ms ease;
    -o-transition: all 50ms ease;
    transition: all 50ms ease;
}

/*
.screenshot {
	transform: scale(1);
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: none !important;
}

.screenshot:hover {
	transform: scale(1.025);
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.screenshot:active {
	transform: scale(0.98);
	-webkit-transition: all 50ms ease;
    -moz-transition: all 50ms ease;
    -o-transition: all 50ms ease;
    transition: all 50ms ease;
}
*/

/* ==========================================================================
   Primary Features Section
   ========================================================================== */

.section.features-primary {
	background: #fff;
	overflow: hidden;
}

/* ==========================================================================
   Use Cases Section
   ========================================================================== */

.section.use-cases {
	background: #EEF5FE;
	overflow: hidden;
}

/* ==========================================================================
   Secondary Features Section
   ========================================================================== */

.section.features-secondary {
	background: #fff;
	overflow: hidden;
}

.column.feature {
	background: url('../images/feature-star.svg') no-repeat 15px 0px;
	background-size: 25px 25px;
}

.column .feature-icon {
	width: 40px;
	float: left;
	height: auto;
}

.column .feature-description {
	padding-left: 40px;
}

.section.features-secondary ul {
	margin: 0;
	padding: 0 0 30px 15px;
	list-style-position: outside;
}

.section.features-secondary ul li {
	padding: 0 0 0 0px;
}

/* ==========================================================================
   Actions Section
   ========================================================================== */
   
.section.actions {
	background: #EEF5FE;
}

.section.actions h2 {
	margin-top: 18px;
}

/* ==========================================================================
   Accolades Section
   ========================================================================== */
   
.section.accolades {
	background: #4689C7;
	color: #fff;
}

.section.accolades h2 {
	color: #fff;
}

.section.accolades p {
	color: #fff;
	font-weight: 200;
}

.section.accolades a {
	color: #fff;
}

.section.accolades a:hover {
	color: #ffc03d;
}

#quotes-container {
	height: 230px;
}

/* ==========================================================================
   Buy page title section
   ========================================================================== */

#title h1 {
	color: #333;
	margin-bottom: 0;
	padding-top: 0;
}

#title h2 {
	font-size: 22px;
	font-weight: 300;
	color: #4689C7;
	text-transform: none;
}

#title h2 img {
	margin-bottom: 4px;
}

a.storeButton, a.storeButton:link, a.storeButton:visited {
	color: #fff;
	background: #4689C7;
}

a.storeButton:hover {
	color: #fff;
	background: #333;
}

.store-item h3 {
	color: #21252b;
}
