﻿/*
    ***Formatting***
    -Alphabetically place tags under their respective section
    -Avoid Redundancy by checking to see if tags already exist (Also can double check with global.less)
    -Naming Convention = Lowercase word-Lowercase word-... (Ex: .example-class-name)
    -If the item has a function call in ajax/ts then use camel casing (Ex: .exampleCamelCasing)
*/
/*#region MIXINS*/
.small-table-width .text-box {
  width: 100px !important;
}
@media (max-width: 700px) {
  .folderWrapper.uniform-height > div {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .search-details {
    min-width: 320px;
  }
}
@media (min-width: 768px) {
  .input-md input.form-control {
    width: 300px;
  }
}
/*#endregion*/
/*#region OBJECT TAGS*/
body {
  background: #ccc;
  background-attachment: fixed;
  background-size: cover;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
  background-color: #136B4E;
}
body::-webkit-scrollbar {
  width: 8px;
  background-color: #136B4E;
}
body::-webkit-scrollbar-thumb {
  background-color: #136B4E;
}
div.popover {
  max-width: 100%;
}
div.table-header {
  background-color: #9d9d9d;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px solid #000;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
hr.hr-strong {
  border-top: 1px solid #000;
}
a,
a[data-action-url]:not([href]):not([class]) {
  color: #007bff;
  font-weight: 500;
}
a:hover,
a[data-action-url]:not([href]):not([class]):hover {
  color: #0070c0;
  text-decoration: none;
}
a:focus,
a[data-action-url]:not([href]):not([class]):focus,
a:active,
a[data-action-url]:not([href]):not([class]):active,
a:visited,
a[data-action-url]:not([href]):not([class]):visited {
  text-decoration: none;
}
ul.dropdown-menu li {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/*#endregion*/
/*#region CLASS TAGS*/
.three-table tbody tr:nth-of-type(3n) {
  background-color: #BABABA;
}
.three-table tbody tr:nth-of-type(3n+1) {
  background-color: white;
}
.three-table tbody tr:nth-of-type(3n+2) {
  background-color: lightgray;
}
.double-table-row tbody tr:nth-of-type(4n+2),
.double-table-row tbody tr:nth-of-type(4n+1) {
  background-color: lightgray;
}
.list-in-table ol {
  margin: 0 !important;
}
.list-in-table li {
  margin: 0 !important;
}
.large-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: solid 1px #ccc;
  border-radius: 2px;
}
.large-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.stay-in-place {
  position: -webkit-sticky;
  position: sticky;
  top: 85px;
}
.click-card {
  color: black;
}
.click-card .card {
  border: 1px solid #6c757d;
  text-align: center;
  margin-top: 1rem;
  width: 136px;
}
.click-card .card-subtitle {
  color: #6c757d;
}
.click-card:hover {
  color: #418d41;
}
.click-card:hover .card {
  border: 2px solid #418d41;
  box-shadow: 10px 10px 5px #888888;
}
.click-card:hover .card-subtitle {
  color: #418d41;
}
.click-card .selected {
  border: 2px solid #418d41;
}
.large-check-box {
  display: block;
  position: relative;
  margin-bottom: 12px;
  margin-right: auto;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
  max-width: 27px;
  margin-left: auto;
}
.large-check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.large-check-box:hover input ~ .large-checkmark {
  background-color: #ccc;
}
.large-check-box input:checked ~ .large-checkmark {
  background-color: #2196F3;
  border-color: #1B75BF;
}
.large-check-box input:checked ~ .large-checkmark:after {
  display: block;
}
.large-check-box .large-checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.large-delete-check-box {
  display: block;
  position: relative;
  margin-bottom: 12px;
  margin-right: auto;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
  max-width: 27px;
}
.large-delete-check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.large-delete-check-box:hover input ~ .large-checkmark {
  background-color: #ccc;
}
.large-delete-check-box input:checked ~ .large-checkmark {
  background-color: red;
  border-color: darkred;
}
.large-delete-check-box input:checked ~ .large-checkmark:after {
  display: block;
}
.large-delete-check-box .large-checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.large-list .col-4:nth-child(odd) {
  background: #DEDEDE;
}
.fade-enter {
  opacity: 0.01;
}
.fade-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 2000ms ease-in;
}
.fade-exit {
  opacity: 1;
}
.fade-exit.fade-exit-active {
  opacity: 0.01;
  transition: opacity 2000ms ease-in;
}
.delete-hyperlink {
  color: red;
  font-weight: 500;
}
.delete-hyperlink:hover {
  color: darkred;
  text-decoration: none;
}
.delete-hyperlink:focus,
.delete-hyperlink:active,
.delete-hyperlink:visited {
  text-decoration: none;
}
.producer-report-table .th-secondary {
  cursor: pointer;
  text-align: left;
  background-color: #006593;
}
.producer-report-table th i {
  cursor: pointer;
}
.producer-report-table .renew {
  color: #418d41;
  font-weight: 500;
}
.producer-report-table .new {
  color: purple;
  font-weight: 500;
}
.producer-report-table .italics {
  font-style: italic;
}
.producer-report-table .small-link {
  font-size: smaller;
  font-weight: 400;
}
.hide-type th:nth-of-type(1) {
  display: none;
}
.hide-type td:nth-of-type(1) {
  display: none;
}
.hide-status th:nth-of-type(2) {
  display: none;
}
.hide-status td:nth-of-type(2) {
  display: none;
}
.hide-program th:nth-of-type(3) {
  display: none;
}
.hide-program td:nth-of-type(3) {
  display: none;
}
.hide-date th:nth-of-type(4) {
  display: none;
}
.hide-date td:nth-of-type(4) {
  display: none;
}
.hide-insured th:nth-of-type(5) {
  display: none;
}
.hide-insured td:nth-of-type(5) {
  display: none;
}
.hide-income th:nth-of-type(6) {
  display: none;
}
.hide-income td:nth-of-type(6) {
  display: none;
}
.hide-carriers th:nth-of-type(7) {
  display: none;
}
.hide-carriers td:nth-of-type(7) {
  display: none;
}
.hide-online th:nth-of-type(8) {
  display: none;
}
.hide-online td:nth-of-type(8) {
  display: none;
}
.hide-dslmt th:nth-of-type(9) {
  display: none;
}
.hide-dslmt td:nth-of-type(9) {
  display: none;
}
.hide-probability th:nth-of-type(10) {
  display: none;
}
.hide-probability td:nth-of-type(10) {
  display: none;
}
.hide-agent th:nth-of-type(11) {
  display: none;
}
.hide-agent td:nth-of-type(11) {
  display: none;
}
.hide-todo th:nth-of-type(12) {
  display: none;
}
.hide-todo td:nth-of-type(12) {
  display: none;
}
.table-sm::-webkit-scrollbar-track,
.table-md::-webkit-scrollbar-track,
.table-scrollable::-webkit-scrollbar-track,
.table-md-lg::-webkit-scrollbar-track,
.table-lg::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  background-color: #9d9d9d;
}
.table-sm::-webkit-scrollbar,
.table-md::-webkit-scrollbar,
.table-scrollable::-webkit-scrollbar,
.table-md-lg::-webkit-scrollbar,
.table-lg::-webkit-scrollbar {
  width: 5px;
  background-color: #9d9d9d;
}
.table-sm::-webkit-scrollbar-thumb,
.table-md::-webkit-scrollbar-thumb,
.table-scrollable::-webkit-scrollbar-thumb,
.table-md-lg::-webkit-scrollbar-thumb,
.table-lg::-webkit-scrollbar-thumb {
  background-color: #9d9d9d;
}
.toolLinksDiv:hover {
  background-color: #e9ecef;
}
.transcript-progress {
  border: solid 0.5px gray;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
  height: 6px;
  margin-bottom: 5px;
}
.transcript-progress .progress-bar {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
.review-progress {
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
  height: 25px;
  margin-bottom: 5px;
}
.review-progress .progress-bar {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
.sub-title-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
}
.transcript-card {
  margin: 0.5rem;
  border: 1px solid #9d9d9d;
  font-size: 16px;
  width: 18rem;
  height: 250px;
}
.transcript-card .card-body {
  height: 145px;
}
.transcript-card .card-text {
  color: gray;
  font-size: 14px;
}
.transcript-card .card-footer {
  background-color: transparent;
  border-top: none;
}
.accordion-card .card-header {
  cursor: pointer;
  background-color: transparent;
}
.accordion-card .card-header h5 {
  margin-bottom: 0;
  text-align: left;
}
.accordion-card .card-header span {
  float: right;
  vertical-align: middle;
  padding-top: 3px;
}
.accordion-arrow-icon {
  float: right;
  vertical-align: middle;
  padding-top: 3px;
}
.accordion-content {
  display: none;
}
.accordion-header {
  cursor: pointer;
}
.accordion-modules h3 {
  padding-top: 5px;
  text-align: left;
  font-size: 1.2rem;
}
.program-cob-list-card {
  border: solid 1px #418d41;
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 0.5rem;
}
.activity-high {
  color: red;
  text-shadow: 0px 0px 3px #000;
}
.activity-low {
  color: green;
  text-shadow: 0px 0px 3px #000;
}
.activity-medium {
  color: #fdfd96;
  text-shadow: 0px 0px 3px #000;
}
.activity-minimal {
  color: white;
  text-shadow: 0px 0px 3px #000;
}
.bookmark {
  font-size: 24px;
  padding-top: 15px;
}
.bookmark-empty {
  cursor: pointer;
}
.bookmark-filled {
  cursor: pointer;
  color: orangered;
}
.break-word-all {
  word-break: break-all;
}
.btn-toggle-switch {
  color: #418d41;
  background: #9d9d9d;
  margin: 0 0rem;
  padding: 0;
  position: relative;
  border: none;
  height: 1.5rem;
  width: 3rem;
  border-radius: 1.5rem;
}
.btn-toggle-switch:before,
.btn-toggle-switch:after {
  color: #418d41;
  line-height: -0.5rem;
  color: #fff;
  letter-spacing: 0.75px;
  left: 0.4125rem;
  width: 2.325rem;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  position: absolute;
  transition: opacity 0.25s;
  top: 50%;
  transform: translateY(-50%);
}
.btn-toggle-switch:before {
  text-align: right;
  content: 'Off';
  left: 0.5rem;
}
.btn-toggle-switch:after {
  content: 'On';
  right: 0rem;
  text-align: left;
  opacity: 0;
}
.btn-toggle-switch.active {
  background-color: #418d41;
  transition: background-color 0.25s;
}
.btn-toggle-switch.active:before {
  opacity: 0;
}
.btn-toggle-switch.active:after {
  opacity: 1;
}
.btn-toggle-switch.active > .handle {
  left: 1.6875rem;
  transition: left 0.25s;
}
.btn-toggle-switch > .handle {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left 0.25s;
}
.btn-toggle-switch-lg {
  color: #418d41;
  background: #9d9d9d;
  margin: 0 0rem;
  padding: 0;
  position: relative;
  border: none;
  height: 2.5rem;
  width: 5rem;
  border-radius: 2.5rem;
}
.btn-toggle-switch-lg:before,
.btn-toggle-switch-lg:after {
  color: #418d41;
  line-height: 0.5rem;
  color: #fff;
  letter-spacing: 0.75px;
  left: 0.6875rem;
  width: 3.875rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  position: absolute;
  transition: opacity 0.25s;
  top: 50%;
  transform: translateY(-50%);
}
.btn-toggle-switch-lg:before {
  text-align: right;
  content: 'Off';
  left: 0.5rem;
}
.btn-toggle-switch-lg:after {
  content: 'On';
  right: 0rem;
  text-align: left;
  opacity: 0;
}
.btn-toggle-switch-lg.active {
  background-color: #418d41;
  transition: background-color 0.25s;
}
.btn-toggle-switch-lg.active:before {
  opacity: 0;
}
.btn-toggle-switch-lg.active:after {
  opacity: 1;
}
.btn-toggle-switch-lg.active > .handle {
  left: 2.8125rem;
  transition: left 0.25s;
}
.btn-toggle-switch-lg > .handle {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  background: #fff;
  transition: left 0.25s;
}
.calendar-event-width-md {
  max-width: 600px;
}
.cloneMe.ui-draggable-dragging {
  min-width: 300px;
}
.colorCategories-wrapper {
  float: right;
}
.colorCategories-wrapper .colorCategories {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.agency-report-text {
  color: #1b7837;
}
.agency-report-text-secondary {
  color: #ff7f0e;
}
.agengy-report-footer {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6em;
  align-items: flex-end;
  margin-top: 0.5rem;
}
.th-secondary {
  text-align: left !important;
  background: none;
}
.agency-report-table th,
.agency-report-table td {
  border: 1px solid #dee2e6;
}
.agency-report-table .th-secondary {
  text-align: left !important;
  background: none;
}
.agency-report-table .smaller-header th {
  padding: 0.35rem;
}
.color-bar-left {
  display: block;
  color: black;
  font-size: 18px;
  line-height: 1.6em;
  padding-left: 20px;
  border-left: 5px solid #ff7f0e;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.color-bar-left p {
  text-align: justify;
}
.color-bar-left h5 {
  text-align: left;
}
.dashboard-block-blue {
  border-radius: 5px;
  background: #0adefb;
  border: 2px solid;
  width: 100%;
  padding: 15px;
  box-shadow: 10px 10px 5px #888888;
}
.dashboard-block {
  border-radius: 5px;
  background: #dddddd;
  border: 2px solid;
  width: 100%;
  padding: 15px;
  box-shadow: 10px 10px 5px #888888;
}
.deleteBookmark {
  color: black;
}
.deleteBookmark:hover {
  color: red;
}
.dropdown-icons {
  font-size: 24px;
  min-width: 30px;
  text-align: center;
}
.dropdown-menu.scroll {
  max-height: 500px;
  overflow-y: scroll;
  margin: auto;
}
.dropdown-menu.sm-scroll {
  max-height: 300px;
  overflow-y: scroll;
  margin: auto;
}
.dropdown-menu-tools {
  margin-top: 0;
  border-color: #006b93;
  min-width: 225px;
}
.dropdown-menu-tools .dropdown-item:hover {
  background-color: #00a3e0;
  color: white;
}
.dropdown-menu-tools .dropdown-item.tools-special-highlight {
  color: #418d41;
  font-weight: 500;
}
.dropdown-menu-tools .dropdown-item.tools-special-highlight:hover {
  background-color: #00a3e0;
  color: white;
}
.btn-tools {
  margin: 0.75em auto;
  border: 2px solid #0090c7;
  color: black;
  background: white;
  width: 225px;
  max-width: 225px;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.btn-tools:active,
.btn-tools:disabled,
.btn-tools:hover {
  color: white !important;
  background: #00a3e0 !important;
  box-shadow: unset !important;
  text-decoration: none !important;
}
.btn-tools:focus {
  box-shadow: unset;
}
.error {
  border-color: red;
  background-color: red;
}
.error-game-body {
  background: url("https://ucpmpublic.blob.core.windows.net/ucpmpublic/Production/ed/86/ef98/a3544d4e840a8d7168abf83c/landscape.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 650px;
}
.folderButton {
  float: right;
  cursor: pointer;
  overflow: hidden;
}
.folderButton .folder-stripe {
  color: #000;
  padding: 5px;
  margin-bottom: 5px;
}
.folderButton .pushpin-wrapper {
  display: inline-block;
}
.folder-wrapper.uniform-height {
  justify-content: flex-start;
}
.folder-wrapper.uniform-height > div {
  display: block;
}
.growl.growl-large {
  width: 100%;
}
.login-page {
  background-color: #2d302e;
}
.login-form-card {
  background-color: white;
  max-width: 350px;
  margin: 0 auto;
}
.login-form-card h3 {
  color: white;
}
.login-page-container {
  background-color: #2d302e;
  border: solid;
  border-width: 2px;
}
.login-page-container h3 {
  color: white;
}
.modal-table {
  max-width: 200px;
}
.navbar-stressed {
  background-color: #ec0000;
}
.navbar-stressed .nav > li > a {
  color: #080808;
}
.navbar-stressed .nav > .open > a {
  background-color: #ec0000;
}
.navbar-stressed .nav > .open > a:hover,
.navbar-stressed .nav > .open > a:focus {
  background-color: #ec0000;
}
.new-block {
  border-radius: 5px;
  background: #ffffff;
  border: 2px dotted;
  width: 100%;
  margin: 20px auto;
  padding: 15px;
  box-shadow: 10px 10px 5px #888888;
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
.new-block:hover {
  opacity: 1;
}
.newSubmissionSource {
  width: 90%;
  display: inline-block;
}
.quill-min-height {
  height: 300px !important;
}
.rating-sidebar {
  background-color: #F7F7F7;
  border-radius: 5px;
}
.rating-sidebar #trashCan {
  text-align: center;
  margin-top: 100px;
  padding-bottom: 100px;
}
.rating-sidebar .sidebar-content {
  overflow: hidden;
}
.rating-sidebar .fileDropOverlay {
  display: none;
}
.rating-sidebar .toolbox-wrapper .ui-draggable-dragging {
  width: 100%;
}
.rating-sidebar .toolbox-wrapper .toolbox {
  padding: 0 15px;
}
.rating-sidebar .toolbox-wrapper .toolbox .toolbox-header {
  background: #006593;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  font-weight: 100;
  font-size: 16px;
  padding: 8px;
}
.rating-sidebar .toolbox-wrapper .toolbox .toolbox-header:hover {
  background: #202D37;
  cursor: pointer;
}
.saveDetailsButton {
  float: right;
  border: 1px solid #2C514C;
  height: 100% !important;
}
.table#backlog-item-table {
  table-layout: fixed;
}
.table#backlog-item-table tbody tr td {
  word-wrap: break-word;
}
.tile-image {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.tile-image:hover {
  opacity: 0.7;
}
/*#endregion*/
/*#region ID TAGS*/
#button-holder {
  text-align: center;
  height: 90%;
}
#rating-model #result-view {
  border: 5px solid #006593 -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;;
  overflow: auto;
  max-height: 75vh;
  padding: 15px;
  background: #F7F7F7;
}
#rating-model #result-view .drawingBoard {
  min-height: 150px;
}
#rating-model #result-view .drawingBoardPlaceholder {
  background-color: #f3f3f3;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  width: 50px;
  height: 60px;
  float: left;
}
#rating-model #result-view .outOfScopeVariable {
  background-color: #ff8785;
}
#rating-model #result-view .uiValues {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#rating-model #result-view .uiValues input,
#rating-model #result-view .uiValues select,
#rating-model #result-view .uiValues .form-control,
#rating-model #result-view .uiValues .input-group {
  margin: 7.5px;
}
#rating-model #result-view .uiValues .input-group input {
  margin: 0;
}
#rating-model #result-view .toolbox {
  color: #fff;
  background: #006593;
  border-radius: 5px;
  margin: 7.5px auto;
  padding: 7.5px;
}
#rating-model #result-view .toolbox .toolboxContainer {
  border-left: 2px dashed #000;
  margin-left: 5px;
}
#rating-model #result-view .toolbox .toolboxContainer .dropHere {
  margin-left: 30px;
}
#rating-model #result-view .toolbox.nested-block-wrapper {
  background: transparent;
  /*.nested-block-wrapper {
                    background: #255884;
                }*/
}
#rating-model #result-view .toolbox .commentBlock {
  float: right;
}
#rating-model #result-view .toolbox .commentBlock a {
  color: #fff;
}
#rating-model #result-view .toolbox .commentBlock a:hover {
  color: #9d9d9d;
}
#rating-model #result-view .toolbox .commentBlock .removeBlock {
  color: white;
  margin: 3px;
  font-size: 24px;
  cursor: pointer;
}
#rating-model #result-view .toolbox .forEachBlockElement {
  margin-left: 30px;
}
#rating-model #result-view .toolbox .forEachDropZone .dropHere {
  background: #aaa;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #fff;
}
#start-button {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
/*Coverage Evaluator*/
#tContainer .carrier-forms-wrapper,
#tContainer .selected-forms-wrapper {
  max-width: 300px;
  font-size: 14px;
  overflow: scroll;
}
#tContainer .carrier-forms-wrapper #CarrierForms,
#tContainer .selected-forms-wrapper #CarrierForms,
#tContainer .carrier-forms-wrapper .treebody,
#tContainer .selected-forms-wrapper .treebody {
  max-height: 400px;
}
/*#endregion*/
/*#region Styled Lists */
ul.list {
  list-style-type: none;
  list-style-position: outside;
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
  padding-left: 20px;
}
ul.list li {
  position: relative;
  display: block;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
ul.list.strong li {
  font-weight: 600;
}
ul.list.bigger li {
  font-size: 18px;
  padding-left: 25px;
}
ul.list.bigger li:before {
  font-size: 18px;
}
ul.list li:before {
  font-family: "FontAwesome";
  font-size: 13px;
  position: absolute;
  left: 0;
  top: 1px;
}
ul.list-ok li:before {
  content: "\f00c";
  color: #9d9d9d;
}
ul.list-grrr li:before {
  content: "😒";
}
ul.list-enhance li:before {
  content: "\f0d0";
  color: #00a3e0;
}
ul.list-asterisk li:before {
  content: "\f069";
}
ul.list-star li:before {
  content: "\f005";
  color: gold;
}
ul.list-double-angle-right li:before {
  content: "\f101";
  color: #418d41;
}
ul.list-check li:before {
  content: "\f046";
}
ul.list-nested li:before {
  content: "\f101";
  color: #17a2b8;
}
ul.second-nest li:before {
  content: "\f102";
  color: purple;
}
ul.list-agency-report li:before {
  content: "\f101";
  color: #1f77b4;
}
ul.list-warning li:before {
  content: "\f071";
  color: red;
}
ul.list-blah li:before {
  content: "\f12a";
  color: red;
}
.knowledge-nav-list {
  margin: 0 !important;
}
.knowledge-nav-list a.nav-link {
  color: #17a2b8;
  font-weight: 500;
  line-height: 1.2;
}
.knowledge-nav-list a.nav-link:hover {
  color: #0070c0;
  text-decoration: none;
}
.knowledge-nav-list a.nav-link:focus,
.knowledge-nav-list a.nav-link:active,
.knowledge-nav-list a.nav-link:visited {
  text-decoration: none;
}
/*#endregion*/
.table-text {
  margin-bottom: 0.5rem;
}
.table-text-muted {
  font-size: 0.75rem;
  color: #6c757d;
}
.title-text {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.attention {
  font-size: 18px;
  font-weight: 600;
}
.attention.main {
  font-size: 20px;
  font-weight: 600;
}
.attention b {
  font-size: 18px;
  font-weight: 700;
}
.table-add-btn {
  border: solid 1px #418d41;
}
.table-add-btn span {
  color: #418d41;
}
.table-add-btn:hover,
.table-add-btn:disabled {
  background-color: #418d41 !important;
  border: #214721 !important;
}
.table-add-btn:hover span,
.table-add-btn:disabled span {
  color: white;
}
.table-remove-btn {
  border: solid 1px red;
}
.table-remove-btn span {
  color: red;
}
.table-remove-btn:hover,
.table-remove-btn:disabled {
  background-color: red !important;
  border: red !important;
}
.table-remove-btn:hover span,
.table-remove-btn:disabled span {
  color: white;
}
.card-events {
  background-color: #343a40;
  color: white;
}
.tank-nav-header {
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}
.tank-card-head {
  border-radius: 0.3rem !important;
  color: white !important;
  background-color: #434343 !important;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}
.tank-details {
  text-transform: uppercase;
  font-size: 8pt;
  color: #ABABAB;
  padding-top: 0.67em;
}
.tank-card-col {
  background-color: white;
  cursor: move;
  transition: box-shadow 0.2s;
  margin: 1rem;
  margin-right: 0rem;
  margin-top: 0.2rem;
  padding: 1rem;
  padding-top: 0;
  border-radius: 0.3rem !important;
  height: 100%;
  min-width: 19rem;
  max-width: 22rem;
}
.tank-card-col:hover {
  box-shadow: 0 0 4px #ffffff;
}
.tank-card {
  color: black;
  background-color: #F4F4F4;
  cursor: move;
  transition: box-shadow 0.2s;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
  width: 100%;
  border-radius: 0.3rem !important;
  border-color: white !important;
}
.tank-date {
  font-size: 8pt;
  color: #C2C2C2;
}
.tank-card:hover {
  box-shadow: 0 0 4px #ffffff;
}
.addtankcard {
  float: right;
  cursor: pointer;
  color: lightgray;
}
.tank-background {
  background-color: #24220B !important;
  background-attachment: fixed;
  background-size: cover;
}
.drop-placeholder {
  background-color: black;
  opacity: 0.5;
  min-width: 325px !important;
  max-width: 400px !important;
  max-height: 250px;
  margin: 1rem;
  margin-top: 0.2rem;
  margin-right: 0rem;
  border-radius: 0.3rem !important;
}
.logo-stamp {
  background-image: url('https://ucpmpublic.blob.core.windows.net/ucpmpublic/Production/fd/be/11ff/a7564199b082d3ecf045c7c8/LogoMRK.png');
  background-repeat: no-repeat;
  background-position: 77rem 36rem;
  background-size: 30% auto;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.025;
}
.logo-icon {
  content: url('/policytracker/content/images/logoIcon.png');
}
.stamped-True {
  background-color: red !important;
}
.task-group-column {
  cursor: move;
  transition: box-shadow 0.2s;
  height: 100%;
  min-width: 19rem;
  max-width: 22rem;
}
.task-group-column:hover {
  box-shadow: 0 0 4px #ffffff;
}
.task-group-header {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  background-color: #434343;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}
.board-card-template-one {
  border: 1px solid #17a2b8;
  margin-top: 0.5rem;
}
.board-card-template-one a {
  font-weight: bold;
  color: #17a2b8;
}
.board-card-template-one a:hover {
  font-weight: bold;
  color: #138496;
}
.board-card-template-two {
  border: 1px solid #418d41;
  margin-top: 0.5rem;
}
.board-card-template-two a {
  font-weight: bold;
  color: #418d41;
}
.board-card-template-two a:hover {
  font-weight: bold;
  color: #357335;
}
.card-text-input {
  min-height: 190px;
  width: auto;
}
.board-card-template-three {
  border: 1px solid red;
  margin-top: 0.5rem;
}
.board-card-template-three a {
  font-weight: bold;
  color: red;
}
.board-card-template-three a:hover {
  font-weight: bold;
  color: #d90000;
}
.add-new-hyper {
  font-weight: bold;
  color: #418d41;
}
.add-new-hyper:hover {
  font-weight: bold;
  color: #357335;
}
.strategy-head {
  width: 8.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.strategy-title {
  letter-spacing: 3px;
  text-transform: uppercase;
}
.background-ucpm-primary {
  color: white;
  background-color: #136B4E;
}
.background-ucpm-primary-light {
  color: white;
  background-color: #00A872;
}
.background-primary-dark {
  color: white;
  background-color: #2C514C;
}
.tag-style {
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
  border: 1px solid #A09C9C;
  border-radius: 1rem;
}
.dcat-issue {
  cursor: pointer;
}
.dcat-selected-issue {
  background-color: #00A872;
  cursor: pointer;
}
/* Alliant*/
.alliant-header-left {
  text-align: left;
}
.signup-header {
  background: #222E3C;
  color: #fff;
  padding: 5px;
}
.iframe-container {
  overflow: hidden;
  /* 16:9 aspect ratio */
  padding-top: 56.25%;
  position: relative;
}
.iframe-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.rainbow-box {
  border: 5px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
  margin: 20px auto;
}
.gardener-header {
  background-color: black;
  color: white;
  font-family: Montserrat;
  padding: 0.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.release-sections {
  background-color: black;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  margin-top: 2rem;
  border-radius: 0.2rem;
}
.release-card-title {
  color: #136B4E;
  font-size: large;
}
.bg-av {
  background-color: #D4A1CF;
}
.calendar-day-cell {
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.calendar-day-cell::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
  background-color: #9d9d9d;
}
.calendar-day-cell::-webkit-scrollbar {
  width: 3px;
  background-color: #9d9d9d;
}
.calendar-day-cell::-webkit-scrollbar-thumb {
  background-color: #9d9d9d;
}
.calendar-week-day-cell {
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
.calendar-week-day-cell::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
  background-color: #9d9d9d;
}
.calendar-week-day-cell::-webkit-scrollbar {
  width: 3px;
  background-color: #9d9d9d;
}
.calendar-week-day-cell::-webkit-scrollbar-thumb {
  background-color: #9d9d9d;
}
td.today {
  background-color: #CFCDCD;
}
td.not-month {
  background-color: #F7F7F7;
}
.calendar-legend-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.calendar-color-box {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
}
.highlight-duplicate {
  background-color: yellow  !important;
}