body {
    height: auto;
}
a {
    color: #4191CE;
}
a:focus {
    outline: medium none;
}

form label {
    /* color: #555; */
    font-weight:600;
    /* margin-top: 15px; */
}

.noscroll {
	overflow: hidden;
}

button .fa-spinner {
    margin-left: 3px;
}

@media (max-width: 767px) {
    .rowclearcols .col-xs-1:nth-child(12n+1),
    .rowclearcols .col-xs-2:nth-child(6n+1),
    .rowclearcols .col-xs-3:nth-child(4n+1),
    .rowclearcols .col-xs-4:nth-child(3n+1),
    .rowclearcols .col-xs-6:nth-child(2n+1){
      clear: left;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .rowclearcols .col-sm-1:nth-child(12n+1),
    .rowclearcols .col-sm-2:nth-child(6n+1),
    .rowclearcols .col-sm-3:nth-child(4n+1),
    .rowclearcols .col-sm-4:nth-child(3n+1),
    .rowclearcols .col-sm-6:nth-child(2n+1){
      clear: left;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .rowclearcols .col-md-1:nth-child(12n+1),
    .rowclearcols .col-md-2:nth-child(6n+1),
    .rowclearcols .col-md-3:nth-child(4n+1),
    .rowclearcols .col-md-4:nth-child(3n+1),
    .rowclearcols .col-md-6:nth-child(2n+1){
      clear: left;
    }
}
@media (min-width: 1200px) {
    .rowclearcols .col-lg-1:nth-child(12n+1),
    .rowclearcols .col-lg-2:nth-child(6n+1),
    .rowclearcols .col-lg-3:nth-child(4n+1),
    .rowclearcols .col-lg-4:nth-child(3n+1),
    .rowclearcols .col-lg-6:nth-child(2n+1){
      clear: left;
    }
}




/* CHECKBOX SWITCH */
.checkbox.checkbox-switch {
    padding-left: 0;
}

.checkbox.checkbox-switch label,
.checkbox-inline.checkbox-switch {
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.checkbox.checkbox-switch label input,
.checkbox-inline.checkbox-switch input {
    display: none;
}
.checkbox.checkbox-switch label span,
.checkbox-inline.checkbox-switch span {
    width: 35px;
    border-radius: 20px;
    height: 18px;
    border: 1px solid #dbdbdb;
    background-color: rgb(255, 255, 255);
    border-color: rgb(223, 223, 223);
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.checkbox.checkbox-switch label span:before,
.checkbox-inline.checkbox-switch span:before {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgb(255,255,255);
    content: " ";
    top: 0;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.checkbox.checkbox-switch label > input:checked + span:before,
.checkbox-inline.checkbox-switch > input:checked + span:before {
    left: 17px;
}
.checkbox.checkbox-switch.checkbox-underlabel {
    margin: 4px 0 0 0;
}
.checkbox.checkbox-switch.checkbox-right span {
  float: right;
}
.checkbox.checkbox-switch.checkbox-right label {
  display: block;
}
.checkbox.checkbox-switch.checkbox-left span {
    float: left;
    margin-right: 10px;
}

/* Switch Default */
.checkbox.checkbox-switch label > input:checked + span,
.checkbox-inline.checkbox-switch > input:checked + span {
    background-color: #4191CE;
    border-color: #4191CE;
    box-shadow: #4191CE 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch label > input:checked:disabled + span,
.checkbox-inline.checkbox-switch > input:checked:disabled + span {
    background-color: rgb(220, 220, 220);
    border-color: rgb(220, 220, 220);
    box-shadow: rgb(220, 220, 220) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch label > input:disabled + span,
.checkbox-inline.checkbox-switch > input:disabled + span {
    background-color: rgb(232,235,238);
    border-color: rgb(255,255,255);
}
.checkbox.checkbox-switch label > input:disabled + span:before,
.checkbox-inline.checkbox-switch > input:disabled + span:before {
    background-color: rgb(248,249,250);
    border-color: rgb(243, 243, 243);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.checkbox.checkbox-switch.switch-sm {
    margin: 0;
}
.checkbox.checkbox-switch.switch-sm label > span {
    height: 15px;
    width: 30px;
    margin-top: -2px;
}
.checkbox.checkbox-switch.switch-sm label > input:checked + span::before {
    margin-left: 15px;
}


.bottomPlace {
    position: absolute;
    bottom: 0;
}



#alertbox {
	margin-top: 20px;
	margin-bottom: 20px;
}
#alertbox .alert:last-of-type {
	margin-bottom: 0px;
}
.smart-alerts__container {
	z-index: 99999;
}

.come-from-modal.left .modal-dialog,
.come-from-modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 95%;
    max-width: 800px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}
.come-from-modal.left.small .modal-dialog,
.come-from-modal.right.small .modal-dialog {
    max-width: 600px;
}

.come-from-modal.left .modal-content,
.come-from-modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0px;
}

.come-from-modal.left .modal-body,
.come-from-modal.right .modal-body {
    padding: 15px;
}
.come-from-modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.come-from-modal.right.fade.in .modal-dialog {
    right: 0;
}

.input-group {
    display: flex;
}
.input-group .form-control {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.input-group-addon {
    flex: content;
    display: flex;
    align-items: center;
}

span.block {
    display: block;
}

.stickyWrapper {
	min-height: 1px;
}
.sticky.stick {
	background-color: #fff;
    border-radius: 5px 0 0;
    bottom: 0;
    box-shadow: 0 0 8px -3px #333;
    padding: 10px;
    position: fixed;
    right: 0;
    z-index: 1;
}

.nowrap {
	white-space: nowrap;
}
.table tbody tr td.vatop {
    vertical-align: top;
}
.table tbody tr td.vabottom {
    vertical-align: bottom;
}
.sorting .fa::before {
    content: "\f0dc";
}
.sorting_asc .fa::before {
    content: "\f0de";
}
.sorting_desc .fa::before {
    content: "\f0dd";
}

th .fa-sort, th .fa-sort-up, th .fa-sort-down {
    display: none;
}
th.sorting .fa-sort {
    display: inline;
}
th.sorting_asc .fa-sort-up {
    display: inline;
}
th.sorting_desc .fa-sort-down {
    display: inline;
}

.wrapper .sidebar {
	z-index: 9999;
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,.6);
	z-index: 10000;
	display: none;
}
.overlay .closeoverlay {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    box-shadow: 0 0 5px 0;
    cursor: pointer;
    position: absolute;
    right: -8px;
    top: -8px;
    width: 20px;
    text-align: center;
    height: 20px;
    line-height: 20px;
}


#popupJSONContain {
	display: none;
	position: fixed;
	width: 98%;
	max-width: 900px;
	max-height: 98%;
	top: 5%;
	left: 0;
	right: 0;
	margin-right: auto;
	margin-left: auto;
	background-color: #fff;
	z-index: 10001;
	padding: 20px;
}


#popupWysiwygContain {
	display: none;
	position: fixed;
	width: 98%;
	max-width: 900px;
	max-height: 94vh;
    overflow: scroll;
	top: 5%;
	left: 0;
	right: 0;
	margin-right: auto;
	margin-left: auto;
	background-color: #fff;
	z-index: 10001;
	padding: 20px;
}
.previewWysiwygContain .editWysiwyg {
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: .1;
    transition: opacity .4s;
}
.previewWysiwygContain:hover .editWysiwyg {
    opacity: .8;
    z-index: 1;
}
.previewWysiwygContain {
    position: relative;
}
.previewWysiwygContain textarea {
	display: none;
}
.previewWysiwygContain .previewWysiwyg {
    padding: 8px;
    border: 1px solid #ddd;
    overflow-y: scroll;
    resize: vertical;
    height: 200px;
}



.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: #ccc;
}

.overrideWarning {
	margin-top: 30px;
	padding: 20px;
	display: none;
}
.overrideWarning h3 {
    margin-top: 0;
}

#mainContent .container-fluid {
    padding-right: 5%;
    padding-left: 5%;
}
#stickyNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.navbar {
    box-shadow: none;
    min-height: 1px;
    border: none;
}
.navbar-nav > li {
    margin-bottom: 0;
}
.navbar-nav > li > a {
    padding-top: 12px;
    padding-bottom: 12px;
}
#navbar_main {
    background-color: #464960;
    height: 46px;
}
#navbar_main .logo {
    margin-left: 10px;
    margin-top: 5px;
    max-width: 133px;
    width: 25%;
}
#navbar_main .recentSchool .logo .schoolThumb {
  width: 100%;
  display: inline;
}
#navbar_main .recentSchool .logo {
  width: 40px;
  display: inline-block;
  margin: 0 10px 0 0;
}
.navbar-default .navbar-nav > li > a {
    color: #fff;
}
.navbar-btn.navbar-right {
	margin-left: 0;
}
.sidebar__user {
	padding: 13px 20px;
}
.sidebar__user a {
    color: #fff;
}
.sidebar__nav > li > a:hover, .sidebar__nav > li.current > a {
    background-color: rgba(0, 0, 0, 0.08);
    color: #fff;
}
.sidebar__nav > li.recentSchool > a {
    padding: 5px 5px 5px 20px;
    font-size: .9em;
}
.sidebar__nav > li > a > svg {
    margin-right: 10px;
}

