@charset "utf-8";
/* CSS Document */
/********* soundmorph *********/ 
*{
	margin:0;
	padding:0;
	border: 0;
}

*:focus {
    outline: none;
}

html, body {
	height: 100%;
	font-family: 'Work Sans', sans-serif;
	letter-spacing: -1px;
}

body .container {
    max-width: 1200px;
}

body{
background-color:#d1d1d1;
	color: #212121;
	font-size: 12px;
	overflow-x: hidden;	
	
}

ul, .container .content ul{list-style:none}

a{text-decoration:none;}

button{
	cursor:pointer;
}

.gradientBg{
	background: -moz-linear-gradient(top,  rgba(50,50,50,0.65) 0%, rgba(0,0,0,0) 50%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(50,50,50,0.65) 0%,rgba(0,0,0,0) 50%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(50,50,50,0.65) 0%,rgba(0,0,0,0) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#313131', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

}


.crossed{
	text-decoration: line-through;
    color: #555555;
  	opacity:0.8;
}

.cornerBorder {
    position:relative;
     border:1px solid rgba(0,0,0,0);
}

.cornerBorder:hover{
    border:1px solid #FFF;
}

.cornerBorder.orange:hover{
    border:1px solid #f37111;
}

.cornerBorder.gray:hover{
    border:1px solid #CCC;
}

.cornerBorder:before, 
.cornerBorder:after, 
.cornerBorder .lowercorner:before, 
.cornerBorder .lowercorner:after {
    content: ' ';
    position:absolute;
    width:15px; 
    height: 15px;
    border-color:#FFF;
    border-style:solid; /* or whatever style */
    
}
.cornerBorder:before {top:-1px;left:-1px;border-width: 1px 0 0 1px}
.cornerBorder:after {top:-1px;right:-1px;border-width: 1px 1px 0 0}
.cornerBorder .lowercorner:before {bottom:-1px;right:-1px;border-width: 0 1px 1px 0}
.cornerBorder .lowercorner:after {bottom:-1px;left:-1px;border-width: 0 0 1px 1px}

.cornerBorder.orange:before, .cornerBorder.orange:after, .cornerBorder.orange .lowercorner:before, .cornerBorder.orange .lowercorner:after {
    border-color:#f37111; /* or whatever colour */
}

.cornerBorder.gray:before, .cornerBorder.gray:after, .cornerBorder.gray .lowercorner:before, .cornerBorder.gray .lowercorner:after {
    border-color:#CCC; /* or whatever colour */
}


.notOwened{
	font-weight:600;
}

.none{
	display: none;
}

.block{
	display: block;
}

.uppercase{
	text-transform: uppercase;
}


.f100{
	font-weight: 100;
}

.f300{
	font-weight: 300;
}

.f400{
	font-weight: 400;
}

.f500{
	font-weight: 500;
}

.f700{
	font-weight: 700;
}

.paddingTB5{
	padding:5px 0;
}


.paddingTB10{
	padding:10px 0;
}

.paddingTB15{
    	padding:15px 0;
}

.paddingTB20{
	padding:20px 0;
}

.paddingTB25{
	padding:25px 0;
}

.paddingTB30{
	padding:30px 0;
}

.paddingTB50{
	padding:50px 0;
}

.paddingTB60{
	padding:60px 0;
}

.paddingTB70{
	padding:70px 0;
}

.paddingTB80{
	padding:80px 0;
}

.aCenter{
	text-align: center;
}

.mAuto{
	margin:auto;
}

.fullHeight{
	height:100%;
}

.addToCart{
	cursor:pointer;
}

.headerSpacer{
	/*height:72px;*/
}

.topSpacer{
    height:80px
}

.headerSpacer.index{
	/*height:95px;*/
}

.color1{
    color:#242424;
}
.color2{
    color:#ffffff;
}
.color3{
    color:#4e4e4e;
}
.color4{
    color:#fd660e;
}

.a-left{
    text-align:left;
}

.flexWrap{
	  display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexedItem{
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/********** NOTIFICATIONS *********/

.disclaimer_box{
    display:none;
}

.disclaimer{
    color:#FFF;
    text-align: center;
    font-size: 16px;
    padding: 10px 0;
    position:relative;
    background: rgb(32,31,31);
    background: linear-gradient(148deg, rgba(32,31,31,1) 0%, rgba(231,103,29,1) 50%, rgba(45,42,41,1) 100%);
    display:block;
}

.disclaimer.haslink{
    padding:0;
}

.disclaimer:hover {
    background:#fd8d50;
    color: #FFF;
}

.disclaimer a{
    color: inherit;
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.closeDisclaimer{
    position:absolute;
    right:10px;
    top:7px;
    font-size: 20px;
    cursor:pointer;
    Z-INDEX:20;
}


/***********HEADER*************/

.headerBG{
    transition: all 1s ease-out;
    background:rgba(0,0,0,0);
}

header{
	background: #242424;
  	color:#fff;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgb(0,0,0);
/*background: linear-gradient(180deg, rgba(0,0,0,0.71) 0%, rgba(0,0,0,0.71) 17%, rgba(0,0,0,0.61) 19%, rgba(0,0,0,0.61) 33%, rgba(0,0,0,0.51) 36%, rgba(0,0,0,0.51) 51%, rgba(0,0,0,0.41) 52%, rgba(0,0,0,0.41) 68%, rgba(0,0,0,0.31) 71%, rgba(0,0,0,0.31) 83%, rgba(0,0,0,0.21) 85%, rgba(0,0,0,0.21) 100%);*/
background: linear-gradient(180deg, rgba(0,0,0,0.61) 0%, rgba(0,0,0,0.61) 19%, rgba(0,0,0,0.51) 20%, rgba(0,0,0,0.51) 39%, rgba(0,0,0,0.41) 40%, rgba(0,0,0,0.41) 59%, rgba(0,0,0,0.31) 60%, rgba(0,0,0,0.31) 79%, rgba(0,0,0,0.21) 80%, rgba(0,0,0,0.21) 100%);
}

header:hover .headerBG{
    background:#1a1a1a;
}

header .container.larger{
	max-width:1250px;
}

.logo{
	height: 38px;
    display: inline-block;
    margin-top: 18px;
    border-bottom: 3px solid transparent;
}

.indexHeader .logo{
	height: 44px;
    display: block;
}

.logo img{
  	-webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease; 
  	position: fixed;
    width: 250px;
    top: 0;
    height: 50px;
    top: 14px;
    left: 25px;
}

.logo img.img-responsive{
	object-fit: contain;
}

.mainMenu{
	text-align:center;
}

.mainMenu li{
	display:inline-block;
}

.mainMenu li.desktop, .headerAccount li.desktop{
    display:inline-block !important;
}

.mainMenu li a, .mainMenu li span{
	display:block;
  	border-bottom:3px solid transparent;
   	-webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;
  	color:#fff;
  	padding: 32px 10px 24px 10px;
  	font-weight:400;
  	text-transform:uppercase;
}

.indexHeader .mainMenu li a, .indexHeader .mainMenu li span{
	padding: 30px 25px;
    margin-left: -3px;
    font-size: 13px;
}

.indexHeader .mainMenu.condensed li a, .indexHeader .mainMenu.condensed li span{
      padding: 30px 25px;
  }

.mainMenu li a:hover, .mainMenu li a.active,.headerAccount li a:hover, .headerAccount li a.active{
	border-bottom:3px solid #f37111;
	color:#fd660e;
	background: rgba(55,55,55,0.4);
	text-decoration:none;

}

.headerAccount li:hover span{
    	color:#fd660e;
}

.headerAccount .userMenu li span:hover, .indexHeader .headerAccount .userMenu li span:hover{
  	border-color:transparent;
    background:#555;
    cursor:pointer;
  }

.userMenu{
    position:absolute; 
    bottom: 0;
    right: -10px; 
    -webkit-transform:translate(0,100%);
    transform:translate(0,100%);
    width:220px;
} 

.headerAccount .userMenu li{
    display:block;
}


.headerAccount .userMenu li a, .indexHeader .headerAccount .userMenu li a, .headerAccount .userMenu li span, .indexHeader .headerAccount .userMenu li span {
    padding:15px;
    background:#242424;
}

.headerAccount .userMenu li a:hover, .headerAccount .userMenu li a.active,.headerAccount .userMenu li span:hover, .headerAccount .userMenu li span.active{
    background:#242424;
}

.headerAccount{
	text-align:right;
	padding-right:20px;
}


.headerAccount li{
	display:inline-block;
    margin: 0 5px;
    padding: 30px 8px 26px 8px;
}

.headerAccount li a, 
.headerAccount li .cartIcon{
	display:inline-block;
    border-bottom:3px solid transparent;
   	-webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;
  	color:#fff;
    font-weight:400;
    text-transform:uppercase;
}


.headerAccount li a:hover, 
.headerAccount li .cartIcon:hover{
    color:#fd660e;
}

#header_search input{
	display: block;
    width: calc(100% - 25px);
    padding: 8px 10px;

}


.mob_nav{
	padding: 10px 0px 0;
    text-align: right;
} 

.headerAccount li a.accountMail{

    max-width: 210px;
    word-wrap: break-word;
    text-align: left;
  
}


/***********HOME*************/

.bgImage{
    /*background-image: url(/images/bg.jpg?v=2);*/
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color:inherit;
}

.bgImage.product_details{
	background-position: 0 0;  
} 

#banner{
    height:39vw;
}

#bgRotatorNav{
	bottom:35px !important;
}

#background .link, #background .link a{
	width:100%;
	height:100%;
	display:block;
}

.bulletBanner{
	background: #f45c34;
    width: 20px;
    height: 20px;
    display: inline-block;
    /* border-radius: 10px; */
    z-index: 999;
    margin: 0 4px;
    cursor: pointer;
}


.prd_img{
	height: 300px;
    /*overflow: hidden;*/
    display: block;
  	/*text-align:center;*/
}


.prd_img img{
	height:100%;
    /*transform: translate(-60px,0);
    -webkit-transform: translate(-60px,0);*/
    filter: grayscale(0.4);
    transition: transform 1s ease-out;
}

.showPr:hover .prd_img img{
    filter: grayscale(0);
}

.showPr:hover .prd_img .package{
    transform: scale(1.18) translate(0px, 10px);
    position: relative;
}


.prd_img img.software{
    transform: translate(-10px,0);
    -webkit-transform: translate(-10px,0);
}

