@charset "UTF-8";

/***** Font define *****/

@font-face {
    font-family: OpenSansLight;
    src: url('../fonts/OpenSans-Light.ttf');
}

/***** End Font define *****/

/***** Default *****/

body {
    padding: 0;
    margin: 0;
    font-family: OpenSansLight, sans-serif;
}

input, textarea, select, button {
	font-family: OpenSansLight, sans-serif;
}

iframe {
    border: 0;
}

.textDecoration-underline {
    text-decoration: underline;
}

.hide {
    display: none;
}

.display-flex {
    display: flex;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed !important;
}

.absolute {
    position: absolute;
}

.noScroll {
    overflow: hidden;
}

.fa {
    margin-right: 5px;
}

.pointer {
    cursor: pointer;
}

.left {
    float: left;
}

.right {
    float: right;
}
.cleaner {
    clear: both;
    height: 0;
    margin: -1px 0 0 0;
    padding: 0;
    visibility: hidden;    
}

.right-align {
    text-align: right;
}

.left-align {
    text-align: left;
}

.center-align {
    text-align: center;
}
.text-line-through {
    text-decoration: line-through;
}
a, a:hover {
    text-decoration: none;
}

.margin-right-20 {
    margin-right: 20px;
}

.smallShow, .mediumShow {
    display: none;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}


.hideMeAfter5Seconds {
    animation: hideAnimation 0s ease-in 5s;
    animation-fill-mode: forwards;
}

@keyframes hideAnimation {
    to {
        visibility: hidden;
        width: 0;
        height: 0;
    }
}



@media all and (max-width: 760px) {
    .smallHidden {
        display: none;
    }

    .smallShow {
        display: inline-block;
    }
}

@media all and (max-width: 1010px) {
    .mediumShow {
        display: inline-block;
    }
}

.boxShadow {
    -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,0.75);
    -moz-box-shadow: 0 0 2px 0 rgba(0,0,0,0.75);
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.75);
}

.boxShadowFaint {
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}

ul {
    padding: 0;
}

ul ul {
    margin-left: 30px;
    list-style-type: disc;
}

li {
    list-style-type: none;
}

/***** End Default *****/
/*****      Display  *****/
.display-flex {
    display: flex;
}
.flexDirection-column {
    flex-direction: column;
}
.justifyContent-center {
    justify-content: center;
}
 
@media screen and (max-width: 1010px) {
    .flexDirection-column-l {
        flex-direction: column;
    }
}
@media screen and (max-width: 760px) {
    .flexDirection-column-m {
        flex-direction: column;
    }
}
@media screen and (max-width: 465px) {
    .flexDirection-column-s {
        flex-direction: column;
    }
}
/*****  End Display  *****/
/***** Containers *****/

#contentContainer {
    min-width: 300px;
}

#header {
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 25;
}

#header.smallHeaderHeight {
    height: 60px;
    padding-top: 10px;
}

.smallHeaderHeight #header-logo {
    margin-top: -25px;
    max-height: 50px;
}

.smallHeaderHeight #frm-searchForm-phrase {
    margin: 0;
}

.smallHeaderHeight .topButtons {
    top: 13px;
}

#header-cartCount {
    width: 16px !important;
    line-height: 16px;
    top: 0;
    right: 95px;
}

#navigate {
    height: 60px;
    margin-top: 100px;
}
#navigate.cartDefault {
    height: 0px;
}
.container {
    max-width: 1200px;
}

.smallContainer {
    max-width: 900px;
}

@media all and (max-width: 1210px) {
    .container {
        max-width: 1000px;
    }
}

@media all and (max-width: 1010px) {
    .container {
        max-width: 750px;
    }
    #header-cartCount {
        right: 80px;
    }
    .smallHeaderHeight #frm-searchForm-phrase {
        margin-left: -167px;
    }
    #searchButton {
        display: inline-block;
        float: left;
    }
    #header-cart {
        display: inline-block;
        float: left;
    }
    #header-profile {
        margin-right: 10px;
        display: inline-block;
        float: left;
    }
}

@media all and (max-width: 760px) {
    .container {
        max-width: 300px;
    }
    #contentContainer {
        margin-top: 100px;
    }
    #header-cartCount {
        left: 65px;
    }
    .smallHeaderHeight #frm-searchForm-phrase {
        width: calc( 100% - 70px ) !important;
        position: absolute;
        right: 10px;
    }
}

.fullContainer {
    width: 100%;
    min-width: 300px;
}

.middleContainer {
    margin: 0 auto;
    min-width: 300px;
    max-width: 1200px;
}


#subscribeSection .middleContainer {
    display: block !important;
}

#subscribeSection p {
    padding: 2px 0;
    margin: 5px 0;
}

@media all and (max-width: 1210px) {
    .middleContainer {
        max-width: 1000px;
   }
}
@media all and (max-width: 1010px) {
    .middleContainer {
        max-width: 750px;
   }
}

@media all and (max-width: 760px) {
    .middleContainer {
        min-width: 300px;
    }
    #header-search {
        display: none;
    }
}

/***** End Containers *****/

/***** Logo *****/

#topLogo {
    width: 157px;
    height: 100px;
    margin-left: 40px;
    background-image: url('../images/logo/logo-750.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}
@media all and (max-width: 760px) {
    #topLogo {
        margin-left: 0;
    }
}
@media all and (max-width: 370px) {
    #topLogo {
        width: 37px;
        margin-left: 0;
        background-image: url('../images/logo/logo-300.png');
        background-position: center center;
    }
}

/***** End Logo ****/

/***** Forms *****/

#frm-searchForm-phrase {
    width: calc(100% - 120px);
    height: 30px;
    padding: 10px 110px 10px 10px;
    margin: 25px auto;
}

#frm-searchForm-send {
    position: relative;
    display: inline-block;
    float: right;
    margin: -65px 5px 0 0;
    background: rgba(0,0,0,0);
    border: none;
}

.smallHeaderHeight #frm-searchForm-send {
    margin: -40px 5px 0 0 !important;
}


/***** End Forms *****/

/***** Buttons *****/

.topButtons {
    right: 0;
    top: 38px;
}

@media all and (max-width: 1010px) {
    #frm-searchForm {
        position: absolute;
        z-index: 1000;
    }
    #frm-searchForm-phrase,
    #search-list {
        display: none;
        width: 580px;
        margin-left: -167px;
    }
    #search-list {
        width: 700px !important;
    }

    #frm-searchForm-send {
        margin-right: 20px;
    }
}

@media all and (max-width: 760px) {
    #frm-searchForm-send {
        margin-right: 10px;
    }
    #header-search {
        display: block;
        position: absolute;
    }
    #header-search .fa {
        margin-right: 20px;
    }
    #frm-searchForm {
        width: 100%;
    }
    #frm-searchForm-phrase,
    #search-list {
        width: calc(100% - 92px) !important;
        min-width: 190px;
        padding-right: 40px;
        margin-left: 20px;
    }
    #search-list {
        width: calc(100% - 42px) !important;
        min-width: 190px;
        padding: 0;
    }

    .topButtons {
        width: 150px;
    }

    .topButtons div {
        width: 32px !important;
    }
}