.form-group {
	position: relative;
}
label.topline {
    font-size: inherit;
    left: 10px;
    padding: 0;
    position: absolute;
    top: 6px;
    transition: all .2s;
    white-space: nowrap;
    color: #777;
}
label.topline.lg {
	font-size: 17px;
	left: 15px;
	top: 10px;
}
label.topline.minimize {
    background-color: transparent;
    font-size: 10px;
    left: 0;
    padding: 0 3px;
    top: -13px;
    color: #333;
}
.uneditable {
    background-color: #efefef;
}

#schoolBreadCrumbs {
    background: #fff;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
    display: none;
    transition: opacity .2s;
    z-index: 0;
}
#schoolBreadCrumbs.reveal {
	display: block;
	z-index: 10;
}
#schoolBreadCrumbs .divider {
	margin: 0 10px;
}



.nav-tabs > li.noInclude > a,
.nav-tabs > li.noInclude > a:hover {
    background-color: #efefef;
    color: #aaa;
}


.bg-orange .table tbody tr th, 
.bg-orange .table tbody tr td, 
.bg-orange .table thead tr th, 
.bg-orange .table thead tr td, 
.bg-orange .table tfoot tr th, 
.bg-orange .table tfoot tr td,
.panel-accent .table tbody tr th, 
.panel-accent .table tbody tr td, 
.panel-accent .table thead tr th, 
.panel-accent .table thead tr td, 
.panel-accent .table tfoot tr th, 
.panel-accent .table tfoot tr td {
    color: #fff;
}
.bg-orange a,
.panel-accent a {
    color: #eee;
}

