﻿/*=======================================

	RESETS                            

=======================================*/


html
{
	height: 100%;
}

html.delay-interaction:after
{
	position: fixed;
	z-index: 9999;

	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	content: "";
	transition: opacity 0.25s !important;

	background: #060606;
}

html.delay-interaction.documentReady:after
{
	opacity: 0;
	visibility: hidden;
}

html,
body
{
	margin: 0;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
h6
{
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6
{
	font-weight: 700;
	font-weight: normal;
}

ul,
li
{
	list-style-type: none;
}

a
{
	cursor: pointer;
	text-decoration: none;
}

.ja em
{
	font-style: normal !important;
}

img
{
	border: 0;
}

hr
{
	height: 0;
	margin: 1rem 0;

	border: 0;
	border-bottom: 2px solid rgba(245, 245, 245, 0.1);
}

/*=======================================
	
	WEBVIEW SETTINGS FOR APP

=======================================*/

html.WebViewMode header
{
	display: none !important;
}

html.WebViewMode body
{
	padding-top: 0 !important;
}

html.WebViewMode footer
{
	display: none !important;
}



/*=======================================
	
	GRID & COMMON LAYOUT RULES

=======================================*/

.flex
{
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.flex-wrap
{
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}



/*=======================================
	
	COMMON LAYOUT

=======================================*/
body
{
	position: relative;
	overflow-y: scroll;

	width: 100%;
	min-width: 960px;
}

html.mobile-nav-enabled body
{
	min-width: 320px;
}

.nav-open body
{
	overflow: hidden;

	height: 100%;
}

body.loadingPage
{
	cursor: progress;
}

body.noSubNav nav.Sub_Nav
{
	display: none;
}

body.has-js-error:before
{
	position: fixed;
	display: block;
	z-index: 99999;

	top: 0;
	left: 50%;
	padding: 3px 5px;

	content: "JS ERROR DETECTED";
	transform: translateX(-50%);

	color: #f5f5f5;
	background: #f44336;

	font-size: 0.75rem;
	font-weight: bold;
}

.bg_secondary.JS
{
	height: auto;
}

#content
{
	position: relative;

	width: 100%;

	-webkit-transition: -webkit-filter 0s 0.15s !important;
}

#mainContent
{
	position: relative;
	display: inline-block;
	overflow: hidden;

	width: 100%;
	min-height: calc(100vh - 60px);

	vertical-align: top;
}

.noSubNav #mainContent
{
	min-height: 100vh;
}

.safari #mainContent
{
	min-height: 800px;
}

.text-content ul
{
	margin: 0 0 0 36px;

	list-style-type: disc;
}

.text-content ul li
{
	margin: 4px 0;

	list-style-type: disc;
}

.text-content ul ul li
{
	list-style-type: circle;
}

.text-content ul ul ul li
{
	list-style-type: square;
}



/*=======================================
	
	SECTION BANNER

=======================================*/

.sectionBanner
{
	position: relative;
	display: block;

	left: 0;
	width: 100%;
	min-width: 899px;
	height: 210px;

	transition: 0.25s;
}

.mobile-nav-enabled .sectionBanner
{
	min-width: 0;
}

.sectionBanner h2
{
	text-align: center;
	letter-spacing: 30px;
	text-transform: uppercase;

	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

	font-size: 56px;
	font-weight: 400;
	line-height: 210px;
}

@media only screen and (max-height: 667px), (max-width: 1515px)
{
	.sectionBanner:not(.locked)
	{
		height: 105px;

		-moz-transition: height 0.25s ease;
		-o-transition: height 0.25s ease;
		-webkit-transition: height 0.25s ease;
		transition: height 0.25s ease;
	}

	.sectionBanner:not(.locked) h2
	{
		font-size: 45px;
		line-height: 105px;
	}

	.sectionBanner.hasNav:not(.locked) h2
	{
		display: none;
	}
}


/*=======================================

	BREADCRUMB                            

=======================================*/

.breadcrumb
{
	position: relative;
	z-index: 2;
	overflow: hidden;

	height: 44px;

	white-space: nowrap;

	color: rgba(245, 245, 245, 0.65);

	font-size: 12px;
	font-weight: normal;
	line-height: 44px;
}

.breadcrumb a:last-child
{
	background: none;
}

.breadcrumb a,
.breadcrumb a:only-child
{
	display: inline;

	margin: 0 6px;

	text-align: left;
	letter-spacing: normal;
	text-transform: none;

	color: rgba(245, 245, 245, 0.65);
	text-shadow: none;

	font-size: 12px;
	font-weight: normal;
}

.breadcrumb > :first-child
{
	margin-left: 0;
}

.breadcrumb a:hover
{
	text-decoration: underline;
}

.breadcrumb span
{
	margin: 0 6px;

	color: rgba(245, 245, 245, 0.25);
}




/*=======================================

	TOAST MESSAGES        

=======================================*/

#toast-container
{
	position: fixed;
	z-index: 99;

	right: 18px;
	bottom: 18px;
}

#toast-container .toast-message
{
	position: relative;

	box-sizing: border-box;
	width: 350px;
	margin-bottom: 5px;
	padding: 18px;

	cursor: pointer;
	transition: 0.5s;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);

	opacity: 0;
	color: rgb(245, 245, 245);
	border-top: 3px solid rgba(206, 174, 50, 1);
	background: rgb(41, 47, 54);
	box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.2);

	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
}

#toast-container .toast-message a
{
	color: rgb(245, 245, 245);
}

#toast-container .toast-message.warning-message
{
	background: #e9d427;
}

#toast-container .toast-message.error-message
{
	color: rgba(245, 245, 245, 1);
	border-color: #f5f5f5;
	background: rgb(187, 99, 99);
	text-shadow: 0 1px rgba(0, 0, 0, 1);
}

#toast-container .toast-message.on
{
	-webkit-transform: none;
	transform: none;

	opacity: 1;
}

#toast-container .toast-message.off
{
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);

	opacity: 0;
}

