body {
  font-family: ProximaNova-Regular;
  font-size: 16px;
  color: #343a41;
  -webkit-font-smoothing: antialiased;
}
body.modal-open.quick_assign {
  padding-right: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: ProximaNova-Bold;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

.center {
  text-align: center;
}

img.center {
  margin: 0 auto;
  padding: 20px 0;
}

input {
  text-overflow: ellipsis;
}

input[placeholder] {
  text-overflow: ellipsis;
}

::-moz-placeholder {
  text-overflow: ellipsis;
}

/* firefox 19+ */
input:-moz-placeholder {
  text-overflow: ellipsis;
}

.visible {
  display: block;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.relative {
  position: relative;
}

.bold_face {
  font-family: ProximaNova-Bold;
  font-weight: normal;
}

.title_bar.text_left,
.text_left {
  text-align: left;
}

.title_bar .center {
  text-align: center;
}

h1,
h2,
h3,
h4 {
  margin: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p.large {
  font-size: 18px;
}

p.xlarge {
  font-size: 20px;
}

p.small {
  font-size: 14px;
}

p.xsmall {
  font-size: 13px;
}

/*------- LOADING --------*/
.loading_progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  display: block;
  width: 100%;
  background-color: #c3f257;
  border-radius: 2px;
  background-clip: padding-box;
  overflow: hidden;
  z-index: 100;
}

.loading_progress .determinate {
  position: absolute;
  background-color: inherit;
  top: 0;
  bottom: 0;
  background-color: #c3f257;
  transition: width 0.3s linear;
}

.loading_progress .indeterminate {
  background-color: #a4d23b;
}

.loading_progress .indeterminate:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.loading_progress .indeterminate:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

.no-border-right {
  border-right: 0 !important;
}

.no-border-left {
  border-left: 0 !important;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

.circle {
  border-radius: 50%;
}

.container-fluid {
  max-width: 1024px;
  margin: auto;
}

.hidden_for_accessibility {
  position: absolute;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

/*--------- BOXES --------*/
.box {
  position: relative;
  width: 100%;
}

.box:before {
  content: '';
  display: block;
}

.box-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.box-container {
  display: table;
  width: 100%;
  height: 100%;
}

.box-span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

/*------ BUTTONS ------*/
.clear_button {
  background: none;
  border: 0;
}

.button_container_left {
  padding-right: 5px;
}

.button_container_right {
  padding-left: 5px;
}

.default_button {
  padding: 8px 15px;
  border-radius: 6px;
  border: none;
  font-size: 18px;
  font-family: ProximaNova-Bold;
  box-sizing: border-box;
  min-width: 100px;
  font-weight: normal;
  text-align: center;
  line-height: 24px;
  height: 40px;
}

.block_button {
  width: 100%;
}

.default_button.border {
  border: 1px solid #909396;
  background: #fff;
  color: #909396;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.default_button.icon {
  padding: 8px;
  min-width: 40px;
}

.default_button:not(.icon) img {
  display: inline-block;
  margin-right: 5px;
}

.default_button.circular {
  line-height: 33px;
  border-radius: 100%;
}

.default_button.sm {
  font-size: 16px;
  line-height: 20px;
  height: 36px;
}

.default_button.lg {
  font-size: 20px;
  line-height: 28px;
  height: 50px;
}

.toggle_buttons,
.segmented_ctrls {
  font-size: 0;
}

.toggle_buttons .default_button:nth-child(1) {
  border-radius: 6px 0 0 6px;
  display: inline-block;
  vertical-align: middle;
}

.toggle_buttons .default_button:nth-child(2) {
  border-radius: 0 6px 6px 0;
  border-left: 0;
  display: inline-block;
  vertical-align: middle;
}

.toggle_buttons .active {
  cursor: default;
}

.button-pack {
  display: inline-block;
}

.button-pack button:first-of-type,
.button-pack button:nth-of-type(2),
.button-pack button:nth-of-type(3) {
  margin-right: 8px;
  margin-bottom: 8px;
}

.button-pack button:last-of-type {
  margin-right: 0;
}

/*---- Duplicating toggle buttons until all instances are properly replaced ----*/
.segmented_ctrls .default_button:nth-child(1) {
  border-radius: 6px 0 0 6px;
  display: inline-block;
  vertical-align: middle;
}

.segmented_ctrls .default_button:nth-child(2) {
  border-radius: 0 6px 6px 0;
  border-left: 0;
  display: inline-block;
  vertical-align: middle;
}

.segmented_ctrls .active {
  cursor: default;
}

.modal_button,
.two_state_button {
  background: none;
  border: 0;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
}

.modal_button {
  width: 100%;
  height: 100%;
}

.modal_button_container {
  display: none;
}

@keyframes showNav {
  from {
    top: 100%;
    /*display: none;*/
  }

  to {
    top: 0;
    /*display: block;*/
  }
}

.two_state_button .state_2 {
  top: 100%;
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  padding: 0 20px;
}

.two_state_button.active .state_1 {
  display: none;
}

.two_state_button.active .state_2 {
  display: table;
  animation: showNav 250ms ease-in-out both;
  text-align: center;
}

.two_state_button.active .state_2_container {
  display: table-cell;
  vertical-align: middle;
}

/*.two_state_button.active .state_2,*/
.modal_button_wrapper {
  position: relative;
}

.modal_button_wrapper.open > .modal_button_container {
  display: block;
  width: 182px;
  height: 182px;
  position: absolute;
  background: rgba(52, 58, 65, 0.9);
  top: -182px;
  /*left: 30%;*/
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  padding: 10px;
  border-radius: 6px;
}

.modal_button_wrapper.open > .modal_button_container:before,
.modal_button_wrapper.open > .modal_button_container:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.modal_button_wrapper.open > .modal_button_container:after {
  border-top-color: rgba(0, 0, 0, 0.5);
  border-width: 10px;
  margin-left: -10px;
}

.close_modal_button {
  background: none;
  border: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  height: 30px;
  float: right;
}

.fullscreen .close_modal_button {
  height: 32px;
  width: 20px;
}

.fullscreen .close_modal_button img {
  width: 100%;
}

.spinner_button {
  position: relative;
}

.spinner_button.active {
  text-align: right;
}

.spinner_button img {
  opacity: 1;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}

.spinner_button.active img {
  width: 0;
  /*display: none;*/
}

.spinner_button.spinner:before {
  width: 20px;
  height: 20px;
  left: 10px;
  top: 9px;
  opacity: 0;
}

.two_state_button.spinner_button.in:before,
.spinner_button.active:before {
  opacity: 1;
}

.spinner_button:after {
  content: '';
  display: inline-block;
  /*height: 100%;*/
  width: 0px;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -moz-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -moz-transition-property: width;
  -o-transition-property: width;
  -webkit-transition-property: width;
  transition-property: width;
  float: right;
}

.two_state_button.spinner_button.in:after,
.spinner_button.active:after {
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  width: 20px;
}

.two_state_button.spinner_button.active:before,
.two_state_button.spinner_button.active:after {
  display: none;
}

.two_state_button.spinner_button.in .state_1 {
  margin-left: 20px;
}

.add_button {
  background: #fff;
  max-width: 556px;
  min-height: 40px;
  width: 100%;
  text-align: left;
  padding: 5px 10px 5px 10px;
  border-radius: 4px;
  font-family: ProximaNova-Bold;
  font-size: 18px;
  line-height: 20px;
}

.add_button_content {
  display: inline-block;
  width: 90%;
}

.add_button_handler {
  font-size: 22px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  float: right;
}

.add_button .confirmation {
  display: none;
}

.add_button.active .confirmation {
  display: block;
}

.add_button.active .add_button_handler,
.add_button.active .add_button_content {
  display: none;
}

.add_button.disabled {
  cursor: not-allowed;
  background-color: #f3f3f3;
  border-color: #ccc;
  color: #ccc;
}

.add_button.disabled:hover {
  background: #f3f3f3;
  color: #ccc;
}

/*------------ CART -----------*/
.cart_container {
  position: relative;
  text-align: right;
}

.cart_button {
  border: 0;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #009999;
  /*float: right;*/
  z-index: 1;
  right: 25px;
}

.cart_button:focus {
  outline: 0;
  border: 0;
}

.cart_counter {
  width: 30px;
  height: 30px;
  background-color: #f16d36;
  position: absolute;
  top: -15px;
  right: 15px;
  color: #fff;
  border-radius: 100%;
  line-height: 30px;
  z-index: 3;
  text-align: center;
}

.cart_list {
  visibility: hidden;
  width: 320px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 2px 2px 0 rgba(1, 72, 72, 0.3);
  border: solid 1px #009999;
  position: absolute;
  right: 15px;
  top: 0;
  padding: 30px 20px;
  transform: translateY(-2em);
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  z-index: 2;
  text-align: left;
}

.cart_title {
  font-family: ProximaNova-Bold;
  color: #343a41;
  padding: 5px 0;
}

.cart_item {
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
  position: relative;
}

.cart_handler {
  position: absolute;
  top: 7px;
  right: 0;
  border: 1px solid #009999;
  color: #009999;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  line-height: 17px;
  text-align: center;
  font-size: 14px;
  background: none;
  padding: 0;
}

.cart_handler .fa {
  line-height: 20px;
}

.cart_container.open .cart_list {
  transition-delay: 0s, 0s, 0.3s;
  transform: translateY(0%);
  visibility: visible;
}

/*-------- PILLS --------*/
.default_pill {
  display: inline-block;
  background: #f3f3f3;
  padding: 10px 20px;
  border-radius: 20px;
  /* font-size: 18px; */
  font-family: ProximaNova-Bold;
  color: #666;
}

.default_pill.sm {
  padding: 0 25px;
  line-height: 30px;
}

.success_pill {
  background: #dff0d8;
  color: #343a41;
}

.danger_pill {
  background: #f2dede;
  color: #cc3300;
}

.pill_action {
  background: none;
  border: 0;
  float: right;
  color: #009999;
  padding-left: 10px;
}

.default_pill_button,
button.default_pill {
  border: 0;
  background: #f3f3f3;
  color: #009999;
}

.default_pill_button:active,
.default_pill_button:hover,
button.default_pill:active,
button.default_pill:hover {
  background: #ccf5f5;
  color: #006666;
}

/*---- ANNOUNCMENT ----*/
.announcment_alert {
  position: relative;
  z-index: 999999;
}

.announcment_alert[data-position='top-full'] {
  width: 100%;
  top: 0;
  left: 0;
  background: #aa4d85;
  text-align: left;
  color: #fff;
  min-height: 62px;
  padding: 22px;
}

.announcment_alert[data-position='top-full'] a {
  color: #ffffff;
}

.announcment_alert[data-position='top'] {
  top: 12px;
  right: 12px;
  background: #ffffff;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  cursor: pointer;
}

.announcment_alert[data-position='top-full'] .announcment_alert_container {
  display: flex;
}
/* .announcment_alert .go_to_myb{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  font-weight: bold;
  color: #ffffff;
}

.announcment_alert[data-position='top'] button.toast-close-button {
  color: #009999;
  position: absolute;
  right: 20px !important;
  top: 20px !important;
  line-height: 20px;
  padding-left: 18px !important;
  padding-bottom: 18px !important;
  font-size: 26px;
  z-index: 1;
}

.announcment_alert[data-position='top'] > div {
  max-width: 320px;
  font-size: 16px;
  font-family: ProximaNova-Regular;
  color: #343a41;
  background: #ffffff;
  border-radius: 4px;
  text-align: left;
}

/* .toaster_message_div a {
    color: #FCDB58;
    font-family: ProximaNova-Bold;
} */
.announcment_alert .toaster_message_div a:hover,
.announcment_alert .toaster_message_div a:focus,
.announcment_alert .toaster_message_div a:active {
  text-decoration: underline;
}

.announcment_alert[data-position='top-full'] a:hover,
.announcment_alert[data-position='top-full'] a:focus,
.announcment_alert[data-position='top-full'] a:active {
  color: #fff;
}

.announcment_alert[data-position='top'] a:hover,
.announcment_alert[data-position='top'] a:focus,
.announcment_alert[data-position='top'] a:active {
  color: #007171;
}

.announcment_alert[data-position='top'] .login_toaster_link:hover,
.announcment_alert[data-position='top'] .login_toaster_link:focus,
.announcment_alert[data-position='top'] .login_toaster_link:active {
  color: #fff;
}

/* .announcment_alert .toaster_message_div:not(.assignment_toastr) a:hover,
.announcment_alert .toaster_message_div:not(.assignment_toastr) a:focus,
.announcment_alert .toaster_message_div:not(.assignment_toastr) a:active {
    color: #FFF;
    text-decoration: underline;
}

.assignment_toastr.toaster_message_div.assignment_toastr a:hover,
.assignment_toastr.toaster_message_div.assignment_toastr a:focus,
.assignment_toastr.toaster_message_div.assignment_toastr a:active {
    color: #007171;
    text-decoration: underline;
} */

.toaster_button_div {
  text-align: right;
}

.toaster_button_div button {
  background: none;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

/*------ MODALS ------*/
.modal {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.5;
  overflow-y: auto;
  max-height: 100%;
  height: 100%;
  max-width: none;
}

.modal-dialog {
  width: 50%;
  margin: 70px auto;
  min-width: 280px;
  max-width: 1024px;
}

.modal-header {
  border-bottom: 0;
  padding: 10px 30px;
}

.modal-header h1 {
  font-size: 24px;
  display: inline-block;
  text-transform: none;
}

h1.modal-title,
h2.modal-title,
h3.modal-title,
h4.modal-title {
  text-transform: none;
}

.submit_activity_info h4 {
  text-transform: none;
}

.modal-body {
  padding: 20px 30px 10px 30px;
}

.modal.notification .modal-body {
  border-radius: 6px;
}

.modal .error_image,
.modal .succes_image {
  width: 50px;
  display: block;
  margin: auto;
  margin-bottom: 20px;
  overflow: hidden;
}

.modal .error_message,
.modal .notification_message,
.modal .submit_success_message {
  width: 100%;
  font-family: ProximaNova-Regular;
  line-height: 24px;
  box-sizing: border-box;
  display: block;
  vertical-align: middle;
  word-break: break-word;
  padding-bottom: 20px;
  font-size: 18px;
  text-align: center;
}

.modal-footer {
  border-top: 0;
  text-align: center;
  border-radius: 0 0 4px 4px;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.alert-browser {
  background-color: #a74b84;
  color: white;
  border-radius: 0;
  border-color: #a74b84;
}

.close-white {
  color: white;
  margin-top: -10px;
}

.close_modal {
  position: absolute;
  top: 20px;
  right: 10px;
  border: 0;
  background: none;
  z-index: 1;
  font-size: 30px;
  height: inherit;
  line-height: 30px;
  font-family: ProximaNova-Bold;
  padding: 0;
}

/*.fullscreen .modal-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: none;
}*/
.fullscreen.no-footer .modal-body {
  margin-bottom: 0;
}

.fullscreen .modal-dialog {
  position: fixed;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  max-width: none;
}

.fullscreen .modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: none;
}

/*.fullscreen .modal-content {
  height: auto;
  min-height: 100%;
  border-radius: 0;
}*/
.fullscreen .modal-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  box-shadow: none;
}

.fullscreen .modal-body {
  position: absolute;
  top: 60px;
  bottom: 0;
  overflow: auto;
  margin-bottom: 80px;
  padding: 0 15px 0;
  width: 100%;
}

/*.fullscreen .modal-footer{
    position: fixed;
    bottom: 0;
    width: 100%;
}*/
.fullscreen .modal-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

/*Overlay Modal*/
.modal_overlay .modal-dialog {
  max-width: none;
  width: 100%;
  margin: 0;
  height: 100%;
}

.modal_overlay .modal-content {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
}

/*----- ASSIGNEMENT TOASTER -------*/
.assignment_toastr_container {
  top: 70px;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.35) !important;
}

.assignment_toastr_container > .toast-info {
  border-radius: 4px !important;
}

.assignment_toastr_container .toast-info {
  width: 100%;
  max-width: 320px;
  font-size: 16px;
  font-family: ProximaNova-Regular;
  padding: 20px;
  color: #000000;
  background: #ffffff;
}

.assignment_toastr_container .toast-message {
  padding: 20px;
}

.assignment_toastr a {
  color: #009999;
}

/* .assignment_toastr {
    color: #000000;
} */

.assignment_toastr_container button.toast-close-button {
  color: #009999;
}

.assignment_toastr_container button.toast-close-button:hover {
  color: #343a41;
}

.assignment_toastr_image_container {
  display: inline-block;
  width: 40px;
}

.assignment_toastr_text_container {
  display: inline-block;
  width: 180px;
  /* color: #000000; */
}

.assignment_toastr {
  padding-right: 10px !important;
}

/*------ DROPDOWNS -------*/
.dropdown-caret {
  float: right;
}

.fa-caret-down:before {
  content: '\f0d7';
  line-height: 24px;
}

.dropdown_container {
  /*font-size: 0;*/
  position: relative;
  max-width: 600px;
}

.dropdown-toggle {
  width: 100%;
  background: #fff;
  color: #333;
  border-radius: 6px;
  text-align: left;
  padding: 6px 20px;
  /*font-size: 16px;*/
  font-family: ProximaNova-Bold;
  box-sizing: border-box;
  font-weight: normal;
  line-height: 24px;
}

.dropdown_container.has-error .dropdown-toggle {
  border-color: #ce3e21;
}

.dropdown_container.has-success .dropdown-toggle {
  border-color: #5a8001;
}

.dropdown-toggle .dropdown-select-button {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown-toggle.active {
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.open > .dropdown-menu {
  margin: 0;
  padding: 10px 0;
  width: 100%;
  border: 2px solid #ccc;
  box-shadow: none;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.dropdown_container.has-success .dropdown-menu {
  border: 2px solid #5a8001;
  border-top: 0;
}

.dropdown_container.has-error .dropdown-menu {
  border: 2px solid #ce3e21;
  border-top: 0;
}

.open > .dropdown_product_menu,
.dropdown_product_menu,
.open > .user_menu,
.user_menu {
  border: 0;
}

.open > .dropdown-menu li {
  font-family: ProximaNova-Bold;
  /*padding: 5px 0;*/
  font-size: 16px;
}

.dropdown-menu > li > a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown-menu > li.dropdown_product {
  overflow: unset;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: inherit;
  background: #ccc;
  color: #343a41;
}

/*------ UTILITY BAR ------*/
.utility_bar {
  max-width: 1024px;
  margin: auto;
  text-align: center;
}

.ub_buttons_container .input_container,
.utility_bar_buttons_container {
  width: 280px;
  float: none;
  margin: auto;
}

/*------ INPUT FIELDS ------*/
.error_msg {
  background: #c33;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  margin: auto auto 10px;
  font-family: ProximaNova-Bold;
  font-size: 18px;
  position: relative;
  padding: 10px;
}

.error_msg:before {
  border-top: 10px solid #c33;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  width: 0;
  height: 0;
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 48%;
}

.input_error {
  max-width: 280px;
  margin: auto;
}

.panel_inputs_error {
  border: 1px solid #c33;
}

.ub_input_container {
  padding-bottom: 10px;
  max-width: 280px;
  margin: auto;
}

input::-ms-clear {
  display: none;
}

label {
  display: block;
  font-family: ProximaNova-Bold;
  font-weight: normal;
}

.default_input {
  border-radius: 6px;
  border: 2px solid #ccc;
  color: #343a41;
  display: inline-block;
  font-family: ProximaNova-Regular;
  font-size: 18px;
  height: 40px;
  padding: 8px 10px;
  max-width: 600px;
  vertical-align: middle;
  width: 100%;
}

.default_input.default_pill {
  border-radius: 20px;
}

.default_input.bold_face {
  font-family: ProximaNova-bold;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background: #cccccc;
  cursor: default;
  /*font-size:16px;*/
}

.form-group {
  margin-bottom: 20px;
}

.default_input.block_input {
  width: 100%;
  max-width: none;
}

.input_length {
  width: inherit;
}

.default_input.lg {
  padding: 12px 10px;
  height: 50px;
}

.default_input.err_input {
  border: 2px solid #ce3e21;
  box-shadow: none;
}

.danger-txt {
  color: #cc3300;
}

.invalid-error {
  font-family: ProximaNova-Bold;
  color: #ce3e21;
  line-height: 20px;
  padding-bottom: 20px;
  margin: 0;
}

.default_input.success_input {
  border: 2px solid #5a8001;
}

.form-group .input_container {
  position: relative;
}

.has-success .form-control-feedback,
.has-error .form-control-feedback,
.error_state,
.success_state {
  width: 20px;
  height: 20px;
  color: #fff;
  text-align: center;
  border-radius: 100%;
  line-height: 20px;
  display: inline-block;
  font-size: 12px;
  vertical-align: middle;
}

.has-error .help-block,
.has-error .form-control {
  border-color: #ce3e21;
  font-family: ProximaNova-Bold;
}

.has-error .help-block {
  color: #ce3e21;
}
.has-error .help-block a {
  color: #ce3e21;
  text-decoration: underline;
}
.has-error .help-block a:hover {
  color: #843534;
}

.has-success .form-control {
  border-color: #5a8001;
}

.has-feedback label ~ .form-control-feedback {
  top: 40px;
  right: 10px;
}

.has-feedback .input_container .form-control-feedback {
  top: 10px;
  right: 10px;
}

.success_state {
  background: #5a8001;
}

.error_state {
  background: #ce3e21;
}

.success_state .glyphicon,
.error_state .glyphicon {
  line-height: 18px;
}

textarea {
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
  resize: none;
  width: 100%;
}

.notes {
  border: 0;
  border-radius: 0;
  background-image: -webkit-linear-gradient(left, #fff 0, transparent 0), -webkit-linear-gradient(right, #fff 0, transparent 0), -webkit-linear-gradient(#fff 29px, #91d1d3 29px, #91d1d3 30px, #fff 30px);
  background-image: -moz-linear-gradient(left, #fff 0, transparent 0), -moz-linear-gradient(right, #fff 0, transparent 0), -moz-linear-gradient(#fff 29px, #91d1d3 29px, #91d1d3 30px, #fff 30px);
  background-image: -ms-linear-gradient(left, #fff 0, transparent 0), -ms-linear-gradient(right, #fff 0, transparent 0), -ms-linear-gradient(#fff 29px, #91d1d3 29px, #91d1d3 30px, #fff 30px);
  background-image: linear-gradient(left, #fff 0, transparent 0), linear-gradient(right, #fff 0, transparent 0), linear-gradient(#fff 29px, #91d1d3 29px, #91d1d3 30px, #fff 30px);
  background-repeat: repeat-y;
  background-size: 100% 100%, 100% 100%, 100% 40px;
  background-attachment: local;
  line-height: 40px;
  padding: 0 10px;
}

.hint_text {
  font-size: 16px;
  color: #93969a;
  padding-bottom: 10px;
}

.characterCountdown_container {
  display: block;
  font-family: ProximaNova-Bold;
  color: #909396;
  font-size: 14px;
}

/*------- SEARCH BOX INPUT ---------*/
.search_box_form input {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px 0 0 4px;
  color: #343a41;
  font-family: ProximaNova-Bold;
  font-size: 18px;
  box-sizing: border-box;
  line-height: 20px;
  padding: 0 12px;
  height: 40px;
  text-align: left;
}

.search_box_form input.error_state {
  border: 2px solid #ca3c00;
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='times-circle' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-times-circle fa-w-16 fa-3x'%3E%3Cpath fill='%23ce3e21' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z' class=''%3E%3C/path%3E%3C/svg%3E");
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  background-repeat: no-repeat;
  background-position: center right 10px;
  outline: 0;
}

.search_box .search_error {
  font-family: ProximaNova-Bold;
  font-size: 16px;
  margin-top: 10px;
  color: white;
}

.close_search {
  position: absolute;
  top: 13px;
  right: 10px;
  cursor: pointer;
  width: 14px;
  height: 14px;
}

button.close_search {
  top: 8px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: inherit;
}

.search_input_container {
  width: calc(100% - 40px);
  float: left;
  position: relative;
}

.search_box_button {
  float: right;
  border-radius: 0 4px 4px 0;
}

.search_box_form {
  overflow: hidden;
  margin: 0;
}

.ui-autocomplete-category {
  border-top: 1px solid #999;
}

.games_auto_search,
.information_search {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  right: 5px;
  color: #999;
  font-weight: bold;
  text-align: center;
  border: 2px solid #999;
  border-radius: 100%;
  font-size: 15px;
  line-height: 19px;
}

.games_auto_search {
  border: 0;
  right: 10px;
}

/*--------- CHECKBOXES --------*/
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

.checkbox_label {
  font-family: ProximaNova-Regular;
}

legend {
  font-family: ProximaNova-Bold;
  font-size: 16px;
  margin: 0;
  line-height: 20px;
  display: block;
  border-bottom: 0;
}

label.radio_label,
label.checkbox_label {
  position: relative;
  display: block;
  padding: 12px 0 0 1.75em;
  line-height: 18px;
  cursor: pointer;
}

label.radio_label::before,
label.checkbox_label::before {
  content: ' ';
  border: 2px solid #ccc;
  border-radius: 20%;
}

label.radio_label::before,
label.radio_label::after,
label.checkbox_label::before,
label.checkbox_label::after {
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

label.radio_label::before,
label.radio_label::after,
label.checkbox_label::before,
label.checkbox_label::after {
  position: absolute;
  top: 7.5px;
  left: 0;
  display: block;
  width: 1.25em;
  height: 1.25em;
}

label.checkbox_lg::before,
label.checkbox_lg::after {
  position: absolute;
  top: 7.5px;
  left: 0;
  display: block;
  width: 2.25em;
  height: 2.25em;
}

label.radio_label,
label.checkbox_label {
  position: relative;
  display: block;
  padding: 8px 0 0 1.75em;
  line-height: 18px;
  cursor: pointer;
  font-family: ProximaNova-Regular;
  font-size: 16px;
}

input[type='checkbox'],
input[type='radio'] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

input[type='checkbox']:checked + label.checkbox_label::after {
  /*content: "\2714";*/
  content: url('/assets/images/icn_correct.svg');
  /*color: #FFF;*/
  font-size: 0.85em;
  /*line-height: 1.75;
    padding-left: 3px;
    text-align: center;*/
  transform: scale(0.4);
}

input[type='radio'] + label::before {
  border-radius: 50%;
}

input[type='radio'] + label,
input[type='radio'] {
  display: block;
  margin: 1px 0;
}

input[type='radio'] + label::after {
  content: ' ';
  top: 11px;
  left: 0.18em;
  width: 0.9em;
  height: 0.9em;
  border: 2px solid white;
  border-radius: 50%;
}

/*---------- LABELS ----------*/
.ribbonContainer {
  margin: auto;
  z-index: 1;
  position: relative;
}

.free_badge_ribbon,
.new_badge_ribbon,
.update_badge_ribbon {
  width: 42px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 15px;
}

.badge_ribbon {
  width: 42px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 15px;
}

.update_badge_ribbon {
  width: 52px;
}

.ribbonRight {
  width: 100%;
  height: 100%;
  -o-transform: skew(-22.5deg);
  -moz-transform: skew(-22.5deg);
  -webkit-transform: skew(-22.5deg);
  -ms-transform: skew(-22.5deg);
  transform: skew(-22.5deg);
}

.ribbonLeft {
  width: 100%;
  height: 100%;
  -moz-transform: skew(22.5deg);
  -webkit-transform: skew(22.5deg);
  -ms-transform: skew(22.5deg);
  -o-transform: skew(22.5deg);
  transform: skew(22.5deg);
  position: absolute;
  top: 0;
}

.badge_label {
  top: 0;
  font-size: 14px;
}

.ribbonLabel {
  top: 0;
  position: absolute;
  z-index: 1;
  left: 0;
  box-sizing: border-box;
  font-family: ProximaNovaCond-Bold;
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.bp_movie_tag_container {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
}

.bp_movie_tag,
.bpjr_movie_tag,
.bpesl_movie_tag {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 70px 0 0;
  position: absolute;
  z-index: 1;
}

.bp_movie_tag {
  border-color: #009999 transparent transparent transparent;
}

.bpjr_movie_tag {
  border-color: #ffcf3f transparent transparent transparent;
}

.bpesl_movie_tag {
  border-color: #78b2f2 transparent transparent transparent;
}

.beta_badge {
  position: absolute;
  top: 0;
  right: 0;
  font-family: ProximaNova-Bold;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 70px 70px 0;
  border-color: transparent #f3f3f3 transparent transparent;
  z-index: 999;
}

.beta_badge_text {
  color: #93969a;
  font-size: 14px;
  position: absolute;
  top: 15px;
  right: 5px;
  font-family: ProximaNova-Bold;
  line-height: 18px;
  z-index: 999;
  cursor: default;
}

.bp_subject_tag_container {
  position: relative;
  width: 70px;
  height: 70px;
}

.bp_subject_tag_container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
}

.bp_subject_tag {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 70px 0 0;
  position: relative;
}

/*------- LINKS -------*/
.external_link {
  display: inline-block;
  position: relative;
}

.default_button.external_link {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.external_link .external_link_icon {
  margin-left: 0.25rem;
  margin-right: 0.1rem;
  bottom: 0.15rem;
  position: relative;
}

.external_link .external_link_icon.fa {
  font-size: 0.8em;
}

.default_button.external_link .external_link_icon {
  padding-left: 0;
  margin-left: 0;
  border: 1px solid #008888;
  border-radius: 3px;
}

.default_button.external_link.carrot .external_link_icon {
  border: 1px solid #f16d36;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
}

/*------ TABS ---------*/
.nav-tabs {
  padding: 20px 20px 0 20px;
  border-bottom: 0;
}

.nav-tabs > li {
  width: auto;
  padding: 0;
  max-width: 180px;
  display: table;
  margin: 0 1px;
}

.nav-tabs > li > a {
  line-height: 19px;
  padding: 5px;
  display: table-cell;
  width: 100%;
  height: 50px;
  vertical-align: middle;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: 0;
  padding: 0 15px;
  min-width: 100px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
}

.tab-content-container {
  padding: 20px 20px;
}

.tab-content {
  max-width: 768px;
  margin: auto;
}

.nav-tabs > li > a {
  font-family: ProximaNova-Bold;
  text-align: center;
  font-size: 18px;
}

.nav-tabs span {
  display: none;
}

.nav-tabs img {
  margin: auto;
}

/*----- LOADER -------*/
section.wrapper {
  padding: 80px 0;
}

#loadtext {
  font-family: ProximaNova-Bold;
  font-size: 48px;
  color: #8a5e18;
  text-align: center;
}

.loader {
  margin: 30px auto 20px;
  text-align: center;
}

.loader > div {
  width: 18px;
  height: 24px;
  margin: 10px;
  border-style: solid;
  border-width: 2px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1s infinite ease-in-out both;
  animation: sk-bouncedelay 1s infinite ease-in-out both;
}

.loader .bounce1 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader .bounce2 {
  -webkit-animation-delay: -0.08s;
  animation-delay: -0.08s;
}

/*---------- BREADCRUMBS/HEADERS ----------*/
.title_bar {
  padding: 0;
  text-align: center;
}

.sub_header,
.view_title {
  padding-left: 15px;
  /*text-transform: uppercase;*/
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
}

h1.view_title {
  line-height: 36px;
}

.title_bar h1.view_title {
  line-height: 40px;
}

.title_logo {
  display: none;
}

/*----- PROGRESS ELEMENT -----*/
.progresss {
  height: 100px;
}

.progbar {
  border: 2px solid #ccc;
  width: 98%;
  border-radius: 8px;
}

p.number {
  padding-top: 10px;
  margin-bottom: -30px;
}

/*.moby {
    height: 90px;
    width: 90px;
    float: right;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #ccc;
    z-index: 1;
}
.moby, .progbar {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}*/
.done {
  float: left;
  border-radius: 6px 0 0 6px;
  width: 10%;
  height: 2em;
}

.bar {
  background-color: white;
  border-radius: 0 6px 6px 0;
  height: 2em;
  width: 190px;
  margin-left: 200px;
}

/*---------- FOOTER ----------*/
.product_touts_container {
  display: none;
}

.back_to_top button {
  background: none;
  border: 0;
  float: right;
}

.back_to_top img:nth-of-type(2) {
  display: none;
}

/* .back_to_top button:hover img:nth-of-type(1), .back_to_top img:nth-of-type(2) {
    display: none;
}
.back_to_top button:hover img:nth-of-type(1), .back_to_top img:nth-of-type(2) {
    display: none;
} */
/* .back_to_top button:hover img:nth-of-type(2) {
    display: block;
} */
footer {
  padding: 30px 18px;
  clear: both;
  position: relative;
}

footer.back_to {
  padding-bottom: 0;
}

.footer_mobile_header {
  display: block;
  color: #0cc;
  line-height: 40px;
  cursor: pointer;
  font-family: ProximaNova-Bold;
  font-size: 16px;
}

.footer_row_anchor span {
  position: absolute;
  top: 0;
  left: 0;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.footer_mobile_header:after {
  content: '+';
  font-weight: normal;
  margin-right: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  float: right;
  color: #00cccc;
}

.footer_header_open.footer_mobile_header:after {
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}

.footer_row_anchor {
  cursor: default;
  position: absolute;
  top: 17px;
  right: 10px;
  width: 1px;
  height: 1px;
  z-index: 10;
}

.user_footer {
  font-size: 14px;
  display: block;
  padding-bottom: 10px;
}

.copyrights {
  color: #33cccc;
  font-size: 0.8em;
  text-decoration: none;
  padding-top: 18px;
}

.footer_desktop_header {
  display: none;
}

.footer_list {
  border: 0;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
  font-family: ProximaNova-Bold;
  font-size: 16px;
}

.footer-row-links {
  max-width: 600px;
  margin: auto;
}

.copyrights_list > li {
  padding: 0;
}

a.link_user_footer {
  font-size: 12px;
  font-family: ProximaNova-Bold;
  font-weight: normal;
  text-decoration: none;
  white-space: nowrap;
}

.clear_button.btn_user_footer {
  color: #6ff;
  font-size: 14px;
}
.clear_button.btn_user_footer:hover {
  color: white;
}

.main-footer a.link_user_footer {
  font-size: 14px;
}

a.footer_link {
  font-size: 14px;
  font-family: ProximaNova-Regular;
  line-height: 25px;
}

.copyrights {
  font-size: 0.8em;
  text-decoration: none;
  padding-top: 18px;
}

.list-inline {
  margin: 0;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  /*margin-left: -5px;*/
}

/*.unit_breadcrumb {
    height: 70px;
}*/
.breadcrumb_container {
  padding: 25px;
}

.breadcrumb_container {
  border: 0;
  border-radius: 0;
  margin: 0;
  font-size: 16px;
  padding: 10px;
}

.breadcrumb_container > li {
  display: inline-block;
}

/* ---- NAVBAR ----- */
.navbar-header {
  width: 100%;
  min-width: 320px;
}

.navbar {
  margin-bottom: 0;
  color: #fff;
  border: 0;
  border-radius: 0;
  min-height: 60px;
  margin: auto;
}

.navbar-header {
  width: 100%;
  min-width: 320px;
}

.navbar-left {
  float: left;
  width: 60%;
  position: relative;
}

.navbar-right {
  float: right;
  /*direction: rtl;*/
  width: 40%;
}

.content_unit_row {
  background: #343a41;
  text-align: center;
}

.content_unit_row .content_unit_button,
.content_unit_row .content_unit_button:visited {
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
}

.content_unit_row a:hover,
.content_unit_row a:active,
.content_unit_row a:focus {
  color: #ffffff;
}

.school_picker_row,
.mini-navbar {
  display: none;
  height: 40px;
  background: #343a41;
  font-size: 13px;
  font-family: ProximaNova-Bold;
  line-height: 40px;
}
.mini-navbar.nli {
  background: #fff;
  height: 8rem;
}
.mini-navbar.nli .mini-navbar-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 8rem;
  margin-right: 2rem;
}
.mini-navbar.nli .mini-navbar-links .navbar-button {
  color: #343a41;
}
.mini-navbar.nli .mini-navbar-links .login_button.navbar-button {
  background: #127e9b;
  color: #fff;
  border-radius: 6px;
}

.ub_announcment {
  background: #fff;
}
.ub_announcment .announcement {
  margin: auto;
  background: #fff;
  color: #343a41;
  padding: 20px 10px;
  font-size: 14px;
}
.ub_announcment .info {
  display: inline-block;
  vertical-align: top;
  color: #aa4c84;
}
.ub_announcment .message {
  display: inline-block;
  width: calc(100% - 30px);
}
.school_picker_row {
  display: block;
}

.school_picker_dropdown {
  width: 230px;
  margin: 0 20px;
  height: 30px;
}

.school_picker_dropdown .dropdown-toggle {
  background: #f3f3f3;
}

.mini_navbar_container {
  height: 4rem;
}

.mini-navbar-links {
  height: 40px;
  display: block;
}

.mini-navbar .dropdown_container {
  height: 40px;
}

.navbar-button {
  padding: 0 15px;
  background: none;
  border: none;
}

.navbar-toggle {
  border: 0;
  padding: 2px 15px;
}

.navbar-default .navbar-toggle .icon-bar {
  width: 40px;
  height: 6px;
}

.navbar-brand {
  height: 60px;
  display: flex;
  align-items: center;
  width: 143px;
  margin-left: 20px;
}

.navbar_content_unit_container {
  display: none;
}

.navbar_search {
  display: none;
}

.left-nav {
  float: left;
  height: 40px;
}

.right-nav {
  float: right;
  height: 40px;
  /*padding-right: 15px;*/
}

.nav-list > li {
  display: inline-block;
  vertical-align: top;
}

.nav > li > a {
  padding: 0 15px;
  color: #cccccc;
  font-size: 16px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: inherit;
  color: #fff;
}

.nav-list > .navbar_admin_button {
  display: none;
}

.nav-list > li.myb_course_badge_li_desktop {
  display: none;
}

.nav-list > li.enter_code_badge_li_sTablet {
  display: none;
}

.skiptocontent a {
  position: absolute;
  top: -40px;
  left: 0px;
  color: #000;
  font-size: 14px;
  text-align: center;
  width: 186px;
  height: 40px;
  line-height: 40px;
  font-family: ProximaNova-Bold;
  text-transform: uppercase;
  border: 1px solid #000;
  -webkit-transition: top 1s ease-out, background 1s linear;
  transition: top 1s ease-out, background 1s linear;
  z-index: 100;
  opacity: 0;
}

.skiptocontent a:focus {
  font-family: ProximaNova-Bold;
  position: absolute;
  font-size: 14px;
  text-transform: uppercase;
  left: 0px;
  top: 0px;
  background: #fff;
  outline: 0;
  -webkit-transition: top 0.1s ease-in, background 0.5s linear;
  transition: top 0.1s ease-in, background 0.5s linear;
  opacity: 1;
}

.open > .dropdown-menu.dropdown_product_menu {
  width: 275px;
  padding-bottom: 10px;
}

.open > .dropdown-menu.my-brainpop-menu {
  width: 165px;
}

.dropdown-toggle.products_menu {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  color: #cccccc;
  height: 40px;
  padding: 0;
  margin-left: 15px;
}

.dropdown-toggle.products_menu .products_dropdown_label {
  font-size: 16px;
}

.open > .dropdown_product_menu,
.open > .dropdown_product_menu li {
  padding: 0;
}

.dropdown_product_menu > li > a {
  color: #ccc;
  font-size: 16px;
  padding: 10px 20px;
  text-align: left;
  line-height: 1;
}

.dropdown_product_menu .product_grade {
  font-size: 14px;
  font-family: ProximaNova-Regular;
}

.open > .open > .dropdown-menu.dropdown_product_menu > li:hover,
.dropdown-menu.dropdown_product_menu > li:focus {
  background: #cccccc;
}

.products_menu .dropdown-caret {
  line-height: 28px;
}

.navbar_admin_dropdown .dropdown-caret,
.username_display_button .dropdown-caret {
  line-height: 40px;
}

.username_display_button .username_display {
  padding-right: 10px;
  max-width: 100px;
  min-width: 110px;
  display: inline-block;
  line-height: 38px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.navbar_notification.dropdown-toggle {
  max-width: unset;
}

.dropdown-toggle.notifications_button,
.dropdown-toggle.navbar_admin_dropdown,
.dropdown-toggle.username_display_button {
  background: none;
  border: 0;
  color: #cccccc;
  padding: 0 15px;
  min-width: 175px;
  line-height: 40px;
  text-align: center;
  height: 40px;
  font-size: 16px;
}

.dropdown-toggle.navbar_admin_dropdown {
  min-width: 145px;
}

.nav > li > a.mybp_navbar_button {
  display: inline-block;
}

.nav > li > a.mybp_navbar_button.with_notification {
  padding-right: 0;
}

.nav > li > a.mini-navbar_notifications {
  display: inline-block;
  padding-left: 0;
}

.notifications_counter {
  background: #cc3300;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  line-height: 20px;
  display: inline-block;
  vertical-align: middle;
  font-family: ProximaNova-Bold;
  font-size: 12px;
}

.user_menu,
.dropdown_product_menu {
  min-width: 145px;
  background: #343a41;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  text-align: center;
  /*left: -30px;*/
}

.open > .notifications_menu {
  background: #343a41;
  min-width: 350px;
  max-height: 550px;
  padding: 0;
  border: 0;
  overflow-y: auto;
}

.navbar_notification_dropdown {
  max-width: 100px;
  margin-top: 11px;
  display: inline-block;
}

.navbar_notification_dropdown .notifications_button {
  color: #6efffe;
  padding-left: 0;
}

.open > .notifications_menu.notifications_mobile_menu {
  position: fixed;
  width: 100%;
  top: 57px;
  border-radius: 0;
}

.notifications_mobile_menu .user_notification,
.open > .notifications_menu .user_notification {
  font-size: 16px;
  padding: 10px;
  line-height: 20px;
  font-family: ProximaNova-Regular;
  cursor: pointer;
  color: #fff;
  border-bottom: 1px solid #979797;
}

.notifications_mobile_menu .user_notification:last-of-type,
.open > .notifications_menu .user_notification:last-of-type {
  border-bottom: 0;
}

.notifications_mobile_menu .user_notification .timestamp,
.open > .notifications_menu .user_notification .timestamp {
  font-size: 12px;
}

.notifications_mobile_menu .user_notification .notification_path,
.open > .notifications_menu .user_notification .notification_path {
  padding: 0;
  color: unset;
  font-family: ProximaNova-Regular;
  clear: unset;
  white-space: normal;
}

.notifications_mobile_menu .user_notification .notification_path:hover,
.open > .notifications_menu .user_notification .notification_path:hover {
  background: none;
}

.notifications_mobile_menu .user_notification.unread,
.open > .notifications_menu .user_notification.unread {
  background: #ccf5f5;
  color: #343a41;
}

.open > .notifications_menu .user_notification:hover {
  background: #dddddd;
  color: #343a41;
}

.open > .notifications_menu .no_notifications:hover {
  cursor: default;
  background: #343a41;
  color: #fff;
}

.user_menu.left {
  text-align: left;
}

.my-brainpop-menu {
  left: 0;
}

.user_menu > li > a {
  color: #cccccc;
  font-size: 16px;
  padding: 8px 10px;
  text-align: left;
}

.user_menu.left > li > a {
  padding: 8px 20px;
}

.open > .dropdown-menu li.active_school_name {
  font-size: 13px;
  color: #fff;
  line-height: 20px;
  text-align: left;
  padding: 0 20px 0 20px;
  white-space: inherit;
}

.open > .dropdown-menu.user_menu > li:hover,
.open > .dropdown-menu.user_menu > li:focus,
.open > .dropdown-menu.user_menu > li:active {
  background: none;
}

/*.open>.dropdown-menu.user_menu>li:focus a,
.open>.dropdown-menu.user_menu>li:hover a,
.open>.dropdown-menu.user_menu>li:active a {
    color: #343A41;
    background:#CCC;
}*/
.product_nav {
  height: 25px;
}

.navbar_menu_search {
  padding: 15px;
}

.navbar_menu {
  background-color: #343a41;
  font-family: ProximaNova-Bold;
  z-index: 999;
  font-size: 16px;
}

.navbar-menu-item {
  padding: 0 10px;
}

.navbar_menu .myb_course_badge_li_mobile {
  padding: 10px;
  padding-top: 0;
}

.navbar_menu .navbar-nav {
  margin: 0;
  border-bottom: 1px solid;
}

.navbar_menu .navbar-nav:last-child {
  border-bottom: 0;
}

.navbar_menu .navbar-nav > li > a {
  padding: 10px 0;
  box-sizing: border-box;
}

.navbar_menu ul {
  padding: 10px 0;
}

.navbar_menu .navbar-menu-user {
  display: inline-block;
  color: #fff;
}

.navbar_menu .navbar-menu-user {
  width: 74%;
  max-width: 220px;
  display: inline-block;
  line-height: 14px;
  text-overflow: ellipsis;
  padding: 1rem 0.6rem;
  overflow: hidden;
  white-space: nowrap;
}

/*------- POPOVER --------*/
.popover-title {
  border: 0;
  min-height: 30px;
  font-family: ProximaNova-Bold;
  font-size: 24px;
  text-transform: none;
  padding-bottom: 0;
  padding-right: 34px;
}

.popover-content {
  font-size: 16px;
  font-family: 'ProximaNova-Regular', sans-serif;
}

.popover_link {
  color: #6ff;
  display: block;
  line-height: 24px;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: ProximaNova-Bold;
}

.popover_link:hover {
  text-decoration: underline;
  color: #fff;
}

.popover.top > .arrow {
  top: 100% !important;
}

.close_popover {
  width: 14px;
  height: 30px;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
}

.popover.tour {
  background: #f3f3f3;
}

.popover[class*='tour-'].bottom {
  margin-top: 0;
}

.popover[class*='tour-'] .popover-navigation [data-role='next'] {
  float: right;
  min-width: 86px;
  color: #fff;
}

.popover[class*='tour-'] .popover-navigation a[data-role='end'] {
  float: none;
  display: table-cell;
  vertical-align: bottom;
  color: #fff;
}

.popover[class*='tour-'] .tour-navigation.popover-navigation,
.tour-navigation.popover-navigation {
  padding: 10px 20px 20px 20px;
  display: table;
  width: 100%;
}

.tour .popover-title {
  background: none;
  color: #343a41;
}

.tour.popover {
  color: #343a41;
}

.tour .popover-title {
  margin: 30px 20px 0 20px;
  padding: 0;
  min-height: 20px;
}

.tour.popover.bottom > .arrow:after {
  border-bottom-color: #ffffff;
}

.popover[class*='tour-'] .popover-navigation .dashboard_link[data-role='end'] {
  display: block;
  float: right;
}

.popover[class*='tour-'] .popover-navigation .tour_create_class[data-role='end'],
.popover[class*='tour-'] .popover-navigation .tour_start_course {
  display: block;
  float: right;
}

.popover[class*='tour-'] .popover-navigation .tour_dont_show_again[data-role='end'] {
  color: #008080;
  font-size: 16px;
}

.popover[class*='tour-'] .popover-navigation .tour_start_course {
  color: #ffffff;
}

.tour.popover {
  box-shadow: -1px 2px 2px 0 rgba(66, 66, 66, 0.5);
  min-width: 280px;
}

.tour_popover_button {
  float: right;
  min-width: 80px;
}

.tour .popover-content {
  display: table;
  width: 100%;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.tour .popover-content span,
.tour .popover-content img {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}

.tour .popover-content img {
  max-width: 60px;
  border-radius: 100%;
}

.tour_close_button {
  background: none;
  border: 0;
  text-align: right;
  height: 20px;
  text-transform: none;
  float: right;
  padding: 18px;
}

.tour_close_button img {
  width: 18px;
  height: 18px;
}

.tour_popover_pagination {
  font-size: 16px;
  font-family: ProximaNovaCond-Bold;
  color: #666666;
  width: 40px;
  display: inline-block;
  margin: 15px 0 0 15px;
}

/*-------- DRAGGABLES --------*/
.draggable {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  font-family: ProximaNova-Bold;
  font-size: 18px;
  color: #343a41;
}

.draggable_handler {
  position: absolute;
  padding: 16px;
  top: 0;
  right: 0;
}

.draggable_handler span {
  width: 30px;
  height: 2px;
  background: #ccc;
  display: block;
  margin-bottom: 3px;
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  text-overflow: ellipsis;
  z-index: 1024;
}

.ui-menu .ui-menu-item {
  list-style-image: none;
  border: 0;
  font-size: 16px;
  font-family: ProximaNova-Regular;
  line-height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-menu-item:hover {
  background: #ccf5f5;
  border: 0;
}

.ui-menu .ui-menu-item.disabled {
  color: #666666;
  cursor: default;
}

.ui-menu-item.disabled:hover {
  background: none;
}

.or_box {
  padding: 20px 0;
}

.or_box_line {
  height: 1px;
  background: #979797;
  display: inline-block;
  vertical-align: middle;
  width: calc(50% - 30px);
}

.or_box_text {
  display: inline-block;
  width: 50px;
  text-align: center;
}

/* PAGINATION */
.pagination_list > li.disabled {
  opacity: 0.5;
}

/*  */
/*-------- GRID---------*/
.justify-content-start {
  display: flex;
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-center {
  display: flex;
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-end {
  display: flex;
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-around {
  display: flex;
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.justify-content-between {
  display: flex;
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

/*  PATHWAYS */
.pathway_mark {
  width: 16px;
  display: table-cell;
  height: 100%;
}

.pathway_mark.lg {
  width: 20px;
}

.pathway_circle {
  width: 16px;
  height: 16px;
  border: 2px solid #008080;
  border-radius: 100%;
  text-align: center;
  line-height: 16px;
  font-size: 14px;
}

.lg .pathway_circle {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 16px;
}

.pathway_line_h {
  display: inline-block;
  vertical-align: middle;
  height: 2px;
  border: 2px dashed #ccc;
  width: 25px;
}

.pathway_line {
  width: 2px;
  height: calc(100% - 11px);
  /*margin: auto;*/
  /*margin-top: 2px;*/
  border: 2px dashed #ccc;
  /*display: table;*/
  position: absolute;
  top: 18px;
  left: 6px;
}

.lg .pathway_line {
  top: 22px;
  left: 8px;
}

/*-------- MEDIA BREAKPOINTS --------*/
/* SITE STATUS */
.site_issue {
  background: #aa4d85;
  color: #fff;
  padding: 18px 40px 18px 20px;
  font-size: 16px;
}

.site_issue a {
  color: #fcdb58;
}

.site_issue a:active,
.site_issue a:hover,
.site_issue a:focus {
  color: #fff;
  text-decoration: underline;
}

.close_site_issue {
  position: absolute;
  right: 20px !important;
  top: 20px !important;
  line-height: 20px;
  padding-left: 18px !important;
  padding-bottom: 18px !important;
  font-size: 36px;
  z-index: 1;
  background: none;
  border: 0;
}

.site_issue a:visited,
.site_issue a {
  color: #fff9eb;
}

.site_issue a:hover {
  text-decoration: underline;
  color: #fff;
}

/* G SUITE LOGIN + CLEVER LOGIN */
.external_login_button {
  color: #008080;
  border-radius: 4px;
  padding: 4px;
  width: 280px;
  display: block;
  text-align: left;
  font-size: 18px;
  background: #fff;
}

.external_login_button:visited,
.external_login_button:hover {
  color: #008080;
}

.external_login_button.google_login {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google_login img {
  width: 20px;
  height: 20px;
  padding: 0;
  margin-right: 6px;
  margin-left: -10px;
}

.clever_login {
  text-align: center;
  height: 48px;
  margin-bottom: 10px;
}

.clever_login img {
  width: 93px;
  padding: 10px;
  text-align: center;
}

.external_login_line {
  background: #00b3b3;
  width: 80%;
  height: 1px;
  margin: 20px auto;
}

@media (min-width: 600px) {
  .announcment_alert[data-position='top-full'] {
    padding: 0 22px;
  }

  .ub_announcment .announcement {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
  }
  .ub_announcment .message {
    display: inline;
  }
  .ub_announcment .info {
    display: inline;
  }
  body {
    font-size: 18px;
  }

  p.large {
    font-size: 20px;
  }

  p.xlarge {
    font-size: 22px;
  }

  p.small {
    font-size: 16px;
  }

  p.xsmall {
    font-size: 14px;
  }

  .tour.popover {
    min-width: 380px;
  }

  .navbar_notification_dropdown {
    display: none;
  }

  .navbatr_content_unit_container .content_unit_button {
    font-size: 16px;
    margin-top: 20px;
  }

  .content_unit_button.default_button:hover {
    background: #fff;
    color: #007171;
  }

  .navbar-left {
    width: 50%;
  }

  .navbar-right {
    width: 50%;
  }

  .modal_button_wrapper.open > .modal_button_container:before,
  .modal_button_wrapper.open > .modal_button_container:after {
    display: none;
  }

  .modal_button_wrapper.open > .modal_button_container {
    border-radius: 0;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(52, 58, 65, 0.8);
    top: 0;
    left: 0;
    padding: 10px;
  }

  .title_logo {
    display: inline-block;
    /* width: 70px; */
    /* background: #fff; */
    vertical-align: middle;
  }

  /* .title_logo img {
    width: 70px;
    height: 70px;
  } */

  .nav-tabs img {
    display: inline-block;
    margin-right: 10px;
  }

  .nav-tabs span {
    display: inline-block;
  }

  .nav > li > a:hover,
  .nav > li > a:focus {
    text-decoration: none;
  }

  .stack_nav img {
    display: block;
    margin: auto;
    margin-bottom: 10px;
  }

  /* ----- DROPDOWN ----- */
  .open > .dropdown-menu li {
    font-size: 18px;
  }

  /* ---- NAVBAR ----- */
  .content_unit_row {
    display: none;
  }

  .mini-navbar {
    display: block;
  }

  .navbar-brand {
    width: 200px;
    height: 70px;
    padding: 0;
  }

  .navbar_search {
    display: inline-block;
    /*width: calc(100% - 70px);*/
    /*padding: 15px 0 15px 15px;*/
  }

  .navbar_content_unit_container {
    display: inline-block;
    float: left;
  }

  .navbar_content_unit_container .content_unit_button {
    font-size: 14px;
    background: #fff;
    color: #008080;
    margin: 20px 0 0 20px;
    height: 30px;
    padding: 3px 15px;
  }

  /* FOOTER */
  .back_to_top {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: right;
    z-index: 1;
  }

  .footer-row {
    width: 33.33333333%;
    /*max-width: 200px;*/
    padding-left: 10%;
    box-sizing: border-box;
    z-index: 2;
  }

  .product_touts_column {
    width: 17.5%;
    margin-right: 10%;
    float: none;
    display: inline-block;
    vertical-align: top;
  }

  .product_touts_container {
    display: block;
    width: 100%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 10px;
    max-width: 768px;
    text-align: center;
  }

  .product_touts_link {
    display: block;
    text-align: center;
    width: 100px;
  }

  .product_touts_label {
    text-align: center;
    font-size: 14px;
    font-family: ProximaNova-Bold;
    line-height: 17px;
    width: 100px;
    padding-top: 7px;
    margin: auto;
    display: block;
  }

  .product_touts_icon {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: block;
    margin: auto;
  }

  .product_touts_column:last-of-type {
    margin: 0;
  }

  .copyrights {
    text-align: center;
    z-index: 2;
    position: relative;
  }

  .footer_list {
    border: 0;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
    font-family: ProximaNova-Bold;
    font-size: 16px;
  }

  .footer_row_anchor {
    display: none;
  }

  .footer-nav {
    display: block;
    padding-bottom: 0;
    overflow: visible;
    visibility: visible;
  }

  .footer_mobile_header {
    display: none;
  }

  .footer_desktop_header {
    display: block;
  }

  .footer_line {
    display: none;
  }

  .modal .error_image,
  .modal .succes_image {
    display: table-cell;
    vertical-align: middle;
  }

  .modal .error_message,
  .modal .notification_message,
  .modal .submit_success_message {
    display: table-cell;
    width: auto;
    vertical-align: middle;
    padding-left: 20px;
    padding-bottom: 0;
  }

  .modal .error_message {
    text-align: left;
  }

  .modal-dialog {
    width: 75%;
    max-width: 576px;
  }

  /* .open>.my-brainpop-menu, .navbar_admin_dropdown.teacher_admin {
        display: none;
    } */
}

/* MODAL MANAGER MODAL */

.modal.modal_manager .modal-dialog {
  width: 50rem;
  min-height: 24.4rem;
}
.modal.modal_manager.user_logged_out .modal-body,
.modal.modal_manager.user_logged_out #modal_manager_iframe {
  height: 24.5rem;
}

.modal.modal_manager.product_not_in_subscription .modal-body,
.modal.modal_manager.product_not_in_subscription #modal_manager_iframe {
  height: 43rem;
}

.modal.modal_manager .loading {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal.modal_manager .modal-body {
  padding: 0;
  background: white;
  border-radius: 6px;
}

.modal.modal_manager .modal-content,
.modal.modal_manager .modal-body {
  height: 100%;
}

.modal.modal_manager .iframe_wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.modal.modal_manager .iframe_wrapper iframe {
  border-radius: 0 0 4px 4px;
}

/* MODAL MANAGER BREAKPOINTS */

@media (min-width: 600px) and (max-width: 1023px) {
  .modal.modal_manager .modal-dialog {
    margin: 20px auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .modal.modal_manager .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* QUICK ASSIGN MODAL */

.modal.quick_assign {
  overflow: scroll;
}
.modal.quick_assign .modal-dialog {
  width: 100%;
  max-width: 900px;
  height: calc(100vh - 110px);
  min-height: 400px;
}

.modal.quick_assign .modal-body {
  padding: 0;
  background: white;
  border-radius: 6px;
}
.modal.quick_assign .modal-content,
.modal.quick_assign .modal-body {
  height: 100%;
}
.modal.quick_assign .close {
  text-align: right;
  float: unset;
  opacity: 1;
  padding: 10px 10px 0;
}
.modal.quick_assign .close_modal_button {
  width: 40px;
  height: 40px;
  float: unset;
}
.modal.quick_assign .close_modal_button img {
  width: 20px;
  height: 20px;
}

.modal.quick_assign .assignment_builder_layout .assignment_builder_container {
  background: transparent;
}

.modal.quick_assign .iframe_wrapper {
  position: relative;
  height: calc(100% - 50px);
  width: 100%;
}

.modal.quick_assign .iframe_wrapper iframe {
  border-radius: 0 0 4px 4px;
}
.modal.quick_assign .confirmation_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.modal.quick_assign .confirmation_wrapper .action {
  display: flex;
  gap: 20px;
}
.modal.quick_assign.confirm_close {
  opacity: 1;
  background: unset;
}
.modal.quick_assign .loading {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 50px auto 40px auto;
}
/* QUICK ASSIGN BREAKPOINTS */

@media (min-width: 600px) and (max-width: 1023px) {
  .modal.quick_assign .modal-dialog {
    max-width: calc(100% - 40px);
    margin: 20px;
    height: calc(100vh - 40px);
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .modal.quick_assign .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .modal_placholder.login_panel:not(.modal_mobile_view) .modal-dialog {
    width: 680px;
    max-width: none;
  }

  .login_panel .external_buttons,
  .login_panel .ub_form_container.login_wide {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
  }

  .nav-list > li.enter_code_badge_li_sTablet {
    display: inline-block;
  }

  .enter_code_badge_username {
    display: none;
  }

  .external_login_line {
    width: 1px;
    height: 214px;
    background: #00b3b3;
    position: absolute;
    top: -10px;
    left: 2px;
    margin: unset;
  }
}

@media (min-width: 900px) {
  /* DEFAULT: NO ADMIN AND NO BRAINPOP101 */
  .nav-list li.mbp_menu {
    display: none;
  }

  .nav-list li.navbar_for_teacher_button {
    display: inline-block;
  }

  /* ---> NAVBAR WITH: ADMIN + BRAINPOP101 */
  .nav-list.with_admin.with_brainpop101 li.mbp_menu {
    display: inline-block;
  }

  .nav-list.with_admin.with_brainpop101 .navbar_admin_button {
    display: none;
  }

  /* ---> NAVBAR WITH: BRAINPOP101 (NO ADMIN) */
  .nav-list.with_admin:not(.with_admin) li.navbar_for_teacher_button {
    display: inline-block;
  }

  .nav-list.with_admin:not(.with_brainpop101) li.mbp_menu {
    display: none;
  }

  /* ---> NAVBAR WITH: ADMIN (NO BRAINPOP101) */
  .nav-list.with_admin.with_admin:not(.with_brainpop101) li.mbp_menu {
    display: none;
  }

  .nav-list.with_admin:not(.with_brainpop101) li.navbar_for_teacher_button {
    display: inline-block;
  }

  /* .open>.my-brainpop-menu, .navbar_admin_dropdown {
        display: none;
    }
    .open>.my-brainpop-menu, .navbar_admin_dropdown.teacher_admin {
        display: inline-block;
    }
    .nav-list>.navbar_admin_button {
        display: inline-block;
    }
    .nav-list>.navbar_admin_button.teacher_admin {
        display: none;
    } */
}

@media (min-width: 1024px) {
  .mini_navbar_tour {
    top: 30px;
  }

  .mini_navbar_tour.popover.bottom > .arrow {
    left: 50px;
  }

  .nav-list > li.myb_course_badge_li_desktop {
    display: inline-block;
  }

  .myb_course_badge_username {
    display: none;
  }
}

@media (min-width: 1064px) {
  .navbar-brand {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .modal-header h1 {
    font-size: 18px;
  }

  .fullscreen .close_modal_button {
    height: 20px;
    width: 15px;
  }
}

@media (max-width: 400px) {
  .add_button {
    font-size: 14px;
    font-weight: bold;
  }
}

@media (max-width: 320px) {
  .add_button {
    width: 89%;
  }
}

a,
button {
  --focus-shadow: 0 0 0 2px white, 0 0 0 4px #0067f4;
}

a:focus,
button:focus {
  outline: none;
  box-shadow: var(--focus-shadow);
}

@supports selector(*:focus-visible) {
  a:focus,
  button:focus {
    box-shadow: initial;
  }

  a:focus-visible,
  button:focus-visible {
    box-shadow: var(--focus-shadow);
  }
}

/* ANIMATIONS */

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  100% {
    transform: rotate(360deg);
  }
}