.panel .table {
	margin-bottom: 0;
}
.panel-accent form label {
    color: #fff;
}
.alert .table {
    margin-bottom: 0;
}
.newrpm .table thead tr th {
    border-bottom-width: 0;
}
.newrpm .table-condensed > tbody > tr > td {
	border-top: none;
}
.editform {
	display: none;
}
.form-horizontal .checkbox .control-label {
    text-align: left;
}

.sidebar__user > h5 {
    color: #fff;
    text-transform: uppercase;
}

#mainContent {
	position: relative;
	padding-bottom: 50px;
	min-height: calc(100vh - 47px);
    margin-top: 47px;
}
#mainContent .panel.panel-header {
    border-radius: 0;
    border: none;
}



#datatables_schools .actions a:first-child {
    margin-left: 0;
}
#datatables_schools .actions a {
    margin-left: 5px;
}
.lockUsers {
    color: #a94442;
}



.inline-groups .form-group {
    float: left;
    margin-bottom: 0;
    margin-right: 15px;
}

.sortingshow {
	display: none;
}

.btnNew {
    margin-top: 25px;
}


.btn-boolean {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease 0s;
    margin-bottom: 3px;
}
.btn-true {
	background-color: #1684DE;
    color: #fff;
}
.btn-false {
    background-color: #D10A39;
    color: #fff;
}
.btn-show-hide {
	width: 49%;
	overflow: hidden;
}
.btn-boolean.btn-true:hover {
    color: #fff;
}
.btn-boolean:hover {
    color: #333;
    box-shadow: 0 0 6px 0 #999;
}
.inline-groups {
    margin-bottom: 12px;
}

.showtext > div {
	border: 1px solid #d9d9d9;
    border-radius: 3px;
    padding: 8px;
}


.sluglookup {
    position: absolute;
    right: 5px;
    bottom: 5px;
}
.sluglookup.unique::after {
    content: "Unique";
    color: #1684DE;
}
.sluglookup.duplicate::after {
    content: "Duplicate";
    color: #D00A32;
}
.sluglookup.working::after {
    content: "\f110";
    font-family: "Fontawesome";
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    display: inline-block;
}


.contactSection {
	padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}
