/**
 * Subscriptions - Interface
 */
	
.content_large {
	display: flex; /* Required to center two column interface */
	justify-content: center; /* Required to center two or 1 column interface */
	border-radius: 12px;
}

.content_large > .subscription {
	display: flex;
    flex-direction: column;
	width: 700px;
	padding: 0 0 30px 0;
}

.content_large > .subscription[content=buttons] {
	/*padding: 0;*/
}

img.credit-cards {
	width: 100%;
	max-width: 400px;
	margin: auto;
	padding-top: 12px;
	padding-bottom: 12px;
}


@media (max-width: 600px) {
	.content_large > .subscription {
		width: 100%;
	}
}

.content_large > .subscription > .title  {
	display: flex;
	flex-direction: column;
	padding: 8px;
	color: #FFF;
	background-color: #2671BB;
	cursor: pointer;
	border-radius: 12px;
	user-select: none; /* Display selection on click */
}

.content_large > .subscription > .title:hover {
	color: #FFF;
	background-image: linear-gradient(190deg, #e6422e , #2070b7);
}

.content_large > .subscription > .title .main {
    display: flex;
    flex-direction: row;
	padding-left: 20px;
	/*text-transform: uppercase;*/
	background-image: url(/features/subscriptions/gui/img/title_accordion-up.png);
    background-repeat: no-repeat;
    background-position: left center;
}

.content_large > .subscription > .title .main-accordion-down  {
	background-image: url(/features/subscriptions/gui/img/title_accordion-down.png) !important;
    background-repeat: no-repeat;
    background-position: left center;
}

.content_large > .subscription > .title .main > img {
	width: 20px;
	height: 20px;
    margin-left: auto;
}
.content_large > .subscription > .title .sub {
	border-radius: 12px;
	padding: 6px 8px 6px 8px;
	margin-top: 8px;
	background-color: #FFF;
	color: #064184;
	display: none;
}

.content_large > .subscription > .content_subscribe {
	background-color: #FFF;
    border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);; ;
}

.content_large > .subscription > .content_subscribe > .pricing {
	display: flex;
	justify-content: space-between; /* Title on the left, price on the right */
	color: #064184;
	padding: 8px;
	border: 1px solid #dadde0;
	border-radius: 12px;
	box-sizing: border-box;
}

.content_large > .subscription > .content_subscribe > .pricing:hover {
	color: #003399;
	background-color: #fcdc3e;
	border-color: #fcdc3e;
}

.content_large > .subscription > .content_subscribe > .pricing[selected] {
	background-color: #E9F0FA;
	border: 1px solid #E9F0FA;
}

.content_large > .subscription > .content_subscribe > .pricing[selected]:hover {
	background-color: #d1e0f3;
	border: 1px solid #d1e0f3;
}

.content_large > .subscription > .content_subscribe .subscribe_info {
	border-radius: 12px;
	line-height: 18px;
	padding: 8px;
	margin-top: 12px;
	color: #838383;
	background-color: #F7F7F7;
	text-align: center;
}

/**
 * Subscriptions - Pokéchange Max
 */

#next-content_max {
	display: none;
}

input[action=action_max_learnmore] {
	min-width: 55%;
}

input[action=action_max_init] {
	min-width: 70%;
}

input[action=action_avatar_init] {
	min-width: 72%;
}


/**
 * Subscriptions - Table
 */

.content_large .table {
	display: table;
    width: 100%;
	margin-top: 30px;
    border-radius: 12px;
	color: #161616;
	box-sizing: border-box;
	color: #064184;
	border-spacing: 10px 0;
	padding: 10px 0 10px 0;
}

.content_large .table > .row {
	display: table-row;
	height: 30px;
}

.content_large .table > .row > .cell {
	display: table-cell;
	vertical-align: middle;
	padding: 4px 0 4px 0;
}

.content_large .table > .row > .header {
	padding-top: 0;
}

.content_large .table > .row > .header > img {
	height: 126px;
}