.prod_button_wrapper{
	padding:37px 0 2px 0;
}



.featured_products .prod_button_wrapper .addToCart{
	-webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;
}


/***** Buttons *****/

.action_btn, 
.action_btn_on{
    background: transparent;
  	color:#ef5a33;
  	cursor:pointer;
  	padding:12px 20px;
  	border-radius: 3px;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;
    display: inline-block;
    margin-bottom:10px;
    box-sizing:border-box;
    height:40px;
    border:2px solid;
    border-color:#ef5a33;
    border-radius:30px;
    width:100%;
    line-height: 80%;
    font-size: 14px;
    text-align: center;
}



.action_btn:hover, 
.action_btn_on{
    background: linear-gradient(90deg, rgb(246 114 0 / 88%) 0%, rgba(255,64,0,1) 100%);
    color:#ffffff;
}

.middlePos .action_btn{
    max-width: 200px;
    
}

.ftrLabel, 
.ftrLabel_on{
    right: 20px;
    top: 0px;
    background: none;
    color: #333;
    padding: 4px 15px;
    border-radius: 13px;
    z-index:1;
}

.prodTitle{
    opacity:0;
    transform: translate(0px, -15px);
    color: #808080;
    text-transform: uppercase;
}

.showPr:hover .prodTitle{
    opacity:1;
}

.showPr:hover .ftrLabel,
.ftrLabel:hover, 
.ftrLabel_on{
    background: rgb(145,92,214);
    background: linear-gradient(90deg, rgba(145,92,214,1) 0%, rgba(168,83,109,1) 100%);
    color:#FFF;
}

.prodAddCart{
    padding: 5px 15px;
    border: #f45c34 2px solid;
    color: #f45c34;
    text-transform: uppercase;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    margin-right: 5px;
    font-weight: 600;
    text-transform: capitalize;
    background:none;
} 

.prodAddCart:hover,
.prod_button_wrapper:hover .prodAddCart{
    background: linear-gradient(90deg, rgb(246 114 0 / 88%) 0%, rgba(255,64,0,1) 100%);
    color: #FFF;
    padding: 7px 17px;
    border:none;
}



.prodPriceTag{
	padding: 5px 10px;
    border: 2px solid #3e3e3e;
    color: #3e3e3e;
    text-transform: uppercase;
    margin-left: -4px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-weight: 600;
    background:none;
} 

.prodPriceTag:hover,
.prod_button_wrapper:hover .prodPriceTag{
    background: #3e3e3e;
    color:#FFF;
}


.prod_teaser{
    font-size: 14px;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    color: #555555;
}

.prod_teaser:hover{
    color: #f45c34;
}

.featureBtn,
.lrn_more{
    font-size:14px;
   	-webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;
  	padding: 10px 18px;
    background: transparent;
    color: #ffffff;
    text-align: center;
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 10px;
    font-weight: 400;
  	box-sizing:border-box;
  	vertical-align:middle;
  	border:2px solid #fff;
  	width:100%;
  	height:40px;
  	line-height: 100%;
  	border-radius:30px;
}

.featureBtn:hover,
.lrn_more:hover{
	background:#fff;
	color:#222;
} 

.searchSection .lrn_more{
    width: fit-content;
    margin-left:10px;
}

.clearInputBtn{
    border-radius: 0 30px 30px 0;
    height: 36px;
    width: 100%;
    background: transparent;
    line-height: 100%;
    border: 2px solid #fd660e;
    height: 42px;
    color: #fff;
    padding:10px 30px;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    width:max-content;
     line-height: 99%;
}

#search-modal .clearInputBtn{
    width:100%;
}

#search-modal .closeModal{
    top:-15px;
}

.newsletterSection .clearInputBtn{

  	margin-left: -3px;
    box-sizing: border-box;
    vertical-align: middle;
  
}

.newsletterSection .contact_form{
    width: fit-content;
    margin: auto;
}

.newsletterSection #sentMsg{
    /*text-align: center;
    margin: 10px 0;*/
}


.clearInputBtn:hover{
      background: linear-gradient(90deg, rgb(246 114 0 / 88%) 0%, rgba(255,64,0,1) 100%);
  }


.mobBlock.right{
	font-size:23px; 
  	display:inline-block;
}

.mobBlock.right h3{
	font-weight:300;
}



.bundle_container{
	margin: 0 0 0 70px;
}


.bundle_wrap{
	height:500px;
  	/*margin:30px 0;*/
}



.bundle_wrap .container{
	height:100%;
}

.bundle_img {
  	height:100%;
}

.bundle_img img{
	position: absolute;
    top: 50%;
    left: 0;
   	-webkit-transform: translate(-70px, -50%);
    transform: translate(-70px, -50%);
 /* 	width:auto; */
   /* height: 410px; */
  	display:block;
}

.bundle_wrap .content h3{
	font-size:40px;
  	color:#fff;
  	font-weight:500;
  	text-transform:uppercase;
  	margin-top:50px;
}

.bundle_wrap .content .description{
	font-size:19px;
  	color:#fff;
  	text-transform:uppercase;
    font-weight:500;
    margin-top:10px;
}


.bundle_content{
	background: rgba(0,0,0,0.4); 
    color:#fff; 
    position:absolute; 
    bottom:50px; 
    right:0; 
    width:55%; 
    max-width:1000px
}


.bundle_content .prm_ttl{
	max-width:500px; 
    font-weight:600; 
    font-size:28px; 
    margin-bottom:15px;
}

.bundle_content .sub_ttl{
    max-width: 650px;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 15px;

}