/***** End Buttons *****/

/***** Search List *****/

#search-list {
    width: 100%;
    top: 90px;
    left: 0;
    z-index: 10;
    display: none;
}
#search-list.smallHeader {
    top: 60px;
}

#search-list ul {
    width: 100%;
    margin: 0;
    padding: 5px 0;
}

#search-list ul li {
    width: 100%;
    padding: 0;
}

#search-list ul li a {
    display: block;
    width: calc(100% - 40px);
    padding: 10px 20px;
}

/***** End Search List *****/

/***** End Border *****/

.noBorder {
	border: 0;
}

.border {
    border-style: solid;
    border-width: 1px;
}

.border-left {
    border-left-style: solid;
    border-left-width: 1px;
}

.border-right {
    border-right-style: solid;
    border-right-width: 1px;
}

.border-bottom {
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

.border-top {
	border-top-style: solid;
	border-top-width: 1px;
}

.borderRadius-all-4 {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.borderRadius-all-5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.borderRadius-all-6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

/***** End Border *****/

/***** Font size *****/

.font-size-7 {
    font-size: 7pt;
}
.font-size-8 {
    font-size: 8pt;
}
.font-size-9 {
	font-size: 9pt;
}

.font-size-10 {
    font-size: 10pt;
}

.font-size-11 {
    font-size: 11pt;
}

.font-size-12 {
    font-size: 12pt;
}

.font-size-13 {
    font-size: 13pt;
}

.font-size-14 {
    font-size: 14pt;
}

.font-size-15 {
    font-size: 15pt;
}

.font-size-16 {
    font-size: 16pt;
}

.font-size-17 {
    font-size: 17pt;
}

.font-size-18 {
    font-size: 18pt;
}

.font-size-20 {
    font-size: 20pt;
}

.font-size-22 {
    font-size: 22pt;
}

.font-size-23 {
	font-size: 23pt;
}

.font-size-24 {
	font-size: 24pt;
}

.font-size-25 {
    font-size: 25pt;
}

.font-size-27 {
    font-size: 27pt;
}

.font-size-30 {
    font-size: 30pt;
}

.font-size-40 {
    font-size: 40pt;
}

.font-size-50 {
    font-size: 50pt;
}

.font-size-90 {
	font-size: 90pt;
}

@media all and (max-width: 1010px) {
    .font-l-size-22 {
        font-size: 22pt;
    }
}

@media all and (max-width: 760px) {
    .font-m-size-9 {
        font-size: 9pt;
    }
    .font-m-size-26 {
        font-size: 26pt;
    }
}

.font-light {
    font-weight: 100;
}

.font-strong {
    font-weight: 800;
}

/***** End Font size *****/

/***** Navigation *****/

#navigateButton {
    padding: 35px 10px 35px 10px;
    width: 24px;
}

.navigate-ul {
    padding: 0;
    margin: 0;
}

.navigate-li {
    padding: 0;
    float: left;
}

.navigate-li-element {
    display: block;
    padding: 17.5px 10px;
}

@media all and (max-width: 1010px) {
    #navigate .smallHidden {
        display: none;
    }

    .left .navigate-li-element {
        padding: 10px;
    }
}

@media all and (max-width: 760px) {
    #navigate {
        display: none;
    }
}

/***** End Navigation *****/

/*****      Content  *****/
#contentContainer,
#snippet--gridOfProducts {
    width: 100%;
}
/*****  End Content  *****/

/*****      ProductGrid  *****/
.productGrid-wrapper {
    height: 320px;
    padding: 0 10px 20px 10px;
}
.productGrid {
    height: 100%;
}
.productGrid-image {
    height: 220px;
    padding: 10px;
}
.productGrid-image img {
    height: 200px;
}
.productGrid-title {
    height: 50px;
    min-height: 50px;
    padding: 0 10px;
    margin-top: -5px;
    overflow: hidden;
}
.productGrid-price {
    height: 26px;
    line-height: 26px;
    margin-right: 10px;
}
.productGrid-badgesWrapper {
    margin: 5px 0 0 15px;
}
img.productGrid-badge {
    width: 16px;
    height: 16px;
    margin: 0 3px;
}
.productGrid-badge.fa {
    margin: 0 3px;
}
#productGrid-buttons {
    width: 500px;
    margin: auto;
}
#moreGames,
#filterOpen {
    width: 235px;
    height: 55px;
    margin-bottom: 50px;
    line-height: 55px;
}
#filterOpen {
    display: none;
}
#filterOpenIcon {
    line-height: 27px;
}

@media all and (max-width: 1010px) {
    .productGrid-wrapper {
        padding: 0 5px 20px 5px;
    }
    #filterOpen,
    #filterOpenIcon {
        display: block;
    }
    #productCatalog {
        margin-left: 15px;
    }
}

@media all and (max-width: 760px) {
	#products {
        overflow: hidden;
	}
    .productGrid-wrapper {
        height: unset;
    }
    .productGrid-image {
        height: unset;
        padding: 5px;
        padding-bottom: 10px;
    }
    .productGrid-image img {
        height: unset;
    }
    .productGrid {
    	padding-bottom: 5px;
    }
    #moreGames,
    #filterOpen {
        float: none;
        margin: auto;
        margin-bottom: 25px;
    }
    #productGrid-buttons {
    	width: unset;
    }
}
@media all and (max-width: 370px) {
    .productGrid-badgesWrapper {
        left: 50%;
        margin: 0 0 5px 0;
    }
    .productGrid-badges {
        left: -50%;
    }
    .productGrid-price {
        margin-right: 41px;
    }
    #productGrid-buttons {
        width: 100%;
    }
    .productGrid {
        text-align: center;
    }
}
/*****  End ProductGrid  *****/

/*****      SimpleText  *****/
.simpleText-title {
    margin-bottom: 15px;
    border-bottom: 1px solid;
}
.simpleText-title h1 {
    margin: 13px 0;
    margin-left: 10px;
}
.sectionTitle {
    line-height: 67px;
    margin-right: 10px;
}
.simpleText-title ul {
    margin: 0;
}
.simpleText-title li {
    margin-left: 20px;
}
.simpleText p,
.simpleText ul.normalText,
.simpleText ol.normalText {
    margin: 15px 0;
    margin-left: 25%;
}
.simpleText ul.normalText,
.simpleText ol.normalText {
    padding-left: 50px;
}
.simpleText .normalText li {
    list-style-type: circle;
}
.simpleText-section {
    margin-left: 12.5%;
}
.simpleText-section h2,
.simpleText-section h3 {
    width: 600px;
    margin: auto;
    margin-top: 8px;
    margin-bottom: 8px;
}
@media all and (max-width: 1210px) {
    .simpleText p,
    .simpleText ul.normalText,
    .simpleText ol.normalText {
        margin-left: 20%;
    }
}
@media all and (max-width: 1010px) {
    .simpleText p,
    .simpleText ul.normalText,
    .simpleText ol.normalText {
        margin-left: 10%;
    }
    .simpleText-section {
        margin-left: 25px;
    }
}
@media all and (max-width: 760px) {
    .simpleText p,
    .simpleText-section,
    .simpleText ul.normalText,
    .simpleText ol.normalText {
        margin-left: 0;
    }
    .sectionTitle div {
        margin-left: 20px;
        line-height: 30px;
    }
    .simpleText-title li {
        margin: 0 20px 0 0;
    }
    .simpleText-section h2,
    .simpleText-section h3 {
        width: 100%;
    }
}
/*****  End SimpleText  *****/

