/* CSS Document */
/*---------------------------------*\
    #RESETS
\*---------------------------------*/
@import 'reset.css';

html,
body,
.content,
td,
/* div, */
th,
form {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size : 12px;
}

.background-baseColor {
    background-color: #333333}

.background-accentColor {
    background-color: #f56e32;
}

.background-tableHeaderColor {
    background-color: #ff6600;
}

.text-baseColorText {
    color: #ffffff;
}

.text-baseColor {
    color: #333333}

.text-linkColor {
    color:#f56e32;
}

.accented_background {
    background-color:#f56e32;
}

.accented_border {
    border-color:#f56e32;
}

.accented_background_grad{
    background: #f56e32; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffcb5c 0%, #f56e32 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffcb5c), color-stop(100%,#f56e32)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffcb5c 0%,#f56e32 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffcb5c 0%,#f56e32 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffcb5c 0%,#f56e32 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffcb5c 0%,#f56e32 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcb5c', endColorstr='#f56e32',GradientType=0 ); /* IE6-9 */
}
.accented_background_grad_side{
    background: #f56e32; /* Old browsers */
    background: -moz-linear-gradient(left,  #ffcb5c 0%, #f56e32 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #ffcb5c 0%,#f56e32 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #ffcb5c 0%,#f56e32 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcb5c', endColorstr='#f56e32',GradientType=1 ); /* IE6-9 */
}
.accented_text{
    color: #FFFFFF;
}
.accented_background_text{
    color: #f56e32;
}

a,
a:visited,
a:active {
    text-decoration: none;
    color:#f56e32;
}

a:hover {
    text-decoration: underline;
    color:#cc6600;
}

.a--dark,
.a--dark:visited,
.a--dark:active, .a--dark:hover {
    color: rgb(50,50,50);
}

table.primary,
tr.primary,
td.primary,
th.primary,
body.primary {
    background-color:#333333;
}

text.primary {
    color:#333333;
}

table.accent,
tr.accent,
td.accent,
th.accent,
body.accent {
    background-color:#f56e32;
}

text.accent,
a.accent,
a:visited.accent,
A:hover.accent {
    color:#f56e32;
}

a.menu{
    font-size: 12px;
    color:#FFFFFF;
    font-weight:bold;
}
a.menu:hover{
    color:#333333;
    text-decoration:none;
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size:11px;
    font-weight:bold;
}

div.success {
    font-weight:bold;
    color:#390;
}
div.error {
    font-weight:bold;
    color:#900;
}

input.red{
    background-color:#ffcc99;
    border-color:#f56e32;
    font-size: 10px;
    font-style: normal;
}

table.imagetable {
    color:#333333;
    /*border: 1px #999999 solid;*/
    border-collapse: collapse;
}

table.imagetable > thead > tr > th, table.imagetable > tbody > tr > th {
    background-color: #ff6600;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1)); /* linear fade starting at tableHeaderColor towards darker */
    font-size: 12px;
    font-weight: normal;
    color: #FFFFFF;
    border: solid 1px #999999;
    text-align: center;
    padding: 4px;
}

.imagetable th a {
    color:#FFFFFF;
    border-width: 1px;
    border-color: #999999;
    border-collapse: collapse;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;

}

table.imagetable td {
    padding: 4px;
}

/*<!-- Row colors for the image table -->*/
table.imagetable tr.row1,
tr.zebra:nth-child(2n+1),
table.imagetable tbody.row1,
.zebra:nth-child(odd) {
    background:#FAFAFA linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.01));
}

table.imagetable tr.row2,
tr.zebra:nth-child(2n),
table.imagetable tbody.row2,
.zebra:nth-child(even) {
    background:#ECECEC linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.01));
}

table.imagetable tr.darker, table.imagetable tr.row4 {
    background:#AEACAE url('https://www.palmyraportal.org//images/tablebackgrounds/tablecell-grey.jpg');
    background-repeat: repeat-x;
}
table.imagetable tr.highlight1, table.imagetable td.highlight1  {
    background:#FF9494;
}
table.imagetable tr.highlight2, table.imagetable td.highlight2  {
    background:#FFFF00;
}

/*highlight class is used in eCas and scheduling*/
table.imagetable tr.highlight, table.imagetable td.highlight  {
    background:#FFFFC0;
}
table.imagetable td {
    border: 1px solid #999999;
}

table.imagetable th.blank, table.imagetable td.blank, table.blank {
    background: #ffffff;
    border: none !important;

}

table.imagetable input, table.imagetable select { /*<!-- Allows easier width manipulation of inputs/selects -->*/
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


/* Blank table is used within image tables to prevent all of the borders and padding from being inherited */
table.blank {
    border-spacing:0;
    border-collapse:collapse;
    padding: 0;
    margin: 0;
    border: none;
}
table.blank td {
    border-spacing:0;
    border-collapse:collapse;
    padding: 0;
    margin: 0;
    border: none;
}
.imagetable td a {
    color:#f56e32;
}

.ww-table {
    border-collapse: collapse;
}

.ww-header--sticky {
    position: sticky;
    top: 5.35rem; /* height of portal header, with a little overlap to prevent fragmentation */
    z-index: 2; /** for compatability with frozen columns, as in mass change */
}

.ww-table__header-row {
    color: #FFFFFF;
    background-color: #ff6600;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1)); /* linear fade starting at tableHeaderColor towards darker */
}

.ww-table__header-cell {

    font-weight: normal;
    padding: 0.25rem;
    background: inherit;
    border: solid 1px #999999;
}

.ww-table__header-cell--rotated {
    height: 12rem;
    min-width: 3rem;
    overflow: hidden;
}

.ww-table__header-cell--rotated > * {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    white-space: nowrap;
}

.ww-table__row:nth-child(even), .ww-row--even {
    background:#ECECEC linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.01));
}

.ww-table__row:nth-child(odd), .ww-row--odd {
    background:#F7F7F7 linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.01));
}

.ww-table__cell {
    padding: 0.5rem;
    border: 1px solid #999999;
}

.ww-table__cell > ul {
    margin: 0;
    padding-inline-start: 1.5rem;
}

.ww-table__cell--centered {
    text-align: center;
}

.ww-table__cell--sticky {
    position: sticky;
    left: 0;
    z-index: 1;
    background: inherit;
}

/*<!-- Handle Font Size for titles -->*/
.titlesBig { font-size: 18px; }
.titlesSmall { font-size: 10px; }

#userMenu {
    line-height: 22px;
    text-align: left;
    border-bottom: 2px solid ;
    padding-top: 2px;
    display:inline-block;
    width:100%;
}
#userMenu a {
    color:#f56e32;
    padding-left: 15px;
}
#userMenu a.current {
    color:#FFFFFF;
    background-color:#ff6600;
    padding-left: 15px;
}
#userMenu a:hover {
    color:#cc6600;
    padding-left:15px;
}
#userMenu a.current:hover {
    color:#FFFFFF;
    padding-left:15px;
}


