/*
	red #bf2424
	grey #333d46
	green #1ead09
	orange #df7700
	blue #1e79cf
*/
.t-Header-branding {
		background-color:#bf2424;
}

.t-PageBody--leftNav .t-Body-nav {
    background-color: #333d46;
}

.t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-current, .t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-current--top.is-selected, .t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-selected {
    background-color: #2c2c2c !important;
}

.a-TreeView-row.is-selected, .a-TreeView-row.is-selected.is-hover {
    background-color: #2e3031 !important;
}

.t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-hover {
    background-color: #2e3031 !important;
}

.t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-current--top {
    background-color: #2e3031;
}

.t-BadgeList--circular .t-BadgeList-item:hover .t-BadgeList-value {
    background-color: #ef8326;
}

.t-BadgeList--circular .t-BadgeList-item:hover .t-BadgeList-value {
    background-color: #ef8326;
}

.t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-current--top.is-selected, .t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-selected {
	background-color: #282828 !important;
}

.t-MediaList-badge {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.4rem;
    box-shadow: 0 0 0 1px rgba(0,0,0,.05) inset;
    background-color: rgba(0,0,0,.025);
    padding: 2px 4px;
    border-radius: 2px;
    min-width: 10px;
    text-align: center; 
}

.a-IRR-header.is-active {
    background-color: #bf2424;
    border-bottom: none;
}

body .a-IRR-button.a-IRR-sortWidget-button, body .a-IRR-button.a-IRR-sortWidget-button:active:focus {
    color: rgba(255, 255, 255, 0.9);
    background-color: #333d46;
}

.a-IRR-sortWidget-search > .a-IRR-sortWidget-searchField, .a-IRR-sortWidget-search > .a-IRR-sortWidget-searchField[type="text"] {
    color: #ffffff;
    background: #2a3138;
}

body .a-IRR-sortWidget-rows {
    color: #ffffff;
    border-top: 1px solid #607180;
    background: #333d46;
}

body .a-IRR-button.a-IRR-sortWidget-button:hover, body .a-IRR-button.a-IRR-sortWidget-button:active:focus:hover {
    background-color: #bf2424;
}

body .a-IRR-sortWidget-row {
    color: #ffffff;
    box-shadow: 0 -1px 0 #696c6f inset;
}

.a-IRR-sortWidget-actions {
    border-bottom: 1px solid #607180;
}

.t-Button.t-Button--header:focus, .t-Button.t-Button--header:active:focus {
    box-shadow: 0 0 0 1px #d9e2ea inset, 0 0 1px 2px rgb(37 120 207 / 0%) !important;
}

.t-Button:focus, .a-Button:focus, .t-Button:active:focus, .a-Button:active:focus {
    box-shadow: 0 0 0 1px #d9e2ea inset, 0 0 1px 2px rgb(37 120 207 / 0%) !important;
}

.t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-current--top, .t-TreeNav .a-TreeView-node--topLevel.is-collapsible > .a-TreeView-row, .t-TreeNav .a-TreeView-node--topLevel ul {
    background-color: #216bb9;
}

.t-TreeNav .a-TreeView-node--topLevel .a-TreeView-row.is-current--top, .t-TreeNav .a-TreeView-node--topLevel.is-collapsible > .a-TreeView-row, .t-TreeNav .a-TreeView-node--topLevel ul {
    background-color: #2e3031;
}

.t-Tabs--simple .t-Tabs-item.is-active .t-Tabs-link, .apex-rds .apex-rds-selected a {
    box-shadow: 0 -2px 0 #bf2424 inset;
}

.t-Tabs--simple .t-Tabs-item.is-active .t-Tabs-link, .apex-rds .apex-rds-selected a {
    box-shadow: 0 -2px 0 #a31f1f inset;
}

.t-Login-logo {
    background-image: url(SPA-C-E-RGB.png); 
    background-repeat: no-repeat;
    background-size: contain;
    width: 80%;
}

.user-label {
    position: absolute;
    left: 15px;
    top: 12px;
}

.pass-label {
    position: absolute;
    left: 15px;
    top: 12px;
}

.nav-app-logo {
	width: 200px;
	padding-left: 1rem;
	padding-top: 4px;
}

.nav-app-title {
	position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    left: 45%;
}

@media only screen and (max-width: 650px) {
	.nav-app-logo {
		width: 100px;
		padding-left: 1rem;
		padding-top: 13px;
	}
	
	.nav-app-title {
		position: absolute;
		display: flex;
		justify-content: center;
		top: 0;
		left: 30%;
	}	
}

.notif-base {
    height:65px;
    width:65px;
    border: 1px solid transparent;
    border-radius:10%;
    position: absolute;
    top: 6px;
    left: -62px;
}

.notif-indicator {
    position:absolute;
    top:0%;
    right:0%;
    left:60%;
    bottom:60%;
    background-color: #ff9f53;
    border: 1px solid #ff9f53;
    border-radius:25%;
    display:flex;
    justify-content:center;
    align-items:center;
    animation: notif-pulse 2s infinite;
}

.notif-count {
    color:white;
    font-size: 12px;
    font-family:"Montserrat",sans-serif;
    font-weight: 700;
}

@keyframes notif-pulse {
  0% {
    transform: scale(.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.8);
  }
}

.spa-cell-badge {
	cursor:pointer;
	display: inline-block;
    line-height: 1.4rem;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 5%) inset;
    border-radius: 2px;
    min-width: 10px;
    text-align: center;	
    font-size: 12px;
    background-color: #333d46;
    margin-top: 5px;
    margin-right: 5px;
    padding: 5px;
    color: white;
}

.t-BadgeList--circular .t-BadgeList-item:hover .t-BadgeList-value {
    background-color: #2d77c8;
    color: white;
}

.t-BadgeList--circular .t-BadgeList-value a {
    box-shadow: 0 0 0 1px #2578cf inset;
    color: #ffffff;
    background-color: #2578cf;
    font-weight: bold;
}

@media only screen and (max-width: 1000px) {
    .nav-app-title {
        position: absolute;
        display: none;
        justify-content: center;
        top: 0;
        left: 30%;
    }
	
	#text-logo {
		display:none;
	}
}

@media only screen and (max-width: 650px) {
    .nav-app-logo {
        width: 250px;
        padding-left: 5rem;
        padding-top: 5px;
    }
}

.t-Body-topButton {
    border-radius: 100%;
    background-color: #bf2424;
}

.a-Region-carouselNav {
    white-space: nowrap;
    overflow-x: scrikk !important;	
	-webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 1000px) {
	.a-Region-carouselNav {
		white-space: nowrap;
		overflow-x: scrikk !important;	
		-webkit-overflow-scrolling: touch;
	}
}