.contactSection:nth-child(1) {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}
.contactSection .row {
    margin-left: -2.5px;
    margin-right: -2.5px;
}
.contactSection .col-xs-1, .contactSection .col-sm-1, .contactSection .col-md-1, .contactSection .col-lg-1, .contactSection .col-xs-2, .contactSection .col-sm-2, .contactSection .col-md-2, .contactSection .col-lg-2, .contactSection .col-xs-3, .contactSection .col-sm-3, .contactSection .col-md-3, .contactSection .col-lg-3, .contactSection .col-xs-4, .contactSection .col-sm-4, .contactSection .col-md-4, .contactSection .col-lg-4, .contactSection .col-xs-5, .contactSection .col-sm-5, .contactSection .col-md-5, .contactSection .col-lg-5, .contactSection .col-xs-6, .contactSection .col-sm-6, .contactSection .col-md-6, .contactSection .col-lg-6, .contactSection .col-xs-7, .contactSection .col-sm-7, .contactSection .col-md-7, .contactSection .col-lg-7, .contactSection .col-xs-8, .contactSection .col-sm-8, .contactSection .col-md-8, .contactSection .col-lg-8, .contactSection .col-xs-9, .contactSection .col-sm-9, .contactSection .col-md-9, .contactSection .col-lg-9, .contactSection .col-xs-10, .contactSection .col-sm-10, .contactSection .col-md-10, .contactSection .col-lg-10, .contactSection .col-xs-11, .contactSection .col-sm-11, .contactSection .col-md-11, .contactSection .col-lg-11, .contactSection .col-xs-12, .contactSection .col-sm-12, .contactSection .col-md-12, .contactSection .col-lg-12 {
    padding-left: 2.5px;
    padding-right: 2.5px;
}
.contactSection .form-group {
    margin-bottom: 10px;
}
.contactSection .contactName {
    font-weight: bold;
}
.addPhone, .addEmail {
	margin-left: 10px;
}
.dragicon {
    cursor: move;
}
#contactList.activesorting .contactDetail {
    display: none;
}
#contactList.activesorting .contactSection {
    padding-top: 0;
    margin-top: 0;
    border: none;
}

.actionIcons {
    padding-top: 5px;
}
.actionIcons > * {
    margin-left: 5px;
}



.quickDates {
    display: none;
    cursor: pointer;
}
.quickDates::before {
    font-family: "Fontawesome";
    content: "\f0ea";
    margin-right: 3px;
}
#quickShow, #quickHide {
    float: right;
}
/* #ui-datepicker-div {
    z-index: 99999 !important;
}
.datepicker {
	width: 0;
	opacity: 0;
	height: 0;
	padding: 0;
	border: none;
	background: transparent;
} */

.schoolThumb {
    margin: 0 auto;
    display: block;
	max-height: 20px;
}

#schoolContain {
	margin-bottom: 40px;
}

#schoolSettingsFRM, #yearSettingsFRM {
    padding-bottom: 30px;
}
.yearSettings, .menuSettings {
    margin-left: 10px;
}
#yearStatus {
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 11px;
    color: #999;
  }
.space-items-inline > * {
    margin-left: 10px;
}
.space-items-inline > *:first-child {
    margin-left: 0;
}

#changeYear .fa-circle,
#changeProduct .fa-circle {
  color: #e57373;
  margin-right: 5px;
}
#changeYear .current .fa-circle,
#changeProduct .current .fa-circle {
  color: #00B200;
}
#changeYear .previous .fa-circle {
  color: yellow;
}
#changeYear .test .fa-circle {
  color: orange;
}

#markedForReview::before {
    content: "Marked for review until ";
}

#searchTranslationsContainer {
    margin-top: 20px;
}
.translation {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.languagePill.hasTranslation {
    background-color: #4191CE;
    color: #fff;
}
.languagePill.hasCustomTranslation {
    background-color: yellow;
    color: inherit;
}
.panel-body :first-child {
    margin-top: 0;
}
.languagePill {
    line-height: 1;
    padding: 1px 4px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: inline-block;
    margin: 0 3px 3px 0;
    font-size: 11px;
}

.d-flex {
    display: flex;
}
.flexrow {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
}
.flexcol {
    margin-right: 15px;
    margin-left: 15px;
}
.flex-auto {
    flex: auto;
}

.navbar-notification {
    background-color: #4191CE;
    top: 8px;
}
.schoolSettings .navbar-notification {
    display: none;
}
.schoolSettings.withNote .navbar-notification {
    display: block;
}

.recentSchoolCard .userInfo {
    position: absolute;
    right: 5px;
    top: 2px;
    font-size: 12px;
}
.recentSchoolCard .userInfo > * {
    margin-left: 5px;
}

#recentSchools {
    margin-bottom: 20px;
}
#recentSchools .recentSchoolCard {
    position: relative;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
    background: #fff;
    box-shadow: 0 0 10px 0px #ddd;
}
#recentSchools .schoolThumb {
    display: inline-block;
    margin: 0 10px 0 0;
}