/*****      Unlogged  *****/
#unloggedWrapper {
    width: 830px;
    margin: auto;
    margin-top: 85px;
    margin-bottom: 100px;
}
.inputButton {
    width: 282px;
    height: 42px;
    margin: auto;
    margin-top: 20px;
    border: 0;
    line-height: 42px;
}
.inputTextbox {
    width: 270px;
    height: 48px;
    margin: auto;
    margin-top: 20px;
    padding-left: 10px;
}
#unlogged .labelDiv {
    width: 214px;
    padding-top: 20px;
    line-height: 50px;
}
#unlogged .formRow {
    padding-right: 18px;
}
.fbButton img {
    margin: 8px 0 8px 15px;
}
.unloggedText {
    width: 282px;
    height: 80px;
    margin-top: 42px;
    margin-bottom: 40px;
}
@media all and (max-width: 1010px) {
    #unloggedWrapper {
        width: 708px;
    }
    #unloggedWrapper .leftColumn {
        width: 415px !important;
    }
    #unloggedWrapper .rightColumn {
        width: 293px !important;
    }
}
@media all and (max-width: 760px) {
    #unloggedWrapper {
        width: 284px;
        margin: auto;
        margin-bottom: 20px;
    }
    #unlogged .labelDiv {
        padding: 0;
        margin-bottom: -30px;
    }
    #unloggedWrapper .leftColumn,
    #unloggedWrapper .rightColumn,
    #unloggedWrapper .labelDiv {
        width: 300px !important;
        float: none;
    }
    #loginRegistration,
    #fbRegistration {
        float: left;
    }
    #unlogged .unloggedText {
        display: none;
    }
}
/*****  End Unlogged  *****/

/*****      NewPassword  *****/
#newPasswordWrapper {
    margin-left: 25%;
    margin-top: 85px;
    margin-bottom: 100px;
}
#newPasswordWrapper .formRow {
    padding-right: 25%;
}
#newPasswordWrapper .labelDiv {
    padding-top: 20px;
    line-height: 50px;
}
@media all and (max-width: 1210px) {
    #newPasswordWrapper .formRow {
        padding-right: 0;
    }
}
@media all and (max-width: 760px) {
    #newPasswordWrapper {
        margin: auto;
        margin-bottom: 20px;
    }
    #newPasswordWrapper .formRow {
        padding-right: 9px;
    }
    #newPasswordWrapper .labelDiv {
        padding-left: 9px;
        margin-bottom: -30px;
    }
}
/*****  End NewPassword  *****/

/*****      Registration  *****/
#registrationWrapper {
    margin-left: 25%;
    margin-top: 85px;
    margin-bottom: 100px;
}
#registrationWrapper .formRow {
    padding-right: 25%;
}
#registrationWrapper .labelDiv {
    padding-top: 20px;
    line-height: 50px;
}
.registrationCheckbox {
	margin: 15px 0;
}
.registrationCheckbox label {
	line-height: 36px;
	margin-left: 20px;
}
@media all and (max-width: 1210px) {
    #registrationWrapper .formRow {
        padding-right: 0;
    }
}
@media all and (max-width: 760px) {
    #registrationWrapper {
        margin: auto;
        margin-bottom: 20px;
    }
    #registrationWrapper .formRow {
        padding-right: 9px;
    }
    #registrationWrapper .labelDiv {
    	width: 250px;
        padding-left: 9px;
        margin-bottom: -30px;
    }
    #registration .sectionTitle {
        float: left !important;
        margin: -25px 0 -10px -10px !important;
    }
}
/*****  End Registration  *****/

/*****      Sitemap  *****/
#sitemap ul {
    margin-left: 10px;
}
#sitemap ul ul {
    margin-left: 30px;
}
/*****  End Sitemap  *****/

/*****      Banner  *****/
#banner {
	height: 100%;
	margin-bottom: 30px;
}
#bannerProducts,
.bannerProduct {
	width: 1200px !important;
	height: 250px !important;
}
.bannerProduct {
	height: 250px;
	margin-top: 15px;
}
.banner-info {
	height: 100%;
	padding: 10px;
}
.banner-actionWrapper {
	width: 180px;
	height: 36px;
	line-height: 36px;
}
.banner-title {
	height: 64px;
	margin: 21px 0;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.banner-addToCart {
	margin-top: 10px;
	padding: 7px;
}
.banner-badgesWrapper {
    left: 50%;
}
.banner-badges {
    left: -50%;
}
#banner-navigation {
	z-index: 7;
	bottom: 7px;
	margin-right: 210px;
}
.banner-navigationButton {
	width: 10px;
	height: 10px;
	margin-right: 5px;
    margin-left: 5px;
	border: 1px solid;
}
@media all and (max-width: 1210px) {
	#bannerProducts,
	.bannerProduct {
		width: 1000px !important;
		height: 306px !important;
	}
	.banner-info {
		height: 56px;
	}
	.banner-actionWrapper {
		float: left;
	}
	.banner-addToCart {
		width: 120px;
		height: 36px;
		float: right;
		margin: 0;
	}
	.banner-price {
		display: inline-block;
	}
	.banner-priceText {
		display: none;
	}
	.banner-addToCart .fa-shopping-basket {
		float: right;
		line-height: 22px;
	}
	.banner-title {
		width: 590px;
		height: 36px;
		margin: 0;
		line-height: 36px;
		float: left;
		-webkit-line-clamp: 1;
	}
    .bannerNotAction .banner-actionWrapper {
        display: none; 
    }
    .bannerNotAction .banner-title {
        width: 770px;
    }
    .bannerAction .banner-title {
        width: 610px;
    }
	.banner-badgesWrapper {
		left: auto;
		margin-top: 10px;
	}
    .banner-badges {
        left: auto;
    }
	#banner-navigation {
		margin-right: 5px;
		bottom: 63px;
	}
}
@media all and (max-width: 1010px) {
	#bannerProducts,
	.bannerProduct {
		width: 750px !important;
		height: 240px !important;
	}
	#banner-navigation {
		bottom: 55px;
	}
	.banner-actionWrapper {
		float: right;
		margin-right: 130px;
	}
	.bannerAction .banner-title {
		width: 330px;
	}
    .bannerNotAction .banner-title {
        width: 540px;
    }
    .bannerAction .priceActionOuterWrapper {
    	margin-top: -36px;
    	float: right;
    }
}
@media all and (max-width: 760px) {
	#snippet--banner {
		width: calc( 100% - 20px );
	}
	.actionSolo {
		display: none;
	}
	#banner {
		width: 100%;
		padding: 10px;
		overflow: hidden;
	}
	#bannerProducts,
	.bannerProduct {
		width: 100% !important;
		height: unset !important;
	}
	#banner-navigation {
		bottom: unset;
	}
	.banner-info {
		height: 110px;
		padding-top: 5px;
	}
	.banner-titleBadgesWrapper {
		text-align: center;
	}
	.banner-title {
		width: unset !important;
		overflow-x: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		max-width: calc(100% - 70px); /* maximalni delka nadpisu */
		display: inline-block;
		vertical-align:middle;
		float: unset;
	}
	.banner-badgesWrapper {
		margin-top: 0;
		left: unset;
		display: inline-block;
		vertical-align:middle;
		float: unset;
	}
	.banner-badges {/*
		left: -50%;*/
		left: unset;
	}
	.displayM {
		display: block;
	}
	.priceActionOuterWrapper {
		margin-top: 5px !important;
		left: 50%;
		position: relative;
		float: left !important;
	}
	.priceActionWrapper {
		left: -50%;
		position: relative;
		float: left;
	}
	.bannerAction .banner-actionWrapper.actionToCart {
		margin-right: 10px;
		display: block;
		float: left;
	}
}
@media all and (max-width: 370px) {
	.bannerAction .banner-info {
		height: 155px;
	}
	.banner-actionWrapper.actionToCart {
		margin-right: 0;
		margin-bottom: 10px;
		float: none;
	}
	.banner-addToCart {
		width: 180px;
	}
	.banner-title {
		width: 280px !important;
		max-width: unset;
	}
    #banner-navigationWrapper {
        left: 50%;
        float: left;
    }
	#banner-navigation {
        left: -50%;
		margin: 0;
	}
	.bannerAction .banner-actionWrapper.actionToCart {
		float: unset;
		margin-right: 0;
	}
}
/*****  End Banner  *****/