#toast-container .toast-message span
{
	padding: 2px 4px;
	/* margin-top: 3px; */
	white-space: nowrap;

	background: rgba(255, 255, 255, 0.06);
	/* border-radius: 5px; */
	font-size: 13px;
}

#toast-container .conversationUpdate
{
	position: relative;

	top: -4px;
}

#toast-container .conversationUpdate .avatar
{
	float: left;

	width: 40px;
	height: 40px;
	margin-right: 15px;

	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#toast-container .conversationUpdate strong
{
	font-size: 13px;
	font-weight: 200;
}

#toast-container .conversationUpdate p
{
	overflow: hidden;

	margin-left: 54px;
	padding: 0 10px;

	white-space: nowrap;
	text-overflow: ellipsis;
	/* background: #474c53 none repeat scroll 0 0; */
	font-size: 14px;
	font-weight: 200;
}
/*=======================================

	REUSABLES                            

=======================================*/

.select_special
{
	position: relative;
}

.select_special::after
{
	position: absolute;
	display: inline-block;

	right: 0;
	bottom: 0;
	width: 10px;
	padding: 0 5px;

	content: "▼";
	pointer-events: none;

	color: #000;
	background: none repeat scroll 0 0 #4b5157;

	font-size: 7px;
	line-height: 19px;
}

.select_special select,
.select_special option
{
	width: 100%;
	margin: initial;
	padding: initial;

	background: none repeat scroll 0 0 #4b5157;
}

.select_special select
{
	width: 100%;
	padding: 0 0 0 3px;

	color: #fff;
	border: 1px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	outline: medium none;
	-webkit-box-shadow: 0 0px 0 #ccc, 0 0px #fff inset;

	line-height: 18px;
	-webkit-appearance: none;
}

.select_special option
{
	padding: 0 2px;
}



/* Title followed by a subtitle/description */
.standardTitle
{
	display: block;

	margin-bottom: 0.1rem;

	color: #fff;

	font-size: 1.1rem;
}

.standardTitleMedium
{
	font-size: 0.85rem;
}

.standardDesc
{
	display: block;

	color: rgba(245, 245, 245, 0.55);

	font-size: 0.85rem;
	line-height: 1.2rem;
}

.dimDesc
{
	display: block;

	color: rgba(245, 245, 245, 0.4);

	font-size: 0.85rem;
	line-height: 1.2rem;
}

.standardLabel
{
	text-transform: uppercase;

	color: rgba(245, 245, 245, 0.5);

	font-size: 0.75rem;
}


/* Hoverable/selectable list */

.selectable-list-item
{
	position: relative;
	display: block;

	cursor: pointer;
	-webkit-transition: 0.25s;
	transition: 0.25s;

	border: 0 solid #479ce4;
	background: #14191e;
}

.selectable-list-item:hover,
.selectable-list-item.hover
{
	border-width: 0 0 0 3px;
	background: #1a2026;
}

.selectable-list-item.on
{
	border-width: 0 0 0 3px;
	background: #1a2026;
}


/* Item with icon */
.destiny-icon-item
{
	position: relative;

	min-height: 70px;
	padding-left: 85px;

	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.destiny-icon-item .standardTitle
{
	margin-bottom: 0;
}

.destiny-icon-item > .icon
{
	position: absolute;

	top: 0;
	left: 0;
	width: 70px;
	height: 70px;

	-webkit-transition: 0.25s;
	transition: 0.25s;

	border: 2px solid #f5f5f5;
	background-size: cover;
}

.destiny-icon-item:hover
{
	z-index: 99;

	background: rgba(245, 245, 245, 0.05);
}

/* Header with icon */
.destiny-icon-header
{
	clear: both;

	margin-bottom: 20px;
	padding: 20px 0;

	white-space: nowrap;

	border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}

.destiny-icon-header > img
{
	display: inline-block;

	width: 98px;
	height: 98px;
	margin-right: 21px;

	vertical-align: middle;

	border: 2px solid #fff;
}

.destiny-icon-header > .title
{
	display: inline-block;

	vertical-align: middle;
	white-space: normal;

	color: #fff;
}

.destiny-icon-header h3
{
	font-size: 30px;
}

.destiny-icon-header .title p
{
	color: rgba(245, 245, 245, 0.65);

	font-size: 15px;
	line-height: 24px;
}

/* Image zoom on hover */
.image-zoom-hover
{
	overflow: hidden;
}

.image-zoom-hover > .image,
.image-zoom-hover > img
{
	-webkit-transition: 0.25s;
	transition: 0.25s;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.image-zoom-hover:hover > .image,
.image-zoom-hover:hover > img
{
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}









/* Item Header */

h3.item-header
{
	color: #f5f5f5;

	font-size: 30px;
}


/* App Store Buttons */
.btn_appStore
{
	width: 190px;
	height: 53px;

	background: url("/img/theme/destiny/btns/btn_appStore_notLoggedIn.png") no-repeat 0 0;
	background-size: auto 50px;
}

.es .btn_appStore
{
	width: 190px;
	height: 53px;

	background: url("/img/theme/destiny/btns/btn_appStore_notLoggedIn_es.png") no-repeat 0 0;
	background-size: auto 50px;
}

.fr .btn_appStore
{
	width: 190px;
	height: 51px;

	background: url("/img/theme/destiny/btns/btn_appStore_notLoggedIn_fr.png") no-repeat 0 0;
	background-size: auto 50px;
}

.it .btn_appStore
{
	width: 190px;
	height: 53px;

	background: url("/img/theme/destiny/btns/btn_appStore_notLoggedIn_it.png") no-repeat 0 0;
	background-size: auto 50px;
}

.pt-br .btn_appStore
{
	width: 190px;
	height: 53px;

	background: url("/img/theme/destiny/btns/btn_appStore_notLoggedIn2_pt-br.png") no-repeat 0 0;
	background-size: auto 50px;
}

.de .btn_appStore
{
	width: 190px;
	height: 53px;

	background: url("/img/theme/destiny/btns/btn_appStore_notLoggedIn_de.png") no-repeat 0 0;
	background-size: auto 50px;
}

.ja .btn_appStore
{
	width: 190px;
	height: 53px;

	background: url("/img/theme/destiny/btns/btn_appStore_notLoggedIn_ja.png") no-repeat 0 0;
	background-size: auto 50px;
}

.btn_googlePlay
{
	width: 190px;
	height: 60px;

	background: url("/img/theme/destiny/btns/btn_googlePlay_notLoggedIn.png") no-repeat 0 0;
	background-size: auto 50px;
}

.es .btn_googlePlay
{
	width: 190px;
	height: 60px;

	background: url("/img/theme/destiny/btns/btn_googlePlay_notLoggedIn_es.png") no-repeat 0 0;
	background-size: auto 50px;
}

.fr .btn_googlePlay
{
	width: 190px;
	height: 60px;

	background: url("/img/theme/destiny/btns/btn_googlePlay_notLoggedIn_fr.png") no-repeat 0 0;
	background-size: auto 50px;
}

.de .btn_googlePlay
{
	width: 190px;
	height: 60px;

	background: url("/img/theme/destiny/btns/btn_googlePlay_notLoggedIn_de.png") no-repeat 0 0;
	background-size: auto 50px;
}

.it .btn_googlePlay
{
	width: 190px;
	height: 60px;

	background: url("/img/theme/destiny/btns/btn_googlePlay_notLoggedIn_it.png") no-repeat 0 0;
	background-size: auto 50px;
}

.ja .btn_googlePlay
{
	width: 190px;
	height: 60px;

	background: url("/img/theme/destiny/btns/btn_googlePlay_notLoggedIn_ja.png") no-repeat 0 0;
	background-size: auto 50px;
}

.pt-br .btn_googlePlay
{
	width: 190px;
	height: 60px;

	background: url("/img/theme/destiny/btns/btn_googlePlay_notLoggedIn_pt_br.png") no-repeat 0 0;
	background-size: auto 50px;
}


/*=======================================

	MOBILE - KEEP AT BOTTOM

=======================================*/

html.mobile.no-ipad body
{
	min-width: 0;
}

html.mobile.no-ipad header
{
	min-width: 0;
}

html.mobile.no-ipad #sidebar
{
	display: none;
}

html.mobile.no-ipad .bg_secondary
{
	width: 100%;
	margin-left: 0;
}

html.mobile.no-ipad #content
{
	width: 100% !important;
}
