/* GLOBAL STUFF */

.padMe5 { padding: 5px;	}
.padMe10 { padding: 10px; }
.padMe20 { padding: 20px; }
.padBot5 { padding-bottom: 5px; }
.padBot10 { padding-bottom: 10px; }
.padTop10 { padding-top: 10px; }
.padBot20 { padding-bottom: 20px; }
.padTop20 { padding-top: 20px; }

.curve5 { border-radius: 5px; }
.curveTop5 { border-radius: 5px 5px 0 0; }
.curveBot5 { border-radius: 0 0 5px 5px; }
.curve6 { border-radius: 6px; }
.curveTop6 { border-radius: 6px 6px 0 0; }
.curveBot6 { border-radius: 0 0 6px 6px; }
.curve7 { border-radius: 7px; }
.curveTop7 { border-radius: 7px 7px 0 0; }
.curveBot7 { border-radius: 0 0 7px 7px; }
.curve8 { border-radius: 8px; }
.curveTop8 { border-radius: 8px 8px 0 0; }
.curveBot8 { border-radius: 0 0 8px 8px; }
.curve10 { border-radius: 10px; }
.curveTop10 { border-radius: 10px 10px 0 0;	}
.curveBot10 { border-radius: 0 0 10px 10px;	}
.curve20 { border-radius: 20px;	}
.curveTop20 { border-radius: 20px 20px 0 0;	}
.curveBot20 { border-radius: 0 0 20px 20px;	}

.centerTxt {
	text-align: center;
}

/* PAGE SECTION RELATED CSS */

.section {
    font-size: 1em;
    margin: 20px 0;
}

.sectionBox {
    margin: 10px 0;
}

.section .column {
    margin: 10px 0;
}

.section .logo {
    text-align: center;
    width: 100%;
    height: 40px;
}

.section .prodName p a {
    display: block;
    line-height: 15px;
    max-height: 27px;
    min-height: 27px;
    padding: 5px 0;
    overflow: hidden;
}

.section .bonus {
    color: #ed1c24;
    line-height: 12px;
    min-height: 15px;
    overflow: hidden;
}

.section .price {
    font-size: 1.8em;
    line-height: 34px;
}

.section p {
    text-align: left;
}

.sectionTitle {
    margin-bottom: 5px;
    position: relative;
}
    
.sectionTitle a {
    display: block;
    padding: 0 10px;
    position: absolute; right: 10px; bottom: 0;
}
    
.sectionTitle h3 {
    color: #444;
    float: left;
    font-size: 34px;
    font-weight: 300;	
}

/* SCREEN IMAGE RESIZE FUNCTIONALITY */

.flexImg {
    position: relative;
    text-align: center;
}
    
.flexImg img {
    border: 0;
    display: block;
    height: auto;
    width: 100%;
}

.slide-left {
	float: left;
}

.slide-right {
	float: right;
}