.pageFRM .parents {
    float: left;
    display: none;
    margin-right: 15px;
}
.pageFRM .viewingLevel {
    float: left;
    width: 100%;
}
.pageFRM .parents .parentTab {
    writing-mode: vertical-lr;
    background-color: #464960;
    color: #fff;
    padding: 15px 8px;
    margin-right: 2px;
    height: 100%;
    cursor: pointer;
    display: none;
    width: 38px;
    float: left;
    justify-content: flex-end;
}
.pageFRM .parents .parentTab > span {
    position: sticky;
    top: 100px;
}
.pageFRM .parents .parentTab > span > svg {
    /* transform: rotate(-90deg); */
    margin-bottom: 5px;
}

/* .nav-tabs > li.pageTab.active > a:hover {
	cursor: move;
} */
.nav-tabs li.changed a::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #D00A32;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}
#pagesMenu .pageTab .dragicon {
    cursor: pointer;
}
#pagesMenu .pageTab.deleted a {
    text-decoration: line-through;
}
body a:focus {
    box-shadow: unset;
}
.itemTypeIcon .svg-inline--fa {
  display: none;
  font-size: 19px;
}


.dropdown-menu.chooseIcon {
    padding: 15px;
}
.blockIcons {
    display: flex;
    max-width: 800px;
    flex-wrap: wrap;
    margin: 0 -5px -5px;
    align-items: center;
}
.blockIcon {
    flex: 1;
    margin: 0 5px 10px;
    padding: 5px;
    background-color: #f5f5f5;
    border-radius: 10px;
    max-width: 30px;
    display: block;
}
.blockIcon > svg.svg-inline--fa {
    width: 20px;
    height: auto;
}

.pageItemLoading {
    min-height: 60vh;
    text-align: center;
    padding-top: 20vh;
    background-color: #efefef;
    font-size: 30px;
}
.pageItemLoading::before {
    content: "Page Loading";
    margin-right: 15px;
}
.pageItemLoading::after {
    content: "\f110";
    font-family: fontawesome;
    animation: fa-spin 2s infinite linear;
    -webkit-animation: fa-spin 2s infinite linear;
    display: inline-block;
}
.pageFRM .viewingLevel .content {
    position: relative;
    min-height: 60vh;
}
.pageFRM .viewingLevel .content.moving {
    overflow: hidden;
    margin-top: -10px;
}
.pageFRM .viewingLevel .pageItems {
    margin-bottom: 15px;
    display: none;
    width: 100%;
}
.pageFRM .viewingLevel .content.moving .pageItems {
    position: absolute;
    top: 0;
    left: 0;
}
.pageFRM .viewingLevel .pageItem .pageItemHeader {
    color: #999;
    font-size: 1.5em;
}

li.created {
    font-size: .9em;
    padding: 10px 20px 0;
}

.pageFRM .viewingLevel .pageItem .pageItemHeader .itemMenu {
    cursor: pointer;
    padding: 5px 10px;
    margin: -5px -10px;
}
.pageFRM .viewingLevel .pageItemSmall {
    position: relative;
    display: none;
    padding: 5px 10px;
    background-color: #fff;
    margin-bottom: 10px;
    cursor: pointer;
}
.pageFRM .viewingLevel .pageItem {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px #ccc;
    position: relative;
}
.pageFRM .viewingLevel .pageItemSmall .itemActions {
    position: absolute;
    right: 5px;
    top: calc(50% - 10px);
}

#movePageItem ul .currentLevel {
    color: #ddd;
}
#movePageItem ul {
    margin-left: 20px;
}
#copyMoveSchoolPageItemFRM ul {
    margin-left: 20px;
  }
  #copyMoveSchoolPageItemFRM ul:first-child {
    margin-left: 0;
  }