/* General for user/admin/category menu: */
/* -------------------------------------------------------------*/
.menu ul {
    margin: 0px;
    padding-left: 10px;
    list-style: none;
}
.menu li {
    float:left;
    white-space: nowrap;
}
.menu a {
    display: block;
    padding: 0px 15px 0px 5px;
}
.menu li:last-child a {
    background: none;
}
.menu {
    clear: both;
}

.pkg-menu__container {
    border-bottom: 0.167rem solid ;
    padding-top: 0.167rem;
}

.pkg-menu__content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-menu__content > * {
    display: inline-block;
    line-height: 1.833rem;
}

.pkg-menu__content a {
    display: block;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.pkg-menu__content .current {
    color:#FFFFFF;
    background-color:#ff6600;
}

.shadetabs{
    position: relative;
    top: 1px;
    border-bottom: 1px solid gray;
    /* width: 90%; width of menu. Uncomment to change to a specific width */
    margin-bottom: 1em;
}
.shadetabs ul{
    padding: 2px 0;
    margin-left: 0;
    margin-top: 1px;
    margin-bottom: 0;
    font-family:Verdana,Arial,Verdana, Helvetica, sans-serif;
    font-weight:bold;
    font-size:small;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the menu as desired*/
}
.shadetabs li{
    display: inline;
    margin: 0;
}
.shadetabs li a{
    text-decoration: none;
    padding: 3px 7px;
    margin-right: 3px;
    border: 1px solid #778;
    color: #2d2b2b;
    font-family:Verdana,Arial,Verdana, Helvetica, sans-serif;
    font-weight:bold;
    font-size:11px;
    background: white url(https://www.palmyraportal.org//images/shade.gif) top left repeat-x;
    white-space: nowrap;
}
.shadetabs li a:visited{
    color: #2d2b2b;
    font-family:Verdana,Arial,Verdana, Helvetica, sans-serif;
    font-weight:bold;
    font-size:11px;
}
.shadetabs li a:hover{
    text-decoration: underline;
    color: #2d2b2b;
    font-family:Verdana,Arial,Verdana, Helvetica, sans-serif;
    font-weight:bold;
    font-size:11px;
}
.shadetabs li.selected{
    position: relative;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-weight:bold;
    font-size:11px;
    top: 1px;
}
.shadetabs li.selected a{ /*selected main tab style */
    background-image: url(https://www.palmyraportal.org//images/shadeactive.gif);
    border-bottom-color: white;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-weight:bold;
    font-size:11px;
}
.shadetabs li.selected a:hover{ /*selected main tab style */
    text-decoration: none;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-weight:bold;
    font-size:11px;
}


.blacklink  { /*For times when the links need to be black */
    text-decoration: none;
    font-size:12px;
    color:#000000;
}
a.blacklink{ /*For times when the links need to be black */
    text-decoration: none;
    font-size:12px;
    color:#000000;
}
a.blacklink:visited{ /*For times when the links need to be black */
    text-decoration: none;
    font-size:12px;
    color:#000000;
}

a.blacklink:hover  { /*For times when the links need to be black */
    text-decoration: none;
    font-size:12px;
    color:#CC0000;
}


.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*---------------------------------*\
    #FORM
\*---------------------------------*/
input {
    font: inherit;
}

/*---------------------------------*\
    #HIDDEN
\*---------------------------------*/
.none {
    display: none;
}

.sr-only {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/*---------------------------------*\
    #ALERTS
\*---------------------------------*/
.gerror,
.gwarning,
.ginfo,
.gsuccess{
    border-width: 2px;
    border-style: solid;
    padding: 8px;
    box-sizing: border-box;
}
.gerror{
    background-color: #F6CECE;
    border-color: #F5A9A9;
    color: #6e0000;
}

.gwarning{
    background-color: #fff6c7;
    color: #634E2A;
    border-color: #faebcc;
}

.ginfo{
    background-color: #c0e4f6;
    color: #224E64;
    border-color: #ACCDDD;
}

.gsuccess{
    background-color: #caecbc;
    color: #2A522A;
    border-color: #B5D4A9;
}

/*---------------------------------*\
    #FORMS
\*---------------------------------*/
.form--inline {
    box-sizing: border-box;
    display: inline-block;
    padding: 1rem;
    vertical-align: top;
    /* margin-top: 1rem;
    margin-bottom: 1rem; */
}

.form--w50p {
    width: 50%;
    min-width: 550px;
}

.form__input--block {
    display: block;
}

.form__input--block + .form__input--block,
.form__btn--block {
    margin-top: 0.5rem;
}

.form__input,
.form__input > * {
    font: inherit;
}

/*---------------------------------*\
    #GLOBAL HEADER
\*---------------------------------*/
.page-header {
    position: fixed;
    height: 5.42rem; /* size set to match icon size */
    left: 0;
    right: 0;
    z-index: 100;
}

.page-header * {
    box-sizing: border-box;
}

.portal-header__btn {
    vertical-align: middle;
    border: none;
    border-radius: 8%;
    padding: 0;
    display: inline-block;
}

.ph-user__btn {
    background-color: transparent;
}

/*---------------------------------*\
    #HEADER ICONS
\*---------------------------------*/
.portal-header__icon {
    height: calc(5.42rem - 1rem);
    vertical-align: middle;
    border-radius: 5%;
    display: inline-block;
    border: none;
}

.portal-header__icon_home {
    margin: 0.5rem 0.25rem;
}

/*---------------------------------*\
    #TITLES
\*---------------------------------*/
.portal-header_title-group {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0.5rem;
}

.portal-header_h1 {
    position: relative;
    font-weight: 300;
    vertical-align: middle;
    font-size: 2.5rem;
}

/* .title-group_page-header {
    color: #ffffff;
} */

.portal-header_tag-line {
    text-align: right;
    font-style: italic;
    font-size: 0.91rem;
}


/*---------------------------------*\
    #PORTAL MENU TOGGLES
\*---------------------------------*/
.portal-toggle {
    height: 2.5rem;
    width: 2.5rem;
    position: relative;
    margin-right: 0.25rem;
    margin-left: 0.5rem;
}

.portal-toggle__bar {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    width: 1.66rem;
    height: 0.2rem;
    pointer-events: none;
}

.portal-toggle__bar_1 {
    -webkit-transform: translate(-50%, -50%) rotateZ(-225deg);
    -ms-transform: translate(-50%, -50%) rotate(-225deg);
    transform: translate(-50%, -50%) rotateZ(-225deg);
}

.portal-toggle__bar_2 {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portal-toggle__bar_3 {
    -webkit-transform: translate(-50%, -50%) rotateZ(225deg);
    -ms-transform: translate(-50%, -50%) rotate(225deg);
    transform: translate(-50%, -50%) rotateZ(225deg);
}

/* MENU-BAR CLICKED*/
.portal-toggle__hidden .portal-toggle__bar_1 {
    -webkit-transform: translate(-50%, -0.6rem);
        -ms-transform: translate(-50%, -0.6rem);
            transform: translate(-50%, -0.6rem);
}

.portal-toggle__hidden .portal-toggle__bar_2 {
    opacity: 1
}

.portal-toggle__hidden .portal-toggle__bar_3 {
    -webkit-transform: translate(-50%, 0.4rem);
        -ms-transform: translate(-50%, 0.4rem);
            transform: translate(-50%, 0.4rem);
}

.portal-toggle--transition > .portal-toggle__bar {
    transition-property: all;
    transition-duration: 0.2s;
    transition-delay: 0s;
    transition-timing-function: ease-in;
}

/*---------------------------------*\
    #SIDE-NAV
\*---------------------------------*/
.side-nav {
    position: fixed;
    left: 0;
    top: 5.42rem;
    height: calc(100% - 5.42rem);
    min-width: 220px;
    overflow: hidden;
}

.side-nav__container {
    position: relative;
    background-color: rgb(250,250,250);
    height: 100%;
    will-change: transform;
}


.side-nav__content {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1.5rem;
}

.side-nav__content li {
    border-bottom: rgb(230, 230, 230) thin solid;
}

.side-nav__content li:last-child {
    margin-bottom: 1rem;
}

.side-nav a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 0.3em 0.5em;
    color: rgb(50, 50, 50);
    border-left: transparent solid 0.667em; /* acts like a placeholder for the active state */
}

.side-nav__content a:hover,
.side-nav__content a:focus {
    color: #f56e32;
    transition: border 0.2s 0s ease-in;
    text-decoration: none; /* override coreStylesWhite */
}

.side-nav__a--active {
    border-left: #f56e32 solid 0.667em !important;
    color: #f56e32 !important;
}

.side-nav__hidden {
    pointer-events: none;
}

.side-nav__hidden .side-nav__container {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
}

.side-nav__animate .side-nav__container {
    transition: all 0.2s 0s ease-in-out;
}

/*---------------------------------*\
    #USER-NAV
\*---------------------------------*/
.ph-user-nav{
    position: absolute;
    right: 0;
    font-size: 1rem;
    overflow: hidden;
    max-height: 150px;
}

.ph-user-nav--hidden{
    max-height: 0;
}

.ph-user-nav--animate {
    transition: max-height 0.3s cubic-bezier(.79,.14,.15,.86);
}

.ph-user-nav__content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ph-user-nav__content li {
    border-bottom: rgb(230, 230, 230) thin solid;
}

.ph-user-nav__content li:first-child {
    border-top: rgb(230, 230, 230) thin solid;
}

.ph-user-nav__content a {
    text-decoration: none;
    padding: 0.3rem 0.5rem 0.3rem 1rem;
    display: block;
    border-right: transparent solid 0.5rem;
}

.ph-user-nav__content .text-baseColorText:visited,
.ph-user-nav__content .text-baseColorText:active {
    color: #ffffff;
}

.ph-user-nav__content a:hover,
.ph-user-nav__content a:focus {
    color: #ffffff;
    border-right: #ffffff solid 0.5em;
    transition: border 0.15s 0s ease-in;
}

/*---------------------------------*\
    #USER BLOCK
\*---------------------------------*/
.ph-user {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    height: inherit;
}

.ph-user__selects {
    display: inline-block;
    vertical-align: middle;
}

.ph-user__selects * + * {
    margin-top: 3px;
}

.ph-user__icon {
    margin: 0.5rem;
}

.ph-user__label {
    color: #fefefe;
}

.ph-user__label a {
    color: #fefefe;
    text-decoration: underline;
}

/*---------------------------------*\
    # STYLED BUTTONS
\*---------------------------------*/

.ww-btn {
    padding: 0.5rem;
    background: rgb(250,250,250);
    border: 1px solid #ccc;
    position: relative;
}

.ww-btn--inline + .ww-btn--inline {
    margin-left: 0.5rem;
}

.ww-btn--animate::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    box-shadow: 0.0833rem 0.0833rem 0.1667rem #999;
    transition: opacity 0.1s cubic-bezier(0,0.41,1,0.57);
}

.ww-btn--animate:not([disabled]):hover::after {
    opacity: 1;
}

.ww-img-btn {
    cursor: pointer;
    text-align: center;
    user-select: none;
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

.ww-img-btn:hover {
    opacity: 0.8;
}

/*---------------------------------*\
    # STYLED SELECTS
\*---------------------------------*/
.sselect {
    position: relative;
    display: block;
    width: 100%;
    font-size: 1rem;
}

.sselect option {
    color: initial;
}

/* Only apply these styles if the browser supports the appearance property*/
@supports  ((-webkit-appearance: none) or (-moz-appearance: none)){
    .sselect {
        -moz-appearance: none;
        -webkit-appearance: none;
        background-color: transparent;
        border: none;
        color: #fefefe;
    }
}

@supports ((-moz-text-align-last: right) or (text-align-last: right)) {
    .sselect {
        text-align: right;
        text-align-last: right;
    }

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

/*---------------------------------*\
    # MAIN CONTENT
\*---------------------------------*/
.main-content_full {
    padding: 0.667em;
    padding-top: 6.087rem;
    z-index: 1;
    overflow-y: visible;
}

.main-content{
    margin-left: 235px;
    right: 0;
}

.main-content__animate {
    transition: margin-left 0.2s 0s ease-in-out;
}

.main-content_print {
    top: 0;
    left: 0;
}

.button--link {
    border: none;
    background: transparent;
    font-size: inherit;
    padding: 0;
    font-family: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.button--link.text-linkColor:hover {
    color:#cc6600;
}
/*---------------------------------*\
    # RADIAL BACKGROUND
\*---------------------------------*/
.radial-background{
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 28%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.2)), color-stop(28%,rgba(0,0,0,0.05)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.05) 28%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.05) 28%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.05) 28%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.05) 28%,rgba(0,0,0,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

    background-repeat: no-repeat;
}


/*---------------------------------*\
    # SPINNER
\*---------------------------------*/
.ww-spinner-container {
    position: relative
}

.ww-spinner-container__overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.3);
}