.diagStripes {
    background: repeating-linear-gradient( -55deg, #222, #222 10px, #333 10px, #333 20px );
}

.newTag {
    background: url(/Views/Locale/promoPages/landingPages/Home/images/new-arrivals.png) right top no-repeat;
    color: #fff;
    display: block;
    font-size: 0.9em;
    height: 19px;
    line-height: 19px;
    padding: 0 15px 0 5px;
    position: absolute; top: 0; left: 0;
    z-index: 1;
}

a.smallBtn {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    color: #fff;	
    display: block;
    font-size: 0.9em;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
    text-decoration: none;
}

a.bigBtn {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    color: #fff;	
    display: block;
    font-size: 1.4em;
    line-height: 35px;
    max-width: 139px;
    text-align: center;
    text-decoration: none;
}

a:hover.bigBtn {
    color: #fff;	
}

a.noBtn {
    color: #444;	
    display: block;
    font-size: 1em;
    line-height: 15px;
}

a:hover.noBtn {
    color: #ed1c24;
}

.browseBtns div {
    line-height: 15px;
    margin: 5px 0;
}

.browseBtns a {
    margin: 5px 0;
}

@media screen and (max-width: 420px) {

    a.bigBtn {
        max-width: 100%;
    }

    a.noBtn {
        clear: both;
        margin: 0 auto;
    }

    .sectionTitle a {
        position: relative;
	right: 0;
        text-align: center;
    }

    .sectionTitle h3 {
        clear: both;
        float: none;
        font-size: 2em;
    }

    .sectionTitle p {
        text-align: center;
    }
}

/*******************/
/***** THEMING *****/
/*******************/

/* Button Theming */

a.redBtn {
	background-color: #ed1c24;
	background: -moz-linear-gradient(top,  #ed1c24 0%, #c5181f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ed1c24), color-stop(100%,#c5181f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ed1c24 0%,#c5181f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ed1c24 0%,#c5181f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ed1c24 0%,#c5181f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ed1c24 0%,#c5181f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1c24', endColorstr='#c5181f',GradientType=0 ); /* IE6-9 */	
}

a:hover.redBtn {
    background-color: #000;
	background: -moz-linear-gradient(top,  #333 0%, #000 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333), color-stop(100%,#000)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #333 0%,#000 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #333 0%,#000 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #333 0%,#000 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #333 0%,#000 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333', endColorstr='#000',GradientType=0 ); /* IE6-9 */	
}

a.greyBtn {
    background-color: #000;
	background: -moz-linear-gradient(top,  #595959 0%, #3b3b3b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#595959), color-stop(100%,#3b3b3b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #595959 0%,#3b3b3b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #595959 0%,#3b3b3b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #595959 0%,#3b3b3b 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #595959 0%,#3b3b3b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#595959', endColorstr='#3b3b3b',GradientType=0 ); /* IE6-9 */	
}

a:hover.greyBtn {
    background-color: #000;
	background: -moz-linear-gradient(top,  #333 0%, #000 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333), color-stop(100%,#000)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #333 0%,#000 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #333 0%,#000 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #333 0%,#000 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #333 0%,#000 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333', endColorstr='#000',GradientType=0 ); /* IE6-9 */	
}

a.greyBox, .greyBox {
    background-color: #dcdcdc;
    display: block;
    padding: 3px;
}

a:hover.greyBox {
    opacity: 0.9;
}

a .btnRed               { color: #ed1c24; }
a:hover .btnRed         { color: #fff; }

a .btnWhite             { color: #fff; }
a:hover .btnWhite       { color: #000; }

a .btnBlack             { color: #000; }
a:hover .btnBlack       { color: #ed1c24; }

a .btnGreen             { color: #188a3a; }
a:hover .btnGreen       { color: #000; }

a .btnGrey              { color: #777; }
a:hover .btnGrey        { color: #777; }

a:hover .hoverRed       { color: #ed1c24; }

a:hover .hoverWhite     { color: #fff; }

a:hover .hoverBlack     { color: #000; }

a:hover .hoverGreen     { color: #188a3a; }

.arrowRed               { background: url(/views/locale/content/images/buyBtnRed-arrow.png) right center no-repeat; padding-right: 20px; }
.arrowWhite             { background: url(/views/locale/content/images/buyBtnWhite-arrow.png) right center no-repeat; padding-right: 20px; }
.arrowGreen             { background: url(/views/locale/content/images/buyBtnGreen-arrow.png) right center no-repeat; padding-right: 20px; }

.platformPageHeader { background-color: #232323; margin-bottom: 20px; }

.pphContent { position: relative; }

.pphContent:after {
	content: ' ';
	border-bottom: 20px solid transparent;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #232323;
	height: 0;
	margin-bottom: -20px;
	margin-left: -20px;
	position: absolute; bottom: -20px; left: 50%;
	width: 0;
}

.pphTitle {
	color: #fff;
	height: 80px;
	line-height: 80px;
	text-align: center;
}

/******************/
/******************/

/******************************/
/***** HOME PRODUCT SPOTS *****/
/******************************/

.product {
	padding-bottom: 10px;
	padding-top: 10px;
    position: relative;
}

.product a {
	background-color: #fff;
	display: block;
	position: relative;
	text-decoration: none;
}

.product a:hover {
    opacity: 0.8;
}

.adSpots a:hover {
    opacity: 0.8;
}

/******************/
/******************/

.fullWidth {
    padding-top: 10px;
}

.fullWidth h1 {
    margin: 0 10px;
}

/* MAIN MENU */


.platformBar li a.platButton {
    font-weight: normal;
}

/* HERO SPOT */

.main-slider {
    margin: 0 auto 0 auto;
    max-height: 421px;
    padding: 0 0;
}

.main-slider .dynamicBannerContainer .bx-prev {
    left: 0;
}

.dynamicBannerContainer .bx-prev {
    background: rgba(0, 0, 0, 0) url(/Views/Locale/Content/Images/slider_left2.png) 0 0 no-repeat;
    margin-top: -40px;
}

.main-slider .dynamicBannerContainer .bx-prev:active {
    left: 0;
}

.main-slider .dynamicBannerContainer .bx-next {
    right: 0;
}

.dynamicBannerContainer .bx-next {
    background: rgba(0, 0, 0, 0) url(/Views/Locale/Content/Images/slider_right2.png) 0 0 no-repeat;
    margin-top: -40px;
}

.main-slider .dynamicBannerContainer .bx-next:active {
    right: 0;
}

.dynamicBannerContainer .bx-wrapper .bx-pager.bx-default-pager a {
    background-color: #999;
    height: 6px;
    width: 20px;
}

.dynamicBannerContainer .bx-prev {
    background: none;
}

.dynamicBannerContainer .bx-next {
    background: none;
}

.dynamicBannerContainer .bx-controls-direction {
    display: none;
}

@media screen and (max-width: 420px) {

    .dynamicBannerContainer .bx-prev {
        background: none;
    }

    .dynamicBannerContainer .bx-next {
        background: none;
    }

.dynamicBannerContainer .bx-controls-direction {
    display: none;
}

}

/* GIFT CARD FIX */

.giftCardText {
    background: url(/Views/Locale/Content/Images/giftcardimg.png) no-repeat right center;
}

/* EB SPECIFIC DYNAMIC SWITCHES */

@media screen and (min-width: 720px) and (max-width: 959px) {

    .dynamicThumb { /* For Hero Slider */
        display: none;
    }

    .dynamicBannerContainer.thumbnailSlider .bx-wrapper {
        float: none;
        margin: 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 719px) {

    .dynamicThumb { /* For Hero Slider */
        display: none;
    }

    .dynamicSingle img {
        margin: 0 auto;
    }

    .dynamicBannerContainer.thumbnailSlider .bx-wrapper {
        float: none;
        margin: 0 auto;
        width: 100%;
    }
}

/*--------*/

/* GENERIC RESPONSIVE SECTION HEADER */

.generic-section-header {
    color: #fff;
    line-height: 44px;
}

.generic-section-header em {
    background-color: #323233;
    display: block;
    font-style: normal;
    padding-left: 15px;
}

.generic-section-header .medButton {
    float: right;
    margin: 5px 7px 0 0;
    text-align: center;
    width: 80px;
}

/* BANNERS */

.bladebar img {
    width: 100%;
}

.tradebar {
    margin-top: 20px;
}

.main-slider {
    background: none;
    margin-bottom: 20px;
    overflow: hidden;
}

.dynamicBannerContainer .dynamicBanner img { /* BANNERS FIX FOR RESPONSIVENESS */
    display: block;
    height: auto;
    width: 100%;
}

/* BEST SELLERS */

.bestSellers .flexImg .flexFill {
    padding-top: 145%;
}

.bestSellers .flexImg span {
    position: absolute; left: 0; bottom: 0;
	text-align: center;
}

.bestsellers {
    margin-bottom: 10px;
}

.bestsellers .bestlist a {
    position: relative;
    margin-top: 10px; 
    margin-bottom: 10px;
}

.bestsellers .bestlist a img {
    display: block;
    width: 100%;
    height: auto;
}

.bestsellers .bestlist a:hover img {
    opacity: 0.7;
}

.bestsellers .bestlist span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/******************/
/** BEST SELLERS **/
/******************/

a .buyBtn {
    border: 1px solid #ed1c24;
    color: #ed1c24;
    display: block;
    font-size: 0.9em;
    line-height: 30px;
    text-align: center;
}

a:hover .buyBtn {
    border-color: #ed1c24;
    color: #ed1c24;
}

.gameBox .prodImg {
    display: block;
    position: absolute; left: 0; bottom: 0;
	text-align: center;
    width: 100%;
}

.gameBox .flexFill {
    display: block;
    padding-top: 145%;
}

.product {
	padding-bottom: 10px;
	padding-top: 10px;
    position: relative;
}

.product a {
	background-color: #fff;
	display: block;
	position: relative;
	text-decoration: none;
}

.product .price {
	font-size: 1.2em;
}

.product .productName {
	display: block;
	line-height: 20px;
	height: 40px;
	margin-bottom: 0;
	overflow: hidden;
}

.product .overlay-details {
	clear: both;
	display: block;
	line-height: 20px;
	padding: 5px;
	position: absolute; bottom: 0; left: 0;
	width: 100%;
}

.product a .overlay-details a.btnSelect, 
.product a .overlay-details .price {
	line-height: 20px;
}

.product a.btnSelect {
	font-weight: 700;
    padding: 0 20px;
	text-align: right;
}

.bestSellers .flexImg .flexFill {
    padding-top: 145%;
}

.bestSellers .flexImg span {
    position: absolute; left: 0; bottom: 0;
	text-align: center;
}

.bestSellers .product a {
    background-color: initial;
}

.bestSellers .gameBox {
	display: block;
	position: relative;
}

.bestSellers .gameBox p {
	background-color: #ed1c24;
	color: #fff;
    display: block;
    line-height: 24px;
	position: absolute; left: 0; bottom: 0;
	text-align: center;
    width: 100%;
}

.bestSellers .product a:hover .gameBox p {
	background-color: #aa0000;
}

.bestSellers .product .price {
    color: #777;
	display: block;
    padding: 0;
	text-align: center;	
}

.bestSellers .product .price span {
    display: block;
    line-height: 30px;
    text-align: center;
}

.section.bestSellers.grid-container {
    font-size: 1em;
    margin: 5px 0 20px;
}


/* TOP CATEGORIES */

.topcategories {
    margin-bottom: 10px;
}

.topcategories .categories a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #000;
    text-decoration: none;
}

.topcategories .categories a:hover {
    color: #ed1c24;
}

.topcategories .categories a em {
    display: block;
    padding-bottom: 5px;
    padding-top: 5px;
    width: 100%;
    text-align: center;
    background-color: #f2f2f2;
}

.topcategories .categories a img {
    display: block;
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
}

.topcategories .categories a:hover img {
    opacity: 0.7;
}

/* PAGE TAB MENUS */
/* Example: Weekly Ad Page */

.pageTabs ul {
	list-style: none;
	margin: 20px 0;
	padding: 0;
	text-align: center;
}

.pageTabs ul li {
	display: inline-block; 
}

.pageTabs a.btn { /* All UL Links */
	color: #fff;
    cursor: pointer;
	background-color: #ed1c24;
	background: -moz-linear-gradient(top,  #636363 0%, #2d2d2c 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#636363), color-stop(100%,#2d2d2c)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #636363 0%,#2d2d2c 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #636363 0%,#2d2d2c 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #636363 0%,#2d2d2c 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #636363 0%,#2d2d2c 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#636363', endColorstr='#2d2d2c',GradientType=0 ); /* IE6-9 */	
	display: block;
    font-weight: 700;
	line-height: 40px;
	padding: 0 15px;
	text-align: center;
	text-decoration: none;
    text-shadow: 1px 1px 1px #000;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;	
}

.pageTabs ul li.active a.btn { /* Active Link Only */
    cursor: default;
	background-color: #ed1c24;
	background: -moz-linear-gradient(top,  #ed1c24 0%, #a7161b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ed1c24), color-stop(100%,#a7161b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ed1c24 0%,#a7161b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ed1c24 0%,#a7161b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ed1c24 0%,#a7161b 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ed1c24 0%,#a7161b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1c24', endColorstr='#a7161b',GradientType=0 ); /* IE6-9 */	
}

.pageTabs a:hover.btn { /* All Hovered UL Links */
	background-color: #000;
	background: -moz-linear-gradient(top, #2e2e2e 0%, #000 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2e2e2e), color-stop(100%,#000)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #2e2e2e 0%,#000 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #2e2e2e 0%,#000 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #2e2e2e 0%,#000 100%); /* IE10+ */
	background: linear-gradient(to bottom, #2e2e2e 0%,#000 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e2e2e', endColorstr='#000',GradientType=0 ); /* IE6-9 */	
}

.pageTabs .pageDownload {
	margin: 0 auto;
	max-width: 200px;
}

/* RESPONSIVE VIDEO CONTAINER */

.videobox {
    margin: 10px 0;
}
.video-container {
    position: relative;
    margin: 10px 0;
    padding-bottom: 53.0%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
.videoContainer {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}

.videoContainer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* PRODUCT PAGE DESCRIPTIONS */

.prodDetBlock h2 { 
    font-weight: 100; 
}

.prodDetBlock h3 {
    font-size: 2em;
    padding: 10px 0;
    margin-bottom: 20px;
}

.prodDetBlock h4 {
    font-size: 1.2em;
}

.prodDetBlock p, .prodDetBlock ul {
    margin-bottom: 15px;
    color: #222;
}

.prodDetBlock .bonus {
    margin: 20px 0;
}

.prodDetBlock .bonus .imgGroup img, 
.prodDetBlock .product-gallery .imgGroup img {
    width: 100%;
    height: auto;
}

.prodDetBlock .product-gallery a {
    padding: 5px 0;
}

.prodDetBlock .trade {
    margin-bottom: 20px;
}

#prodDesc li {
	list-style: circle;	
} 

#prodDesc ul {
	list-style: circle;
	padding-left: 20px;
} 

/* DOCUMENTS */

.documents h2, 
.documents h3, 
.documents h4, 
.documents p {
	margin-bottom: 20px;
    font-weight: 100;
    text-align: left;
}

.documents h3 {
    font-size: 1.5em;
}

.documents p strong, 
.documents .question {
	font-weight: 700; 
}

.documents .esrb-symbol {
    padding-bottom: 20px;
}

.documents .esrb-symbol img {
    width: 100%;
    height: auto;
}

.documents .shipping-chart {
	padding-bottom: 20px;	
}

.documents .table .heading {
	margin: 1px;
	padding: 10px;
	font-weight: 700;
	color: #fff;
	background-color: #000;
}

.documents .table .sub-heading {
	margin: 1px;
	padding: 10px;
	font-weight: 700;
	color: #000;
	background-color: #dbdbdb;
}

.documents .table .column {
	margin: 1px;
	padding: 10px;
	background-color: #f2f2f2;
}

.documents .table .column.last {
	border-bottom: 1px solid #dbdbdb;	
}

.documents .helplist {
	margin: 20px 0;	
}

.documents .helplist ul {
	margin: 20px 0 0 20px;
}

.documents .helplist ul li {
	line-height: 1.5em;
}

.documents p.fineprint {
	color: #777;
    font-size: 0.8em;
}

/* DOCUMENTS THEMING */

.documents.mobile-theme h2, 
.documents.mobile-theme h3, 
.documents.mobile-theme h4, 
.documents.mobile-theme p.question, 
.documents.mobile-theme a {
    color: #01b5f4;
}

.documents.mobile-theme a:hover {
    color: #ed1c24;
}

/* GAME CARDS & GROUPS */

.product-group {
    margin-bottom: 20px;
}

.gameCard {
    padding-top: 10px;
    padding-bottom: 10px;
}

.gameCard a.gameCardMoreInfo {
    background-color: #e8e8e8;
    color: #000;
    display: block;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.gameCard a.gameCardMoreInfo:hover {
    background-color: #000;
    color: #fff;
}

.gameCardStyle {
    float: none;
    margin: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: none;
    min-height: 296px;
    padding: 10px;
}

.gameCardStyle .cardImg a.prodImg {
    padding-top: 138%;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.gameCardStyle .cardImg a.prodImg img {
    max-width: 100%;
    max-height: 100%;
    position: absolute; top: 0; bottom: 0; left: 0; right: 0;
}

.gameCardStyle h3 {
    font-size: 14px;
    font-weight: 100;
}

.gameCardStyle a.medButton {
    height: auto;
    line-height: initial;
    padding: 0 0;
}

.gameCardStyle a.medButton span {
    background: #ee3124 url(/Views/Locale/Content/Images/cart.png) no-repeat center left;
    display: block;
    margin-left: 0;
    padding-right: 5px;
    text-align: right;
    width: auto;
}

.gameCardStyle a.medButton:hover span {
    background-color: #fff;
    color: #ee3124;
}

.gameCardStyle .notEcomMed {
    background-color: #dfdfdf;
    border: 4px none #dfdfdf;
    border-radius: 0;
    color: #444;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    padding: 0 0 0 10px;
}

.gameCardStyle p {
    margin-bottom: 0;
}

.gameCardStyle p strong {
    display: block;
    height: 18px;
    max-height: 18px;
    overflow: hidden;
}

.cardImg {
    width: 100%;
}

.prodsugg .gameCardStyle:first-child {
    margin-left: 0;
}

@media screen and (max-width: 960px) {

    .product-group {
        margin-bottom: 20px;
    }

    .gameCard {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .gameCardStyle {
        float: none;
        margin: 0;
        background-color: #fff;
        border: 1px solid #e8e8e8;
        box-shadow: none;
        min-height: 291px;
        padding: 10px;
        text-shadow: 0 1px 1px #fff;
    }

    .gameCardStyle .cardImg {
        position: relative;
        margin: 0 auto;
    }

    .gameCardStyle .cardImg a {
        position: relative;
        width: 100%;
        max-width: 120px;
    }

    .gameCardStyle .cardImg img {
        width: 100%;
        height: auto;
    }

    .gameCardStyle .medButton {
        margin-left: -2px;
        width: 100%;
    }

}

@media screen and (max-width: 719px) {
    .gameCardStyle {
        min-height: 250px;
    }
}

@media screen and (max-width: 400px) {

    .gameCardStyle {
        min-height: 250px;
    }
}

/****NEW GAMECARD STYLE****/
/****NEW GAMECARD STYLE****/
/****NEW GAMECARD STYLE****/

.dv-card-wrap {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    margin: 0.5rem 0 1rem;
    position: relative;
    transition: box-shadow 0.25s ease 0s;
}
    
.dv-condition2 {
    background-color: #ee3124;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
    display: block;
    float: right;
    padding: 3px 5px 3px 10px;
    position: absolute;
    right: -6px;
    top: 10px;
    z-index: 200;
}

.dv-condition-triangle-topleft {
    border-right: 6px solid transparent;
    border-top: 6px solid #900;
    bottom: -6px;
    float: right;
    height: 0;
    position: absolute;
    right: 0;
    width: 0;
    z-index: 0;
}

.card_rich_media {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    height: 170px;
    max-height: 170px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.card_rich_media .media-inner {
    align-items: center;
    padding: 10px;
    text-align: center;
}

.dv_card_title {
    color: #666;
    display: block;
    font-size: 18px;
    height: 44px;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 150px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
}

.dv-platform {
    color: #828282;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

a.dv-more-info {
    background-color: #ee3124;
    border: 2px solid #fff;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin: 9px 5px 5px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease 0s;
    vertical-align: middle;
}

.dv-cta-block {
    background-color: #ededed;
    padding-bottom: 10px;
}

.dv-price {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: -3px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

.currencySymbol {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -3px;
    text-align: left;
}

/* PUBLIC SECONDARY MENU - UNDER MAIN MENU */

.platformBar {
    padding-bottom: 35px;
    position: relative;
}
    
.secMenuPosition {
    background-color: #fff;
    display: block;
    height: 29px;
    margin: 0 -1px -1px 0;
    position: absolute; right: 0; bottom: -34px;
    width: 100%;
    z-index: -5;
}

.secondaryMenu { 
    margin: -6px 1px 0 0;
	font-size: 1em;
    z-index: -5;
}

.secondaryMenu .secMenuOptions {
    background: #ee3124 none repeat scroll 0 0;
	float: right;
    padding: 0;
}

.secondaryMenu .btn {
    float: right;
    padding: 0;
}
	
.secondaryMenu .btn a {
    display: block;
    padding: 0 7px;
	color: #fff;
    font-weight: 700;
    height: 31px;
	line-height: 31px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}
	
.secondaryMenu .btn a:hover {
	color: #000;
    background: #e7e7e7;
}

@media screen and (max-width: 959px) {
    
    .secondaryMenu .secMenuOptions {
        float: none;
    }

    .secondaryMenu .btn {
        float: left;
        width: 33.2%;
    }

    .secondaryMenu .btn a {
	    line-height: 30px;
    }
}

/* COLLECTION PAGES */

.product-group {
    margin-bottom: 20px;
}

/* CHARTS */

.chart {
    padding: 0 0 20px 0;
}

.chart .sectionTitle h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.chartProduct {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 90px;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #cdcdcd;
}

    .chartProduct .prodDetails .title a {
        color: #888;
        font-weight: 700;
        text-decoration: none;
    }
    
    .chartProduct .prodDetails .title a span {
        color: #000;
    }

.chartProduct .prodImage a {
    display: block;
}

.chartProduct .prodImage a img {
    margin: 0 auto;
    width: auto;
    height: 100%;
    max-height: 85px; 
    vertical-align: baseline;
}

.chartProduct .prodPrice .medButton {
    width: 100px;
    text-align: center;
}

/* HORIZONTAL ARROW MENUS for mainBody */
/* Use in any content area. Just wrap a tags in .content-top-nav | Use .back or .forward on a tags to apply back or forward arrows */

.content-top-nav {
    margin-bottom: 20px;
}

.content-top-nav a {
    display: block; 
    float: left; 
    line-height: 25px;
}

.content-top-nav a.back {
    margin-right: 20px;
    padding-left: 25px;
    background: url(/Views/Locale/Content/Images/arrow_left.png) no-repeat top left;
}

.content-top-nav a.forward { 
    float: right;
    margin-left: 20px;
    padding-right: 25px;
    background: url(/Views/Locale/Content/Images/arrow_right.png) no-repeat top right;
}

.content-top-nav a:hover.forward { 
    background-position: right -26px; 
}

.content-top-nav a:hover.back { 
    background-position: left -26px; 
}

/* SEARCH PAGE */

.mapSearch p {
    font-size: 0.8em;
}

/* SOCIAL MEDIA */
/* INSTAGRAM CSS - ig-b */

.ig-b- img { 
    visibility: hidden; 
}
.ig-b-:hover { 
    background-position: 0 -60px; 
} 

.ig-b-:active { 
    background-position: 0 -120px; 
}

.ig-b-32 { 
    background: url(//badges.instagram.com/static/images/ig-badge-sprite-32.png) no-repeat 0 0; 
    float: left;  
    height: 32px; 
    padding: 0 2px 0 20px;
    width: 32px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

    .ig-b-32 { 
        background-image: url(//badges.instagram.com/static/images/ig-badge-sprite-32@2x.png); 
        background-size: 60px 178px; 
    } 
}

/* Main Footer */

.mainFooter {
    background-color: #f6f6f6;
    background-image: none;
    border-top: 1px solid #bebebe;
    font-size: 1em;
    max-width: 960px;
    text-shadow: none;
    width: 100%;
}

.mainFooter .footerTitle {
	color: #777;
	font-size: 1em;
    margin: 10px 0;
    text-shadow: none;
}

.mainFooter ul { 
	list-style-type: none; 
	margin: 0 auto; 
	padding: 0; 
}

.mainFooter li a {
	color: #777;
	display: block;
	font-size: 0.8em;
    line-height: 15px;
	padding: 0;
	text-decoration: none;
    text-shadow: none;
}

.mainFooter li a:hover {
    border-bottom: none;
	color: #000;
    padding: 0;
	text-decoration: underline;
    text-shadow: none;
}

.mainFooter .connect li a span {
    display: block;
    float: left; clear: left;
    line-height: 30px;
    margin: 0 auto;
    padding-left: 35px;
}

.mainFooter .connect li a.facebook span {
    background: url(/Views/Locale/Content/Images/social/facebook.png) left center no-repeat;
}

.mainFooter .connect li a.twitter span {
    background: url(/Views/Locale/Content/Images/social/twitter.png) left center no-repeat;
}

.mainFooter .connect li a.instagram span {
    background: url(/Views/Locale/Content/Images/social/instagram.png) left center no-repeat;
}

.mainFooter .connect li a.youtube span {
    background: url(/Views/Locale/Content/Images/social/youtube.png) left center no-repeat;
}
	
@media (max-width: 959px) {

	.mainFooter {
		text-align: center;	
	}

    .mainFooter ul { 
	    display: block;
    }
	
	.mainFooter li a {
		background-color: #fff;
        line-height: 30px;
		margin: 1px 0;
	}
	
	.mainFooter .international li,
	.mainFooter .connect li {
		padding-left: 1px;
		padding-right: 1px;
	}

    .mainFooter .connect li a span {
        margin: 0 auto;
    }
	
}

/* ANCHOR SPOT FIX */

.anchorBanner .bx-viewport {
    margin: auto;
    max-height: 125px;
    max-width: 430px;
}

/** Product Page Wallpaper Viewer **/

	.ebwallpapers { 
		background-color: #e9e9e9;
		padding: 5px;
		text-align: center;
	}
	
	.wpSizeContainer p { 
		display: block;
		font-weight: 600;
		line-height: 42px;
		margin-bottom: 0;
	}
	
	.wpSizeContainer a {
		background-color: #fff;
		color: #000;
		display: block;
		font-size: 1em;
		line-height: 42px;
		margin: 1px; 
		text-decoration: none;
	}
	
	.wpSizeContainer a:hover {
		background-color: #ed1c24;
		color: #fff;
		font-weight: 600;
	}

/* HIDE ANYTHING */

.hideThis { display: none; }

IMC-462 Show browse button on mobile
.platformBar li a.platButton
{ float: none; }

/* CART SHIPPING METHOD SELECTION STYLE OVERRIDE */

.checkout .shipping {
    height: auto;
		padding-bottom: 10px;
}
		
/* MOBILE LOGO MOD FOR EBX INCLUSION */	

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
	.navLogo {
			background: url(../Images/logo-mobile-ebgames-ebx-stacked@2x.png) no-repeat 10px center; /* style overwritten */
			background-size: 90px 35px;
	}
}

@media (max-width: 959px) {
	.navLogo {
			display: block;
			float: left;
			width: 90px;
			height: 35px; /* style overwritten */
			padding: 2px 0 4px 8px; /* style overwritten */
			background: url(../Images/logo-mobile-ebgames-ebx-stacked.png) no-repeat center; /* style overwritten */
	}
}
.bundleBuilderRight .bundleProductVariant 
{
	height: 185px;
}

@media (max-width: 568px) {
    .bundleBuilderRight .bundleProductVariant {
        height: 226px;
    }
}

/* TRADE VALUE ON PDP */
.tradeValueBlock {
    float: right;
    position: relative;
    border: solid 2px #ee3124;
    padding: 04px;
}

.tradeValueLine span {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: bold;
    color: #ee3124;
    font-family: Montserrat,sans-serif;
}

/******************************/
/* PLATFORM PAGE THEMING */
/* Each platform page has CSS on each page to control colour. Below is the structural elements and generic colour elements */
/******************************/

/* Platform Page Takeover Wings */
.ebTakeover { 
	position: absolute; 
	top: 0; 
	left: 0;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	height: 1000px;
	z-index: -100;
}
	
.ebTakeover .dynamicBannerContainer {
	position: relative; 
        max-width: 2000px;
	height: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

.ebTakeover .dynamicBannerContainer img {
	position: absolute;
	left: 50%;
	margin-left: -1000px;
	width: 2000px;
}

.platformBar ul li.PS5 { background: #003791; }
.platformBar li.PS5:hover, .platformBar li.PS5.current-page { background: #e7e7e7; }

.platformBar ul li.Xboxseries { background: #107C10; }
.platformBar li.Xboxseries:hover, .platformBar li.Xboxseries.current-page { background: #e7e7e7; }
	
.platformBar ul li.Switch { background: #e4000f; }
.platformBar li.Switch:hover, .platformBar li.Switch.current-page { background: #e7e7e7; }