/* .itemMoveModal {
    color: #999;
    font-size: 1.2em;
} */
.pageFRM .viewingLevel .changeView-edit {
    display: none;
}
.pageFRM.showSmall .viewingLevel .content {
    margin-top: 20px;
    display: flex;
}
.pageFRM.showSmall .viewingLevel .pageItemSmall,
.pageFRM.showSmall .viewingLevel .changeView-edit {
    display: block;
}
.pageFRM.showSmall .viewingLevel .pageItem,
.pageFRM.showSmall .viewingLevel .addContentBlockContain,
.pageFRM.showSmall .viewingLevel .changeView-rearrange {
    display: none;
}
.pageFRM .viewingLevel .pageItem .btn {
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.pageFRM .viewingLevel .pageItem .btn.removeFile {
    margin-right: 5px;
}
.pageFRM .viewingLevel .pageItem.type-content .itemTypeIcon .svg-inline--fa.fa-code { display: inline-block; }
.pageFRM .viewingLevel .pageItem.type-file .itemTypeIcon .svg-inline--fa.fa-file-pdf { display: inline-block; }
.pageFRM .viewingLevel .pageItem.type-site .itemTypeIcon .svg-inline--fa.fa-link { display: inline-block; }
.pageFRM .viewingLevel .pageItem.type-break.break0 .itemTypeIcon .svg-inline--fa.fa-level-down-alt { display: inline-block; }
.pageFRM .viewingLevel .pageItem.type-break.break1 .itemTypeIcon .svg-inline--fa.fa-arrow-alt-circle-down { display: inline-block; }
.pageFRM .viewingLevel .pageItem.type-break.break2 .itemTypeIcon .svg-inline--fa.fa-arrow-alt-circle-up { display: inline-block; }

#bulkItemChangeFRM .itemTypeSite,
#bulkItemChangeFRM .itemTypeFile {
    display: none;
}
#bulkItemChangeFRM .itemType[value="site"] ~ .itemTypeSite,
#bulkItemChangeFRM .itemType[value="button"] ~ .itemTypeSite,
#bulkItemChangeFRM .itemType[value="flip"] ~ .itemTypeSite,
#bulkItemChangeFRM .itemType[value="file"] ~ .itemTypeFile {
    display: block;
}