.mainTitle{
	-webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    padding-bottom: 5px;
    margin-bottom: 60px;
    background-image: linear-gradient(90deg, #f67200 15%, #ff4000 70%);
    border-left: 5px solid #f67200;
    padding-left: 10px;
    line-height: 42px;
    font-size: 35px;
    font-weight: 600;
    width: 400px;
}


/********* FEATURES *********/


.featured_products {
    /*padding-bottom: 105px;
    border-top: 10px solid #4a4a4a;*/
    padding: 140px 0;
}

.featured_products.top{
    padding-bottom:0;
}

/*
.featured_products .mainTitle {
    text-align: center;
    font-size: 26px;
    padding: 5px 0 14px;
    text-transform: uppercase;
    background: #4a4a4a;
    width: 400px;
    margin: auto;
    border-radius: 0 0 20px 20px;
    margin-bottom: 103px;
    color: #FFF;
}*/

.home_features{
    padding:40px 0;
    background-color:#222;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.home_features .lrn_more{
    max-width:230px;
}

.main-title{
   margin-top: 0;
    font-size: 40px;
    font-weight: 500; 
    color:#fff;
}

.subtitle{

    font-size: 24px;
    font-weight: 600;
    color: #fd660e;
}

.feature_content{
    color: #fff;
    font-size: 16px;
}

.showPr{
    min-height:475px;
}

.minHeight{
    min-height: -webkit-calc(100vh - 748px);
     min-height: calc(100vh - 748px);
}

.prHide{
    overflow:hidden;
    height:0px;
    text-align:center;
    transition: height 0.5s ease-out;
    -webkit-transition: height 0.5s ease-out;
    -moz-transition: height 0.5s ease-out;
    -o-transition: height 0.5s ease-out;
}

.showPr:hover .prHide{
    display:block!important;
    height:130px;
    position:relative;
}




.prod_cont{
    text-align:center;
}

.prHide h3{
    font-size:20px;
    padding-bottom: 5px;
}



/***********CLIENTS*************/


.clients{
background: #ffffff;
background: -moz-radial-gradient(center, ellipse cover, #ffffff 31%, #f4f3f5 48%, #f3f3f4 49%, #d1d0d5 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(31%, #ffffff), color-stop(48%, #f4f3f5), color-stop(49%, #f3f3f4), color-stop(100%, #d1d0d5));
background: -webkit-radial-gradient(center, ellipse cover, #ffffff 31%, #f4f3f5 48%, #f3f3f4 49%, #d1d0d5 100%);
background: -o-radial-gradient(center, ellipse cover, #ffffff 31%, #f4f3f5 48%, #f3f3f4 49%, #d1d0d5 100%);
background: -ms-radial-gradient(center, ellipse cover, #ffffff 31%, #f4f3f5 48%, #f3f3f4 49%, #d1d0d5 100%);
background: radial-gradient(ellipse at center, #ffffff 31%, #f4f3f5 48%, #f3f3f4 49%, #d1d0d5 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d1d0d5', GradientType=1 );
}


.clients img{
    max-height: 90%;
    margin: auto;
    display: block;
    max-width: 80%;
	position:absolute; 
    top:50%; 
    left:50%; 
    transform: 
    translate(-50%,-50%); 
    -webkit-transform: translate(-50%,-50%);

}



.clients floatLeft:nth-child(3n+1){
	clear:both;
}

.clientLogo{
	max-width:200px;
  	margin-bottom:20px;
}

.clientLogo div{
	height:90px; 
	width:100%;
	background-size:contain; 
    background-position: center; 
    background-repeat: no-repeat;
	margin-top: 20px;
}


/***********INDEX TESTIMONIALS*************/


.testimonials.paddingTB50{
	padding-bottom:110px;
	background:#d1d1d1;
}

.testtimonialImg{
	border-radius: 50%;
    display: inline-block;
    float: left;
    height: 80px;
    margin-right: 15px;
    overflow: hidden;
    width: 80px;
  
}



.testimonials .prm_ttl, .clients .prm_ttl{
	margin-top:30px;
}

.testimonial_wrap{
	width:97%; 
    margin:auto; 
  	border: 1px solid #eee; 
    margin-top:30px; 
    background:#f5f5f5; 
    color:#212121; 
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
    box-shadow: 0 1px 2px rgba(0,0,0,0.07);
      height: 380px;
  	
}

.testimonial_wrap:after {
    top: 100%;
    left: 50px;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(245,245,245,0);
    border-top-color: #f5f5f5;
    border-width: 25px;
}

.quotes{
    border-radius: 30px;
    height: 42px;
    width: 55px;
    padding-top: 12px;
    position: absolute;
    background: #fd660e;
    color: #d6d6d6;
    font-size: 21px;
    text-align: center;
}

.quotes.qleft{
    left: 9px;
    top: 19px;
}

.quotes.qright{
	right:-15px; 
	bottom:-15px; 	
}

.testimonials p{
	font-size:13px;
	line-height:125%;
}

.testimonials p:first-of-type{
	margin: 10px 0 5px 0;
}

.testimonials p span{
	font-weight:700;
	text-align:right;
	color: #555;
	margin-right: 20px;
}


/********* NEW TESTIMONIALS *********/

.testimonial-section {
        padding: 60px 40px 20px;
        background: #e9e9ee;
    }

.mainFlex{
    min-width: 33.33333%;
    max-width: 33.33333%;
    transition: all ease 0.5s;
}

.test-content{
    background:#ffffff; 
    padding:10px 30px 60px 30px;
    border-radius:3px;
    border: 1px solid #eaeaea;
    min-height:220px;
}

.test-quote{
    font-size:60px; 
     color: #e4e4e4;
}

.mainFlex:hover{
    -webkit-transform:scale(1.2) translateY(-40px);
    -moz-transform:scale(1.2) translateY(-40px);
    -ms-transform:scale(1.2) translateY(-40px);
    -o-transform:scale(1.2) translateY(-40px);
    transform:scale(1.2) translateY(-40px);
    /*background:#3f87f5;
    color:#fff;*/
}

.mainFlex:hover .test-content{
    background:linear-gradient(90deg, #f67200 15%, #ff4000 70%);
    color:#fff;
}

.mainFlex:hover .test-quote {
    color: #e4e4e4;
    opacity: 0.4;
}

.test-credits{
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    min-height:150px;
}

.test-credits .testtimonialImg{
    float:none;
}

.test-name{
    font-size:16px;
    padding: 0 20px;
}

.test-company{
    font-weight:700;
    font-size: 13px;
    padding: 0 20px;
}




/***********BUNDLES PAGE*************/

.budlesPage .mainTitle{
	font-size:25px;
 	font-weight:600;
 	 color: #212121;
  margin-bottom:8px;
}

.budlesPage .subTitle{
	margin-bottom:30px;
}



.budlesPage .bundle_wrap {
    height: 340px;
    margin: 80px 0;
    border-radius: 5px;
}

.budlesPage .bundle_wrap .content h3{
	margin-top: 35px;
}

.budlesPage .bundle_img img{
	left:20px;
}


.budlesPage .bundlePrice{
	padding-left: 10px;
    text-align: center;
    width: 160px;
    font-size: 28px;
    margin-bottom:15px;
    color: #fff;
    max-width: 100%;
    box-sizing: border-box;
}

.budlesPage .bundle_wrap.universe_layout .content h3{

}





/***********PRODUCTS LISTING PAGE*************/

.pageBanner{
    -webkit-mask-image: -webkit-gradient(linear, 0 90, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
}


.prodCatBanner{
    height:300px;
    margin-top:-4px;
}


.categoryBanner{
    background: transparent;
    color: #d6d6d6;
    position: absolute;
    top: 160px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.categoryBannerDesc {
    background: #4e4e4e;
    color: #d6d6d6;
    font-size:14px;
}

.categoryBanner .bannerTitle{
    margin-bottom: 0;
    font-weight: 700;
    color: #ffffff;
    background-image: initial;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    text-fill-color: initial;
    text-transform: capitalize;
    box-sizing: border-box;
    font-size: 42px;
    text-align: center;
    /* text-shadow: 1px 3px 3px rgb(0 0 0 / 65%); */
    display: inline-block;
    width: initial;
    padding: 8px 30px;
}

.categoryBanner .subTitle{

}



.productsListing.bgImage{
	background-position: 0 0;
	padding:50px 0;
}

.productsListing .prod_cont{
	
  	margin:auto;
  	margin-left:25px;
}


.innerProdWrap .prod_button_wrapper {

    height: 40px;
    position: relative;
}


.innerProdWrap .prod_button_wrapper .addToCart{
	display: block;
    margin: auto;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translate(0, -50%);
  	-webkit-transform: translate(0, -50%);
    width: 230px;
  	-webkit-transition: 0.5s opacity ease;
    -moz-transition: 0.5s opacity ease;
    -o-transition: 0.5s opacity ease;  
  	transition: 0.5s opacity ease;
}

.innerProdWrap .prod_button_wrapper .addToCart:hover{
	opacity:0.75;
}



/***********PRODUCT PAGE*************/


.pro_img_big{
	height: 100%;
  	position:relative;
}

/*.pro_img_big  img{
	margin:auto;
}*/

.productBox{
	position: absolute;
    /* right: 70%; */
    /* top: 50%; */
    height: 100%;
    transform: translate(-15%,-0%); 
    -webkit-transform: translate(-15%,-0%);
}

.productBox2{
	position:absolute;
  	right:70%;
  	top:50%;
  	height:100%;
  	transform:translate(70%,-50%);
  	-webkit-transform:translate(70%,-50%);
}

.productBox.r-40{
    right:40%;
}

 .topProduct{
  	height:530px;
   	margin-bottom: 90px;
  }
  
   .prod_detaled iframe{
         margin: 85px 0;
     }

.productContent{
	margin-top:50px;
}

.middlePos.left{
	position:absolute; 
    top:50%; 
    left:0; 
    transform:translate(0, -50%);
  	width:100%;
  	z-index: 9;
}

.middlePos.right{
	position:absolute; 
    top:50%; 
    right:0; 
    transform:translate(0, -50%);
  	width:100%;
  	text-align:right;
}

.prodTease{
  	width:90%;
	width: calc(100% - 40px);
  	width: -webkit-calc(100% - 40px);
}

.prodTease h2{
	font-weight:300;
  	font-size:25px;
  	color:#555555;
  	text-align:left;
}

.FileInfo{
	padding:20px 0 0 0; 
    font-weight: 300; 
    font-size: 25px; 
    color: #555555; 
}

.productContent .mainTitle{
	font-size:22px; 
  	text-transform:uppercase;
  	color: #212121;
  	margin-bottom:5px;
}

.productContent .description{
	color: #555555;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.productContent .description.a-left{
    text-align:left;
}

.productContent .content p{
	padding: 5px 0;
  	font-size:14px;
}


.buyDiv .rightPrice{
	background:#242424; 
  	color:#d6d6d6; 
  	padding: 12px 12px;
  	border-radius: 0 3px 3px 0;
  	margin-left:-1px;
}

.buyDiv .addToCart{

}



.producGallery .mainTitle{
  	font-weight:400;
  	margin-bottom:8px;
  	font-size:22px;
  	color:#212121;

}


.producGallery .subTitle{
	padding-bottom: 5px;
  	border-bottom: 2px solid #fd660e;
  	color: #555555;
  font-weight:600;
}

.gallery_cont{
	margin:20px 0;
}



.gallery_img {
    display: block;
    width: calc(33% - 10px);
    max-width: 180px;
    overflow: hidden;
    height: 100px;
    float: left;
    margin-left: 5px;
    margin-top: 5px;

}


.gallery_img.view_more{
	background:#c5c5c5; 
  	color:#fff; 
  	overflow:hidden;
  	cursor:pointer;
}

.gallery_img img{
   	display: block;
    margin: auto;
    min-height: 100%;
    width: 100%;
}

.video_cont iframe{
  width: 100% !important;
  margin: 20px 0;
  height: 340px
}

.prodListDownload{
	margin-top:15px;
  	text-align:center;
}

.prodListDownload a{
	color:#555555;
  	font-weight:300;
  	font-size:14px;
}

.prodListDownload a .here{
	text-decoration:underline;
  	color:#fd660e;
  	
}

.prodListDownload a:hover{
	color:#fd660e;
}


/***********FREE SOUNDS*************/

.freeSounds .mainTitle{
  font-size:25px;
  font-weight:600;
  color: #212121;
  margin-bottom:8px;
}

.freeSounds .subTitle{
	margin-bottom:30px;
}


.sound_wrap{
	padding: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-color: #DBDBDB;
	margin-bottom: 20px;
	-webkit-box-shadow: 10px 10px 24px -4px rgba(0,0,0,0.20);
	-moz-box-shadow: 10px 10px 24px -4px rgba(0,0,0,0.20);
	box-shadow: 10px 10px 24px -4px rgba(0,0,0,0.20);
}

.sound_wrap iframe{
	width: 100% !important;
	height: 390px !important;
}

.sound_ttl{
    padding: 10px;
    /*border-bottom: 1px solid #979797;*/
    color: #555555;
    text-transform:uppercase;	
  
}

.sound_ttl h2{
	font-size: 22px;
	letter-spacing: -0.03em;
	font-weight: 600;
  	color:#212121;

}

.sound_ttl p, .sound_ttl a{
	font-size: 13px;
  	color: #999999;
	font-weight: 400;
}

.sound_ttl a:hover{
	cursor:pointer;
	text-decoration: underline;
}

.sbscr_btn_snd{
	background-color: #ffffff;
	color: #3333cc;
	font-weight: 400;
}

.sound_txt{
	margin:10px 0;
	color: #555555;
}

.sound_mllist{
	color: #555555;
	font-style: italic;
	margin: 15px 0 30px;
}

.request_sound{
	display:none;
}


.freeSounds .sbscr_em {
    padding: 8px 6px;
    min-width: 130px;
    border: 1px solid #ccc;
    margin: 5px auto;
    width: 96.5%;
}



.fsound {
    width: 100%;
    margin: auto;
  	/*background: #fd660e;
    color: #d6d6d6;
 	border-radius:3px;*/
  
}



/*LIGHTBOX*/

.lightboxWrap{
	display: none;
}

.lightBox_splash{
    width: 100%;
    height: 100%;
    max-height: 100%;
    background: rgba(0,0,0,0.77);
    position: fixed;
    z-index: 100;
    top: 0;
    overflow: hidden;
	
}

.lightbox{
	background:#DBDBDB; 
    padding:15px;
    position:fixed;	
	width:80%; 
    max-width:600px; 
	color: #212121;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	max-height:90%;
	z-index: 999;
	overflow:auto;
    top:50%;
    left:50%;
	-ms-transform: translate(-50%,-50%);
   	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  	overflow-x: hidden;
	
	
}

.lightbox .video_cont iframe{
  height: 300px !important;
}

.lightbox p{
	color: #212121;
}


.closeLightBox{
    color: #fafafa;
    font-size: 16px;
    position: absolute;
    right: 1px;
    top: 2px;
    -webkit-transition: background 0.5s;
    transition: background 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    width: 25px;
    height: 23px;
    padding: 2px 3px 5px 3px;
    background-color: #222;
    font-weight: 400;
    text-align: center;
    border-radius: 20px;
    z-index: 99999;
  padding: 2px 1px 4px 2px;
}

.closeLightBox:hover{
	background: #888;
	cursor:pointer;
	
}

/*END LIGHTBOX*/


/***********MAKING OF*************/

.main_frame{
  height: 320px;
  width: 100%;
  background-color: rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px 0;
   overflow: hidden;
}

.main_frame iframe{
	width:100% !important;
	height:100% !important;
}

.main_frame img{
	height:100%;
}

.mo_gallery_img {
    display: inline-block;
    width: 49%;
    overflow: hidden;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.70);
}

.mo_gallery_full {
    display: inline-block;
    width: 32%;
    overflow: hidden;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.70);
}

.mo_gallery_img img, .mo_gallery_full img{
    min-height: 100%;
    margin: auto;
    display: block;
    width: 100%;
    transform: translate(0,-10%);
}




#makingof h3.prm_ttl{
	text-align:center;
	border-bottom: 2px solid #fd660e;
	margin-bottom:15px;
	color: #212121;
      font-size: 22px;
    padding-bottom: 5px;
}



#makingof h2.prm_ttl{
	font-size:25px;
  margin-bottom:10px;
  text-transform:uppercase;
}

#makingof .sub_ttl{
	font-size:14px;
  	font-weight:600;
  margin-bottom:25px;
  color:#555555;
}


#makingof h2.prm_ttl, #makingof .sub_ttl{
	border:none;
	text-align:center;
}


.makingof_title{
    font-size: 15px;
    letter-spacing: -0.03em;
    /*color: #187AF6;*/
	color: #333333;
    font-weight: 600;
    padding: 12px;
    border-bottom: 1px solid #C8C8C8;
    text-transform: uppercase;
}

.makingof_title:hover, .makingof_title:first-of-type{
	background-color: #e5e5e5;
	color: #fd660e;
	cursor:pointer;
}

.mo_video_container{
	position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
	margin-bottom: 10px;
}

.mo_video_container iframe, .mo_video_container embed, .mo_video_container object{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/***********FAQ*************/

.faqSection .mainTitle{
  font-size:25px;
  font-weight:600;
  color: #212121;
  margin-bottom:8px;
  text-transform:capitalize;
}


.faq_q_sec{
	border: 1px solid #000;
	border-radius: 8px;
	margin: 20px 0;
}

.faq_q_sec a{
	color:#212121;
}

.faq_ttl{
	background-color: #000;
	display: inline-block;
	color: #fff;
	padding: 5px 6px;
	font-size: 12px;
	border-radius: 4px;
}

.faq_q_sec ul {
	margin: 15px 0px 5px;
}

.faq_q_sec ul li{
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 12px;
}

.q_repeat{
	color: #555555;
	font-style: italic;
	margin-bottom: 20px;
}

.answer_box{
	padding:20px;
  	color:#212121;
}

/*********** CONTACT PAGE *************/


.contact_content{
    font-size:14px;
}

#contactLoading {
    text-align: center;
    margin: 10px;
    font-size: 30px;
    display: none;
}


.contactPage .mainTitle{
  font-size:25px;
  font-weight:600;
  color: #212121;
  margin-bottom:20px;
  text-transform:capitalize;
}

#sentMsg{
    font-size: 18px;
    margin-top: 30px;
    text-align: center;
    margin-bottom: 10px;
  color:#fd660e;
  display:none;
}


/**************** PRESS KIT ****************/

.pk_title{

 	color: #212121;
  	    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.pk_title.category_description{
	padding-bottom:10px;
 	padding-top:0;
}

.description_pk{
font-weight: 300;
    font-size: 12px;
    padding: 0;
    max-height: 60px;
    overflow-y: hidden;
    margin-top: 15px;
  	color:#555555;

}

.pressKitPage .mainImg{
	max-width:250px;
  	margin: auto;
}

.download_pk{
	color:#d6d6d6; 
    background:#fd660e;
	padding: 8px 5px;
    cursor: pointer;
    text-align: center;
    display: block;
    font-weight: 500;
    margin-top: 15px;
    font-size: 14px;
    border-radius: 3px;
    text-transform: uppercase;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;  
  	
}

.download_pk:hover{
	opacity:0.75;
}

.f40{
	font-size:38px;
}

.desktop_border{
	border-right: 1px solid #d5d5d5;
  	padding: 0 15px;
}

.pk_marginT{
    margin-top: 20px;
}

.file_preview{
	width:100%; 
  	height:100px;
}


.desktop_border .mainTitle{
	color: #212121;
	font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
}


/***********TEAM ABOUT PAGE*************/


.aboutSection .mainTitle{
	font-size:25px;
    font-weight:600;
    color: #212121;
    margin-bottom:20px;
    text-transform:capitalize;
}
.teamSection .mainTitle{
	font-size:25px;
    font-weight:600;
    color: #212121;
    margin-bottom:20px;
    text-transform:capitalize;
  	margin:10px 20px;
}

.teamSection .subTitle{
	color:#555555;
}

.mainTitle.line{
	border-bottom:2px solid #fd660e;
}

.teamSection .title{
	margin-bottom:5px;
}

.teamSection .description{
	font-weight:600;
  	margin-bottom:10px;
  color:#555555;
}

.teamSection .content{
	margin-bottom:20px;
  	color:#555555;
}


/***********SITE MAP*************/

.sitemap_wrap .prm_ttl{
	padding: 5px 0;
    margin-bottom: 20px;
}

.sitemap ul{
	margin-top: 12px;
}

.sitemap a{
	color: #000000;
    font-size: 12px;
	text-decoration: none;
	font-weight:500;
}


.sitemap a.main{
	color: #fd660e;
	font-weight:700;
  text-transform:uppercase;
  line-height: 170%;
	
}

.sitemap a.secondary{
	color: #555555;
	font-weight:600;
  	text-transform:uppercase;
  line-height: 150%;
	
}

.sitemap .prod_link{
	margin: 8px 0;
  margin-left: 10px;
}

.sitemap .prod_link a{
	font-weight:500;
	text-transform: capitalize;
}






/************PROFILE***************/

.savingsAccount{
    margin-top: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #f45d34;

}

.blue_p{
	color: #555555;
}

.account_wrap{
	margin:auto;
}

.account_wrap .prm_ttl{
	border:none;
    font-size: 22px;
    margin: 20px 0;
    text-transform: uppercase;
}

.account_details{
	width:97%;
	margin:auto;
	text-align: center;
	padding: 10px 0;
	color:#1878f6#212121;
	background: #ffffff;
	font-size: 14px;
	cursor:pointer;
    font-size: 12px;
  	text-transform: uppercase;
}

.account_details.current, .account_details:hover{
	color:#ffffff;
	background: #fd660e;
}

.blue_p p{
	color: #fd660e;
	padding: 10px;
}

.account_content p{
	color:#555555;
}

.account_content p:last-of-type{
	margin-bottom:30px;
}

.account_content .bottomContent p{
	color:#d6d6d6;
}

.download_wrap{
	position: relative;
    text-align: center;
    padding: 10px;
    color: #474647;
    height: 120px;
    width: 98%;
    margin: 30px auto;
    background-color: #ccc;
    border: 1px dotted #1878f6;
}

#userAccount .account_content .product_bg{
	border: 1px dotted #242424;
	/*height:140px;*/
 	min-height: 240px;
	margin: auto;
	color: #474647;
  	border-bottom:none;
 	
}

#userAccount .account_content .product_bg:nth-of-type(2){
	display:none;
}

#userAccount .account_content .product_bg .zip_parts{
	color: #474647;
}