.content_large .table > .row > .plan {
	text-align: center; /* Center utf-8 icons and headers */
}

.content_large .table > .row > .enabled {
	/*color: #2196d6;*/
}

.content_large .table > .row > .disabled {
	color: grey;
}

.content_large .table .giveway {
	padding: 4px;
	border-radius: 12px;
	background-color: #e7effa;
}

@media (max-width: 500px) {
	.content_large .table > .row > .header > img {
		height: 80px;
	}

	.content_large .table > .row > .cell {
		max-width: 50px;
	}
}

/**
 * Subscriptions - Avatar color selection
 */
#shadow-customization {
	padding-top: 20px;
}

#shadow-customization > .user_container {
	width: 80px;
}

#shadow-customization .colortitle {
	text-align: center;
}

#shadow-customization .colorlist {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
    margin-top: 14px;
	background-color: #FFF;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);; ;
}

#shadow-customization .colorlist > .selection {
	padding: 8px;
	margin-top: 4px;
	margin-bottom: 4px;
	border-radius: 50%;
	cursor: pointer;
}

#shadow-customization .colorlist > .selection[selected],
#shadow-customization .colorlist > .selection:hover {
	background-color: #e7effa;
}

#shadow-customization .colorlist > .selection > .color {
	width: 24px;
	height: 24px;
	margin: auto;
	border-radius: 50%;
}

#shadow-customization .colorlist > .selection > .color[value=none] {background-color: #F7F7F7;}
#shadow-customization .colorlist > .selection > .color[value=red] {background-color:red;}
#shadow-customization .colorlist > .selection > .color[value=orange] {background-color:darkorange;}
#shadow-customization .colorlist > .selection > .color[value=yellow] {background-color:#fcdc00;}
#shadow-customization .colorlist > .selection > .color[value=green] {background-color:lightseagreen;}
#shadow-customization .colorlist > .selection > .color[value=blue1] {background-color:dodgerblue;}
#shadow-customization .colorlist > .selection > .color[value=blue2] {background-color:blue;}
#shadow-customization .colorlist > .selection > .color[value=purple] {background-color:blueviolet;}
#shadow-customization .colorlist > .selection > .color[value=pink] {background-color:deeppink;}
#shadow-customization .colorlist > .selection > .color[value=brown] {background-color:brown;}
#shadow-customization .colorlist > .selection > .color[value=black] {background-color:black;}

/**
 * Subscriptions - AD
 */

.subscription_shop-ad {
	width: 300px; /* Corresponds to Adsense large rectangle (336x280) */
	margin: auto;	
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);; ;
    border-radius: 12px;
}

.subscription_shop-ad .user_container {
    width: 80px;
}

.subscription_shop-ad .header {
	color: #FFF;
	padding: 12px 0 12px 0;
	background-size: auto 100%;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	background-size: auto; /* Required to disable mozaic on small images */
}

.subscription_shop-ad .header_label {
    position: absolute;
    padding: 6px 9px 6px 9px;
    color: #FFF;
    background-color: #2671BB;
    border-bottom-right-radius: 6px;
    font-size: 90%;
	border-radius: 12px;
}

.subscription_shop-ad .body {
    padding: 6px;
	background-color: #FFF;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.subscription_shop-ad .username {
    width: 100%;
    border-radius: 12px;
    color: #064184;
}

.subscription_shop-ad .reviews {
	color : #838383;
}

.subscription_shop-ad .description {
    padding: 12px 12px 0 12px;
}

.subscription_shop-ad .user_counters {
	display: flex;
	width: 100%; 
	justify-content: space-around;
}

.subscription_shop-ad .user_counters > .user_counter_targetstatus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80px;
    height: 48px;
    border-radius: 12px;
    text-align: center;
    background-color: #2b73b6;
    color: #FFF;
    margin: 12px;
}

.subscription_shop-ad .user_counters > .user_counter_targetstatus[amount='0'] {
	background-color: #f7f7f7;
	color : grey;
}