.pageFRM .viewingLevel .deletedItem {
    display: none;
    background-color: rgba(208, 10, 50, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    border-radius: 5px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.pageFRM .viewingLevel .deletedItem::before {
    content: "Click to Restore";
    font-size: 3em;
    color: #666;
    text-shadow: 0 0 2px #fff;
}
.pageFRM .viewingLevel .pageItemSmall .deletedItem::before {
    font-size: 1.5em;
}


.pageItemDetails .viewGroup {
    font-size: large;
}
.pageItems > .viewGroup {
    margin-top: 30px;
}
.pageItemDetails .addFile, .pageItemDetails .removeFile {
    cursor: pointer;
}
.pageItemDetails .mediaImageContainer {
    padding: 20px;
    border: 2px dashed #8c8f94;
    border-radius: 5px;
    min-height: 120px;
}

.pageItemsExcerpt {
    width: auto;
}
.pageItemsExcerpt > tbody > tr > th, .pageItemsExcerpt > tbody > tr > td {
    border-top: none;
    padding: 5px;
}
.pageItemsExcerpt > tbody > tr > th {
    padding-right: 15px;
}
.pageItemsExcerpt > tbody > tr > td {
    color: #333;
}
.pageItemsExcerpt > tbody > tr > th .svg-inline--fa {
    width: 15px;
    margin-right: 5px;
}

.addContentBlockContain {
    margin: 30px 0;
    text-align: center;
    background: #ddd;
    height: 1px;
  }
.addContentBlockContain button {
    margin-top: -22px;
    background: #fff;
    border: 1px solid #ddd;
    color: #4191CE;
    border-radius: 25px;
}
.addContentBlockContain button svg {
    color: #ddd;
}
.addContentBlockContain.belowBreak .dropdown-menu {
    top: auto;
    bottom: calc(100% + 23px);
}
/* .addContentBlock > .svg-inline--fa { */
.dropdown-menu li > a > .svg-inline--fa {
    margin-right: 10px;
    width: 15px;
}
.dropdown-menu > li:last-child {
    margin-bottom: 0;
}

.removeDate {
    cursor: pointer;
}
.showHideDates svg {
    margin-right: 5px;
}
.pageItemDetails a.showHideDates.outofbounds {
    color: #a94442;
}

.showHideDate {
    width: 50%;
    display: inline-block;
    line-height: 1.5 !important;
}
.showHideDate.OB {
    background-color: #D10A39;
    color: #fff;
}
.showHideDate.IB {
    background-color: #1684DE;
    color: #fff;
}
.itemTypeIcon {
  display: inline-block;
  width: 37px;
  text-align: center;
  cursor: move;
}
.pageItem.type-file .itemFile {
	display: inline-block;
}
.pageItem.type-site .itemSite {
	display: inline-block;
}
.pageItem.type-break .itemBreak {
	display: block;
}
.pageItem.type-content .itemContent {
	display: block;
}
.pageItems.activesorting .pageItemDetails {
    display: none;
}
.pageItems.activesorting .pageItem {
	margin-top: 5px;
	margin-bottom: 5px;
}
.pageItemDetails textarea {
    padding: 0 8px;
    line-height: 2;
    min-height: 30px;
    box-shadow: 0 0 0 transparent;
    border-radius: 4px;
    border: 1px solid #8c8f94;
    background-color: #fff;
    color: #2c3338;
}

form .itemBreak .radio label {
    margin-top: 0;
    margin-right: 10px;
}
.itemBreak .btn.btn-sm {
  background-color: rgba(0, 0, 0, 0.2);
}
form .itemBreak input[type="radio"] + label::before {
  display: none;
  padding-left: 0;
}
form .itemBreak input[type="radio"] + label {
  padding-left: 10px;
}
form .itemBreak input[type="radio"]:checked + label {
	background-color: #1684DE;
	color: #fff;
}

.menuList > li {
    border: 1px solid #ddd;
    padding: 5px 10px;
    background-color: #efefef;
    margin-bottom: 0;
    margin-top: 5px;
    position: relative;
}
.menuList .menuList {
    margin: 15px 25px;
}
.menuList .menuList > li:first-child {
    margin-top: 5px;
}
.menuList .menuList {
    margin: 15px 0 10px 15px;
}
.menuList .actions {
    display: flex;
    align-items: center;
    margin-top: 7px;
}
.menuList .dragicon {
    margin-right: 10px;
}
.addMenuItem {
    margin-top: 23px;
}
.menuList .deletedMenuItem {
    display: none;
    background-color: rgba(208, 10, 50, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.menuList .deletedMenuItem::before {
    content: "Click to Restore";
    font-size: 2em;
    color: #666;
    text-shadow: 0 0 2px #fff;
}
.menuList input[type="text"] {
    margin-right: 5px;
}



.button, .btnBlue, .btnRed {
    position: relative;
    padding: 10px 24px;
    border-style: solid;
    border-width: 2px;
    border-color: #407ec9;
    border-radius: 5px;
    background-color: #407ec9;
    /* box-shadow: inset 0 0 100px 100px transparent; */
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    -webkit-transition: box-shadow 200ms ease;
    transition: box-shadow 200ms ease;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
  }
  
  .button:hover {
    box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }
.toolBtnContain {
	position: relative;
}
.delBtn, .moveBtn, .insertBtn, .copyBtn {
    position: absolute;
    right: -5px;
    top: 50%;
    background: #41DDAA;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    text-align: center;
    line-height: 18px;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    transition: opacity .4s;
    font-size: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 5px -2px #333;
}
.moveBtn {
	right: auto;
	left: -5px;
}
.insertBtn {
	top: -5px;
}
.copyBtn {
	top: 30px;
}
.delBtn {
    color: #fff;
    border-color: #D00A32;
    background-color: #D00A32;
}
.dropdown-menu > li > a.text-danger {
    color: #a94442;
}
.delItem > svg,
.insertItem > svg,
.copyItem > svg {
    flex: 1;
}
.toolBtnContain:hover > .moveBtn {
	opacity: 1;
}
.toolBtnContain:not(.ui-sortable-helper):hover > .delBtn,
.toolBtnContain:not(.ui-sortable-helper):hover > .insertBtn,
.toolBtnContain:not(.ui-sortable-helper):hover > .copyBtn {
    opacity: 1;
}


#movePageItem li {
    margin-bottom: 15px;
}


.mediaImageContainer {
	position: relative;
    padding: 20px;
    border: 2px dashed #8c8f94;
    border-radius: 5px;
    min-height: 120px;display: flex;
    align-items: center;
    justify-content: center;
}
.mediaImageContainer.default::after {
    content: "Default";
    position: absolute;
    bottom: 2px;
    background-color: rgba(252, 252, 252, .5);
    padding: 2px 8px;
    border-radius: 5px;
}
.mediaImageContainer .chosenImage {
	display: block;
	max-width: 100%;
	max-height: 250px;
    margin: 0 auto;
}
.mediaImageContainer .media-btns {
	position: absolute;
	top: 5px;
	left: 5px;
	clear: both;
	opacity: 0;
	transition: opacity .5s;
}
.mediaImageContainer .media-btn {
	cursor: pointer;
	width: 25px;
	height: 25px;
	background: rgba(51,51,51,.7);
	color: #fff;
	text-align: center;
	border-radius: 50%;
	line-height: 25px;
	font-size: 12px;
	margin-right: 5px;
	float: left;
}
@media (max-width: 1024px) {
	.mediaImageContainer .media-btns {
		opacity: 1;
		position: relative;
		top: 0;
		left: 0;
		margin-bottom: 5px;
	}
}
.mediaImageContainer:not(.noImage) .addImageContain {
    display: none;
}
.mediaImageContainer .addImageContain {
    text-align: center;
    font-size: 1.2em;
}
.mediaImageContainer .addImageContain svg {
    font-size: 1.5em;
}
.mediaImageContainer .media-btn.addImage { left: 5px; }
.mediaImageContainer .media-btn.delImage { left: 35px; }
.mediaImageContainer:hover .media-btns { opacity: 1; }
.mediaImageContainer.noImage .media-btns,
.mediaImageContainer.noImage .chosenImage {
	display: none;
}

#editschoolFRM img {
	max-width: 100%;
}
.page-header img#titleImg {
    height: 30px;
    margin-right: 5px;
}
.carrierDefaultImg, .schoolHomeDefaultImg {
	display: block;
	max-width: 100%;
}

.yearFRM .form-group img {
	max-width: 100%;
	max-height: 120px;
}

.wysiwygEditContain .wysiwygPreview {
    width: calc(100% - 43px);
    float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 5px 10px;
	border: 1px solid #ddd;
}
.wysiwygEditContain .editWysiwyg {
    width: 38px;
    display: block;
    float: left;
    margin-right: 5px;
}

.saveSchool .fa-spinner, 
.saveCarrier .fa-spinner, 
.saveFAQ .fa-spinner, 
.delSchool .fa-spinner, 
.copySchool .fa-spinner, 
.delCarrier .fa-spinner, 
.delFAQ .fa-spinner, 
.copyCarrier .fa-spinner {
	display: none;
}

footer.footer {
	position: absolute;
	bottom: 0;
}

.addPage, .addYear {
	/* font-weight: 600; */
	color:#41DDAA !important;
}


#customNavs {
    margin-bottom: 15px;
}
.customnavitem .moveNav {
    top: 5px;
}
.customnavitem .delNav {
    top: 14px;
    right: 11px;
}