#userAccount .account_content .product_bg .zip_parts:hover{
	background: #fd660e;
  	border: 1px solid #fd660e;
    color:#ffffff;
	cursor:pointer;
}

#userAccount .account_content .product_bg .zip_parts:hover p{
	color:#d6d6d6;
}

#userAccount .img-responsive2 {
    max-height: 225px;
 	 max-width: 100%;
  	display:block
}

.Download{
	margin: 55px auto;
}

#userAccount .prd_img {
    left: 50%;
    top: 50%;
    transform: translate(-47%,-47%);
    -webkit-transform: translate(-47%,-47%);
    z-index: 95;
    width: 100%;
  	position:absolute;
  	top: 0;
  left:0;
        transform: translate(0,-50px);
    -webkit-transform: translate(0, -50px);
    max-width: 250px;
}



#userAccount .prod_button_wrapper {
    max-width: 100%;
    position: absolute;
    right: 5px;
    top: 5px;
}

#userAccount .prod_button_wrapper button{
	font-size:12px;
	font-weight:400;
	width:100%;
}

#userAccount .prod_cont, #userAccount .prod_cont p{
	/*color: #212121;*/
	text-align:center;
	margin: auto;

}

#userAccount .prod_cont{
    padding: 5px 10px 5px 10px;
}


#userAccount .prod_cont p{
	padding:0 5px;
}


#userAccount .prod_cont p:first-of-type{
	font-weight:700;
	padding-bottom:0;
	text-transform: uppercase;
  	font-size: 10px;
  	word-wrap: break-word;

}

#userAccount .prod_cont .fa-file-archive-o, #userAccount .prod_cont .fa-file-archive{
	font-size: 25px;
    text-align:center;  
}

.fsize{
	vertical-align:super;
}

.part_files, .part_files2{
	border: 1px dotted #242424;
	text-align:center;
	background-color: #242424;
	border-top:none;
  position: relative;
    z-index: 96;
}

.part_files:hover{
	background: #fd660e;
	color:#fff;
	cursor:pointer;
}

.part_files .fa-files-o, .part_files .fa-files{
	font-size:20px;
}

.zip_parts{
	width:95%; 
    margin:auto; 
    height: 105px;
   	max-height: 105px;
    border: 1px solid #333; 
    text-align:center;
  	margin-top:5px;
  	position: relative;
    z-index: 99;
}

.zip_parts .fa{
	font-size: 43px;
    margin: 5px 0 10px;
}

.zip_parts p:first-of-type{
	font-weight:700;
	padding-bottom: 3px;
	text-transform:uppercase;
}

.zip_parts p:last-of-type{
	font-style: italic;
	margin-bottom:10px;
}

#accountUpdate{
	padding-bottom:14px;
}

#userAccount .login .regular_input {
    width: 100%;
}

.invoiceHeader{
	background:#555;
	color: #fff;
	font-weight:700;
	text-transform:uppercase;
	font-size:12px;
	text-align:center;
}

.invoiceHeader .columnName{
	border-right:1px solid #fff;
}