/*****      ProductDetails  *****/
#productDetail .simpleText-title {
	border: 0;
}
#productDetail-image img {
    width: 256px;
    height: 320px;
    margin-left: 10px;
}
#productDetail-addToCart {
    height: 75px;
}
.productDetail-action {
    margin-top: 10px;
    padding: 7px 0;
}
.productDetail-badges {
    margin-top: 30px;
}
.productDetail-badges .badge-container {
    margin: 8px 0;
}
.productDetail-badge img {
    width: 13px;
    height: 13px;
    margin: 3px 5px 0 0;
}
.productDetail-badge {
	margin-top: 3px;
}
.productDetail-badges .badge-requirement .productDetail-badge {
    margin-top: 5px;
}
.productDetail-badgeText {
	max-width: 275px;
	margin-bottom: 10px;
}
#productDetail-ScreenshotDetail {
    height: 310px;
    padding: 0 23px;
}
#productDetail-ScreenshotDetail .screenshot {
    max-width: 100%;
    max-height: 100%;
    margin: auto;    
}
#productDetail-ScreenshotDetail .screenshotBig {
    width: 100%;
    height: 100%;
}
.youtubeArrow {
    margin-top: -90px;
}
#screenshotSelectWrapper {
	width: 554px;
	height: 100px;
    margin: 26px 23px 0 23px;
    overflow: hidden;
}
#screenshotSelectWrapper .fa {
	margin: 0;
}
#screenshotSelectSlider {
	margin-left: -5px;
}
#sliderRight,
#sliderLeft {
	width: 32px;
	height: 100%;
	line-height: 100px;
	opacity: 0.8;
	right: 0;
	z-index: 1;
}
#sliderLeft {
	left: 0;
}
.screenshotContainer {
	width: 178px;
    height: 100px;
    margin: 0 5px;
    line-height: 100px;
}.screenshots {
    height: 100%;
}
#productDetail-Description {
    margin-top: 20px;
    padding-left: 30px;
}
#productDetail-similarProducts {
    height: 380px;
    overflow: hidden;
}
#productDetail-similarProducts h3 {
    padding: 0 10px;
}
@media all and (max-width: 1210px) {

    #productDetail-info {
        padding-left: 20px;
    }
    #productDetail-ScreenshotDetail {
        height: 242px;
        padding: 0 12.5px;
    }
    #screenshotSelectWrapper {
		width: 475px;
	    margin: 26px 12.5px 0 12.5px;
    }
	.productDetail-badgeText {
		max-width: 200px;
	}
}
@media all and (max-width: 1010px) {

    #productDetail-Screenshots {
        width: inherit;
        margin-top: 20px;
    }
    #productDetail-ScreenshotDetail {
        height: 410px;
        padding: 0 10px;
    }
    #screenshotSelectWrapper {
        width: calc(100% - 20px);
    }
	.productDetail-badgeText {
		max-width: 420px;
	}
    #screenshotSelectWrapper {
	    margin: 26px 10px 0 10px;
    }
	#productDetail-Description {
	    padding: 0 10px;
	}
}
@media all and (max-width: 760px) {
	#productDetail-image {
		width: 210px;
	}
	#productDetail-image img {
		width: 200px;
		height: auto;
	}
	#productDetail-info {
		width: calc(100% - 220px);
		margin-right: 10px;
		float: right;
	}
	.productDetail-badgeText {
		max-width: calc(100% - 30px);
	}
	#productDetail-ScreenshotDetail {
		height: unset;
	}
	#productDetail-similarProducts {
	    height: auto;
	    overflow: unset;
	}
}
@media all and (max-width: 470px) {
	#productDetail-info,
	#productDetail-image {
		width: 100%;
	}
	#productDetail-image {
		margin-top: 20px;
		padding-bottom: 200px;
	}
	#productDetail-image img {
		margin: auto;
	}
	.productDetail-badges {
		width: 300px;
		margin-top: 295px;
		margin-left: calc((100% - 300px) / 2);
		position: absolute;
	}
	#screenshotSelectWrapper {
		display: none;
	}
	#screenshotButton {
		width: 236px;
		height: 55px;
		margin: auto;
		margin-top: 20px;
		line-height: 55px;
		display: block;
	}
}
@media all and (max-width: 320px) {
	.productDetail-badges {
		margin-left: 0;
	}
}
/*****  End ProductDetails  *****/
/*****      Lightbox  *****/
#lightboxWrapper {
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 0;
}
#lightbox {
	width: calc(100% - 140px);
	height: calc(100% - 40px);
    max-width: 800px;
    max-height: 450px;
	margin: 20px auto;
}
#lightbox img {
	margin: auto;
	margin-top: 60px;
}
#lightboxControls {
	right: 20px;
	top: 20px;
}
#lightboxList {
	top: 65px;
	right: 20px;
}
#lightboxList .screenshotContainer {
	width: 80px;
	height: auto;
	margin-bottom: 10px;
}
#lightboxList .screenshotContainer.youtube {
	height: 50px;
	line-height: 50px;
}
#lightboxList .screenshotContainer.youtube .fa {
	margin: 0;
}
/*****  End Lightbox  *****/
/*****      Bubble  *****/
#bubbleWrapper {
    position: absolute;
    opacity: 0;
    z-index: 1000;
}
#bubble {
    width: 200px;
    padding: 15px;
    position: relative;
    z-index: 1001;
}
#bubbleWrapper::before {
    width: 16px;
    height: 15px;
    top: 15px;
    left: 223px;
    content: "\00a0";
    z-index: 999;
    display: block;
    position: absolute;
    transform: rotate( 45deg );
    -moz-transform: rotate( 45deg );
    -ms-transform: rotate( 45deg );
    -o-transform: rotate( 45deg );
    -webkit-transform: rotate( 45deg );
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}
#bubble .title {

}
#bubble .title img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
@media all and (max-width: 470px) {
    #bubbleWrapper::before {
        top: -7px;
        left: 24px;
    }
}
/*****  End Bubble  *****/
/*****      Nav  *****/
nav {
	min-height: 100%;
	overflow: hidden;
}
#navUlWrapper {
	left: 50%;
}
nav ul {
	width: 250px;
	margin: 0;
	margin-left: 50px;
	left: -50%;
}
nav li {
	padding: 15px 0;
}
nav li:first-child {
	padding: 0;
}
nav li .fa {
	width: 20px;
	text-align: center;
}
#navigateButtonClose {
	margin: 35px 0 0 10px;
}
#navLogo {
	width: 157px;
	height: 100px;
	background-image: url(../images/logo/logo-750.png);
	background-repeat: no-repeat;
	background-position: center center;
}
#navigtionScrollWrapper {
	height: 100vh;
	overflow-y: scroll;
	top: 0;
	left: 0;
	z-index: 1000;
}
/*****  End Nav  *****/
/*****      Cart  *****/
#cart {
	margin-bottom: 50px;
}
#cart .lineSep {
    display: none;
}
#cartEmpty {
	margin-top: 40px;
	margin-bottom: 60px;
}