.pageSettings {
    position: sticky;
    top: 100px;
  }
.pageSettings .content {
    background: #efefef;
    padding: 15px;
}
.pageSettings .content hr {
    border-top: 1px solid #ddd;
}
.pageSettings .created {
    margin-top: 30px;
    color: #999;
}
#datatables_ahp_users .copyPassword {
    position: absolute;
    right: 40px;
    top: 15px;
    cursor: pointer;
}
#datatables_ahp_users .regeneratePassword {
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.nav-tabs.nav-tabs-clean > li > a {
    border: none;
    color: #333;
}
.nav-tabs.nav-tabs-clean > li:first-of-type > a {
    padding-left: 0;
}
.nav-tabs.nav-tabs-clean > li:last-of-type > a {
    padding-right: 0;
}
.nav-tabs.nav-tabs-clean > li.active > a,
.nav-tabs.nav-tabs-clean > li.active > a:hover,
.nav-tabs.nav-tabs-clean > li.active > a:focus {
    background-color: transparent;
    font-weight: normal;
    color: #4191CE;
    border: none;
}
.nav-tabs.nav-tabs-clean > li.noInclude > a, 
.nav-tabs.nav-tabs-clean > li.noInclude > a:hover {
    background-color: transparent;
    color: #ddd;
}
.nav-tabs.nav-tabs-clean > li.active > a::before {
    content: none;
    position: inherit;
    top: auto;
    left: auto;
    right: auto;
    border-top: none;
}
.nav-tabs > li > a.text-success { color: #3c763d; }
.nav-tabs > li > a.text-warning { color: yellow; }
.nav-tabs > li > a.text-danger { color: #a94442; }


/* SETTINGS */
.notelink svg[data-prefix="fas"] {
    display: none;
}
.notelink.hasNote svg[data-prefix="fas"] {
    display: inline-block;
}
.notelink.hasNote svg[data-prefix="far"] {
    display: none;
}
#adminsettings .contactName {
    font-weight: bold;
}

.scopespecific {
    display: none;
}

.translation .keeponeline {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.translation .keeponeline > span:hover {
    text-decoration: underline;
    cursor: pointer;
  }


.pageItem .previewWysiwyg table {
	margin: 30px 0 50px;
}
.pageItem .previewWysiwyg table,
.pageItem .previewWysiwyg thead,
.pageItem .previewWysiwyg tr,
.pageItem .previewWysiwyg td {
	border: none;
}
.pageItem .previewWysiwyg thead {
	font-weight: 700;
}
.pageItem .previewWysiwyg td {
	padding: 6px;
}
/* Apply background color to even rows */
.pageItem .previewWysiwyg tbody tr:nth-child(2n+1) {
  background-color: #f2f2f2;
}