.invoiceHeader .columnName:last-of-type{
	border:none;
}

.columnName a{
	color:#333;
}

.columnName a:hover{
	color:#fd660e;
}

.invoiceItem{
	font-size:12px;
	text-align:center;
}

.invoiceItem.light{
	background:#f5f5f5;
}

.invoiceItem.dark{
	background:#e9e9e9;
}



/**END PROFILE**/

/***********SEARCH RESULT*************/



.resultWrap{
	background:#c7bdbd;
    margin:30px 0;
	min-height: 150px;
}

.prodWrap{
	height: 170px;
	width:100%;
	margin: 0 auto 10px auto;
    position:absolute; 
    left: 50%; 
	 top: 0; 
  	transform: translate(-50%, -15%); 
  	-webkit-transform: translate(-50%, -15%);
}

.prodWrap img{
  position:absolute; 
  left: 50%; 
  max-height: 100%; 
  position: absolute; 
  top: 50%; 
  transform: translate(-50%, -50%); 
  -webkit-transform: translate(-50%, -50%);
	max-width: 150%;
}
.resultWrap h3{
    text-transform: uppercase;
    font-size: 29px;
    letter-spacing: -0.03em;
    color: #000000;
    font-weight: 600;
}

.resultWrap .prod_dscr{
	min-height:30px;
  	font-weight:600;
  	color:#555555;
}

.resultWrap .addToCart{
    margin-top:5px;
}


.popTitle{
	font-size:25px;
    font-weight:600;
    color: #212121;
    margin-bottom:20px;
    text-transform:capitalize;
  	padding-bottom:5px;
  	border-bottom: 2px solid #fd660e;
}



/**END SEARCH RESULT**/



/***********BUNDLE DETAILS PAGE*************/



.bndl_page{
	width: 100%;
	background-size:cover;
	background-position:center;
	background-repeat: no-repeat;
}

.bdl_btn{
	max-width:250px;
	margin:auto;
	display:block;
	margin-top:12px;
}

.bndl_cn_wrap .bdl_btn{
	margin-top: 70px;
}

.carbon_fiber {
  background-image: url(../images/carbon_bg.gif);
  background-repeat: repeat;
 }

.bndl_page_img{
    position: absolute;
    top: 50%;
    width: 100%;
    right: 100%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
   	max-width: 600px;
}

.bndl_cn_wrap{
	color: #ffffff;
	font-size: 26px;
	font-weight: 300;	
	margin: 100px 0;
	z-index:999;

}

.bndl_cn_wrap h1{
  font-weight: 300;
  font-size: 30px;
  margin-bottom: 40px;
  max-width:526px;

}

.bndl_cn_wrap strong, .bndl_cn_wrap b{
    font-weight:500;
}

.bndl_cn_wrap h1 .img-responsive{
	display:inline-block;
}

.bndl_cn_wrap_list{
	display: block;
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	margin: 0;
	padding: 30px 40px;
}

.bndl_cn_wrap .f_yellow{
	margin-top:65px;
	text-transform: uppercase;
}

.bun_wrap{
    margin:-10px 0 25px 0;
    background-color:#DBDBDB;
    color:#212121;
	padding: 10px 10px 40px 10px;
    display: block;
}

.bun_bg_wrap{
	text-align: center;
	background:#960000;
	height:500px;
}

.bun_wrap h1{
    font-size: 26px;
    color: #FFFFFF;
	padding: 8px 0;
	font-weight:300;
	text-transform:uppercase;
}

.bun_wrap p {
	width:300px;
	margin:auto;
    margin-top: 30px;
    font-size: 16px;
	text-align:center;
}

.bun_products{
	background-color:#FFFFFF;
	padding:8px;
  	margin-bottom:5px;
}

.bun_products a{
	font-weight:700;
	text-transform:uppercase;
}

.bun_products span{
	font-style: italic;
}

.bndl_learn_more{
	color:#FFFFFF;
	margin: 10px 0px 40px 0;
	font-style:italic;
}

.bdl_products{
	/*height:100px;*/
}

.bdl_prod_link{
	max-width:100px; 
	display:inline-block; 
	margin-top:30px;  
	margin-left: -20px;
	height: 100px;
	/*position: absolute;*/
}


.bdl_prod_link img{
	height: 100%;
}

.bdl_prod_link img:hover{
	cursor:pointer;
    opacity: 0.7;
}

.bdl_prod_link:first-of-type{
	 margin-left: 0;
}

.universe_bundle{
	text-transform:capitalize;
  font-size: 16px;
}

.bdl2_wrap{
	position:relative;
	height:350px;

}

.bdl2_products{
  	bottom: -30px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0px);
    width: 100%;
	
}

.bdl2_prod_link{
	display: inline-block;
    height: 285px;
    max-width: 250px;
	margin-left:-100px;
}

.bdl2_prod_link img{
    max-height: 100%;
}

.bundleMargin{
	padding-bottom:40px;
}


/********* MERCH ***********/

.scrollWrap{
    height:calc(100vh -100px);
    height:calc(100vh - 100px);
    overflow:auto;
}


/***********FOOTER*************/

.mobCenter .cc{
    margin:15px 0 0 2px;
    height:30px;
}


.newsletterSection{
	color: #ffffff;
    background: linear-gradient(90deg, rgb(27 27 27) 0%, rgb(0 0 0) 100%);
}

.newsletterSection .mainTitle{
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 10px;
}


.newsletterSection .description{
	text-align:center;
  	font-size:16px;
  	margin-bottom:10px;
}


.social_icons{
	text-align:left;
  	margin-top:4px;
}

.social_icons a{
	margin-right: 15px;
  	font-size:27px;
  	color: #d6d6d6;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;
  	-webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
    margin-top: 4px;
    display: inline-block;
}

.social_icons a:hover{
	-webkit-filter: grayscale(0); 
    filter: grayscale(0);
}

.footerMenu.first{
    text-align:left;
}

/*.footerMenu.last{
    text-align:right;
}*/

.footerMenu.inline-col{
    margin-left: -0.28em;
}

.footer ul{
    padding: 0 0 15px 0;
    border-bottom: 1px solid #eee;
}

.footer{
    padding: 15px 0 30px 0;
}

.blackBtn{
	border-radius:3px;
  	color:#fd660e;
  	background:#fd660e;
  	text-align:center;
  	padding: 10px 25px;
  	text-transform:uppercase;
  	cursor:pointer;
  	-webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;
  	border: 2px solid #fd660e;
    background: transparent;
    border-radius:30px;
    box-sizing:border-box;

  }
  
.blackBtn:hover{
      color:#FFF;
  }
  

  
 .blackBtn{
     background:#242424;
 } 
 
 .license-modal-wrap{
     background: #ffffff; 
     position:fixed; 
     top:50%; 
     left:50%; 
     -webkit-transform:translate(-50%, -50%); 
    -moz-transform:translate(-50%, -50%); 
      -o-transform:translate(-50%, -50%); 
      -ms-transform:translate(-50%, -50%); 
       transform:translate(-50%, -50%); 
     width:90%; 
     max-width:600px; 
     z-index:9999;
 }
 
 .license-modal-wrap.clear{
     background:transparent;
 }
 
 .license-modal-wrap.w400{
     max-width:400px;
 }
 

 
#license-modal .blackBtn:hover{
      opacity:0.6;
 }
 

 
  
 #license-modal .mainTitle, .search-modal .mainTitle{
     font-size:28px; 
     font-weight:600;
     letter-spacing:-1px; 
     margin-bottom:20px;
     max-width:80%;
 } 
 
 #newsletter_box{
     vertical-align:middle;
 }
 
 .tab{
     padding:10px 20px;
     font-size:18px;
     font-weight:500;
     background:#eee;
     border:1px solid #cccccc;
     border-top:3px solid transparent;
     height: 54px;
     text-align:center;
     cursor:pointer;
     color:#fd660e;
 }
 
 .tab.active{
     background:#ffffff;
     border-top:3px solid #fd660e;
     border-bottom:1px solid transparent;
     color:#242424;
 }
 
 .tab:first-of-type{
     border-right:none;
 }
 
 .tab-content{
     padding:40px;
 }
 
    .tab-content label{ 
        font-size: 14px;
        margin-bottom: 5px;
        display: inline-block;
        color: #777;
    }
 
 .holder-border{
      border:1px solid #cccccc;
      border-top:none;
 }
 
 .no_licenses, .mainsrch{
    padding: 9px;
    box-sizing: border-box;
    width: 100%;
    background: #eee;
    border: 1px solid #ddd;
 }
 
   .mainsrch{
    padding:12px;
    background:#ffffff;
    width:-webkit-calc(100% - 30px);
    width:calc(100% - 30px);
    border:none;
    height:41px;
     
 }

.searchico{
    padding: 8px 0 13px 10px;
    width: 30px;
    height: 41px;
    box-sizing: border-box;
    background: #fff;
    font-size: 16px;
}


.newsletterSection .contact_form input{
	padding:13px 15px;
  	border-radius:3px 0 0 3px;
  	color:#d6d6d6;
  	background:#4e4e4e;
  	margin-right:0;
  	width:230px;
    vertical-align: middle;
        height: 41px;
    box-sizing: border-box;
}





.footer{
	background: #4e4e4e;
  	color: #d6d6d6;
}


.footer a {
	color: #d6d6d6;
  	text-transform:uppercase;
  	font-weight:400;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;  
}

.footer a:hover{
	opacity:0.8;
}

.copyfooter{
	text-align:center;
  	font-size:11px;
  	padding-top:40px;
  	    color: #d1d1d1;
    opacity: 0.28;
}

.pay_methods{
	max-width:200px;
}

.footerMenu{
	/*display:inline-block;
    width:calc(33.333% - 15px);
    width:-webkit-calc(33.333% - 15px);
    text-align:left;*/
    padding:5px 0;
}

/******* SEARCH MODAL **********/

    .showmob{
        display:none;
    }
    
    .hidemob{
        display:inline;
    }

.closeModal{
    /*height: 30px;
    width: 30px;
    background: #252525;
    color: #e2e2e2;
    font-size: 20px;
    text-align: center;
    border-radius: 15px;
    line-height: 138%;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 20;*/
 
    height: 25px;
    width: 25px;
    background: #d7d7d7;
    color: #3e3e3e;
    font-size: 18px;
    text-align: center;
    border-radius: 15px;
    line-height: 138%;
    position: absolute;
    right: 30px;
    top: -8px;
    z-index: 20;

}

