/* ----- CONTENT PANEL ----- */
.ContentPanel {
    margin-top: 4.5rem;
    height: calc(100% - 4.5rem);
    position: relative;
}

.Portal .ContentPanel {
    margin-top: 0;
    height: 100%;
}

.ContentPanel > .Header {
    height: 8rem;
    background-color: rgba(86,126,179,0.8);
    padding: 0 2rem 0 3.6rem;
    position: relative;
    border-radius: 0.5rem 0.5rem 0 0;
    overflow: hidden;
}

.ContentPanel > .Header .Title,
.ContentPanel > .Header .Description,
.ContentPanel > .Header .Navigation,
.ContentPanel > .Header .CloseButton,
.ContentPanel > .Header .BackButton {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.ContentPanel > .Header .Title {
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.25;
    float: left;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ContentPanel > .Header .InfoHotspot {
    position: relative;
    float: left;
    margin: 0;
    display: inline-block;
    width: auto;
    height: 6rem;
    font-size: 2.8rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    color: #8bb6e5;
}

.ContentPanel > .Header .InfoHotspot:hover {
    color: #fff;
}

.ContentPanel > .Header .InfoHotspot i {
    margin: 0.2em 0.5em;
}

.ContentPanel > .Header .Description {
    font-family: 'Roboto Condensed';
    float: left;
    margin-left: 3.6rem;
    color: #8bb6e5;
    font-size: 2.4rem;
    line-height: 1;
    max-width: 35%;
}

.ContentPanel > .Header .CloseButton,
.ContentPanel > .Header .BackButton {
    float: right;
    margin-left: 5.6rem;
}

.ContentPanel > .Header .Navigation {
    float: right;
}

.ContentPanel > .Header .Navigation button {
    float: left;
    margin-right: 2rem;
}

.ContentPanel > .Header .Navigation button:last-child {
    margin-right: 0;
}

.ContentPanel > .Middle {
    height: calc(100% - 8rem);
    background-image: url("image/content-panel-gradient.png");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 100%;
    border-radius: 0 0 0.5rem 0.5rem;
    border: 1px solid rgba(86,126,179,0.8);
}

.ContentPanel.HasFooter > .Middle {
    padding-bottom: 10.8rem;
}

.ContentPanel > .Middle .Scrollable {
    height: 100%;
    overflow: auto;
}

.ContentPanel > .Middle .Scrollable .ScrollableContent {
    padding: 3rem;
}

.ContentPanel > .Footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10.8rem;
    padding: 2.4rem 3rem;
}

.ContentPanel > .Footer .Buttons {
    text-align: right;
}

.ContentPanel > .Footer .Buttons:before,
.ContentPanel > .Footer .Buttons:after {
    display: table;
    content: "";
    clear: both;
}

.ContentPanel > .Footer .Buttons button {
    width: auto;
    min-width: 32rem;
    margin-right: 3rem;
}

.ContentPanel > .Footer .Buttons button:last-child {
    margin-right: 0;
}

.ContentPanel > .Footer .Buttons button.IconOnly {
    width: 6rem;
    min-width: 0;
}

/* TABS */
.Tabs {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 !important;
}

.Tabs.NavigationLeft {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.Tabs.NavigationRight {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.Tabs.VerticalNavigation.NavigationRight {
    width: calc(100% - 7rem);
    margin-right: 7rem !important;
}

.Tabs.VerticalNavigation.NavigationLeft {
    width: calc(100% - 7rem);
    margin-left: 7rem !important;
}

.Tabs > .Navigation {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Tabs.NavigationLeft > .Navigation {
    left: 0;
    margin-left: -7rem;
    width: 7rem;
}

.Tabs.NavigationRight > .Navigation {
    right: 0;
    margin-right: -7rem;
    width: 7rem;
}

.Tabs > .Navigation > li {
    position: relative;
    cursor: pointer;
    transition: background 0.4s ease 0s, color 0.4s ease 0s;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    flex: 1;
    background: rgba(86,126,179,0.8);
    border-radius: 0.3rem;
    margin-bottom: 0.6rem;
    min-height: 6.4rem;
    font-size: 0;
    text-align: center;
    color: rgba(0,0,0,0.5);
}

.Tabs > .Navigation > li:last-child {
    margin-bottom: 0 !important;
}

.Tabs.NavigationLeft > .Navigation > li {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-right: 0.6rem;
}

.Tabs.NavigationRight > .Navigation > li {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: 0.6rem;
}

.Tabs > .Navigation > li.Selected {
    background: rgba(86,126,179,0.4);
    border-bottom-left-radius: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: #4ffbf1;
}

.Tabs > .Navigation > li.Inactive {
    cursor: not-allowed;
    color: rgba(255,255,255,0.25);
}

.Tabs > .Navigation > li > .Icon {
    font-size: 4.2rem;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.Tabs > .Navigation > li > .Icon i {
    display: block;
    margin: 0;
}

.Tabs > .Navigation > li > .Icon i:before {
    vertical-align: top;
    display: block;
}

.Tabs > .Navigation > li > .Icon .Badge {
    position: absolute;
    top: -0.7rem;
    right: -0.7rem;
    width: 1.4rem;
    height: 1.4rem;
    background-color: #e04646;
    border-radius: 50%;
    display: none;
}

.Tabs > .Navigation > li.New > .Icon .Badge {
    display: block;
}

.Tabs > .Navigation > li .RotatedText {
    font-size: 3rem;
    display: block;
    width: 100%;
    line-height: 6.7rem;
    overflow: hidden;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.Tabs > .Navigation > li .RotatedText span {
    display: inline-block;
    white-space: nowrap;
    transform: translate(0,100%) rotate(-90deg);
    transform-origin: 0 0;
}

.Tabs > .Navigation > li .RotatedText span:after {
    content: "";
    float: left;
    margin-top: 100%;
}

.Tabs > .Tab {
    position: relative;
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s;
    overflow: hidden;
}

.Tabs.FixedHeight > .Tab {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.Tabs > .Tab.Selected {
    visibility: visible;
    opacity: 1;
    height: 100%;
    display: block !important;
}

.Tabs > .Tab:not(.Selected) {
    padding: 0 !important;
}

.Tabs.Loading > .Tab {
    visibility: hidden;
    opacity: 0;
}

.Tabs.Loading:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 6.4rem;
    height: 6.4rem;
    background-color: transparent;
    background-image: url("../image/loader.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* CAROUSEL */
.CarouselContainer .Carousel {
    height: 100%;
    width: 100%;
    overflow: visible;
}

.CarouselContainer .Carousel .slick-list,
.CarouselContainer .Carousel .slick-track,
.CarouselContainer .Carousel .slick-slide {
    height: 100%;
}

.CarouselContainer .Carousel .slick-track {
    margin: 0 auto;
}

.CarouselContainer .CarouselNav {
    display: block;
    position: absolute;
    width: 7.6rem;
    height: 7.6rem;
    top: 50%;
    border-radius: 50%;
    margin: -3.8rem;
    box-shadow: 0.1rem 0.1rem 0 0 rgba(0,0,0,0.3), inset 0 0.1rem 0 0 rgba(255,255,255,0.3);
    padding: 0;
    z-index: 1;
}

.CarouselContainer .CarouselNav i {
    font-size: 4.8rem;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5), -1px -1px 0 rgba(0,0,0,0.5);
}

.CarouselContainer .CarouselNav[aria-disabled="true"] i {
    text-shadow: none;
}

.CarouselContainer .CarouselNav.Prev { left: 0; }
.CarouselContainer .CarouselNav.Next { right: 0; }

.CarouselContainer .Carousel .slick-dots {
    text-align: center;
    font-size: 0;
    margin-top: 1rem;
}

.CarouselContainer .Carousel .slick-dots li {
    position: relative;
    display: inline-block;
    cursor: pointer;
    vertical-align: top;
    padding: 0.5rem;
}

.CarouselContainer .Carousel .slick-dots li button {
    font-size: 0;
    color: transparent;
    display: block;
    width: 1rem;
    height: 1rem;
    border: 0 none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.CarouselContainer .Carousel .slick-dots li.slick-active button {
    background-color: #fff;
}

/* VIDEO */
.VideoContainer {
    background-color: #000;
    border-radius: 0.3rem;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
}

.VideoContainer iframe,
.VideoContainer img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

/* CHARTS */
.ChartContainer .ChartExplanation {
    font-size: 1.8rem;
    line-height: 1.25;
    color: #567eb3;
    margin: 0.5rem 0;
}

.Chart {
    position: relative;
    font-size: 1.8rem;
    line-height: 1;
    color: #8bb6e5;
}

/* Grid */
.Chart .Grid {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #8bb6e5;
}

.Chart .Grid .ScaleLine {
    position: absolute;
    background-color: rgba(255,255,255,0.5);
    transition: background 0.25s, color 0.25s;
}

.Chart .Grid .ScaleLine:hover {
    background-color: #fff;
    z-index: 1;
}

.Chart .Grid .ScaleLine.XScale {
    top: 0;
    bottom: 0;
    width: 1px;
}

.Chart.BarChart.HorizontalBars .Grid .ScaleLine.YScale,
.Chart.BarChart.VerticalBars .Grid .ScaleLine.XScale {
    background-color: transparent;
}

.Chart .Grid .ScaleLine.XScale .Value {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 1rem 0;
}

.Chart .Grid .ScaleLine.YScale {
    left: 0;
    right: 0;
    height: 1px;
}

.Chart .Grid .ScaleLine.YScale .Value {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 6rem;
    padding-left: 1.5rem;
}

/* Barchart */
.Chart.BarChart .Data {
    position: relative;
}

.Chart.BarChart .Data .Scale {
    position: relative;
    overflow: hidden;
}

.Chart.BarChart .Data .Bar {
    position: absolute;
    background-color: #2bc191;
}

.Chart.BarChart .Data .Bar.Animated {
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
}

/* Vertical bars */
.Chart.BarChart.VerticalBars {
    height: 100%;
    margin: 0.9rem 6rem 3.8rem 0;
}

.Chart.BarChart.VerticalBars .Data {
    height: 100%;
    float: left;
}

.Chart.BarChart.VerticalBars .Data .Scale {
    height: 100%;
    margin: 0 15%;
}

.Chart.BarChart.VerticalBars .Data .Bar {
    border-radius: 0.1rem;
    bottom: 0;
    height: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.Chart.BarChart.VerticalBars .Data .Bar.Animated {
    animation-name: fade-in-grow-vertical;
}

/* Horizontal bars */
.Chart.BarChart.HorizontalBars .Data {
    width: 100%;
}

.Chart.BarChart.HorizontalBars .Data .Scale {
    width: 100%;
    height: 100%;
}

.Chart.BarChart.HorizontalBars .Data .Bar {
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
}

.Chart.BarChart.HorizontalBars .Data .Bar.Animated {
    animation-name: fade-in-grow-horizontal;
}

/* TABLES */
.Table {
    font-family: 'Roboto Condensed';
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.5rem 0;
    /*table-layout: fixed;*/
    font-size: 3rem;
    line-height: 1.25;
}

.Table tbody tr.Clickable {
    cursor: pointer;
}

.Table tbody tr.Clickable td:last-child {
    position: relative;
}

.Table tbody tr.Clickable td:last-child:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 0.8rem;
    font-family: "g4b-icon-font";
    content: "\e811";
    width: 1em;
    text-align: center;
    font-size: 2rem;
    color: #4ffbf1;
}

.Table tbody tr.Clickable:hover td:last-child:after {
    color: #fff;
}

.Table thead tr.Clickable th:last-child,
.Table tbody tr.Clickable td:last-child {
    padding-right: 3.6rem;
}

.Table thead th,
.Table tbody td {
    text-align: left;
    border-bottom: 1px solid #567eb3;
    vertical-align: middle;
    width: auto !important;
    padding: 0.8rem;
}

.Table thead th {
    text-transform: uppercase;
    color: #2bc191;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    line-height: 1;
}

.Table tbody td {
    font-size: 2.4rem;
    color: #8bb6e5;
    position: relative;
    z-index: 0;
}

.Table tbody tr.Inactive td {
    color: #567eb3;
}

.Table tbody tr.New td {
    font-weight: bold;
}

.Table thead tr th.MaxWidth,
.Table tbody tr td.MaxWidth {
    width: 100% !important;
    max-width: 0;
}

.Table thead tr th.MinWidth,
.Table tbody tr td.MinWidth {
    width: 1% !important;
}

.Table thead tr th.Icon,
.Table tbody tr td.Icon {
    text-align: center;
    width: 1% !important;
}

.Table tbody tr td.Icon {
    color: #fff;
    width: 5%;
    font-size: 3.6rem;
}

.Table tbody tr td.Icon i {
    margin: 0;
}

.Table tbody tr.Inactive td.Icon {
    color: #ababab;
}

.Table tbody tr td.Highlighted,
.Table tbody tr td .Highlighted {
    font-size: 3.6rem !important;
    color: #fff;
}

.Table tbody tr td.Highlighted {
    text-transform: uppercase;
}

.Table tbody tr.Inactive td.Highlighted,
.Table tbody tr.Inactive td .Highlighted {
    color: #ababab;
}

.Table thead th.Icon:first-child, .Table tbody td.Icon:first-child,
.Table thead th.Thumbnail:first-child, .Table tbody td.Thumbnail:first-child {
    width: 5%;
    border-color: transparent;
    font-size: 3.6rem;
    vertical-align: top;
    text-align: left;
}

.Table thead th.Thumbnail:first-child img,
.Table tbody td.Thumbnail:first-child img {
    display: block;
    width: 7rem;
    height: 7rem;
}

.Table tr.Inactive td.Thumbnail img {
    opacity: 0.3;
}

.Table thead tr th.Quantity {
    /*text-align: center;*/
}

.Table tbody tr td.Quantity {
    /*text-align: right;*/
}

.Table tbody tr td.Buttons {
    /*text-align: right;*/
    white-space: nowrap;
    width: 1% !important;
}

.Table tbody tr td.Buttons button:not(:first-child) {
    /*margin-left: 1rem;*/
}

.Table tbody td .Badge {
    font-family: 'Roboto Condensed';
    margin: 0 0.5rem;
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
    padding: 0 1.8rem;
    border-radius: 3rem;
    white-space: nowrap;
    text-align: center;
    font-weight: bold;
    color: #344a68;
}

.Table tbody td .ObjectQuantity {
    font-size: 2.4rem;
}

.Table table {
    width: 100%;
    border-collapse: collapse;
}

.Table table td {
    border: 0 none;
    padding: 0 0.8rem;
}

.Table table tr td:first-child {
    padding-left: 0;
}

.Table table tr td:last-child {
    padding-right: 0;
}

/* DATE */
.DateTime {
    display: inline;
    white-space: nowrap;
}

.DateTime .Time {
    margin-left: 0.3em;
}

.DateTime .Hyphen {
    margin: 0 0.3em;
}

@media screen and (orientation:portrait) {
    .Table:not(.PortraitTable) {
        table-layout: auto;
    }

    .Table:not(.PortraitTable) thead tr {
        display: none;
    }

    .Table:not(.PortraitTable), .Table:not(.PortraitTable) thead, .Table:not(.PortraitTable) tbody, .Table:not(.PortraitTable) th, .Table:not(.PortraitTable) td, .Table:not(.PortraitTable) tr {
        display: block;
        width: 100% !important;
    }

    .Table:not(.PortraitTable) tbody tr {
        position: relative;
        margin-bottom: 2rem;
        border-bottom: 1px solid #567eb3;
        padding-bottom: 1rem;
    }

    .Table:not(.PortraitTable) tbody tr:before,
    .Table:not(.PortraitTable) tbody tr:after {
        content: "";
        display: table;
        clear: both;
    }

    .Table:not(.PortraitTable) tbody td {
        border: 0 none;
        padding: 0;
    }

    .Table:not(.PortraitTable) thead tr th.MaxWidth,
    .Table:not(.PortraitTable) tbody tr td.MaxWidth {
        max-width: none;
    }

    .Table:not(.PortraitTable) tbody tr td.Icon,
    .Table:not(.PortraitTable) tbody tr td.Thumbnail {
        position: absolute;
        top: 0;
        width: 7rem !important;
        height: 7rem;
        line-height: 7rem;
    }

    .Table:not(.PortraitTable) tbody td.Icon:first-child,
    .Table:not(.PortraitTable) tbody td.Thumbnail:first-child {
        left: 0;
    }

    .Table:not(.PortraitTable) tbody td.Icon:last-child,
    .Table:not(.PortraitTable) tbody td.Thumbnail:last-child {
        right: 0;
    }

    .Table:not(.PortraitTable) tbody td[data-label]:before {
        content: attr(data-label);
        color: #2bc191;
    }

    .Table tbody td .ObjectQuantity {
        font-size: 3.6rem;
    }

    .Table tbody tr td.Highlighted,
    .Table tbody tr td .Highlighted {
        line-height: 1;
    }

    .Table tbody td .ObjectQuantity {
        font-size: 2.4rem;
    }

    .Table tbody tr td.Buttons {
        font-size: 0;
        margin-top: 0.5rem;
    }

    .Table tbody td.Buttons button {
        background-color: #4ffbf1 !important;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%) !important;
        box-shadow: 0 -0.1rem 0 0 rgba(255, 255, 255, 0.8), inset 0 -0.4rem 0 0 rgba(0, 0, 0, 0.3) !important;
        color: #344a68 !important;
    }

    .Table tbody td.Buttons button:not(:last-child) {
        margin-right: 2rem;
    }

    .Table tbody td.Buttons button:not(:disabled):not(.Selected):not(.Inactive):not([aria-disabled="true"]):hover {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%) !important;;
    }

    .Table tbody td.Buttons button:not(:disabled):not(.Selected):not(.Inactive):not([aria-disabled="true"]):active {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%) !important;;
    }

    .Table tbody td.Buttons button.Inactive,
    .Table tbody td.Buttons button:disabled {
        color: #00d1c7 !important;
    }

    .ContentPanel {
        margin-top: 0;
        height: 100%;
        border: 0 none;
        border-radius: 0;
    }

    .ContentPanel > .Header {
        height: 9.6rem;
        background-color: transparent !important;
        position: absolute;
        top: -9.6rem;
        left: 9.6rem;
        right: 9.6rem;
        padding: 0 2rem;
        z-index: 16;
        overflow: visible;
    }

    .ContentPanel > .Header .Title {
        font-size: 3.6rem;
        font-weight: bold;
        float: none;
        text-align: center;
    }

    .ContentPanel > .Header .InfoHotspot {
        display: none;
    }

    .ContentPanel > .Header .CloseButton,
    .ContentPanel > .Header .BackButton {
        width: 9.6rem;
        height: 9.6rem;
        position: absolute;
        top: 0;
        right: -9.6rem;
        margin-left: 0;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(41,44,45,1);
        color: #4ffbf1;
        text-shadow: none
    }

    .ContentPanel > .Header .CloseButton i,
    .ContentPanel > .Header .BackButton i {
        text-shadow: none;
        font-size: 3.6rem !important;
    }

    .ContentPanel > .Header .Navigation {
        position: absolute;
        left: -9.6rem;
        right: -9.6rem;
        top: 100%;
        float: none;
        transform: none;
        height: 7.2rem;
        line-height: 7.2rem;
        background-color: rgba(86,126,179,0.8);

        display: none;
    }

    .ContentPanel > .Middle {
        border-radius: 0;
        border: 0 none;
    }

    .ContentPanel:not(.HasNavigation) > .Middle {
        height: 100%;
    }

    .ContentPanel.HasFooter > .Middle {
        padding-bottom: 10rem;
    }

    .ContentPanel > .Middle .Scrollable .ScrollableContent {
        padding: 2rem;
    }

    .ContentPanel > .Footer {
        height: 10rem;
        padding: 2rem;
    }

    .ContentPanel > .Footer .Buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .ContentPanel > .Footer .Buttons button {
        width: auto;
        float: none;
        flex: 1 1 auto;
        margin-right: 2rem;
        min-width: 0;
    }

    .ContentPanel > .Footer .Buttons button:last-child {
        float: none;
        margin-right: 0;
    }

    .Tabs {
        border-radius: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        margin-top: 7.2rem !important;
     }

    .Tabs > .Navigation {
        left: 0;
        right: 0;
        bottom: auto;
        width: 100% !important;
        margin: -7.2rem 0 0 0 !important;
        flex-direction: row;
        justify-content: space-between;
    }

    .Tabs > .Navigation > li {
        flex: 1;
        border-radius: 0 !important;
        min-height: 0;
        margin: 0 !important;
        border-bottom: 0.5rem solid transparent !important;
        font-size: 2.4rem;
        height: 7.2rem;
        line-height: 6.7rem;
        padding: 0 2rem;
    }

    .Tabs > .Navigation > li.Selected {
        border-bottom-color: #4ffbf1 !important;
    }

    .Tabs > .Navigation > li > .Icon {
        font-size: 3.2rem;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .Tabs > .Navigation > li > .Icon i {
        margin-right: 0.15em;
    }

    .Tabs > .Navigation > li .RotatedText {
        font-size: 2.4rem;
        top: auto;
        transform: none;
    }

    .Tabs > .Navigation > li .RotatedText span {
        transform: none;
    }

    .Tabs > .Navigation > li .RotatedText span:after {
        display: none;
    }

    .Tabs > .Tab {
        display: none;
    }

    .Tabs > .Tab.Selected {
        display: block;
    }

    .CarouselContainer .CarouselNav {
        box-shadow: none;
        padding: 2rem;
        background: transparent !important;
        margin-left: 0;
        margin-right: 0;
    }

    .CarouselContainer .CarouselNav i {
        font-size: 3.6rem;
        text-shadow: none;
        color: #4ffbf1;
    }

    .CarouselContainer .CarouselNav:hover i {
        color: #fff;
    }

    .CarouselContainer .CarouselNav[aria-disabled="true"] i {
        color: rgba(255,255,255,0.25);
    }
}