#cartWrapper {
	width: calc(50% + 70px);
	margin: auto;
}

.cartItem {
	width: 610px;
	padding: 9px 0;
	margin: 0 30px;
}
.cartItemImg {
	width: 35px;
	height: 42px;
}
.cartItemTitle,
.cartItemPublisher,
.cartItemTotal {
	width: 320px;
	height: 21px;
	padding: 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cartItemCount {
	width: 124px;
	line-height: 41px;
}
.cartItemCountControl {
	width: 94px;
	height: 36px;
	margin-top: 3px;
	line-height: 36px;
}
.plus,
.minus {
    width: 12px;
    height: 12px;
	margin: 8px 5px;
	line-height: 11px;
}
.minus {
    margin-top: 25px;
    line-height: 8px;
}
.cartButton.remove {
    width: 12px;
    height: 12px;
    margin: 15px -5px 0 0;
    line-height: 11px;
}
.cartItemPrice {
	width: 70px;
	padding-right: 20px;
	line-height: 41px;
}
.cartItemTotal {
	height: 41px;
	line-height: 41px;
}
#cartBuy {
    margin-top: 50px;
	margin-bottom: 100px;
}
#cartBack {
	width: 150px;
	padding: 10px 63px;
}
#frm-buyForm-submit {
	width: 240px;
	height: 42px;
}


.cartSep {
	height: 1px;
	border: 0;
}

#bestsellerTitle {
	width: 375px;
	line-height: 37px;
	overflow: hidden;
	text-overflow: ellipsis;
}
#bestsellerPrice {
	line-height: 37px;
}
#bestsellerButton {
	padding: 8px 15px;
}

#frm-addVoucherForm-voucherName {
	width: 250px;
	height: 34px;
	padding-left: 20px;
	margin: 4px 30px 0 40px;
}
#frm-addVoucherForm-submit {
	padding: 10px 15px;
	border: 0;
}

@media all and (max-width: 1210px) {
	#cartWrapper {
		width: calc(60% + 70px);
	}
}
@media all and (max-width: 1010px) {
	#cartWrapper {
		width: calc(90%);
	}
	#cartBack {
		margin-left: 0px;
	}
}
@media all and (max-width: 760px) {
	#cartWrapper {
		width: 300px;
	}
	#frm-addVoucherForm-voucherName {
		width: 165px;
		margin: 0;
	}
	#bestsellerTitle {
		width: 300px;
	}
	#frm-buyForm-submit {
		float: none;
	}
	#buyFormWrapper {
		text-align: center;
	}
	#cartBack {
		margin: 12px;
	}
	.cartItem {
		width: 300px;
		margin: 0;
	}
	.cartItemTitle {
		width: 255px;
		padding-right: 0;
	}
	.cartItemPublisher,
	.cartItem.sum .cartItemImg {
		display: none;
	}
	.cartItemPrice {
		line-height: 24px;
	}
	.cartItem.sum .cartItemTotal {
		width: 200px;
		margin-top: -10px;
		text-align: left;
		padding: 0;
	}
	.cartItem.sum .cartItemPrice {
		width: 100px;
		padding: 0;
		float: left;
	}
	.cartItemPrice {
		padding: 0;
	}
    .minus {
        margin-left: 45px;
    }
	#cart .lineSep {
		display: block;
	}
	.cartItemCount {
		float: none;
		width: 300px;
	}
	.cartButton,
    .cartButton.remove {
		width: 30px;
		height: 30px;
		float: left;
		display: block;
		text-align: center;
		line-height: 30px;
		margin-top: 6px;
        margin-right: 0;
	}
	.cartButton.remove {
		float: right;
	}
}
/*****  End Cart  *****/
/*****      Checkbox  *****/
.checkbox {
	width: 34px;
	height: 34px;
}
#registration .checkbox.true,
#buyForm-heureka .checkbox.true {
	background-image: url('../images/buttons/cbChecked.png');
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
#leftColumn .checkbox {
	width: 13px;
	height: 13px;
	margin-right: 5px;
}
/*****  End Checkbox  *****/
/*****      AlphabeticListHorizontal  *****/
#snippet--alphabeticListHorizontal {
	width: 1130px;
	padding: 15px 35px 0 35px;
	display: table;
	table-layout: fixed;
}
#alphabeticListHorizontal {
	display: table-row;
}
#alphabeticListHorizontal li {
	display: table-cell;
	line-height: 30px;
	vertical-align: middle;
}
#alphabeticListHorizontal li:first-child {
	width: 140px;
}
#alphabeticListHorizontal .salphabeticListHorizontal-games {
	z-index: 21;
	left: 0;
}
#alphabeticListHorizontal .salphabeticListHorizontal-games .gamesListWrapper {
	width: 1220px;
	padding-bottom: 10px;
	margin: auto;
	overflow: hidden;
}
#alphabeticListHorizontal .salphabeticListHorizontal-games ul {
	width: 1200px;
	margin: auto;
	padding-top: 20px;
	display: block;
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
    -webkit-column-gap: 0; /* Chrome, Safari, Opera */
    -moz-column-gap: 0; /* Firefox */
    column-gap: 0;
}
#alphabeticListHorizontal .salphabeticListHorizontal-games ul li {
	display: block;
}
#alphabeticListHorizontal ul li {
	width: 400px !important;
}
#alphabeticListHorizontal ul li a {
	display: block;
	padding: 10px 20px;
}
.horizontalLetter {
	width: 26px;
	height: 30px;
}
.alphabeticListHorizontalClose {
	display: block;
	right: 40px;
	top: 10px;
}
@-moz-document url-prefix() { 
	.salphabeticListHorizontal-games {
		margin-left: -45px;
	}
}