#login-modal .closeModal{
    left:auto;
    right:0;
    top: -35px;
    color:#1a1a1a;
}

#login-modal .closeModal:hover{
    background:#fd660e;
    color:#fff;
}



#login-modal .error {
    color: #cd2020;
    margin: 0;
    width: 95%;
    font-size: 14px;
    max-width: initial;
    text-align: center;
}

#login-modal .license-modal-wrap{
    top: 50%;
    webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/***********SHOPPING CART*************/

.togOut {
    border: 1px solid #CCC;
}

.cartPageSection .mainTitle{
    font-size:25px; 
  	color: #212121;
  	margin-bottom:30px;


}

.cartPageSection .title{
	font-size:20px;
  	text-transform:uppercase;
  	color: #555555;
  	padding: 10px 20px 20px;
}

.cartPageSection .action_btn{
	width:300px;
  	max-width:95%;
  	margin: 15px auto;
  	display:block;
}


#cartPreview{
  position:fixed; 
  /*
  right:0; 
  top:50%; 
  transform:translate(0,-50%); 
  -webkit-transform:translate(0,-50%); 
  background:#fd660e; 
  color:#d6d6d6; 
  border-radius: 8px 0 0 8px; 
  -webkit-border-radius: 8px 0 0 8px; 
  z-index:999999;
   -webkit-transition: transition: width 0.6s ease;
    -moz-transition: width 0.6s ease-out;
    -o-transition: width 0.6s ease-out;
    transition: width 0.6s ease-out;
        width: 85px;
    */
    z-index:999999;
    width:100%;
    bottom:0;
    background:black;
   -webkit-transition: transition: height 0.6s ease;
    -moz-transition: height 0.6s ease-out;
    -o-transition: height 0.6s ease-out;
    transition: height 0.6s ease-out;
    height: 55px;
    background:linear-gradient(90deg, #f67200 15%, #ff4000 70%);
    opacity:0.85;
}

#cartPopUp{
  
 }

.cartOverlay{
	width: 100%;
    height: 100%;
    max-height: 100%;
    background: rgba(0,0,0,0.5);
    position: fixed;
    z-index: 100;
    top: 0;
    overflow: hidden;
	display:none;
}

.cartWrapper{
  position: fixed;
  width: 80%;
  max-width: 500px;
  color: #212121;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  height:615px;
  z-index: 99999;
  overflow:hidden;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background: #EEEEEE;
  border-bottom:1px solid #333;
      max-height: 90%
}

.closeCartBtn {
    color: #fafafa;
    font-size: 15px;
    position: absolute;
    right: 17px;
    top: 17px;
    -webkit-transition: background 0.5s;
    transition: background 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    width: 20px;
    height: 20px;
    padding: 2px;
    background-color: #222;
    font-weight: 400;
    text-align: center;
    border-radius: 5px;
    z-index: 99999;
	transform:translate(30%,-30%); 
	-webkit-transform:translate(30%,-30%);
	-webkit-box-shadow: 17px -18px 37px -8px rgba(255,255,255,0.77);
    -moz-box-shadow: 17px -18px 37px -8px rgba(255,255,255,0.77);
    box-shadow: 17px -18px 37px -8px rgba(255,255,255,0.77);
      vertical-align: super;
    padding: 2px 3px 4px 3px;

}


#cart_left{
   float: left;
   width: 100%;
   overflow-y: auto;
   height: 518px;
}

.closeCartBtn:hover{
	background: #fd660e;
	cursor:pointer;
}

.cartP p{
  font-size:14px; 
  margin-top:0;

}

.cartitem-category{
    font-size: 14px;
    color: #fd660e;
    font-weight: 500;
}

.cartP p span{
	text-decoration: line-through;
}

.cartP p.savings{
	font-size:10px;
	font-style: italic;
}

.cartRight p{
	font-weight:bold;
	font-size:14px;
}
.cartRight p.specialPrice{
	color:#D74528;
}

.cartRight p .fa{
  font-size:18px; 
  margin-top:5px;

}

.pricecart-style{
    text-align: right;
    padding-top: 10px;
    padding-right: 0;
}

.delCartProd{
    margin-left:10px
}

.cartBtn{
	/*background:#2C5987;*/
	background:#fff;
    width:40%; 
    margin:auto; 
    color:#2C5987; 
    padding: 8px 0; 
    font-weight:700;
	border-radius: 4px;
    text-transform:uppercase;
    font-weight:400;
  	font-size:12px;
}

.cartBtn.closeCart{
	margin-right:8px;
  	background: #fd660e;
  	color: #d6d6d6;
  	padding: 10px 0 9px 0;
}

.cartBtn:hover{
	cursor:pointer;
	opacity:0.7;
}

.cartSubtotal{
	background:transparent;
	padding:10px;
	border-top: 1px solid #adadad;
	border-bottom: 1px solid #adadad;
}

.cartSubtotal:before {
  content: '';
  display: inline-block;
  height: 100%; 
  vertical-align: middle;
}

.centered {
  display: inline-block;
  vertical-align: middle;
 }

.cartTotal{
	background: #4e4e4e;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.cartTotal p{
	/*color:#2C5987;*/
	color: #ffffff;
	text-align:right;
	font-weight:700;
}

.total-style{
    font-size: 14px;
    padding: 10px;
}

#cartPreview .fa, #cartPreview i{
	font-size:22px; 
    display:block; 
    text-align:center;
}

#cartPreview p{
	font-size: 8pt;
	margin:3px 0;
	text-align:center;
}

#cartPreview p.link_div:hover{
	text-decoration:underline;
	cursor:pointer;
}


.promo_wrap{
    padding: 0 10px 10px;
}

.promoDescription{
	font-style:italic;
}

.promoDescription .error{
	font-size: 10px;
  	cursor:pointer;
}

.applyPromo .promo_input{
	margin-top:0;
}

.applyPromo .promo_btn{
	margin-top: 0;
    width: 100%;
    display: none;
    box-sizing: border-box;
    border: 2px solid #adadad;
    background: transparent;
    border-left: none;
    height: 37px;
    border-radius: 0 30px 30px 0;
    color: #6d6d6d;
    padding: 10px 20px 10px 15px;
  	
}

.applyPromo .promo_btn:hover, .qtty-handle:not(.inactive):hover{
    background: #3e3e3e;
    color: #FFF;
}

.noDisplay{
	display:none;
}

.cartQtty{
	padding-top:10px;
}

.cartRight.cartQtty{
    width: max-content;
    margin: 10px auto 0;
    border: 1px solid #adadad;
    padding:0;
    box-sizing:border-box;
    height:30px;
    overflow:hidden;
}

.cart-header{
    background:#FFF; 
    font-size:13px; 
    font-weight:400;
    border-bottom: 1px solid #CCC;
}

.cart-header div:first-child{
    text-align:left;
}
    
.cart-header div{
    padding:5px 10px;
    text-align:center;
}

.checkout-title{
    color: #212121;
    font-size: 24px;
    font-weight: 600;
}

.qtty-handle{
	cursor:pointer;
  	font-size:10px;
  	vertical-align: text-bottom;
  	display:inline-block;
  	padding:6px 10px;
  	height:100%;
    box-sizing: border-box;
    margin: 0 0 0px -2px;
    border: none;
}

.prodQtty{
    display:inline-block;
    padding: 5px 10px;
    background: #fff;
    font-size: 13px;
    text-align: center;
    width: 30px;
    background:transparent;
    vertical-align:top;
    height:100%;
    box-sizing:border-box;
    border:none;
    margin: 0 0 0 -2px;
}



.cartItemDescription{
	padding:10px 10px 10px 30px;
}

.cartItemDescription h5{
    font-size:16px;
    margin-bottom: -5px;
}


.sbscr_em.promo_input {
    padding: 9px 10px;
    border: 2px solid #adadad;
    margin: 0 auto;
    width: 100%;
    background: transparent;
    box-sizing: border-box;
    height:100%;
}

.total_wrap{
    padding: 10px;
    font-weight:700;
    font-size:13px;
}

.accent4{
    color:#fd660e;
    font-weight:400;
}



/**END SHOPPING CART**/

/* PAYMENT AND CHECKOUT */


.payment_wrapper h3{
  color:#363636;
  font-weight:300;
  font-size:17px;
  border-bottom:1px dotted #a2a2a2;
  padding-bottom:10px;
  margin-bottom:10px;
}

.payment_table{
  	font-size:12px;
  width:100%;
  margin-bottom:20px;
}

.payment_table td{
	padding:5px 0px;
}

.payment_title{
    color:#363636;
    display:block;
  font-size:16px;
    margin-bottom:3px;
}

.payment_table_title{
	font-size:20px;
  	color:#333333;
  	padding-bottom:0px !important;
  	margin-bottom:10px;
  	text-transform:uppercase;
}

.payment_input{
	border:1px solid #eaeaea;
  	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  	padding:6px 5px;
  	color:#363636;
  font-size:13px;

}

.cartPage .payment_input{
    margin-bottom: 8px;
}

.cartPage .left_input{
	width: calc(100% - 15px);	
}

.cartPage .right_input, .cartPage .full_input{
	width: calc(100% - 10px);	
}

.cartPage .selectInput.left_input{
	width: calc(100% - 5px);	
}


#open_checkoutform{
padding: 8px 0;
  margin-top: 15px; 
  width: 215px; 
  max-width: 100%; 
  margin:auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 2px solid #011A37;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#012a54+1,012a54+50,011a37+52,011a37+100 */