.ww-spinner-container--fullpage {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 101;
    background: rgba(0,0,0,0.3);
}

.ww-spinner {
    position: absolute;
    left: 50%;
    transform: translateX( -50% );
    overflow: hidden;
    z-index: 1;
}

.ww-spinner-container .ww-spinner, .ww-spinner-container--fullpage .ww-spinner {
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
}

.ww-spinner__circle {
    width: 3.333rem;
    height: 3.333rem;
    border-radius: 50%;
    border: solid 0.5rem #ccc;
    border-top-color: #ff6600;
    border-left-color: #ff6600;
    animation: spin 1s cubic-bezier(0.56,0,0.47,0.99) infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(720deg);
    }
}

/*---------------------------------*\
    # TEXT
\*---------------------------------*/
.ww-text--truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*---------------------------------*\
    # MEDIA QUERIES
\*---------------------------------*/

/* FOR SCREENS SMALLER THAN 520PX */
@media screen and (max-width: 520px){
    .portal-header_title-group{
        /* don't display the title on small screens*/
        display: none;
    }

    /*.menu-list-group_primary {*/
        /* make the primary menu full screen and float it */
        /*width: 80%;*/
        /*float: left;*/
    /*}*/

    .main-content {
        left: 0;
    }

    .main-content__animate {
        transition: none;
    }
}

@media print{
    .page-header {
        display: none;
    }

    .main-content_full{
        left: 0;
    }
    
    .hide-on-print {
        visibility: hidden;
    }

}

.selected {
    background: #ECECEC;
}