@media all and (max-width: 1240px) {
	#alphabeticListHorizontal .salphabeticListHorizontal-games .gamesListWrapper {
		width: 1200px;
	}
	.alphabeticListHorizontalClose {
		right: 30px;
	}
	@-moz-document url-prefix() { 
		.salphabeticListHorizontal-games {
			margin-left: -35px;
		}
	}
}
@media all and (max-width: 1210px) {
	#snippet--alphabeticListHorizontal {
		width: 970px;
		padding: 15px 15px 0 15px;
	}
	#alphabeticListHorizontal .salphabeticListHorizontal-games .gamesListWrapper {
		width: 1020px;
	}
	#alphabeticListHorizontal ul li {
		width: 333.33px !important;
	}
	#alphabeticListHorizontal .salphabeticListHorizontal-games ul {
		width: 1000px;
	}
	.alphabeticListHorizontalClose {
		right: 40px;
	}
	@-moz-document url-prefix() { 
		.salphabeticListHorizontal-games {
			margin-left: -25px;
		}
	}
}
@media all and (max-width: 1040px) {
	#alphabeticListHorizontal .salphabeticListHorizontal-games .gamesListWrapper {
		width: 1000px;
	}
	.alphabeticListHorizontalClose {
		right: 30px;
	}
	@-moz-document url-prefix() { 
		.salphabeticListHorizontal-games {
			margin-left: -15px;
		}
	}
}
@media all and (max-width: 1010px) {
	#snippet--alphabeticListHorizontal {
		width: 730px;
		padding: 15px 10px 0 10px;
	}
	#alphabeticListHorizontal .salphabeticListHorizontal-games .gamesListWrapper {
		width: 770px;
	}
	#alphabeticListHorizontal ul li {
		width: 375px !important;
	}
	#alphabeticListHorizontal .salphabeticListHorizontal-games ul {
		width: 750px;
	}
	#alphabeticListHorizontal > li:first-child {
		display: none;
	}
	#alphabeticListHorizontal > li {
		width: 28px;
		text-align: center;
	}
	#alphabeticListHorizontal ul li {
		width: 300px !important;
	}
	#alphabeticListHorizontal ul {
		margin-left: 0;
	}
	#alphabeticListHorizontal .salphabeticListHorizontal-games ul {
	    -webkit-column-count: 2; /* Chrome, Safari, Opera */
	    -moz-column-count: 2; /* Firefox */
	    column-count: 2;
	}
	.alphabeticListHorizontalClose {
		right: 40px;
	}
	@-moz-document url-prefix() { 
		.salphabeticListHorizontal-games {
			margin-left: -20px;
		}
	}
}
@media all and (max-width: 790px) {
	#alphabeticListHorizontal .salphabeticListHorizontal-games .gamesListWrapper {
		width: 750px;
	}
	.alphabeticListHorizontalClose {
		right: 30px;
	}
	@-moz-document url-prefix() { 
		.salphabeticListHorizontal-games {
			margin-left: -10px;
		}
	}
}
@media all and (max-width: 760px) {
	#snippet--alphabeticListHorizontal {
		display: none;
	}
}
/*****  End AlphabeticListHorizontal  *****/
/*****      LeftColumn  *****/
#leftColumnWrapper {
	margin-left: -4px;
}
#leftColumn h1 {
	padding-left: 10px;
}
#leftColumn h2 {
	margin: 0;
}
.leftColumn-box {
	width: calc( 90% - 20px);
	margin-left: 10px;
	margin-bottom: 20px;
	padding: 10px;
}
.leftColumn-paymentWrapper {
	height: 30px;
	margin-top: 10px;
}
.leftColumn-payment {
	max-width: 100%;
	max-height: 30px;
	margin: auto;
}
#leftColumn li {
	height: 15px;
	padding: 5px 0;
	line-height: 15px;
}
#formFilterSubmitWrapper {
	margin: 0 0 10px 10px;
}
#frm-filterForm-submit {
	width: 180px;
	height: 40px;
}
#filterClose {
	margin: 35px 0 0 10px;
}

@media all and (min-width: 1010px) {
    #leftColumnFixed,
    #leftColumnFixed.fixed,
    #leftColumnFixed.absolute {
        width: 200px;
        margin-left: -198px;
        z-index: 20;
    }
}

#formFilterSubmitWrapper.fixed {
    width: 180px;
    bottom: -10px;
}
@media all and (max-width: 1210px) {
}
@media all and (max-width: 1010px) {
	#leftColumnWrapper {
        min-height: 100%;
		margin: 0;
		position: absolute;
		background: white;
		overflow: hidden;
	}
	#leftColumnScrollWrapper {
		display: none;
		height: 100vh;
		overflow-y: scroll;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
	}
	#leftColumnCenterWrapper {
		left: 50%;
		position: relative;
		float: left;
	}
	#leftColumn {
		width: 420px;
		margin-top: 25px;
		margin-left: 50px;
		left: -50%;
		float: left;
		position: relative;
	}
	#leftColumn h1 {
		margin-left: -5px;
	}
	.leftColumn-payments {
		display: none;
	}
	.hide1010 {
		display: none;
	}
	.display1010 {
		display: inherit;
	}
	#filterClose {
		display: block;
	}
	.leftColumn-box {
		width: 170px;
		float: left;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	.filterColumnWrapper {
		width: 200px;
		float: left;
	}
	#frm-filterForm-submit {
		width: 400px;
	}
}
@media all and (max-width: 470px) {
	#leftColumn,
	#frm-filterForm-submit {
		width: 200px;
	}
	.filterColumnWrapper {
		float: unset;
	}
}
/*****  End LeftColumn  *****/
/*****      Profile  *****/
#profile {
    margin-bottom: 50px;
}
#profile-userInfo {
    margin-left: 10px;
}
#profile-facebook {
    width: 282px;
    height: 42px;
    line-height: 42px;
}
#profile-voucher {
    margin-top: 36px;
    line-height: 38px;
}
#profile-points {
    width: 30%;
}
#frm-useCreditVoucherForm-voucherName {
    width: 240px;
    height: 36px;
    margin-right: 20px;
    padding-left: 10px;
}
#frm-useCreditVoucher-submit {
    padding: 10px 30px;
}
#profile-orders {
    width: 710px;
    margin: auto;
    margin-top: 40px;
}
.profile-order {
    line-height: 50px;
}
.profile-orderId {
    width: 210px;
}
.profile-orderState {
    width: 117px;
}
.profile-orderPrice {
    width: 70px;
}
.profile-orderShow {
    width: 230px;
}
@media all and (max-width: 1210px) {
    #frm-useCreditVoucherForm {
        float: left;
    }
    #profile-points {
        width: 100%;
    }
}
@media all and (max-width: 1010px) {
    #profile-voucher {
        text-align: center;
    }
    #frm-useCreditVoucherForm-voucherName {
        margin: 5px 0 10px 15px;
    }
    #frm-useCreditVoucher-submit {
        width: 252px;
        float: left;
        margin-left: 15px;
    }
}
@media all and (max-width: 760px) {
    #profile-voucher {
        text-align: left;
        margin-right: -10px;
    }
    #frm-useCreditVoucherForm-voucherName {
        margin: 0;
    }
    #frm-useCreditVoucher-submit {
        width: 252px;
        margin-top: 10px;
        margin-left: 0;
        float: left;
    }
    #profile-orders {
        width: 300px;
    }    
    .profile-order {
        line-height: 20px;
        padding: 15px 0;
    }
    .profile-orderShow {
        width: 100%;
        margin-top: 20px;
    }
}
/*****  End Profile  *****/
/*****      ProfileChange  *****/