background: #012a54; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iIzAxMmE1NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAxMmE1NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUyJSIgc3RvcC1jb2xvcj0iIzAxMWEzNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMTFhMzciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  #012a54 1%, #012a54 50%, #011a37 52%, #011a37 100%); /* FF3.6-15 */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#012a54), color-stop(50%,#012a54), color-stop(52%,#011a37), color-stop(100%,#011a37)); /* Chrome4-9,Safari4-5 */
background: -webkit-linear-gradient(top,  #012a54 1%,#012a54 50%,#011a37 52%,#011a37 100%); /* Chrome10-25,Safari5.1-6 */
background: -o-linear-gradient(top,  #012a54 1%,#012a54 50%,#011a37 52%,#011a37 100%); /* Opera 11.10-11.50 */
background: -ms-linear-gradient(top,  #012a54 1%,#012a54 50%,#011a37 52%,#011a37 100%); /* IE10 preview */
background: linear-gradient(to bottom,  #012a54 1%,#012a54 50%,#011a37 52%,#011a37 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#012a54', endColorstr='#011a37',GradientType=0 ); /* IE6-8 */
    font-size: 20px;
    letter-spacing: -2px;
	font-weight: 700;
  	color:#d6d6d6;
}

#open_paypalform{ 
	color: #193364;
    font-weight: 700;
    padding: 8px 0px;
    border-radius: 5px;
    text-decoration: none;
    width: 215px;
    max-width: 100%;
    font-style: italic;
    border: 2px solid #faa622;
    background: #fbeedb;
    background: -moz-linear-gradient(top, #fbeedb 1%, #f9bf6d 49%, #faa622 53%, #faa622 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#fbeedb), color-stop(49%,#f9bf6d), color-stop(53%,#faa622), color-stop(100%,#faa622));
    background: -webkit-linear-gradient(top, #fbeedb 1%,#f9bf6d 49%,#faa622 53%,#faa622 100%);
    background: -o-linear-gradient(top, #fbeedb 1%,#f9bf6d 49%,#faa622 53%,#faa622 100%);
    background: -ms-linear-gradient(top, #fbeedb 1%,#f9bf6d 49%,#faa622 53%,#faa622 100%);
    background: linear-gradient(to bottom, #fbeedb 1%,#f9bf6d 49%,#faa622 53%,#faa622 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbeedb', endColorstr='#faa622',GradientType=0 );
    font-size: 20px;
    letter-spacing: -2px;
}

#open_paypalform i{
	font-size: 20px;
} 

#cc_icons{
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.cc_type{
	display:inline-block;
  	margin-right:10px;
  	padding:8px 10px;
  	background-color:#eaeaea;
  border:1px solid #ccc;
  	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}


.half_btn .fa{
	font-size:16px;
}

.cart_text{
	margin-left:5px;
 	margin-bottom:10px;
  	
}

.delCartProduct .fa, .delCartProd .fa{
	cursor:pointer;
}

.cartImg .sndImg{
    width:50px;
    padding:10px;
}
.cartPlayerBtn{
    width:15px;
    margin-right:5px;
}
#gpay{
    text-align: center;
    margin: -35px 0 15px 0;
}
#gpay img{
        background: rgb(236 236 236);
}
.sign_tx{
    color:#fd8d50;
    font-weight:500;
}

.terms_txt{
    font-size: 12px;
    font-weight: 300;
    opacity: 0.7;
}

.transparentBtn:hover{
   /* color:#ffffff;
    background:#fd660e;*/
}

.transparentBtn:hover .sign_tx{
    /*color:#ffffff;*/
}

.creator .cr_img{
    padding: 0 45px;
}

.cr_img{
    height: 180px;
    /*border: 1px solid #ffffff24;*/
    margin-bottom: 10px;
}

.cartPlayer img{
	width:25px;
  	display:block;
  	margin:auto;
}

.cartPayments label{
    display: block;
    box-sizing: border-box;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.cartPayments input{
    vertical-align: middle;
}

.cartPayments .ccTxt{
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
}

.cartPayments .ccImg{
    display: inline-block;
    width: 45px;
    height: 20px;
    vertical-align: middle;
}

.cctotalWrap{
    background-color: rgb(236 236 236);
    font-size: 14px;
    font-weight: 400;
}

#total_py{
   font-weight: 700; 
}

.cartPayments label img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.7;
    cursor:pointer;
}

.cartPayments img.active{
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
}

.col-1fifth {
    width: 20%;
}

.cformWrap{
    padding: 20px; 
    background-color: rgb(236 236 236);
}

.cformWrap p{
    font-size:16px;
}

.cformWrap .input_form{
    width: 100%;
    box-sizing: border-box;
    padding: 9px;
    margin-bottom: 10px;
    display: block;
}

.cformWrap .input_form.short{
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px);
}

.desc_text{
    font-size:16px;
    font-weight:600;
}

.transparentBtn{
   /* border: 1px solid orange;*/
    padding: 15px 0 10px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    color: #242424;
    font-weight: 600;
}


/************SIGN IN***************/

.regular_input{
	padding: 8px 6px;
    margin: 2px 0;
    width: 100%;
  	width: calc(100% - 14px);
  	width: -webkit-calc(100% - 14px);
    border: 1px solid #ccc;
  	border-radius:3px;
}

.login{
	margin-top:0;
}

.login .regular_input, #login-modal .regular_input{
    width: 100%;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #bbb;
    color: #222222;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 1px;
    max-width: 350px;
    box-sizing: border-box;
}

.login.free_cart .regular_input{
    width:100%;
    margin-bottom:10px;
    max-width:100%;
    box-sizing: border-box;
}

.free_cart{
    max-width:300px;
    margin:30px auto;
}


.login input{
	display:block;
}

.form_container{
    width: 100%;
	margin: 0 auto;	
}

.form_container #sentMsg{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
}

.signup_page .form_container{
    text-align:center;	
  
}

.signup .g-recaptcha iframe{
	width:240px !important;
  	height:65px !important;
  	display:block !important;
 	
}


.signup_page #sentMsg{
    margin-bottom:30px;	
  
}



.form_container .prm_ttl{
    padding: 0 0 12px 0;
    max-width: 315px;
    margin: auto;
}


.error{
	color: #fd660e;
    margin: 10px auto -4px;
    width: 95%;
    max-width: 315px;
}

.invalid_field{
	width: 95%;
	margin: 10px auto 12px;
	color: #fd660e;
	cursor:pointer;
 	 max-width:315px
}

.invalid_field:hover{
	text-decoration:underline;
}

.fc2 .prm_ttl{
	font-size: 22px;
}

.fc2{
	display:none;
}

/*END SIGN IN*/


/**************** SIGN UP ****************/


#account_created{
	font-weight:700;
  	display:none;
}



/**************** THANK YOU ****************/

.thankyou-wrap{
    text-align:center;
    color: #555;
    font-size:16px;
}

.thankyou-wrap span, .thankyou-wrap a{
    color:#fd660e;
}

.thankyou-title{
    font-weight: 400;
    font-size: 30px;
    margin-bottom:30px;
    margin-top:100px;
}

.thankyou-wrap .sub_ttl{
    font-weight: 400;
}

.thankyou-wrap .action_btn{
    max-width:300px;
    margin:30px auto 0;
}

.thankyou-slide div{
    background:#d1d1d1;
}

.thankyou-slide .ftrLabel_on{
    position:absolute; 
    right: 25px;
    top: 10px;
    z-index:10
}


/**************** SITE SETTINGS COLORS ****************/


@media (max-width:1125px){
    .test-content{
        min-height:240px;
    }
}    



@media (max-width:1024px){
    
    .topSpacer{
        height:68px
    }
    
    .button_wrapper.aCenter{
        text-align:left;
    }
    
    .thankyou-title{

        margin-top:0;
    }
    
     .budlesPage .bundlePrice{
        font-size: 30px;
    }
    
    .productsListing.bgImage{
    	background-position: 0 0;
    	padding:0 0;
    }
    
    .categoryBanner .bannerTitle{
        font-size: 34px;
    }
    
    
    /****** Buttons ****/
     .ftrLabel{
        background: rgb(145,92,214);
        background: linear-gradient(90deg, rgba(145,92,214,1) 0%, rgba(168,83,109,1) 100%);
        color:#FFF;
    }
    
    .action_btn{
        background: linear-gradient(90deg, rgb(246 114 0 / 88%) 0%, rgba(255,64,0,1) 100%);
        color:#fff;
    }
    
    .prodAddCart{
        font-size: 11px;
        background: linear-gradient(90deg, rgb(246 114 0 / 88%) 0%, rgba(255,64,0,1) 100%);
        color: #FFF;
        padding: 7px 17px;
        border:none;
    }
    
     .prodPriceTag{
        background: #3e3e3e;
        color:#FFF;
    padding: 5px;
    }
    
    
    
    
    
    
    
    .testimonial-section .mainFlex{
        min-width:50%;
        max-width:50%;
        
    }
    .flexedItem.none{
        display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    }
    
    
    
    
    .tab-content {
        padding: 30px;
        max-height: calc(95vh - 180px);
        overflow-y: auto;
    }
    
    #login-modal .regular_input {
     padding: 8px 10px;
    }
    
    .navigation{
        display:none;
    }
    
    .footerMenu.last, .footerMenu.first {
    text-align: center;
} 
    
   /* .footerMenu:nth-of-type(4n+0){
        text-align:right;
    }
    
    .footerMenu:nth-of-type(4n+1){
        text-align:left;
    }*/
    
    .showPr{
        min-height:initial;
    }
    
    .prd_img img{
        filter: grayscale(0);
        transform: scale(1.18) translate(0px, 10px);
        /*transform: translate(-15px,0);
        -webkit-transform: translate(-15px,0);*/
    }
    
    .prod_button_wrapper {
        padding: 30px 0 2px 0;
    }
    
   
    
   
    
    .featured_products {
        padding: 80px 0;
    }
    
    .headerAccount li.menudd .openUserMenu{
        display:none !important;
    }
    .userMenu{
        position:static;
        -webkit-transform:translate(0,0);
         transform:translate(0,0);
         width:100%;
    }
    
    .prHide{
        height:130px;
    }
    
    
    .headerAccount .userMenu li a{
        margin: 0;
    border: 0;
    padding:10px;
    }
    
    .mainMenu li.desktop, .headerAccount li.desktop, .mainMenu li.desktop span {
        width: 100%;
        box-sizing: border-box;
    }
  
  .budlesPage .bundle_wrap {
 
    margin: 30px 0;
  
	}
  
  
  .bundle_container{
	margin: 0;
	}
  
  
  .bundle_img img{
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
      width:100%;
      height: initial;
      display:block;
  }  
  
  
  #userAccount .prd_img {
  	height:330px;
  }
  
  
  .bundle_wrap .addToCart {

    width: calc(50% - 15px);
     -webkit-width: calc(50% - 15px);
	}
  .bundle_wrap .lrn_more {
    width: calc(50% - 45px);
     -webkit-width: calc(50% - 45px);
     margin-right: 10px;
    line-height: 100%;
	}
  
  .innerProdWrap .prod_button_wrapper .addToCart {
    
    width: 210px;
  }
  
    .innerProdWrap .prod_button_wrapper .addToCart {

    left: 0;}
  
  .headerSpacer.index{
	/*height:72px;*/
	}
  
  .indexHeader .logo{
      display:inline-block;
      padding: 0 4px 0 10px;
  }
  
  .mainMenu{
    	text-align:left;
    }

  .indexHeader .mainMenu li a, .indexHeader .mainMenu li span, .indexHeader .mainMenu.condensed li a, .indexHeader .mainMenu.condensed li span{
        padding: 8px 30px;
        margin-left: 0;
  }
  
  

  .indexHeader .headerAccount li a, .indexHeader .headerAccount li .cartIcon{
          padding: 30px 8px 26px 8px;
  }  
  
  .searchSlide{
      display:block;
      padding:15px;
  } 

  .navigation{
  	display:none;
    position:absolute; 
    width:100%;
    bottom:0;
    right:0;
    background: #242424;
    transform: translate(0, 100%);
    z-index: 10;
  }  
  
  .navigation .floatLeft{
  	float:none !important;
    clear:both.
  }
  
  .navigation ul{
  	display:block;
  }
  
  
  .mainMenu li, .headerAccount li{
      display:block;
    	border-top: 1px solid #555;
    	margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .headerAccount{
    padding:0;    
  }

  .mainMenu li a, .mainMenu li span, .headerAccount li a, .headerAccount li .cartIcon{
      display:block;
      padding: 10px;
    
  }
  


  .headerAccount{
    text-align:center;
 }
  
  
    
  .headerAccount li.desktop, .mainMenu li.desktop{
  	display:none !important;
  }
 
  
    .mainMenu li a:hover, .headerAccount li a:hover, .headerAccount .userMenu li span:hover, .indexHeader .headerAccount .userMenu li span:hover{
  	border-color:transparent;
    background:#555;
  }
  

  .mobIcons{
  	display: inline-block;
    padding: 15px 10px 15px 0px;
    font-size: 12px;
    cursor: pointer;
  }
  
  .headerAccount li a.accountMail{

    max-width: none;
    text-align: center;
  
	}
  
 /* #banner{
      height: 310px;
    
}*/
  
  .bgImage{
  	background-position: 0 -130px;
  }
  
  
  .prd_img {
    height: 240px;

	}

  
  .productsListing .prod_cont{

  	margin-left:0;
}



  
  .prod_button_wrapper .floatLeft{
  	float:none;
  }
  
  .prod_button_wrapper.keepfloat .floatLeft {
     float: left; 
	}
  
  .mobBlock.right {
    font-size: 15px;
    
	}
  
  .bundle_wrap .content h3 {
    font-size: 32px;
  }
  
	.bundle_wrap .content .description {
    font-size: 17px;
    }
  
  .topProduct {
    height: 380px;
  }
  
  .bundle_wrap .addToCart, .bundle_wrap .lrn_more{
	margin-left:0;
	}
  
  .bndl_page_img {
    left: 50%;
    top: -23%;
    transform: translate(0, 0);
    max-width: 500px;
    position: static;
    margin: auto;
	}
  
  .bundleMargin {
    margin-top: 50px;
    text-align: center;
	}
  .bndl_cn_wrap h1{
  	    display: block;
    margin: auto;
  }
  
  
  
  .bundle_content {

    bottom: 40px;}

  
}