#unlogged.profileChange #unloggedWrapper {
    width: 1000px;
}
#unlogged.profileChange .inputTextbox {
    width: 245px;
}
#unlogged.profileChange .inputButton {
    width: 257px;
}
@media all and (max-width: 1010px) {
    #unlogged.profileChange #unloggedWrapper {
        width: 100% !important;
    }
    #unlogged.profileChange .leftColumn,
    #unlogged.profileChange .rightColumn {
        float: none;
        width: 53% !important;
        margin-left: 23%;
    }
}
@media all and (max-width: 760px) {
    #unlogged.profileChange .leftColumn,
    #unlogged.profileChange .rightColumn {
        width: 100% !important;
        margin-left: 0;
    }
    #unlogged.profileChange .labelDiv {
        width: 250px;
        padding-left: 9px;
        margin-bottom: -30px;
    }
    #unlogged.profileChange .formRow {
        padding-right: 32px;
    }
}
/*****  End ProfileChange  *****/
/*****      Order  *****/
#orderProducts {
    width: calc(50% + 70px);
    margin: auto;
}
#orderPayments {
    margin-top: 20px;
}
#orderPayments .payment {
    width: 190px;
    height: 100px;
    line-height: 100px;
    margin: 0 5px 10px 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
#orderPayments .payment img {
    max-height: 80%;
    height: 80%;
    max-width: 80%;
    width: 80%;
    margin: auto;
    display: block;
}
#orderPayments .payment:hover {
    background-color: lightgray;
}
.payment-addPrice {
    line-height: 30px;
    margin-top: -85px;
}
.orderDetail-key img {
    display: inline-block;
}
#orderInvoice {
    margin-right: 10px;
    right: 0;
    top: 83px;
    line-height: 60px;
}
@media all and (max-width: 1210px) {
}
@media all and (max-width: 1010px) {
    #orderProducts {
        width: 90%;
    }
}
@media all and (max-width: 760px) {
    #orderProducts {
        width: 300px;
    }
    #orderProducts .cartItemCountControl {
        width: 110px;
        line-height: 24px;
        margin: 0;
        text-align: right;
    }
    #orderPayments .payment {
        width: 135px;
        height: 100px;
    }
    #orderPayments .payment img {
        max-width: 135px;
        max-height: 98%;
    }
    #orderInvoice {
        top: 70px;
        line-height: 30px;
    }
}
/*****  End Order  *****/
/*****      OrderMenu  *****/
#orderMenu {
	margin: 17px 10px 0 0;
}
#orderMenuList {
	margin-left: -50px;
	margin-top: -30px;
	overflow: hidden;
}
#orderMenuList .fa-chevron-up {
	top: 12px;
	right: 13px;
}
#orderMenuList ul {
	width: 200px;
	margin: 0;
	margin-left: -10px;
	padding-left: 20px;
}
#orderMenuList li {
	height: 24px;
	padding: 5px;
}
#filterAccordingTo .fa {
    line-height: 22px;
    vertical-align: middle;
}
#orderMenu .checkbox {
    width: 13px;
    height: 13px;
    margin-right: 5px;
    margin-top: 5px;
}
@media all and (max-width: 760px) {
	#orderMenu {
		display: none;
	}
}
/*****  End OrderMenu  *****/
/*****      Gift  *****/
.giftSelect {
    width: 130px;
}
/*****  End Gift  *****/
/*****      PayByCredit  *****/
#cancel-payment,
#confirm-payment {
	width: 235px;
	height: 55px;
	margin: 30px auto;
	line-height: 55px;
}
/*****  End PayByCredit  *****/
/*****      Footer  *****/
#footer {
    padding-bottom: 50px;
}
#subscribeSection {
	padding: 20px 0 40px 0;
}
#frm-subscribeForm-email {
	width: calc(100% - 100px);
	padding: 14px 70px 14px 30px;
}
#frm-subscribeForm-send {
	height: 30px;
	margin: 10px -2px 0 0;
	padding: 0 20px;
	line-height: 30px;
}
#footerMenu {
	margin: auto;
	margin-top: 20px;
}
.menuWrapper {
	margin: auto;
}
#footerMenu .menuItem {
	padding: 0 10px;
}
.footerLogo {
	width: 120px;
	margin: auto;
	margin-top: 0;
}
#footerMenu .menuItemWrapper {
   margin-top: 40px;
}
@media all and (max-width: 465px) {
    #footerAC {
        margin-top: 40px;
    }
}
/*****  End Footer  *****/
/*****      FlashMessage  *****/
#snippet--flashes {
    width: 100%;
}
.flash {
    margin-top: 10px;
    padding: 10px;
}
@media all and (max-width: 760px) {
    .flash {
        width: calc(100% - 20px);
        margin: 10px auto;
        text-align: center;
    }
}
/*****  End FlashMessage  *****/
/*****      ProductToCart  *****/
#productToCart-content {
    width: 670px;
    min-width: 300px;
    margin: auto;
    padding: 0 0 100px 0;
}
#productToCart #boxImage {
    width: 104px;
    height: 130px;
    margin: 50px 0;
}
#productToCart #title {
    width: 540px;
    height: 60px;
    margin: 50px 0 0 25px;
    line-height: 60px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#productToCart #price {
    margin-left: 25px;
}
#productToCart #backToShop,
#productToCart #toCart {
    width: 258px;
    height: 42px;
    line-height: 42px;
}
@media all and (max-width: 760px) {
    #productToCart-text {
        width: calc( 100% - 105px );
    }
    #productToCart #title {
        width: calc( 100% - 35px );
    }
    #productToCart-content {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}
@media all and (max-width: 560px) {
    #productToCart-text {
        width: 100%;
    }
    #productToCart #boxImage,
    #productToCart #title,
    #productToCart #price {
        height: unset;
        float: unset;
        margin: auto;
        text-align: center;
        line-height: unset;
        overflow: unset;
        white-space: unset;
        text-overflow: unset;
    }
    #productToCart #backToShop,
    #productToCart #toCart {
        float: unset;
        margin: auto;
        margin-top: 10px;
    }
}
/*****  End ProductToCart  *****/
/*****      CustomerWishForm  *****/
#customerWish {
    width: 554px;
    margin: auto;
    margin-top: 30px;
    padding-top: 10px;
}
#customerWish-itemWrapper {
    line-height: 36px;
    display: flex;
    justify-content: space-around;
}
#frm-customerWishForm .fa {
    margin: 8px 0 0 10px;
}
#customerWish .checkbox {
    width: 16px;
    height: 16px;
    padding: 1px;
    margin: 8px 10px 0 0;
}
#customerWish .checkbox.true {
    background-image: url('../images/buttons/cbChecked.png');
    background-position: 50% 50%;
    background-size: 16px 16px;
    background-repeat: no-repeat;
}
#customerWish-itemWrapper.itemsLong #wishForm-priceDrop {
    width: 140px;
    line-height: normal;
}
@media all and (max-width: 1210px) {
    #customerWish {
        width: 475px;
    }
    #customerWish-itemWrapper {
        display: inline-block;
    }
    #customerWish-itemWrapper .item {
        margin-left: 20px;
    }
    #customerWish-itemWrapper #wishForm-onStock {
        float: unset;
    }
}
@media all and (max-width: 1010px) {
    #customerWish-itemWrapper {
        display: block;
    }
    #customerWish {
        width: calc(100% - 20px);
    }
    #customerWish-itemWrapper #wishForm-onStock {
        float: left;
    }
}
@media all and (max-width: 550px) {
    #customerWish-itemWrapper {
        padding-left: 50px;
    }
    #customerWish-itemWrapper .item {
        float: unset;
    }
}
/*****  End CustomerWishForm  *****/
/*****      PaymentMethods  *****/
.paymentMethods-content {
    width: 600px;
    margin: auto;
}
.payment {
    margin-bottom: 50px;
}
.payment-image {
    width: 150px;
    height: 75px;
    background-image: url('../images/payments/payments-lightBG_logo.svg');
    background-size: 100%;
    background-repeat: no-repeat;
}
.payment-name,
.payment-provider {
    margin-top: 10px;
}
.payment-description {
    margin-top: 20px;
}

.payment .OmniPay {
    background-image: url('../images/payments/OmnipayLogo.png') !important;
}
.payment .prevod {
    background-image: url('../images/payments/logo_bank.png') !important;
    margin-top: 0px !important;
    height: 105px;
}
.payment .bitcoin {
    background-image: url('../images/payments/btc.png') !important;
    background-size: 70px 70px;
    margin-left: 55px !important;
    height: 105px;
}
.payment .penezenka {
    background-image: url('../images/payments/gopaypenezenka.jpg') !important;
    margin-left: 5px !important;
    height: 105px;
}

@media all and (max-width: 760px) {
    .paymentMethods-content {
        width: 300px;
    }
}
.visa {
}
.masterCard {
    background-position: 0 -75px;
}
.visaElectron {
    background-position: 0 -150px;
}
.masterCardElectronic {
    background-position: 0 -225px;
}
/*****  End PaymentMethods  *****/
/*****      WhatIsWhat  *****/
.whatIsWhat-content {
    width: 600px;
    margin: auto;
    margin-bottom: 50px;
}
#whatIsWhat .icon {
    width: 80px;
}
#whatIsWhat .description {
    width: 520px;
}
@media all and (max-width: 760px) {
    .whatIsWhat-content {
        width: 100%;
    }
    #whatIsWhat .description {
        width: calc( 100% - 80px );
    }
}
/*****  End WhatIsWhat  *****/
/*****      WishList  *****/
#wishListWrapper {
    margin-bottom: 50px;
}
.wishList-row {
    width: 1000px;
    height: 40px;
    padding: 15px;
    line-height: 39px;
    margin: auto;
}
.wishList-row.headerRow {
    padding-bottom: 0;
}
.wishList-game {
    width: 600px;

    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.wishList-onStock {
    width: 190px;
}
.wishList-priceDrop {
    width: 75px;
}
.wishList-productImg {
    width: 31px;
    height: 39px;
    margin-right: 10px;
}
.wishList-checkboxWrapper {
    margin-right: 55px;
}
#wishListWrapper .checkbox {
    width: 19px;
    height: 19px;
    padding: 2px;
    margin: 8px 10px 0 0;
}
#wishListWrapper .checkbox.true {
    background-image: url('../images/buttons/cbChecked.png');
    background-position: 50% 50%;
    background-size: 19px 19px;
    background-repeat: no-repeat;
}
#wishListWrapper .wishList-onStock .checkbox {
    margin-left: 90px;
}
#wishListWrapper .wishList-quick .checkbox {
    margin-left: 20px;
}
@media all and (max-width: 1230px) {
    .wishList-row {
        width: 970px;
    }
    .wishList-game {
        width: 570px;
    }
}
@media all and (max-width: 1010px) {
    .wishList-row {
        width: 730px;
        padding: 15px 10px;
    }
    .wishList-game {
        width: 350px;
    }
    .wishList-checkboxWrapper {
        margin-right: 35px;
    }
}
@media all and (max-width: 760px) {
    .wishList-row {
        width: 280px;
        height: auto;
    }
    .wishList-row.headerRow {
        display: none;
    }
    .wishList-game {
        width: 240px;
    }
    #wishListWrapper .checkbox {
        float: right;
    }
    .wishList-checkboxWrapper {
        margin-right: -10px;
    }
    .wishList-checkboxWrapper .wishList-onStock,
    .wishList-checkboxWrapper .wishList-priceDrop,
    .wishList-checkboxWrapper .wishList-quick {
        width: 100%;
    }
    .wishList-checkboxWrapper .labelText {
        display: inline-block;
    }
}
/*****  End WishList  *****/
/*****      Registration  *****/
.registrationConditions label {
    line-height: 36px;
}
.registrationConditions span {
    width: calc( 100% - 60px );
    display: inline-block;
    float: left;
    margin-left: 20px;
}
/*****  End Registration  *****/
/*****      Cart  *****/
#cartBuy #cartAgree {
    max-width: 365px;
}
#buyForm-heureka {
    margin: -40px 0 20px 0;
    padding-left: 30px;
}
#buyForm-heureka div.checkbox {
    width: 20px;
    height: 20px;
    margin-left: -30px;
}
.cartCreditImg {
    width: 35px;
    height: 50px;
    background-image: url(../images/payments/payments-lightBG_logo.svg);
    background-size: 250%;
    background-repeat: no-repeat;
    background-position: -26px -1700px;
}
#cartPoints.cp-lineHeight {
    line-height: 37px;
}
#cartPoints #pointLogin,
#cartPoints input[type=submit] {
    padding: 10px 15px;
    border: 0;
    line-height: 22px;
}
#cartPoints .cartItemCount {
    margin-right: 74px;
}
/*****  End Cart  *****/