@media (max-width:768px){
    #search-modal .clearInputBtn {
        padding:10px 0;
    }
    
    .mainsrch{
        width:100%;
    }
    
    .showmob{
        display:inline;
    }
    
    .hidemob{
        display:none;
    }
    
     .thankyou-slide .ftrLabel_on {
    
        right: 25%;
        top: 0; 
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    
    .thankyou-slide, .thankyou-slide div{
         height:300px;
    }
    
    .thankyou-slide{
        margin-top:30px;
    }
    
   
    .prod_button_wrapper.keepfloat .floatLeft {
            float: none;
        }
    
    .bundle_wrap .lrn_more, .searchSection .lrn_more{
    	background:#fff;
    	color:#222;
    }
    
    .searchSection .lrn_more{
        width:100%;    
            margin: 0 0 20px 0;
    }
    
      .test-content{
        min-height:initial;
    }
    
    .aRight.mobCenter{
        text-align:center;
    }
    
    .prd_img img {
       /* transform: translate(-40px,0);
        -webkit-transform: translate(-40px,0);*/
    }
    
    
   
    
}





@media (max-width:768px){
    
    
    /***** Buttons ***/
    .prodAddCart {
        font-size: 12px;
	}
	
	.prodPriceTag {
      font-size: 11px;
    }
    
   
    .action_btn{
    background: linear-gradient(90deg, rgb(246 114 0 / 88%) 0%, rgba(255,64,0,1) 100%);
    }
    
    .testimonial-section .mainFlex{
        min-width:100%;
        max-width:100%;
    }
    
    /* .footerMenu:nth-of-type(4n+0), .footerMenu:nth-of-type(4n+1){
        text-align:initial;
    }
    
    .footerMenu:nth-of-type(odd){
        text-align:left;
    }
    
    .footerMenu:nth-of-type(even){
        text-align:right;
    }*/
    
    .mainTitle{
        font-size:25px;
        margin-left:20px;
        line-height:23px;
    }
    
    .headerSpacer.index {
     height: 78px; 
    }
    
    #license-modal .mainTitle{
        font-size:21px;
    }
    
 
  
  #bundleUpgrades .prodWrap, .prodWrap.mobfix {
  	    position: static;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  #userAccount .prd_img {

    height: 340px;
        position: static;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    margin: 0 auto;
}
  
  #userAccount .img-responsive2 {
	    -webkit-transform: translate(0,0);
        transform: translate(0,0);
    margin: auto;
	}
  
  .part_files, .part_files2 {
    position: static;

	}
  
  .pro_img_big {
    height: 300px;
	}
	

  .productBox{
      position:absolute;
      right:60%;
      top:50%;
      height:100%;
      transform:translate(50%,-50%);
  }
  


  .prod_button_wrapper .prodPriceTag {

  	font-size: 12px;}
  

  

  
  .prd_img {
    height: 250px;
	}
  
  .teamSection .mainTitle{
  	margin:0;
  }
  
  .footerMenu{
  	text-align:center;
  }
  
  .prd_img {
    text-align: center;
	}
  
 /* #banner {
    height:160px;
    
	} */

  
    .bundle_img {
    height: auto;
    text-align: center;
	}
  
  .bundle_img img {
    position: static;
    transform: translate(0,0);
     margin-top: 50px;
        max-width: 90%;
        margin-left: auto;
    margin-right: auto;
	}
  
  .bundle_wrap, .budlesPage .bundle_wrap{
  	height:auto;
    padding-bottom: 50px;
  }
  .bundle_wrap .addToCart, .bundle_wrap .lrn_more {
    display: block;
    width: 100%;
    padding: 10px 0;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;  
  	transition: 0.5s all ease;

	}
  
  .bundle_wrap .addToCart:hover, .bundle_wrap .lrn_more:hover{
  
  }
  
  .bundle_content { 
 
    width: 100%;
    position: static;
    margin-top:30px;
	}
  
  .social_icons {
    text-align: center;
    margin-top: 20px;
	}

  .newsletterSection .contact_form input {
      margin-right: 0;
      width: calc(100% - 122px);
     width: -webkit-calc(100% - 122px);
     border-radius:3px;
     
    display: inline-block;
  }  
  
  .newsletterSection .clearInputBtn {
    display: inline-block;
    width: 120px;
}
  


  .topProduct{
  	height:auto;
    margin-bottom: 45px;
  }
  
  .topProduct .fullHeight{
  	height:auto;
  }
  
  .topProduct .middlePos{
	position: static;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);  
    text-align:center;
  }
  
  .prodTease {
    width: 100%;
	}

  
    .prod_cont{
  	text-align:center;
  }
  
  .productsListing .prod_cont{

  	margin-left:0;
}
  
  .prod_button_wrapper{
  	text-align:center;
  }
  .prodTease h2{
  	text-align:center;
	}
  
  .buyDiv .addToCart {
    display: block;
    width: 100%;
    }


    .buyDiv .rightPrice {
        margin-left: -4px;
        width: 40%;
        display: inline-block;
        text-align: center;
      	padding: 12px 0;

    }
  
  .innerProdWrap .prod_button_wrapper .addToCart {
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  
  .innerProdWrap .prd_img{
	text-align:center;
	}
  

  .gallery_img {
    width: calc(50% - 10px);
  }
  
  .logo {

    margin-top: 19px;
    padding-bottom: 5px;
  }

  
  .budlesPage .bundlePrice {
    padding-left: 0; 
    text-align: center;
    width: auto;
 
	}
  
  .FileInfo {

    text-align: center;
	}
  
  .clientLogo div {
    height: 60px;
    max-width: 200px;
    display: block;
    margin: auto;
	
	}
	
	.clientLogo {
     max-width: initial;
    }
  
 #cartPreview {
    position: fixed;
    left:initial;
    right: 0;
    bottom:0;
    /*
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    */
    background: #f45d34;
    color: #ffffff;
    /*
    border-radius: 8px 0 0 8px;
    -webkit-border-radius: 8px 0 0 8px;
    */
    font-size: 10px;
    z-index: 99;
	}
	
	.cartRight.cartQtty{
	    height: 26px;
	}
	
	.prodQtty{
	    padding: 3px 5px;
	    width: 25px;
	    font-size: 12px;
	}
	
	.qtty-handle {
	    padding: 3px 7px;
	}
	
	.cartItemDescription h5 {
    font-size: 14px;
    margin-bottom:-3px;
	}
	
	.cartitem-category {
    font-size: 12px;
	}
	
	.cartItemDescription {
        padding: 5px 10px 10px 10px;
    }
    
    .cart-header {
    font-size: 12px;
    }
    
    .contentDiv.padding20{
        padding:20px 0;
    }
    
    .total_wrap {
        border-top: 1px solid #ababab;
    }
    
    .cartRight p {
        font-size: 13px;
    }

}

@media (max-width:720px){
  

  
  .mobBlock.right {

    display: block;
	}
  
  .paddingAside10.mobBlock.right{
  	padding: 10px 0 0 0;
  } 
  
  .prd_img {
    height: 200px;
	}
	
	.logo img {
        width: 165px;
        height: 50px;
        top: 10px;
        left: 15px;
    }
  
  
}

@media (max-width:560px){

}

@media (max-width:480px){


} 
#banner, #banner2, #banner3{ overflow:hidden; opacity:0; transition:opacity ease-out 0.6s;} 