@charset "UTF-8";
/* colors */
/* fonts */
html {
  overflow-y: scroll;
  height: 100%;
}

@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  html.bigfont {
    font-size: 20px;
  }
}
* {
  box-sizing: border-box;
  font-family: "effra", sans-serif;
}

body {
  margin: 0;
  padding: 76px 0px 100px 0px;
  background-color: #000;
  color: #fff;
  min-height: 100%;
  position: relative;
  font-style: normal;
  font-weight: 400;
}

.content-width {
  padding: 0 15px;
  max-width: 61.88rem;
  margin: 0 auto;
}

.content-width-wider {
  padding: 0 15px;
  max-width: 68.13rem;
  margin: 0 auto;
}

.content-width-wider .content-width {
  padding: 0;
  max-width: 60rem;
}

.whitebg {
  background-color: #fff;
  color: #000;
}

.blackbg {
  background-color: #000;
  color: #fff;
}

.tablepadd {
  padding: 0 15px;
}

.inline {
  display: inline-block;
}

img {
  border: none;
}

a, a:visited {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.cursorpoint {
  cursor: pointer;
}

.refresh-icon {
  display: inline-block;
  vertical-align: middle;
  width: 2.2rem !important;
  height: 2.2rem !important;
  background: url(/images/icon_refresh.png);
  background-repeat: no-repeat;
  background-size: contain;
  border: 0px;
  cursor: pointer;
  flex: 0 0;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}

.strikethrough {
  text-decoration: line-through;
}

a.plus_icon {
  background-image: url(/images/icon_plus.png);
  padding-left: 42px;
  background-position: left center;
  background-size: 32px;
  background-repeat: no-repeat;
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  display: inline-block;
}

.icon-trash {
  background-image: url(/images/icon-trash.png);
  cursor: pointer;
  width: 0.75rem;
  height: 0.75rem;
  background-size: 0.75rem;
  display: inline-block;
}

ul {
  list-style: none;
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.25rem;
}

h4 {
  margin-bottom: 10px;
}

label {
  display: inline-block;
}

.hpad {
  padding-left: 65px;
  padding-right: 65px;
}

.vpad {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .hpad {
    padding-left: 1em;
    padding-right: 1em;
  }
  .vpad {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.when {
  display: none;
}

.bold {
  font-weight: bold;
}

.greentext, a.greentext {
  color: #36d123;
}

button.black {
  background-color: black;
  color: white;
}

.fright {
  float: right;
}

.flex-right {
  display: flex;
  justify-content: flex-end;
}

.centerx {
  margin: 0 auto;
  text-align: center;
}

.nowrap {
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

.debug {
  white-space: pre-wrap;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  background-color: #ffc;
  color: #444;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.row .cell-left {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.row .cell-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 1;
}

.page-header {
  margin: 20px 0px 20px 0px;
}
.page-header button {
  white-space: nowrap;
}
.page-header h1 {
  font-size: 1.875rem;
  margin: 0px;
}

.view-buttons {
  margin: 12px 0px;
}
.view-buttons > a {
  line-height: 2.5em;
  border: 1px solid #787878;
  display: inline-block;
  min-width: 6.5em;
  text-align: center;
  color: #36d123;
  margin-left: 6px;
}
.view-buttons a.selected {
  background-color: rgba(255, 255, 255, 0.32);
  border-color: #36d123;
}

.sort-headings > div {
  display: inline;
}
.sort-headings a {
  color: #36d123;
  text-transform: uppercase;
  display: inline-block;
  background-size: 10px 6px;
  background-position: right 0.5em bottom calc(1em - 3px);
  background-repeat: no-repeat;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 2em;
  padding-left: 1rem;
  padding-right: 1.5rem;
}
.sort-headings a.asc {
  background-image: url(/images/icon_uparrow_green.png);
  background-color: rgba(255, 255, 255, 0.32);
}
.sort-headings a.desc {
  background-image: url(../images/dropdown_arrow.png);
  background-color: rgba(255, 255, 255, 0.32);
}

@media (min-width: 767px) {
  .mobile {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .desktop {
    display: none !important;
  }
  .content-width-wider {
    padding: 0 8px;
  }
}
input {
  transition: padding 150ms ease-out;
  color: #36d123;
  background-color: transparent;
}

input:focus, textarea:focus, select:focus, button:focus, a:focus, th {
  outline: none;
}

input[type=text], input[type=number], input[type=email], input[type=date], input[type=password], input[type=tel] {
  border: 1px solid #CBCBCB;
  border-radius: 3px;
  height: 2.375rem;
  font-size: 1rem;
  padding-left: 6px;
}

input[type=checkbox] {
  position: relative;
  /* display: none; */
  width: 0px;
  visibility: hidden;
}

input[type=checkbox] + label {
  cursor: pointer;
  vertical-align: -3px;
  margin-right: 20px;
  position: relative;
}

input[type=checkbox]:checked + label:after {
  clip: rect(0px, 16px, 16px, 0px);
}

input[type=checkbox] + label:after {
  content: " ";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: url(/images/checkbox_1.png) no-repeat 0 0;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  left: -20px;
  top: -1px;
  clip: rect(8px, 8px, 8px, 8px);
  transition: clip 250ms;
}

input[type=text].searchfullwidth {
  border-bottom: 3.5px solid black;
  width: 100%;
  padding-left: 40px;
  background-image: url(/images/icon-search.png);
  background-size: 20px 20px;
  background-position: 10px center;
  background-repeat: no-repeat;
}

input:-webkit-autofill {
  /* remove yellow */
  -webkit-box-shadow: 0 0 0 30px white inset;
  box-shadow: 0 0 0 30px white inset;
}

label.fordate {
  padding-left: 30px;
}

label.fordate.active {
  padding-left: 0px;
}

input.datepicker {
  padding-left: 30px;
  background: url(/images/calendar.png) no-repeat left 5px center;
}

.date-picker {
  z-index: 10000;
}

input.datepicker.info {
  background-image: url(/images/calendar.png);
  background-position: left 0 bottom calc(1.15rem - 11px);
  background-repeat: no-repeat;
  background-size: auto;
}

.incarn.is_view input.datepicker.info {
  background: url(/images/calendar.png) no-repeat left 0 bottom calc(1.15rem - 11px);
}

.incarn.is_view input.info {
  background-image: none;
}

button, input[type=submit] {
  background-color: #36d123;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-appearance: none;
}

input.submit[type=submit] {
  min-width: 9.375rem !important;
}

textarea {
  border: 1px solid #CBCBCB;
  border-radius: 3px;
}
textarea:hover {
  border: 1px solid #b0b0b0;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #959595;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #959595;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #959595;
}

label.error {
  color: red !important;
}

.error::placeholder {
  color: red;
}

.error:-ms-input-placeholder {
  color: red;
}

.error::-ms-input-placeholder {
  color: red;
}

/* hover effects */
.input-button button:not(.ms-choice):hover, .input-button input[type=submit]:hover, .input-button .linktile.greenbg:hover {
  background-color: #32c221;
}

input[type=text]:not([disabled]):hover,
input[type=number]:not([disabled]):hover,
input[type=email]:not([disabled]):hover,
input[type=date]:not([disabled]):hover,
input[type=password]:not([disabled]):hover,
input[type=tel]:not([disabled]):hover {
  border: 1px solid #b0b0b0;
}

input[type=text]:not([disabled]):focus,
input[type=number]:not([disabled]):focus,
input[type=email]:not([disabled]):focus,
input[type=date]:not([disabled]):focus,
input[type=password]:not([disabled]):focus,
input[type=tel]:not([disabled]):focus {
  --border-bottom: 1px solid #32c221;
}

select:hover, button.ms-choice:hover, .project textarea:hover, .project textarea:focus {
  border: 1px solid #b0b0b0;
}

input[disabled] {
  color: #36d123;
  -webkit-text-fill-color: #36d123;
  opacity: 1;
  border: 1px solid #e1e1e1;
}

input[type=checkbox] + label:before {
  content: " ";
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: url(/images/checkbox_0.png) no-repeat 0 0;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  left: -20px;
  top: -1px;
}

input[type=radio] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

input[type=radio]:checked + label {
  background: url(../images/radio_1.png) no-repeat 0 center;
}

input[type=radio] + label {
  cursor: pointer;
  background-color: white;
  background: url(../images/radio_0.png) no-repeat 0 center;
  padding-left: 34px;
  height: 26px;
  line-height: 26px;
  margin-right: 15px;
  margin-bottom: 10px;
  margin-top: 10px;
}

input[type=radio]:disabled + label {
  cursor: default;
  opacity: 0.8;
}

.content-width .boxed > label:before {
  background-color: white;
}

.input-block {
  position: relative;
  margin-top: 1em;
  max-width: 100%;
}
.input-block label.active {
  opacity: 1;
  top: 0px;
  font-size: 0.8333rem;
}
.input-block label {
  position: absolute;
  color: #959595;
  opacity: 0;
  top: 16px;
  pointer-events: none;
  font-size: 1rem;
  z-index: 1;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
  transition: all 150ms ease-out;
}
.input-block input {
  padding-top: 13px;
  height: 3rem;
  max-width: 100%;
}

.input-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.input-section > div {
  max-width: 23.44rem;
  width: 100%;
  margin-right: 30px;
  margin-bottom: 30px;
}

input.half, select.half {
  width: 100%;
  max-width: 15.31rem;
  margin-right: 30px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 1px;
  position: relative;
  min-height: 2.3rem;
  font-size: 1rem;
  padding: 0.5rem 0.625rem;
  padding-right: 40px;
  border: 1px solid #CBCBCB;
  border-radius: 3px;
  background: transparent url(/images/dropdown_arrow.png) no-repeat right 15px center;
  background-size: 10px 6px;
  cursor: pointer;
  color: #959595;
}

select:disabled {
  background: none;
  cursor: default;
}
select:disabled:hover {
  border: 1px solid #CBCBCB;
}

select.value-set,
input.value-set {
  color: #000;
}

.boxed {
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 0;
}
.boxed > input[type=checkbox] {
  position: absolute;
  margin-top: 20px;
  margin-left: 15px;
}
.boxed > input[type=checkbox] + label {
  font-size: 1rem;
  line-height: 16px;
  padding: 15px 20px 15px 40px;
  border: 2px solid #e1e1e1;
  margin-right: -2px;
  transition: background-color 200ms, color 200ms;
}
.boxed > input[type=checkbox] + label:before {
  left: 13px;
  top: 16px;
}
.boxed > input[type=checkbox] + label:after {
  left: 13px;
  top: 16px;
}
.boxed > input[type=checkbox]:checked + label {
  background-color: #36d123;
  color: white;
}

.original input[type=text], .original input[type=number], .original input[type=email], .original input[type=date], .original input[type=password], .original input[type=tel] {
  border: none;
  border-bottom: 4px solid #959595;
  height: 2.375rem;
  font-size: 1rem;
  border-radius: 0px;
  padding-left: 0;
}
.original input[type=text]:not([disabled]):hover, .original input[type=number]:not([disabled]):hover, .original input[type=email]:not([disabled]):hover, .original input[type=date]:not([disabled]):hover, .original input[type=password]:not([disabled]):hover, .original input[type=tel]:not([disabled]):hover {
  border: 0px;
  border-bottom: 4px solid #6f6f6f;
}
.original input[type=text]:not([disabled]):focus, .original input[type=number]:not([disabled]):focus, .original input[type=email]:not([disabled]):focus, .original input[type=date]:not([disabled]):focus, .original input[type=password]:not([disabled]):focus, .original input[type=tel]:not([disabled]):focus {
  border-bottom: 4px solid #32c221;
}
.original select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 1px;
  text-overflow: "";
  position: relative;
  min-height: 2.5rem;
  font-size: 1rem;
  padding: 0.625rem;
  padding-right: 40px;
  border: 2px solid #e1e1e1;
  border-radius: 0;
  background: transparent url(/images/dropdown_arrow.png) no-repeat right 15px center;
  background-size: 10px 6px;
  margin-top: 15px;
  cursor: pointer;
  color: #959595;
}
.original .input-block input {
  padding-top: 13px;
  height: 3rem;
  max-width: 100%;
}
.original input.half, .original select.half {
  width: 100%;
  max-width: 15.31rem;
  margin-right: 30px;
}

.dataTables_controls {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.dataTables_paginate .paginate_button.disabled {
  color: #959595;
}

.dataTables_paginate .paginate_button:not(.next) {
  margin-right: 8px;
}

.dataTables_paginate .paginate_button.current {
  color: #36d123;
}

.dataTables_paginate .paginate_button:not(.next) {
  margin-right: 8px;
}

.dataTables_paginate .paginate_button:not(.previous) {
  margin-left: 8px;
}

/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */
.ms-parent {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.ms-choice {
  display: block;
  width: 100%;
  height: 26px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #aaa;
  text-align: left;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
}

.ms-choice.disabled {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.ms-choice > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding-left: 8px;
}

.ms-choice > span.placeholder {
  color: #999;
}

.ms-choice > div {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 25px;
  background: url("/js/multiple-select/multiple-select.png") left top no-repeat;
}

.ms-choice > div.open {
  background: url("/js/multiple-select/multiple-select.png") right top no-repeat;
}

.ms-drop {
  width: 100%;
  overflow: hidden;
  display: none;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  z-index: 1000;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ms-drop.bottom {
  top: 100%;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.ms-drop.top {
  bottom: 100%;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

.ms-search {
  display: inline-block;
  margin: 0;
  min-height: 26px;
  padding: 4px;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 10000;
}

.ms-search input {
  width: 100%;
  height: auto !important;
  min-height: 24px;
  padding: 0 20px 0 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #fff url("/js/multiple-select/multiple-select.png") no-repeat 100% -22px;
  background: url("/js/multiple-select/multiple-select.png") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  background: url("/js/multiple-select/multiple-select.png") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url("/js/multiple-select/multiple-select.png") no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url("/js/multiple-select/multiple-select.png") no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  background: url("/js/multiple-select/multiple-select.png") no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background: url("/js/multiple-select/multiple-select.png") no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
}

.ms-search, .ms-search input {
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.ms-drop ul {
  overflow: auto;
  margin: 0;
  padding: 5px 8px;
}

.ms-drop ul > li {
  list-style: none;
  display: list-item;
  background-image: none;
  position: static;
  padding-top: 6px;
  padding-bottom: 6px;
}

.ms-drop ul > li .disabled {
  opacity: 0.35 !important;
  filter: Alpha(Opacity=35);
}

.ms-drop ul > li.multiple {
  display: block;
  float: left;
}

.ms-drop ul > li.group {
  clear: both;
}

.ms-drop ul > li.multiple label {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ms-drop ul > li label {
  font-weight: normal;
  display: block;
  white-space: nowrap;
}

.ms-drop ul > li label.optgroup {
  font-weight: bold;
}

.ms-drop input[type=checkbox] {
  vertical-align: middle;
}

.ms-drop .ms-no-results {
  display: none;
}

/** custom changes **/
.ms-choice {
  height: auto;
  margin: 8px 0 0 0;
  border: 1px solid #CBCBCB;
  border-radius: 3px;
  background-color: transparent;
  min-height: 37px;
}
.ms-choice > span {
  position: relative;
  font-size: 1.125rem;
  padding: 0.3rem 1.9rem 0.3rem 0.625rem;
  min-height: 2em;
}
.ms-choice > div {
  top: 22.5%;
  margin-top: 4px;
  margin-right: 10px;
}

.ms-drop ul > li > label > input[type=checkbox] + span:before {
  content: " ";
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background-color: white;
  background: url(/images/checkbox_0.png) no-repeat 0 0;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 2px;
}

.ms-drop ul > li > label > input + span {
  padding-left: 23px;
  display: inline-block;
  position: relative;
}

.ms-drop ul > li > label > input[type=checkbox]:checked + span:after {
  clip: rect(0px, 15px, 15px, 0px);
}

.ms-drop ul > li > label > input[type=checkbox] + span:after {
  content: " ";
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background-color: white;
  background: url(/images/checkbox_1.png) no-repeat 0 0;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 2px;
  clip: rect(7px, 7px, 7px, 7px);
  transition: clip 250ms;
}

.fixedheader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 12.5px 0;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.2);
  height: 76px;
}
.fixedheader .header-content {
  display: flex;
  justify-content: space-between;
}
.fixedheader .brand {
  display: flex;
  align-items: center;
}
.fixedheader .logo {
  height: 46.5px;
}

#nav_overlay {
  position: fixed;
  /* margin-top:76px; */
  top: 76px;
  overflow-y: scroll;
  /* hide scrollbar */
  right: -17px;
  height: 0px;
  left: 0;
  background-color: #36d123;
  color: white;
  transition: 0.4s;
  text-align: center;
  z-index: 2;
}
#nav_overlay a {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 30px;
  font-weight: bold;
  padding: 15px;
}
#nav_overlay a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.nav_open #nav_overlay {
  height: calc(100vh - 76px);
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #252525;
}
.footer .logo {
  height: 24px;
}
.footer .content-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 57px;
}
.footer .copyright {
  font-size: 12px;
  color: white;
  padding: 15px 0 15px 30px;
}

.menu {
  line-height: 50px;
  vertical-align: middle;
  font-size: 21px;
  font-weight: bold;
  cursor: pointer;
  transition: color 200ms ease-in;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.menu > span {
  line-height: 1em;
}
.menu > span.admin-mode {
  color: #36d123;
  padding-right: 1em;
}
.menu .menu-button {
  display: inline-block;
  margin: 0 1em;
  vertical-align: middle;
}
.menu .menu-button div {
  transition: background-color 300ms, opacity 200ms, margin 100ms, transform 200ms;
  background-color: #36d123;
  width: 30px;
  height: 4px;
  margin: 5px 0;
}

.nav_open .menu {
  color: #36d123;
}
.nav_open .menu > span.admin-mode {
  color: black;
}
.nav_open .menu-button div:first-child {
  background-color: #000;
  transform: rotate(225deg);
  margin: 0 0 -9px;
}
.nav_open .menu-button div:nth-child(2) {
  opacity: 0;
}
.nav_open .menu-button div:last-child {
  background-color: #000;
  transform: rotate(-225deg);
  margin: -9px 0 0;
}

.breadcrumbs {
  margin-bottom: 8px;
  font-size: 1.133rem;
  font-weight: bold;
  color: #36d123;
}
.breadcrumbs a {
  color: #36d123;
  text-decoration: none;
}

body.login {
  padding: 0 0;
}

.login .row {
  display: flex;
  flex-direction: row;
  height: 100vh;
}
.login .row .column.left {
  width: 54%;
  background-color: grey;
  height: 100%;
}
.login .row .column.right {
  width: 46%;
  padding: 6.5vw 7vw;
  box-sizing: border-box;
  height: 100%;
}
.login .logo {
  height: 78px;
}
.login input[type=email], .login input[type=password] {
  max-width: 310px;
  width: 100%;
}
.login input.login[type=submit] {
  background-color: #000;
  font-weight: bold;
  min-width: 148px;
}
.login div.csgo {
  font-size: 70px;
  font-weight: bold;
  color: #36d123;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
.login .csgo.gt960 {
  height: 54px;
  background-image: url(/images/csgo_new.png);
  margin: 20px 0;
}
.login .csgo.lteq960 {
  height: 54px;
  background-image: url(/images/cs2go.png);
  margin: 20px 0;
}
.login div.smaller {
  font-size: smaller;
  max-width: 320px;
}
.login .redirect_link, .login a.redirect_link:visited {
  color: #36d123;
}
.login .splash {
  background: url(/images/splash1.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}
.login .splash .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 22px;
}
.login .splash .dots div {
  background-color: white;
  opacity: 0.25;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  margin: 6px;
  cursor: pointer;
}
.login .splash.s0 .dots #s0,
.login .splash.s1 .dots #s1,
.login .splash.s2 .dots #s2 {
  opacity: 1;
}
@media (min-width: 961px) {
  .login .lteq960 {
    display: none;
  }
}
@media (max-width: 960px) {
  .login .gt960 {
    display: none;
  }
}
@media (max-width: 670px) {
  .login .row .column.left {
    display: none;
  }
  .login .row .column.right {
    padding-top: 8vh;
    width: 100%;
  }
  .login img.logo {
    padding-top: 20px;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9;
}
.modal .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: white;
  color: black;
}
.modal .popup > .content-width-wider {
  max-height: 95vh;
  overflow-y: auto;
}
.modal .popup .popup-actions {
  height: 50px;
  padding: 8px 0;
}
.modal button.xclose {
  height: 30px;
  width: 30px;
  border-radius: 15px;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  padding: 0;
  line-height: 30px;
  vertical-align: middle;
  z-index: 10;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.modal button.xclose:before {
  content: "✕";
  font-weight: bold;
}

#my_alert .popup {
  text-align: center;
  box-sizing: border-box;
  padding: 22px 26px;
}
#my_alert .popup .message {
  /*padding: 25px 20px;*/
  min-height: 60px;
  min-width: 140px;
  margin: 26px 44px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#my_alert .popup .message ul {
  padding-inline-start: 0;
}
#my_alert .popup button.confirm {
  margin: 0 10px;
  width: 90px;
}

#add_client .popup {
  width: 90%;
  max-width: 1124px;
  padding-bottom: 20px;
}
#add_client .input-container {
  max-width: 800px;
}
#add_client .input-cell.half-container {
  max-width: 250px;
}

table.fixed {
  table-layout: fixed;
}

.dataTables_scrollHeadInner {
  margin: 0 auto;
}

table.dataTable thead .sorting_asc {
  background-image: url(/images/sort_asc.png) !important;
}
table.dataTable thead .sorting_desc {
  background-image: url(/images/sort_dsc.png) !important;
}

table.mytable {
  border-collapse: collapse;
  width: 100%;
}
table.mytable .cell-actions {
  white-space: nowrap;
}
table.mytable .cell-actions .icon-edit {
  background-image: url(/images/icon-edit.png);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
}
table.mytable .cell-actions .icon-trash {
  background-image: url(/images/icon-trash.png);
  cursor: pointer;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
}
table.mytable th {
  font-weight: bold;
  border-bottom: 1.5px solid black;
  color: #000;
}
table.mytable th, table.mytable td {
  text-align: left;
  font-size: 0.85rem;
  height: 42px;
  color: #000;
}
table.mytable td {
  border-bottom: 1px solid #e1e1e1;
}
table.mytable td:last-of-type {
  text-align: right;
  white-space: nowrap;
}
table.mytable .icon-view,
table.mytable .icon-edit,
table.mytable .icon-trash {
  margin: 0 0 0 0.3125rem;
}
table.mytable td.TotalRevenue {
  width: 1%;
}

.table-sort {
  margin-bottom: 20px;
}
.table-sort a {
  color: #36d123;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  background-size: 10px 6px;
  background-position: right center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.table-sort a.asc {
  background-image: url(/images/icon_uparrow_green.png);
}
.table-sort a.desc {
  background-image: url(../images/dropdown_arrow.png);
}

.icon-edit {
  background-image: url(/images/icon-edit.png);
}

@media (max-width: 767px) {
  .mytable-container {
    overflow-y: auto;
    max-width: 95vw;
  }
  table.dataTable {
    display: flex;
    width: 90vw;
    overflow-x: auto;
  }
  table.dataTable tbody {
    display: flex;
    margin-left: 130px;
  }
  table.dataTable thead {
    position: absolute;
    left: 0px;
    width: 130px;
    background-color: #fff;
    z-index: 1;
  }
  table.dataTable thead > tr, table.dataTable tbody > tr {
    display: flex;
    flex-direction: column;
    height: 100% !important;
  }
  table.dataTable thead > tr td, table.dataTable thead > tr th, table.dataTable tbody > tr td, table.dataTable tbody > tr th {
    height: 50px !important;
    box-sizing: border-box;
    width: 130px !important;
    border-bottom: 1px solid #eee;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #000;
  }
  table.dataTable thead > tr .dataTables_sizing, table.dataTable tbody > tr .dataTables_sizing {
    height: 50px !important;
  }
  table.dataTable thead > tr .dataTables_scroll, table.dataTable tbody > tr .dataTables_scroll {
    overflow: hidden;
  }
  table.dataTable thead > tr th, table.dataTable tbody > tr th {
    text-align: right;
  }
  table.dataTable thead > tr td:last-of-type, table.dataTable tbody > tr td:last-of-type {
    text-align: left;
  }
}
#searchform {
  margin-bottom: 20px;
  position: relative;
}
#searchform select[size="1"], #searchform input[type=text] {
  max-width: 290px;
  width: 30%;
  min-width: 230px;
  margin-right: 18px;
  height: 2.5rem;
  background-color: white;
  border-bottom: none;
  vertical-align: middle;
  margin-top: 15px;
}
#searchform .ms-parent {
  max-width: 290px;
  width: 30% !important;
  min-width: 230px;
}
#searchform .ms-parent .ms-choice {
  height: 2.5rem;
  background-color: #fff;
}
#searchform .ms-parent .ms-choice > div {
  top: 35%;
}
@media (max-width: 960px) {
  #searchform select, #searchform input {
    width: 46%;
  }
}
@media (max-width: 700px) {
  #searchform select, #searchform input {
    width: 95%;
  }
}
#searchform #search {
  padding-left: 0.625rem;
}

.filter {
  display: inline-block;
  margin-bottom: 20px;
}
.filter .ms-drop input[type=checkbox] {
  width: 0;
  height: 0;
  margin: 0;
}
.filter select, .filter input[type=text], .filter .ms-parent, .filter .checkbox-container, .filter .tree-filter {
  margin-right: 18px;
}
.filter select, .filter input {
  width: 290px;
  min-height: 2rem;
  background-color: white;
  border-bottom: none;
  vertical-align: middle;
}
.filter select {
  margin-top: 15px;
  min-height: 2.3rem;
}
.filter input[type=text], .filter .checkbox-container {
  margin-top: 18px;
  min-height: 2rem;
}
.filter .ms-choice {
  margin-top: 18px;
}
.filter .ms-choice > span {
  background-color: white;
  font-size: 1rem;
}
.filter > button {
  background-color: black;
  height: 40px;
  position: relative;
  vertical-align: middle;
  line-height: 40px;
  font-size: 1.25rem;
  font-weight: bold;
}
.filter > button.toggle-filter:hover {
  background-color: initial;
  text-decoration: underline;
}
.filter > button:after {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-position: center center;
  background-size: 20px 23px;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: " ";
}
.filter > button.toggle-filter {
  padding: 0 0 0 50px;
}
.filter > button.toggle-filter:after {
  background-image: url(../images/icon-filter.svg);
}
.filter #filter-content {
  display: none;
  margin: 1em;
}
.filter .filter-buttons {
  margin-top: 15px;
  display: inline-block;
  vertical-align: middle;
}
.filter .filter-clear {
  position: absolute;
  right: 54px;
  top: -27px;
  font-weight: bold;
  background-color: transparent;
}
.filter .filter-clear:hover {
  text-decoration: underline;
  background-color: transparent;
}
.filter .filter-button {
  width: 130px;
  height: 2.4rem;
  white-space: nowrap;
}
.filter.show #filter-content {
  display: block;
}
.filter.show > button:after {
  background-color: #36d123;
}

.ui-tooltip {
  background-color: #000;
  color: #fff;
  border-radius: 3px 3px 3px 3px;
  border-color: #222 !important;
  max-width: 800px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: pre-wrap;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3);
}
.ui-tooltip:before {
  top: -5px;
  bottom: auto;
  left: 8px;
  right: auto;
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000;
  transform: rotate(45deg);
  -webkit-box-shadow: -4px -4px 6px 0px rgba(0, 0, 0, 0.3);
  box-shadow: -4px -4px 6px 0px rgba(0, 0, 0, 0.3);
  border-top: 1px solid #222 !important;
  border-left: 1px solid #222 !important;
}
.ui-tooltip.down-arrow:before {
  display: none;
}
.ui-tooltip.down-arrow:after {
  bottom: -5px;
  left: 8px;
  right: auto;
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000;
  transform: rotate(225deg);
  -webkit-box-shadow: -4px -4px 6px 0px rgba(0, 0, 0, 0.3);
  box-shadow: -4px -4px 6px 0px rgba(0, 0, 0, 0.3);
  border-top: 1px solid #222;
  border-left: 1px solid #222;
}
.ui-tooltip.right-arrow:after, .ui-tooltip.right-arrow:before {
  left: auto !important;
  right: 8px !important;
}

.ui-widget-shadow {
  -webkit-box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.4) !important;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.4) !important;
}

.edit-mode {
  color: black;
  font-size: 0.8rem;
  font-weight: normal;
  flex: 0 0 110px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.edit-mode > div {
  height: 40px;
  line-height: 40px;
}
.edit-mode > div > span {
  line-height: 1.5em;
}

.edit-toggle {
  margin-right: 0.9375rem;
  margin-left: 1em;
  font-size: 0.75rem;
  height: 1.813rem;
  border: 2px solid #E1E1E1;
  border-radius: 0.5rem;
  display: inline-block;
  text-align: center;
  line-height: 1.563rem;
  cursor: pointer;
}
.edit-toggle > span {
  width: 1.875rem;
  height: calc(1.813rem - 4px);
  display: inline-block;
}
.edit-toggle .active {
  background-color: #36d123;
  border-radius: 0.4rem;
  color: white;
}

@media (max-width: 600px) {
  .edit-mode > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.full-dialog {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.full-dialog .dialog-window {
  max-width: 900px;
  min-height: 300px;
  width: 90%;
  border: 1px solid #ccc;
  background-color: #fff;
  position: relative;
  color: #000;
  padding: 0px 2em;
}
.full-dialog .dialog-window .close-button {
  height: 30px;
  width: 30px;
  border-radius: 15px;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  padding: 0;
  line-height: 30px;
  vertical-align: middle;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.full-dialog .dialog-window .close-button:before {
  content: "✕";
  font-weight: bold;
}
.full-dialog .dialog-window .dialog-subtitle {
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 767px) {
  .full-dialog .dialog-window {
    width: 95%;
    max-width: 600px;
    max-height: 95%;
    overflow-y: scroll;
  }
  .full-dialog .dialog-window .deliverable-types label {
    font-size: 12px !important;
  }
}
.modal.assign .popup, .modal.decline .popup {
  min-width: 480px;
  min-height: 248px;
  padding: 40px;
}
.modal.assign .pane, .modal.decline .pane {
  border: 1px solid grey;
  color: #36d123;
  padding: 40px;
}
.modal.assign .pane label, .modal.decline .pane label {
  display: block;
  width: 100%;
}
.modal.assign .tab, .modal.decline .tab {
  border: 1px solid grey;
  border-bottom: none;
  color: #36d123;
  width: 100px;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  text-align: center;
}
.modal.assign button.decline, .modal.decline button.decline {
  background-color: black;
}
.modal.assign .toggle_users, .modal.decline .toggle_users {
  display: inline-block;
  float: right;
}
@media (max-width: 480px) {
  .modal.assign .popup, .modal.decline .popup {
    min-width: 95%;
    min-height: 248px;
    padding: 10px;
    width: 95%;
  }
  .modal.assign .popup textarea, .modal.decline .popup textarea {
    width: 100%;
  }
}

.media-type-icon {
  background-size: 34px 34px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 0;
}
.media-type-icon.tv {
  background-image: url("/images/media_types/tv.png");
}
.media-type-icon.digital {
  background-image: url("/images/media_types/digital.png");
}
.media-type-icon.onscreen {
  background-image: url("/images/media_types/onscreen.png");
}
.media-type-icon.other {
  background-image: url("/images/media_types/other.png");
}
.media-type-icon.social {
  background-image: url("/images/media_types/social.png");
}
.media-type-icon.radio {
  background-image: url("/images/media_types/radio.png");
}
@media (min-width: 640px) {
  .media-type-icon.tv {
    background-image: url("/images/media_types/tv-2x.png");
  }
  .media-type-icon.digital {
    background-image: url("/images/media_types/digital-2x.png");
  }
  .media-type-icon.onscreen {
    background-image: url("/images/media_types/onscreen-2x.png");
  }
  .media-type-icon.other {
    background-image: url("/images/media_types/other-2x.png");
  }
  .media-type-icon.social {
    background-image: url("/images/media_types/social-2x.png");
  }
  .media-type-icon.radio {
    background-image: url("/images/media_types/radio-2x.png");
  }
}

.media-types {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5em;
}
.media-types .media-type-cell {
  display: inline-block;
  width: 137px;
  height: 115px;
  border: 1px solid #ccc;
  border-radius: 7px;
  text-align: center;
  padding: 18px 2px;
  margin: 2px;
}
.media-types .media-type-cell .media-label {
  height: 2.6em;
}
.media-types .media-type-cell > p {
  margin: 0px;
  padding: 2px 0px;
  font-size: 16px;
  height: 3em;
}
.media-types .media-type-cell.active {
  background-color: #36D123;
  color: #fff;
}
.media-types #mtype-tv {
  order: -2;
}
.media-types #mtype-radio {
  order: -1;
}

.project-type {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  margin-top: 5px;
}

.deliverable-selection {
  min-height: 260px;
}
.deliverable-selection p {
  margin-bottom: 2px;
}
.deliverable-selection .input-container .input-cell.half-container {
  width: 40%;
  margin-right: 1.8em;
}
.deliverable-selection .input-container .input-cell.half-container select {
  font-size: 16px;
}

.deliverable-types {
  margin-top: 20px;
}
.deliverable-types label {
  font-weight: bold;
  font-size: 16px !important;
}
.deliverable-types select {
  margin-top: 10px;
}

.add-deliverable-button {
  margin-top: 20px;
  text-align: center;
  min-height: 60px;
  margin-bottom: 20px;
}
.add-deliverable-button button {
  width: 140px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .media-types {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .media-types .media-type-cell {
    font-size: 12px;
    width: 128px;
    height: 100px;
  }
  .media-type-icon {
    margin-bottom: 0px;
  }
  .project-type {
    font-size: 14px;
    flex-wrap: wrap;
  }
}
.user-edit .user {
  padding-bottom: 50px;
}
.user-edit input[type=submit] {
  margin-left: 20px;
}
.user-edit button.black {
  margin: 30px 0;
}
.user-edit #reset_password .popup {
  min-width: 0;
  max-width: 85%;
  width: 420px;
  min-height: 248px;
  padding: 40px;
}
.user-edit #firstname, .user-edit #lastname, .user-edit #email {
  width: 100%;
}
.user-edit select {
  width: 100%;
  max-width: 23.44rem;
}
.user-edit .eac-input-wrap {
  width: 100%;
  margin-top: 8px;
}
.user-edit .eac-sugg {
  margin-top: 7px;
  margin-left: 3px;
  font-style: italic;
}
.user-edit .tree-filter .tf-choice {
  margin: 8px 0 0 0;
}

.user-log .log_table {
  padding: 0 10px;
}

.user_type.Admin div.when.Admin,
.user_type.Account-Executive div.when.Account-Executive,
.user_type.Sales-Manager div.when.Sales-Manager,
.user_type.Sales-Coordinator div.when.Sales-Coordinator,
.user_type.CS-Team-Lead div.when.CS-Team-Lead,
.user_type.CS-Team-Lead-WP div.when.CS-Team-Lead-WP,
.user_type.TV-Writer-Producer div.when.TV-Writer-Producer,
.user_type.Radio-Writer div.when.Radio-Writer,
.user_type.Project-Collaborator div.when.Project-Collaborator {
  display: block;
}

.user_type.Admin div.notwhen.Admin {
  display: none;
}

.user .when.CS-Team-Lead .greentext.bold,
.user .when.CS-Team-Lead-WP .greentext.bold {
  margin-top: 10px;
}

.deliverable-status .active {
  background-color: #00D87D;
}
.deliverable-status .client_pending {
  background-color: #b23f5a;
}
.deliverable-status .delivered_fed {
  background-color: #7004e3;
}
.deliverable-status .not_started {
  background-color: #787878;
}
.deliverable-status .post_production {
  background-color: #75b1e6;
}
.deliverable-status .pre_production {
  background-color: #e8b400;
}
.deliverable-status .production {
  background-color: #85cf3f;
}

.project-status .accepted {
  background-color: #EA41CF;
}
.project-status .active {
  background-color: #00D87D;
}
.project-status .billed {
  background-color: #3cb6ec;
}
.project-status .cancelled {
  background-color: black;
}
.project-status .client_contacted {
  background-color: orange;
}
.project-status .declined {
  background-color: #ff0100;
}
.project-status .delivered_fed {
  background-color: #7004e3;
}
.project-status .pending_acceptance {
  background-color: #747474;
}

.alt-project-status .active {
  background-color: #47bb02;
}

body.project_list .options {
  align-items: flex-end;
  margin-bottom: 40px;
}
body.project_list .options .export {
  display: flex;
}
body.project_list .options .export button {
  white-space: nowrap;
}
body.project_list .page-header {
  margin-bottom: 2px;
}
body.project_list .sort-headings {
  display: flex;
  padding-bottom: 0.65rem;
}
body.project_list .sort-headings .sort-item {
  display: flex;
  flex: 0 0 91%;
  flex-flow: row wrap;
}
body.project_list .project-item {
  background-color: white;
  color: black;
  border-bottom: 1px solid #b2b2b2;
  display: flex;
}
body.project_list .project-item .project-main {
  flex: 0 0 91%;
  display: flex;
  flex-flow: row wrap;
}
body.project_list .project-item .project-main > div {
  overflow-x: hidden;
  padding: 1em;
}
body.project_list .project-item .project-main .small {
  font-size: 0.8rem;
}
body.project_list .project-item .project-main .extra {
  font-size: 0.7rem;
  color: #747474;
  white-space: nowrap;
}
body.project_list .project-item .project-main .status-label {
  display: inline-block;
  width: 58px;
  font-size: 0.7rem;
}
body.project_list .project-item .project-main .status-button {
  display: inline-block;
  border-radius: 2px;
  color: white;
  width: 7em;
  text-align: center;
  line-height: 1.7em;
  margin-bottom: 1px;
}
body.project_list .project-item .project-main .toggle-button {
  cursor: pointer;
  background-image: url(../images/icon_dropdown.png);
  background-size: 1.6em;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 400ms;
}
body.project_list .project-item .project-main .details {
  flex: 1 100%;
  overflow: hidden;
  padding: 0;
  max-height: 0px;
  transition: max-height 400ms;
  display: flex;
  justify-content: space-between;
}
body.project_list .project-item .project-main .details .detail-card {
  flex: 0 0 48%;
  margin-bottom: 1em;
  border: 1px solid #C8C8C8;
  background-color: white;
}
body.project_list .project-item .project-main .details .detail-card div {
  padding: 0px 1em;
}
body.project_list .project-item .project-main .details .detail-card .bar {
  color: white;
  height: 1.7em;
  line-height: 1.7em;
  vertical-align: middle;
  overflow-y: hidden;
  padding-right: 2rem;
  background-image: url(../images/icon-view-white.svg);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
body.project_list .project-item .project-main .details .detail-card .card-title {
  background-color: #d8d8d8;
  color: #787878;
  font-size: 0.7em;
  line-height: 2em;
  height: 2em;
}
body.project_list .project-item .project-main .details .detail-card .card-title > div {
  display: inline-block;
  width: 48%;
  text-transform: uppercase;
}
body.project_list .project-item .project-main .details .detail-card .card-deliverable {
  background-color: #888;
  color: white;
  font-size: 0.7em;
  line-height: 2em;
  height: 2em;
}
body.project_list .project-item .project-main .details .detail-card .card-deliverable > div {
  display: inline-block;
  width: 48%;
  text-transform: uppercase;
}
body.project_list .project-item .project-main .details .detail-card .card-content {
  color: #444;
  height: 3em;
  font-size: 0.8rem;
  line-height: 1.6rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
body.project_list .project-item .project-main .details .detail-card .card-content > div {
  display: inline-block;
  width: 48%;
}
body.project_list .project-item .project-main .details .detail-card .card-content .circle-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100% 100%;
  margin-right: 3px;
}
body.project_list .project-item .project-main .details .detail-card .card-content .count-status {
  display: inline-block;
  margin-right: 2em;
}
body.project_list .project-item .project-main .details .detail-card .card-content .has-next-due {
  text-decoration: underline;
}
body.project_list .project-item .project-main.open .details {
  max-height: 2000px;
  padding: 1em;
  flex-wrap: wrap;
}
body.project_list .project-item .project-main.open .toggle-button {
  transform: rotate(180deg);
}
body.project_list .project-item .project-link {
  flex: 0 0 9%;
  cursor: pointer;
  background-color: #36d123;
  background-image: url(../images/icon-view-white.svg);
  background-size: 1.6em;
  background-repeat: no-repeat;
  background-position: center;
}
body.project_list .project-item:nth-child(even) {
  background-color: #f0f0f0;
}
body.project_list .column {
  flex-grow: 0;
}
body.project_list .column.project_id {
  flex-basis: 7%;
}
body.project_list .column.client_and_people {
  flex-basis: 22%;
}
body.project_list .column.project_name {
  flex-basis: 15%;
}
body.project_list .column.production_revenue {
  flex-basis: 10%;
}
body.project_list .column.next_due_date {
  flex-basis: 14%;
}
body.project_list .column.status {
  flex-basis: 22%;
}
body.project_list .column.toggle_details {
  flex-basis: 8%;
}
@media (max-width: 767px) {
  body.project_list .page-header .cell-left {
    position: absolute;
  }
  body.project_list .project-item {
    position: relative;
    padding: 6px;
  }
  body.project_list .project-item .project-main {
    flex-basis: 100%;
    max-width: 100%;
  }
  body.project_list .project-item .project-main > div {
    padding: 4px 8px;
  }
  body.project_list .project-link {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
  }
  body.project_list .column.project_id {
    display: none;
  }
  body.project_list .column.client_and_people {
    flex-basis: 55%;
  }
  body.project_list .column.project_name {
    flex-basis: 100%;
    font-size: 1rem !important;
  }
  body.project_list .column.production_revenue {
    flex-basis: 100%;
    color: #747474;
    padding: 0 8px !important;
  }
  body.project_list .column.next_due_date {
    flex-basis: 100%;
    color: #747474;
    padding: 0 8px !important;
  }
  body.project_list .column.status {
    flex-basis: 100%;
    border-top: 1px solid #ccc;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px !important;
    columns: 2;
  }
  body.project_list .column.toggle_details {
    flex-basis: 100%;
    height: 24px;
    transition: none !important;
    border-radius: 5px;
    border: 2px solid #909090;
    background-image: none !important;
    position: relative;
  }
  body.project_list .column.toggle_details:before {
    top: calc(50% - 7px);
    left: calc(50% - 7px);
    content: " ";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-right: 2px solid #909090;
    border-bottom: 2px solid #909090;
  }
  body.project_list .details {
    padding: 0 4px !important;
  }
  body.project_list .details .detail-card {
    flex: 0 0 100% !important;
  }
}

.project-success-page img.success {
  width: 268px;
  margin: 100px auto 75px;
  display: block;
}
.project-success-page p.message {
  font-size: 1.5rem;
  margin-bottom: 50px;
}
.project-success-page button {
  margin-left: 7.5px;
  margin-right: 7.5px;
}
.project-success-page h1 {
  text-align: center;
  color: #36d123;
}
.project-success-page button.big {
  height: 50px;
  font-weight: bold;
}
.project-success-page button.white {
  background-color: white;
  color: black;
}

.project-print-page pre {
  margin-top: 0;
}
.project-print-page label {
  display: inline-block;
  width: 140px;
  vertical-align: middle;
  font-size: 14px;
}
.project-print-page .subproj_bar {
  margin: 8px 0;
}
.project-print-page .deliverables.accordion .accordion-header {
  display: flex;
  margin: 8px 0;
  line-height: 32px;
  height: 32px;
}
.project-print-page .deliverables.accordion .accordion-header > div {
  flex: 1 0;
}
.project-print-page .deliverables.accordion .accordion-header .d_id {
  flex: 0 0 10%;
}
.project-print-page .deliverables.accordion .accordion-header {
  border: none;
  border-top: 1px solid grey;
  font-weight: bold;
}
.project-print-page .accordion-content {
  display: block;
}
.project-print-page .project_print .half {
  width: 50vw;
  overflow: hidden;
}
.project-print-page table {
  max-width: 100%;
}
.project-print-page .project_print td {
  vertical-align: top;
}
.project-print-page .value {
  word-break: break-all;
}
.project-print-page .nopagebrk {
  page-break-inside: avoid;
}
.project-print-page .fake_checkbox {
  display: inline-block;
  width: 14px;
  height: 14px;
  text-align: center;
  vertical-align: middle;
  line-height: 14px;
  font-size: 16px;
  color: black;
  border: 1px solid black;
  margin-left: 20px;
  margin-right: 5px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.project-print-page h1 {
  margin-left: 12px;
}
.project-print-page .print_button, .project-print-page .x_close_button {
  margin: 0 0 0 12px;
}
.project-print-page .print_logo {
  display: none;
}
@media print {
  .project-print-page .fixedheader {
    display: none;
  }
  .project-print-page .noprint {
    display: none;
  }
  .project-print-page body {
    padding-bottom: 0;
    padding-top: 0;
  }
  .project-print-page .print_logo {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.project-tiles .tiles_view form > select {
  border: none;
  background: none;
  color: #36d123;
  cursor: pointer;
}
.project-tiles .page-header h1 {
  margin-right: 100px;
  display: flex;
  align-items: flex-start;
}
.project-tiles .view-projects {
  margin-top: 20px;
}
.project-tiles #change_writer_producer .popup,
.project-tiles #set_account_executive .popup {
  padding: 40px;
}
.project-tiles .writer_selection {
  display: none;
}
.project-tiles .goto-project {
  position: relative;
  margin-left: 20px;
}
.project-tiles .goto-project:after {
  content: ">";
  background-color: #FFFFFF;
  color: #36D123;
  height: 1.375rem;
  width: 1.375rem;
  line-height: 1.375rem;
  padding: 0;
  border-radius: 50%;
  position: absolute;
  right: -0.75rem;
  top: 0.4rem;
  font-size: 1rem;
  transition: font-size 75ms;
  font-family: Arial;
}
.project-tiles button.archive {
  background-image: url(/images/icon-archive-green.svg);
  width: 46px;
  height: 46px;
  background-color: transparent;
}
.project-tiles button.archive:hover {
  background-image: url(/images/icon-archive-white.svg);
  background-color: transparent;
}
.project-tiles .status_bar {
  position: relative;
}
.project-tiles .status_bar .dropbtn {
  width: 100%;
  border-radius: 0;
  text-align: left;
  padding-left: 36px;
  background-image: url(/images/icon-roundarrow-down.svg);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: 10px center;
}
.project-tiles .status_bar .dropbtn.disabled {
  cursor: default;
}
.project-tiles .status_bar .options {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.project-tiles .status_bar .options > div {
  width: 100%;
  vertical-align: middle;
  color: black;
  cursor: pointer;
}
.project-tiles .status_bar .options.active {
  display: block;
}
.project-tiles .status_bar .options .selected .opttxt {
  background-color: transparent;
  color: #fff;
}
.project-tiles .headings {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.project-tiles .headings .heading-box {
  flex: 0 0 30%;
  margin-bottom: 30px;
  min-width: 220px;
}
.project-tiles .headings .heading-box label {
  font-size: 15px;
  color: #36d123;
  display: block;
}
.project-tiles .headings .heading-box .data {
  font-size: 1.5625rem;
  margin-bottom: 20px;
  font-weight: bold;
  min-height: 30px;
}
.project-tiles .subproj_heading .options .option {
  color: #fff;
  width: 100%;
  height: 40px;
  display: flex;
}
.project-tiles .subproj_heading .options .option.disabled {
  cursor: default;
}
.project-tiles .subproj_heading .options .option.disabled .opttxt {
  background-color: #fff !important;
  color: #444;
}
.project-tiles .subproj_heading .options .option.selected .opttxt {
  background-color: rgba(0, 0, 0, 0) !important;
}
.project-tiles .subproj_heading .options .option .opttxt {
  transition: background-color linear 0.3s;
}
.project-tiles .subproj_heading .options .option:hover .opttxt {
  background-color: #ddd;
}
.project-tiles .subproj_heading .options .option.selected:hover .opttxt {
  background-color: rgba(0, 0, 0, 0);
}
.project-tiles .subproj_heading .options .icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  position: relative;
}
.project-tiles .subproj_heading .options .icon:after {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -5px;
  background-color: white;
  content: " ";
}
.project-tiles .subproj_heading .options .opttxt {
  float: left;
  background-color: #fff;
  color: #000;
  height: 40px;
  padding-left: 5px;
  font-size: 1rem;
  margin-left: 0px;
  width: 100%;
  line-height: 40px;
  padding-left: 8px;
}

.tiles {
  display: flex;
  margin: 1em 0;
  flex-wrap: wrap;
}
.tiles .tile {
  display: flex;
  flex-direction: column;
  background-color: white;
  color: black;
  width: 180px;
  margin-right: 12px;
  margin-bottom: 12px;
  position: relative;
  min-height: 207px;
  font-size: 14px;
  display: inline-block;
  flex: 0 0 180px;
}
.tiles .tile .info {
  font-size: 0.75rem;
  padding: 5px;
}
.tiles .tile .info label {
  display: block;
  font-size: 0.625rem;
  color: #8b8b8b;
  line-height: 1.4em;
  height: 1.4em;
}
.tiles .tile .info .highlight {
  font-weight: bold;
  color: #36d123;
}
.tiles .tile .info .info-value {
  line-height: 1.4em;
  height: 1.4em;
}
.tiles .tile .dropbtn {
  height: 25px;
  font-size: 12px;
  padding: 0;
  text-align: center;
  position: relative;
}
.tiles .tile .dropbtn a {
  background-image: url(/images/icon-magnify-white.svg);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 25px;
  width: 25px;
  display: inline-block;
  margin-right: 5px;
  position: absolute;
  right: 0px;
  top: 0px;
}
.tiles .tile .options {
  border-bottom: 1px solid #ccc;
}
.tiles .tile .options > div {
  height: 25px;
  line-height: 25px;
}
.tiles .tile .options .icon {
  width: 15%;
  height: 25px;
  float: left;
  position: relative;
}
.tiles .tile .options .icon:after {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -5px;
  background-color: white;
  content: " ";
}
.tiles .tile .options .opttxt {
  width: 85%;
  background-color: #fff;
  color: #444;
  float: right;
  padding-left: 5px;
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tiles .tile .options .selected .opttxt {
  background-color: transparent;
  color: #fff;
}
.tiles .tile .options .selected .icon:after {
  background-color: transparent;
  border-radius: 0;
  background-image: url(/images/icon-checkmark-white.svg);
  background-size: cover;
}

.project-log .client_name {
  font-size: 1.25rem;
  margin-bottom: 4px;
  margin-top: -4px;
}

body.archived-project {
  background-color: #888;
}
body.archived-project .edit-mode {
  display: none;
}
body.archived-project .delete-project {
  display: none;
}
body.archived-project #files_modal .upload-file, body.archived-project #files_modal .save-upload-file {
  display: none;
}
body.archived-project .request-quote {
  display: none;
}
body.archived-project .tiles-view {
  display: none;
}
body.archived-project .project-statusbar {
  display: none;
}
body.archived-project .section.invoicing button,
body.archived-project .section.contact button {
  display: none;
}

.project-editor button.disabled {
  background-color: #959595;
}
.project-editor .copy-project, .project-editor .delete-project {
  margin-left: 8px;
  margin-bottom: 8px;
}
.project-editor .page-header .right {
  display: flex;
  justify-content: flex-end;
}
.project-editor .project-submit {
  margin: 50px 0px 20px 0px;
  text-align: center;
}
.project-editor .project-submit button.submit {
  padding: 12px 45px;
}
.project-editor .print-view {
  margin: 8px 0;
}
.project-editor .contact-client-buttons {
  text-align: right;
}
.project-editor button.submit {
  min-width: 9.375rem;
}
.project-editor .section-next {
  margin: 50px 0 20px 0;
  min-height: 35px;
}
.project-editor .quote-requested-label {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  padding-right: 1em;
}
.project-editor .project-statusbar {
  background-color: #e8b400;
}
.project-editor .project-statusbar > div {
  min-height: 70px;
  line-height: 70px;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.project-editor .project-statusbar > div .accept-media {
  display: flex;
  align-items: center;
  width: 180px;
  justify-content: flex-end;
  line-height: 50px;
  padding: 6px 0;
}
.project-editor .project-statusbar > div .accept-buttons {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.9em;
}
.project-editor .project-statusbar > div .accept-buttons .accept-label {
  line-height: 1em;
}
.project-editor .project-statusbar > div .accept-buttons .rerouted {
  font-weight: normal;
  font-size: 0.7em;
  white-space: nowrap;
}
.project-editor .project-statusbar > div .separator {
  flex: 1;
}
.project-editor .project-statusbar > div .accept-label {
  padding: 0px 8px 0px 16px;
}
.project-editor .project-statusbar > div button {
  width: 2rem;
  height: 2rem;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1rem;
  margin-left: 4px;
}
.project-editor .project-statusbar > div .accept-button {
  background-color: #fff;
  background-image: url("/images/check_2x.png");
}
.project-editor .project-statusbar > div .reject-button {
  background-color: #000;
  background-image: url("/images/x_2x.png");
}
.project-editor .project-statusbar.footer-statusbar {
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 10;
}
.project-editor .project-statusbar img.x {
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.project-editor .project-header {
  height: 90px;
  display: flex;
  padding: 0px 1em;
}
.project-editor .project-header > div {
  line-height: 90px;
}
.project-editor .project-header h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #36d123;
  flex: 0 0 200px;
  white-space: nowrap;
  margin-left: 15px;
}
.project-editor .project-header .space {
  width: 50%;
  flex: 1 0;
}
.project-editor .project-header .desktop-view {
  white-space: nowrap;
  display: flex;
}
.project-editor .project-header .toggle-accordion {
  background-color: transparent;
  color: black;
  cursor: pointer;
  font-size: 0.8rem;
  display: none; /*flex*/
  align-items: center;
  border-left: 1px solid #c0c0c0;
  border-radius: 0;
}
.project-editor .project-header .toggle-accordion img {
  height: 1.5rem;
  line-height: 1.5rem;
  vertical-align: middle;
  margin-left: 0.2rem;
}
.project-editor .project-header .toggle-accordion .left-menu-active {
  display: inline-block;
  padding-left: 5px;
}
.project-editor .project-header .toggle-accordion .left-menu-inactive {
  display: none;
  padding-left: 5px;
}
.project-editor .project-header .tiles-view {
  flex: 0 0 140px;
  white-space: nowrap;
}
.project-editor .project-header .tiles-view button {
  margin-left: 1.875rem;
  color: #36D123;
  border: 1px solid #36D123;
  background-color: white;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0 1.25rem;
  overflow: visible;
  position: relative;
  height: 2.5rem;
  line-height: 2.5rem;
}
.project-editor .project-header .tiles-view button:before {
  content: "<";
  background-color: #36D123;
  color: white;
  height: 1.375rem;
  width: 1.25rem;
  line-height: 1.375rem;
  padding-right: 0.125rem;
  border-radius: 50%;
  position: absolute;
  left: -0.75rem;
  top: 0.3125rem;
  font-size: 1rem;
  transition: font-size 75ms;
  font-family: Arial;
}
@media (max-width: 600px) {
  .project-editor .project-header .edit-mode, .project-editor .project-header .space {
    display: none;
  }
  .project-editor .project-header h2 {
    flex: 1;
    line-height: 50px;
    font-size: 6vw;
  }
}
.project-editor #deliverables {
  border-top: 1px solid #ccc;
  display: flex;
  min-height: 400px;
}
.project-editor #deliverables .accordion-column {
  flex: 0 0 15rem;
  border-right: 1px solid #ccc;
}
.project-editor #deliverables .accordion-column .project-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.project-editor #deliverables .accordion-column .project-menu > li {
  font-weight: bold;
  padding-left: 3.5em;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  cursor: pointer;
}
.project-editor #deliverables .accordion-column .project-menu > li a {
  display: inline-block;
  width: 100%;
}
.project-editor #deliverables .accordion-column .project-menu > li a:link, .project-editor #deliverables .accordion-column .project-menu > li a:visited {
  color: black;
}
.project-editor #deliverables .accordion-column .project-menu > li.active {
  background-color: #36d123;
  color: white;
}
.project-editor #deliverables .accordion-column .project-menu > li.checked:before {
  content: "";
  background-image: url(/images/icon-checkmark.png);
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 18px 18px;
  background-position: center center;
  width: 20px;
  height: 20px;
  position: absolute;
  margin-left: -32px;
}
.project-editor #deliverables .accordion-column .project-menu > li:hover a {
  text-decoration: underline;
}
.project-editor #deliverables .content-column {
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
  padding-bottom: 50px;
}
.project-editor #deliverables .content-column .no-border-label input[type=checkbox] + label {
  border: 0px !important;
}
.project-editor #deliverables .content-column .no-border-label input[type=checkbox]:checked + label {
  background-color: initial;
  color: #000;
}
.project-editor #deliverables .content-column .visible-label label {
  position: relative !important;
  top: 8px;
  opacity: 1;
  font-size: 1rem;
  white-space: nowrap;
}
.project-editor #deliverables .content-column .visible-label .label.active {
  position: relative !important;
  top: 8px;
  font-size: 1rem;
}
.project-editor #deliverables .content-column .billable-data .input-cell {
  margin-right: 8px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .project-editor #deliverables .content-column .billable-data .input-cell {
    margin-bottom: 1px;
  }
}
.project-editor #deliverables .content-column .billable-data .input-container {
  max-width: 100%;
}
@media (min-width: 767px) {
  .project-editor #deliverables .content-column .billable-data .input-container {
    flex-wrap: nowrap;
  }
}
.project-editor #deliverables .content-column .billable-data .billable-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 0.5em 0.5em 20px 0.5em;
  position: relative;
}
.project-editor #deliverables .content-column .billable-data .billable-item input, .project-editor #deliverables .content-column .billable-data .billable-item select {
  background-color: #fff;
}
.project-editor #deliverables .content-column .billable-data .billable-item .billable-delete {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}
.project-editor #deliverables .content-column .billable-data .billable-item:nth-child(2n) {
  --background-color: #fafafa;
}
.project-editor #deliverables .content-column .billable-data .billable-item:nth-child(2n) input:read-only {
  --background-color: #fafafa;
}
@media (min-width: 768px) {
  .project-editor #deliverables .content-column .billable-data .billable-item .billing_team {
    max-width: 110px;
  }
}
.project-editor #deliverables .content-column .billable-data .input-container .input-cell {
  padding-top: 4px;
}
.project-editor #deliverables .content-column .billable-data .billable-total {
  line-height: 2em;
  padding: 1em 0;
}
.project-editor #deliverables .content-column .billable_error {
  font-weight: bold;
  color: #f00;
  padding-right: 10px;
}
.project-editor #deliverables .content-column.editable .client-name-select {
  flex-wrap: nowrap;
  white-space: nowrap !important;
}
.project-editor #deliverables .content-column.editable .client-name-select select {
  display: block;
}
.project-editor #deliverables .content-column.editable .billable-item input[readonly] {
  background-color: #f8f8f8;
}
.project-editor #deliverables .content-column .section {
  display: none;
}
.project-editor #deliverables .content-column .section.markets label.active {
  color: #000;
}
.project-editor #deliverables .content-column .section.invoicing .billing-replaced {
  color: #888;
  text-decoration: line-through;
}
.project-editor #deliverables .content-column .checkbox-input {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  height: 28px;
  margin-bottom: 10px;
}
.project-editor #deliverables .content-column .checkbox-input > input[type=checkbox] + label {
  line-height: 18px;
  position: relative;
}
.project-editor #deliverables .content-column .cash {
  padding-left: 20px;
  background: url(/images/dollar.png) no-repeat left 5px bottom 0.7rem;
}
.project-editor #deliverables .content-column .same_as_main {
  color: #36d123;
  font-weight: bold;
}

.input-container {
  max-width: 40rem;
  display: flex;
  flex-wrap: wrap;
}
.input-container.row-container {
  flex-wrap: nowrap;
}
.input-container .input-cell {
  position: relative;
  padding-top: 1.1rem;
  display: inline-block;
  width: 100%;
  margin-bottom: 1.1rem;
  margin-right: 5%;
}
.input-container .input-cell.half-container {
  width: 45%;
}
.input-container .input-cell.small-container {
  width: auto;
}
.input-container .input-cell.stretch-container {
  width: auto;
  margin-right: 0 !important;
}
.input-container .input-cell .infoicon {
  position: absolute;
  right: 0.5rem;
  top: 0.2rem;
  width: 0.8rem;
  height: 0.8rem;
  cursor: pointer;
  background: url(/images/icon-info.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.input-container .input-cell > label {
  color: #000;
  top: 0px;
  left: 0px;
  transition: all 150ms ease-out;
  font-size: 1rem;
  display: inline-block;
  width: 100%;
  position: absolute;
}
.input-container .input-cell > label.active {
  top: 0px;
}
.input-container .input-cell.check-cell {
  padding-top: 0px;
  margin-right: 5%;
  margin-top: auto;
}
.input-container .input-cell.check-cell .check-label {
  color: #000;
  font-size: 1em;
  top: -5px;
  white-space: nowrap;
}
.input-container .input-cell.check-cell input[type=checkbox]:checked + label {
  white-space: nowrap;
}
.input-container .input-cell.check-cell.with-top-label {
  padding-top: 22px;
  margin-right: 0px;
}
.input-container .input-cell.for-select label {
  color: #000;
  font-size: 1rem;
  top: 0px;
  opacity: 1;
}
.input-container .input-cell > input {
  width: 100%;
  margin-top: 8px;
}
.input-container .input-cell > select {
  width: 100%;
  margin-top: 8px;
}
.input-container .input-cell > select + .infoicon {
  top: 0.1rem;
}
.input-container .input-cell .selected-value {
  background-color: #36d123;
  color: #fff;
  display: inline-block;
  padding: 6px 8px 6px 16px;
  margin-right: 4px;
  margin-top: 10px;
}
.input-container .input-cell > textarea {
  color: #36d123;
  resize: vertical;
  max-height: 278px;
  resize: none;
  background-color: transparent;
  padding: 0.25rem;
  width: 100%;
}
.input-container .input-cell > textarea + .infoicon {
  top: 0.3rem;
}
.input-container .input-cell > .textarea-view {
  margin-top: 10px;
  color: #36d123;
  white-space: pre-wrap;
  line-height: 1.4em;
  min-height: 3em;
}
.input-container .input-cell > .textarea-view a:link, .input-container .input-cell > .textarea-view a:visited {
  color: #36d123;
  font-weight: normal;
  text-decoration: underline;
}
.input-container .input-cell > .input-view {
  margin-top: 10px;
  color: #36d123;
  line-height: 2.2em;
  padding-left: 8px;
}
.input-container .input-cell > .input-view a:link, .input-container .input-cell > .input-view a:visited {
  color: #36d123;
  font-weight: normal;
  text-decoration: underline;
}
.input-container .input-cell.date-field > label {
  left: 0px;
}
.input-container .input-cell.date-field > label.active {
  left: 0px;
}
.input-container .input-cell.date-field > input {
  background-image: url(/images/calendar.png);
  background-position: left 0 bottom calc(1.15rem - 11px);
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 30px;
}
.input-container .input-cell.text-field > label {
  top: 0px;
  opacity: 1;
  color: #000;
  font-size: 1rem;
}
.input-container .input-cell.text-field > label.active {
  left: 0px;
}
.input-container .input-cell.text-field textarea {
  margin-top: 10px;
  font-size: 1rem;
  min-height: 3rem;
}
.input-container .input-cell .check-field {
  display: inline-block;
  line-height: 30px;
  height: 38px;
}
.input-container .input-cell .check-field > label {
  position: relative;
  opacity: 1;
  line-height: 38px;
  padding: 0px 20px 0px 32px;
  margin: 0;
  margin-left: -3px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}
.input-container .input-cell .check-field > input[type=checkbox] {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.input-container .input-cell .check-field > input[type=checkbox] + label:before {
  top: 10px;
  left: 10px;
  background-color: #fff;
}
.input-container .input-cell .check-field > input[type=checkbox]:disabled + label:before {
  cursor: default;
}
.input-container .input-cell .check-field > input[type=checkbox] + label:after {
  top: 10px;
  left: 10px;
}
.input-container .input-cell .check-field > input[type=checkbox]:checked + label {
  background-color: #36d123;
  color: #fff;
}
.input-container .input-cell .check-field input[type=checkbox]:disabled + label {
  cursor: default;
  opacity: 0.9;
}

.non-editable .invoicing input[type=text], .non-editable .invoicing select {
  border: 0px;
  font-weight: bold;
  padding-top: 6px;
  padding-bottom: 4px;
  height: 32px;
  min-height: 30px;
  margin-top: 6px;
}
.non-editable .invoicing input[type=text].value-unset:disabled, .non-editable .invoicing select.value-unset:disabled {
  font-weight: normal;
}
.non-editable .invoicing input.datepicker {
  padding-left: 4px;
  background: none;
}
.non-editable .invoicing .billing-info .cash {
  background-position: left 5px bottom 0.4rem !important;
}
.non-editable .same-as-admin input[type=checkbox] + label {
  border: 0px !important;
}
.non-editable textarea {
  border: 0px;
  height: initial;
}

.plain-fields {
  display: block;
}
.plain-fields .input-container {
  margin: 0px;
  flex-wrap: wrap;
  width: 100%;
}
.plain-fields .input-container .input-cell.input-non-editable {
  padding-top: 0;
  margin-bottom: 0px;
}
.plain-fields .input-container .input-cell.input-non-editable label {
  height: 24px;
  line-height: 24px;
  position: relative;
  display: inline-block;
  width: auto;
  font-size: 1em;
  color: #000;
}
.plain-fields .input-container .input-cell.input-non-editable input[type=text], .plain-fields .input-container .input-cell.input-non-editable select, .plain-fields .input-container .input-cell.input-non-editable .input-view {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 8px;
  padding-left: 0;
  border: 0px;
  font-weight: bold;
  line-height: 1.4em;
}
.plain-fields .input-container .input-cell.input-non-editable input[type=text] a, .plain-fields .input-container .input-cell.input-non-editable select a, .plain-fields .input-container .input-cell.input-non-editable .input-view a {
  font-weight: bold;
}
.plain-fields .input-container .input-cell.input-non-editable input[type=text] {
  height: 24px;
  line-height: 24px;
  position: relative;
}
.plain-fields .input-container .input-cell.input-non-editable input[type=checkbox] {
  width: 0px;
}
.plain-fields .input-container .input-cell.input-non-editable input[type=checkbox] + label {
  border: 0px;
  height: 38px;
  line-height: 38px;
}
.plain-fields .input-container .input-cell.input-non-editable select {
  padding: 0;
  min-height: 1.6rem;
  width: auto;
}
.plain-fields .input-container .input-cell.input-non-editable select::-ms-expand {
  display: none;
}
.plain-fields .input-container .input-cell.input-non-editable .check-field input[type=checkbox] + label {
  border: 0px;
}
.plain-fields .input-container .input-cell.input-non-editable input[type=checkbox]:disabled + label {
  background-color: transparent;
  color: #444;
}
.plain-fields .input-container .input-cell.input-non-editable.default-font input[type=text], .plain-fields .input-container .input-cell.input-non-editable.default-font select {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  font-weight: normal;
}
.plain-fields .input-container .input-cell.input-non-editable.half-container {
  width: 100%;
}
.plain-fields .input-container .input-cell.input-non-editable.half-container input[type=text], .plain-fields .input-container .input-cell.input-non-editable.half-container select {
  max-width: 48%;
}
.plain-fields .input-container .input-cell.input-non-editable.small-container {
  margin: 20px 0px;
}

@media (max-width: 1023px) {
  .project-editor .sidebar-active #deliverables .content-column {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .project-editor .sidebar-active #deliverables .accordion-column {
    flex: 0 0 230px;
  }
  .project-editor .sidebar-active #deliverables .accordion-column .project-menu > li {
    padding-left: 3em;
  }
  .project-editor .sidebar-active #deliverables .header-title {
    margin-left: 32px;
  }
}
@media (max-width: 767px) {
  .project-editor .page-header .right {
    flex-wrap: wrap;
  }
  .project-editor #deliverables {
    flex-direction: column;
  }
  .project-editor #deliverables .sidebar {
    display: none;
  }
  .project-editor #deliverables .content-column {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .project-editor #deliverables .content-column .section {
    padding: 0px 24px 30px 24px;
    border-bottom: 1px solid #c0c0c0;
  }
  .project-editor #deliverables .header-title {
    margin-left: 32px;
  }
  .project-editor #deliverables .project-type {
    margin-top: 0px;
  }
  .project-editor #deliverables ul.project-menu > li {
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .project-editor #deliverables ul.project-menu > li:after {
    position: absolute;
    right: 40px;
    content: "";
    width: 16px;
    height: 19px;
    display: inline-block;
    background-image: url(/images/arrow-down-black.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .project-editor #deliverables ul.project-menu > li.active:after {
    background-image: url(/images/arrow-up-white.png);
  }
  .input-container.nowrap {
    white-space: normal !important;
  }
}
@media (max-width: 600px) {
  .plain-fields .input-container .input-cell.input-non-editable select {
    width: 100%;
  }
  .project-editor #deliverables .half-container {
    width: 100%;
    margin-bottom: 12px;
    margin-right: 0;
  }
  .project-editor #deliverables .input-container {
    flex-wrap: wrap;
    white-space: normal !important;
  }
  .project-editor #deliverables .input-container .half-container:first-child {
    margin-right: 0px;
  }
  .project-editor #deliverables .input-container .input-cell {
    margin-right: 0;
  }
  .project-editor #deliverables .input-container .input-cell.stretch-container {
    width: 100%;
  }
  .input-cell {
    margin-right: 2%;
  }
  .input-cell.half-container {
    width: 48%;
  }
  .project-editor .project-statusbar > div {
    flex-direction: column;
    line-height: 50px;
    min-height: 50px;
  }
  .project-editor .project-statusbar > div .accept-buttons {
    justify-content: space-between;
  }
  .project-editor .project-statusbar > div .accept-buttons > .accept-media {
    justify-content: space-between;
    width: 140px;
  }
  .project-editor .project-statusbar > div .accept-buttons > .accept-media > .accept-label {
    width: 60%;
    font-size: 0.9rem;
    padding: 0;
  }
  #ui-datepicker-div {
    font-size: 14px;
  }
}
.section.deliverables .deliverables-list {
  display: flex;
  flex-direction: column;
  min-height: 30vh;
}
.section.deliverables .no-deliverables {
  font-weight: 500;
}
.section.deliverables .deliverable-actions {
  text-align: center;
  position: absolute;
  height: 40px;
  width: 100%;
  left: 0px;
  bottom: 0px;
  font-size: 1rem;
}
.section.deliverables .deliverable-actions .deliverable-action {
  display: inline-block;
  margin: 0px 20px;
  color: #36d123;
  cursor: pointer;
}
.section.deliverables .deliverable-actions .deliverable-action > .collapse-deliverable {
  background: url(/js/multiple-select/multiple-select.png) right top no-repeat;
}
.section.deliverables .deliverable-actions .deliverable-action > .duplicate-deliverable {
  background: url(/images/icon_duplicate.svg) right 2px no-repeat;
  background-size: 16px 16px;
}
.section.deliverables .deliverable-actions .deliverable-action > span {
  display: inline-block;
  width: 1rem;
  height: 1rem;
}
.section.deliverables .deliverable-enter-active,
.section.deliverables .deliverable-leave-active,
.section.deliverables .media-type-item-enter-active,
.section.deliverables .media-type-item-leave-active {
  transition: opacity 0.3s;
}
.section.deliverables .deliverable-enter,
.section.deliverables .deliverable-leave-to,
.section.deliverables .media-type-item-enter,
.section.deliverables .media-type-item-leave-to {
  opacity: 0;
}
.section.deliverables .section-title {
  margin: 1.5em 0 1em 0;
  min-height: 35px;
}
.section.deliverables .section-title h3 {
  margin: 0;
}
.section.deliverables .section-title button.add-deliverable {
  position: relative;
  opacity: 0.9;
  font-size: 0.9rem;
  padding: 12px 28px;
  overflow: visible;
}
.section.deliverables .section-title button.add-deliverable:before {
  border-radius: 50%;
  position: absolute;
  left: -0.75rem;
  top: 0.3125rem;
  font-size: 1rem;
  transition: font-size 75ms;
  font-family: Arial;
  content: "+";
  border: 0.1875rem solid black;
  background-color: white;
  color: black;
  height: 1.125rem;
  width: 1.125rem;
  line-height: 1.125rem;
}
.section.deliverables .section-title button.add-deliverable:hover {
  opacity: 1;
}
.section.deliverables .section-title button.add-deliverable:hover:before {
  font-size: 1.7rem;
  padding-right: 1px;
}
.section.deliverables .media-type-header {
  font-weight: bold;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.section.deliverables .media-type-header .header-title:before {
  border-left: 0.4375rem solid transparent;
  border-right: 0.4375rem solid transparent;
  border-top: 0.625rem solid black;
  display: inline-block;
  content: "";
  margin: 0 0.625rem 0 -1.563rem;
  transition: transform 350ms;
}
.section.deliverables .media-type-header .header-title.closed:before {
  transform: rotate(-90deg);
}
.section.deliverables .media-type-items {
  display: flex;
  flex-direction: column;
}
.section.deliverables .dnum {
  flex: 0 1 45px !important;
}
.section.deliverables .daction {
  flex: 0 0 30px !important;
}
.section.deliverables .daction > a {
  background-repeat: no-repeat;
  background-size: 0.9rem;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.section.deliverables .daction .delete_deliverable {
  background-image: url(/images/icon-trash.png);
}
.section.deliverables .daction .duplicate_deliverable {
  background-image: url(/images/icon_duplicate.svg);
}
.section.deliverables .deliverable {
  border: 1px solid #cbcbcb;
  background-color: #f9f9f9;
  padding: 0px;
  margin-bottom: 8px;
  position: relative;
}
.section.deliverables .deliverable.s4m-requested {
  border: 1px solid red;
}
.section.deliverables .deliverable.s4m-requested::after {
  content: "S4M Requested";
  position: absolute;
  top: 0;
  left: 5px;
  color: red;
  font-size: smaller;
}
.section.deliverables .deliverable.s4m-requested .s4m label {
  color: red;
}
.section.deliverables .deliverable.s4m-requested .s4m input, .section.deliverables .deliverable.s4m-requested .s4m .input-view {
  border: 1px solid red;
}
.section.deliverables .deliverable label.s4m {
  text-align: right;
  cursor: pointer;
  text-decoration: underline;
  color: #36d123 !important;
}
.section.deliverables .deliverable .project-type-header {
  font-size: 1rem;
}
.section.deliverables .deliverable .deliverable-header {
  margin: 0;
  padding: 0.8em 0;
  padding-left: 1.875rem;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.section.deliverables .deliverable .deliverable-header > div {
  flex: 1 0 20%;
}
.section.deliverables .deliverable .deliverable-header button.tiles-view {
  display: none;
  right: 2.5rem;
  position: absolute;
  color: #36d123;
  border: 1px solid #cbcbcb;
  font-weight: bold;
  z-index: 1;
  font-size: 0.875rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  height: 1.8rem;
  line-height: 1.75rem;
  background-color: transparent;
  top: 100%;
  right: 0;
  margin: 0;
  padding: 0px 20px;
}
.section.deliverables .deliverable .deliverable-content {
  display: none;
  opacity: 1;
  overflow: hidden;
  border: 1px solid #f8f8f8;
  margin: 0px 0px 8px 0px;
  padding: 0px 4.5rem 40px 4.5rem;
}
@media (max-width: 1023px) {
  .section.deliverables .deliverable .deliverable-content {
    padding: 0px 2rem 30px 2rem;
  }
}
@media (max-width: 767px) {
  .section.deliverables .deliverable .deliverable-content {
    padding: 0 1.5rem 30px 1.5rem;
  }
}
@media (max-width: 767px) {
  .section.deliverables .deliverable .deliverable-content {
    padding: 0.5rem 0.8rem;
  }
}
.section.deliverables .deliverable .arrow {
  flex: 0 1 32px !important;
}
.section.deliverables .deliverable .arrow > span {
  border-left: 0.31em solid transparent;
  border-right: 0.31em solid transparent;
  border-top: 0.37em solid black;
  transform: rotate(-90deg);
  transition: transform 350ms;
  display: inline-block;
}
.section.deliverables .deliverable .project-type {
  display: flex;
  flex-wrap: wrap;
  max-width: 450px;
}
.section.deliverables .deliverable input[type=radio] + label {
  min-width: 180px;
}
.section.deliverables .deliverable hr {
  border: 0px;
  border-bottom: 2px solid #cccccc;
  width: 100%;
  margin-bottom: 20px;
}
.section.deliverables .deliverable select,
.section.deliverables .deliverable .ms-choice,
.section.deliverables .deliverable input[type=text],
.section.deliverables .deliverable .check-field > label,
.section.deliverables .deliverable .textarea-view,
.section.deliverables .deliverable .input-view,
.section.deliverables .deliverable textarea {
  background-color: #fff;
  border: 1px solid #cbcbcb;
}
.section.deliverables .deliverable select,
.section.deliverables .deliverable .ms-choice,
.section.deliverables .deliverable input[type=text],
.section.deliverables .deliverable .textarea-view,
.section.deliverables .deliverable .input-view,
.section.deliverables .deliverable textarea {
  border-radius: 3px;
}
.section.deliverables .deliverable .ms-choice > span {
  font-size: 1rem;
  min-height: 2em;
}
.section.deliverables .deliverable .input-field > label {
  color: #000;
  font-size: 1em;
  opacity: 1;
  top: 0px;
}
.section.deliverables .deliverable .for-select > label {
  color: #000;
  font-size: 1em;
}
.section.deliverables .deliverable .input-cell > input[type=text] {
  padding-left: 0.9rem;
}
.section.deliverables .deliverable .input-cell > input.datepicker {
  padding-left: 36px;
  background-position: 8px center;
}
.section.deliverables .deliverable .text-field textarea,
.section.deliverables .deliverable .textarea-view .input-view {
  min-height: 100px;
  padding: 0.5rem 0.9rem;
}
.section.deliverables .deliverable.opened .deliverable-content {
  display: block;
  margin-top: 1rem;
}
.section.deliverables .deliverable.opened .arrow > span {
  transform: rotate(0deg);
}
.section.deliverables .deliverable.opened button.tiles-view {
  /*disabled*/
  display: none;
}
.section.deliverables .has-due-date,
.section.deliverables .has-supplied-script {
  display: none;
}
.section.deliverables .for-master_control,
.section.deliverables .for-program_content,
.section.deliverables .for-lframe,
.section.deliverables .for-online,
.section.deliverables .for-display_standard,
.section.deliverables .for-display_expandable,
.section.deliverables .for-branded_content,
.section.deliverables .for-story,
.section.deliverables .for-ad_post,
.section.deliverables .for-carousel,
.section.deliverables .for-reel,
.section.deliverables .for-social_other,
.section.deliverables .for-on_screen,
.section.deliverables .for-non_broadcast,
.section.deliverables .for-art,
.section.deliverables .for-radio {
  display: none;
}
.section.deliverables .dtype-master_control .not-for-master_control,
.section.deliverables .dtype-program_content .not-for-program_content,
.section.deliverables .dtype-lframe .not-for-lframe,
.section.deliverables .dtype-online .not-for-online,
.section.deliverables .dtype-display_standard .not-for-display_standard,
.section.deliverables .dtype-display_expandable .not-for-display_expandable,
.section.deliverables .dtype-branded_content .not-for-branded_content,
.section.deliverables .dtype-story .not-for-story,
.section.deliverables .dtype-ad_post .not-for-ad_post,
.section.deliverables .dtype-carousel .not-for-carousel,
.section.deliverables .dtype-reel .not-for-reel,
.section.deliverables .dtype-social_other .not-for-social_other,
.section.deliverables .dtype-on_screen .not-for-on_screen,
.section.deliverables .dtype-non_broadcast .not-for-non_broadcast,
.section.deliverables .dtype-art .not-for-art,
.section.deliverables .dtype-radio .not-for-radio {
  display: none;
}
.section.deliverables .dtype-master_control .for-master_control.input-container,
.section.deliverables .dtype-program_content .for-program_content.input-container,
.section.deliverables .dtype-lframe .for-lframe.input-container,
.section.deliverables .dtype-online .for-online.input-container,
.section.deliverables .dtype-display_standard .for-display_standard.input-container,
.section.deliverables .dtype-display_expandable .for-display_expandable.input-container,
.section.deliverables .dtype-branded_content .for-branded_content.input-container,
.section.deliverables .dtype-story .for-story.input-container,
.section.deliverables .dtype-ad_post .for-ad_post.input-container,
.section.deliverables .dtype-carousel .for-carousel.input-container,
.section.deliverables .dtype-reel .for-reel.input-container,
.section.deliverables .dtype-social_other .for-social_other.input-container,
.section.deliverables .dtype-on_screen .for-on_screen.input-container,
.section.deliverables .dtype-non_broadcast .for-non_broadcast.input-container,
.section.deliverables .dtype-art .for-art.input-container,
.section.deliverables div[has-due-date=Y] .has-due-date.input-container,
.section.deliverables .dtype-radio .for-radio.input-container {
  display: flex;
}
.section.deliverables .dtype-master_control .for-master_control.input-cell,
.section.deliverables .dtype-program_content .for-program_content.input-cell,
.section.deliverables .dtype-lframe .for-lframe.input-cell,
.section.deliverables .dtype-online .for-online.input-cell,
.section.deliverables .dtype-display_standard .for-display_standard.input-cell,
.section.deliverables .dtype-display_expandable .for-display_expandable.input-cell,
.section.deliverables .dtype-branded_content .for-branded_content.input-cell,
.section.deliverables .dtype-story .for-story.input-cell,
.section.deliverables .dtype-ad_post .for-ad_post.input-cell,
.section.deliverables .dtype-carousel .for-carousel.input-cell,
.section.deliverables .dtype-reel .for-reel.input-cell,
.section.deliverables .dtype-social_other .for-social_other.input-cell,
.section.deliverables .dtype-on_screen .for-on_screen.input-cell,
.section.deliverables .dtype-non_broadcast .for-non_broadcast.input-cell,
.section.deliverables .dtype-art .for-art.input-cell,
.section.deliverables div[has-due-date=Y] .has-due-date.input-cell,
.section.deliverables .dtype-radio .for-radio.input-cell {
  display: inline-block;
}

@media (max-width: 600px) {
  .deliverable-header .ptype {
    display: none;
  }
}
#files_modal .popup {
  padding: 0 20px 20px 20px;
  width: 700px;
  max-width: 90vw;
}
#files_modal .scroller {
  padding: 0 20px 20px 20px;
  max-height: 70vh;
  overflow-y: scroll;
}
#files_modal #file_list table {
  border-collapse: collapse;
}
#files_modal #file_list tbody tr:hover {
  background-color: #F3FCF2;
}
#files_modal #file_list td {
  padding: 5px;
}
#files_modal #file_list thead tr {
  border-bottom: 1px solid lightgrey;
  margin-bottom: 20px;
}
#files_modal #file_list thead a {
  color: #36d123;
  font-size: smaller;
}
#files_modal .popup .drag_message {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  transform: translate(-50%, -50%);
  display: none;
  color: white;
  z-index: 1;
}
#files_modal .popup.dragging .drag_message {
  display: block;
}
#files_modal .popup.dragging:after {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#files_modal .xclose {
  z-index: 1;
}

#upload_progress .popup {
  width: 480px;
  /* height:248px; */
  text-align: center;
}
#upload_progress h3 {
  margin: 40px;
  margin-bottom: 15px;
}
#upload_progress #upload_progress_filename {
  word-break: break-all;
}
#upload_progress #upload_progress_contain {
  background-color: #d3d3d3;
  height: 15px;
  width: 390px;
  position: relative;
  margin: 0 auto 39px auto;
}
#upload_progress #upload_progress_bar {
  height: 100%;
  background-color: #36d123;
  width: 0;
}
#upload_progress .popup hr {
  margin: 18px 0;
  border: none;
  border-top: 2px solid #f2f2f2;
}
#upload_progress button {
  margin: 18px;
}

.settings-page form.setting img.splash {
  height: 100px;
}
.settings-page form.setting .choose_splash_button {
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  background-color: black;
  margin: 10px 10px 10px 0;
}
.settings-page form.setting input[type=file] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.notifications-page .home .row {
  justify-content: center;
}
.notifications-page .youhave_n {
  height: 46px;
  float: right;
  line-height: 46px;
  vertical-align: middle;
  font-style: italic;
  margin-left: 20px;
}
.notifications-page .youhave_n em {
  color: #36d123;
}
.notifications-page .notifications {
  width: 39.75rem;
  height: 27.69rem;
  overflow-y: hidden;
}
.notifications-page .notifications a {
  color: #36d123;
  font-weight: bold;
}
.notifications-page .notifications #tabs {
  height: 100%;
}
.notifications-page .notifications .ui-tabs .ui-tabs-nav {
  padding: 0;
}
.notifications-page .notifications .ui-tabs .ui-tabs-nav li {
  margin: 0;
  margin-bottom: -1px;
  border-radius: 0px;
}
.notifications-page .notifications .ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.notifications-page .notifications .ui-widget-header {
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid grey;
}
.notifications-page .notifications .ui-tabs-panel {
  padding: 0.2rem 0.5rem;
  height: 91%;
  overflow-y: auto;
  border: 1px solid grey;
  border-top: none;
}
.notifications-page .notifications .ui-state-default, .notifications-page .notifications .ui-widget-content .ui-state-default, .notifications-page .notifications .ui-widget-header .ui-state-default {
  background: white;
}
.notifications-page .bell {
  background-color: white;
  background-image: url(/images/icon-bell-green.svg);
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  position: relative;
  float: right;
  margin-left: 16px;
}
.notifications-page td:first-child:before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.25rem;
  border-radius: 50%;
}
.notifications-page tr.action_item td:first-child:before {
  background-color: #ff0000;
}
.notifications-page tr.notification_project_edited td:first-child:before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.25rem;
  border-radius: 50%;
  background-color: #c00edb;
}
.notifications-page th.dismiss {
  width: 3%;
}
.notifications-page th:first-child,
.notifications-page td:first-child {
  width: 4.75rem;
}
.notifications-page th:nth-child(2) {
  width: 27%;
}
.notifications-page th:nth-child(3) {
  width: 51%;
}
.notifications-page th:nth-child(3),
.notifications-page td:nth-child(3) {
  padding-left: 0.625rem;
}
.notifications-page th.notification_time {
  width: 5.625rem;
}
.notifications-page tr.notification_tv_project_accepted td:first-child:before,
.notifications-page tr.notification_digital_project_accepted td:first-child:before,
.notifications-page tr.notification_social_project_accepted td:first-child:before,
.notifications-page tr.notification_onscreen_project_accepted td:first-child:before,
.notifications-page tr.notification_other_project_accepted td:first-child:before,
.notifications-page tr.notification_radio_project_accepted td:first-child:before {
  background-color: #36d223; /* green */
}
.notifications-page tr.notification_project_assigned td:first-child:before {
  background-color: #ffff00; /* yellow */
}
.notifications-page tr.notification_upcoming_deadline td:first-child:before {
  background-color: #ffa500; /* orange */
}
.notifications-page tr.notification_status_update td:first-child:before {
  background-color: #0000ff; /* blue */
}
.notifications-page tr.notification_status_update_tv td:first-child:before,
.notifications-page tr.notification_status_update_digital td:first-child:before,
.notifications-page tr.notification_status_update_social td:first-child:before,
.notifications-page tr.notification_status_update_onscreen td:first-child:before,
.notifications-page tr.notification_status_update_other td:first-child:before,
.notifications-page tr.notification_status_update_radio td:first-child:before {
  background-color: #13b3e8; /* light blue */
}
.notifications-page tr.notification_project_edited td:first-child:before {
  background-color: #c00edb; /* purple */
}
.notifications-page tr.notification_tv_deliverable_deleted td:first-child:before,
.notifications-page tr.notification_digital_deliverable_deleted td:first-child:before,
.notifications-page tr.notification_social_deliverable_deleted td:first-child:before,
.notifications-page tr.notification_onscreen_deliverable_deleted td:first-child:before,
.notifications-page tr.notification_other_deliverable_deleted td:first-child:before,
.notifications-page tr.notification_radio_deliverable_deleted td:first-child:before {
  background-color: #959595; /* gray */
}
.notifications-page a.dismiss {
  color: black;
}

.client-page .filter {
  margin-bottom: 30px;
}
.client-page .filter .form {
  display: none;
  max-height: 1000px;
  transition: max-height 0.25s;
  position: relative;
  overflow: visible;
  padding: 16px 0px;
}
.client-page .filter .form select {
  background-color: #fff;
}
.client-page .filter.show .form {
  display: block;
}

.client-edit-page .client_contact {
  position: relative;
}
.client-edit-page .trashbin {
  position: absolute;
  right: -3rem;
  top: calc(0.45rem + 6px);
  background-image: url(/images/icon-trash.png);
  background-repeat: no-repeat;
  background-size: 0.75rem;
  background-size: 1.5rem;
  height: 0.75rem;
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 30px;
}

.report-page {
  /* reduce spacing of multi-select to meet tree-filter halfway */
}
.report-page .form input[type=text], .report-page .form select {
  width: 280px;
}
.report-page .form .checkbox-container {
  width: 280px;
  display: inline-block;
  vertical-align: middle;
}
.report-page .form .checkbox-container input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-height: auto;
}
.report-page .report_info {
  margin: 20px auto;
  columns: 1;
  min-height: 20px;
}
.report-page .report_info label {
  width: 180px;
}
.report-page .filter-button {
  width: 90px;
}
.report-page .ms-choice > div {
  top: 35%;
}
.report-page select[multiple] {
  background-color: #fff;
  display: inline-block;
  height: 40px;
  overflow: hidden;
}
.report-page select[multiple] > option {
  background-color: #fff !important;
  display: none;
}
.report-page .ms-drop ul > li {
  padding-top: 0;
  padding-bottom: 0;
}

.report_workload .padme {
  padding: 0 10px;
}

@media (max-width: 767px) {
  .report_info {
    columns: 1;
  }
}
.deliverables-report .table_scroller {
  position: relative;
  max-height: 80vh;
  max-width: calc(100vw - 30px);
  overflow: auto;
}
.deliverables-report table.report {
  border-collapse: collapse;
  margin: 0 auto;
}
.deliverables-report table.report th {
  position: sticky;
  top: 0;
  background-color: white;
}
.deliverables-report table.report th::before {
  content: " ";
  display: block;
  height: 100%;
  width: 100%;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  position: absolute;
  top: -1px;
  left: 0px;
}
.deliverables-report table.report th:not(:first-child)::after {
  content: " ";
  display: block;
  width: 3px;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  left: -2px;
}
.deliverables-report table.report tbody td:nth-child(odd) {
  text-align: right;
}
.deliverables-report table, .deliverables-report th, .deliverables-report td {
  border: 1px solid black;
  font-size: 1rem;
  padding: 4px;
}
.deliverables-report tr:nth-child(even) {
  background-color: #e0e0e0;
}
.deliverables-report .total_bar {
  display: flex;
}
.deliverables-report .total_bar > button:first-of-type {
  margin-left: auto;
}

.tree-filter {
  width: 280px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  /* increase to match multi-select */
}
.tree-filter .tf-drop {
  max-height: 250px;
  overflow: auto;
  width: 100%;
  display: none;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  z-index: 1000;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.tree-filter a.select_all {
  display: block;
  cursor: pointer;
  width: 100%;
  padding: 5px 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tree-filter a.select_all:hover {
  background-color: #e7f4f9;
}
.tree-filter .tf-choice {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
  height: auto;
  margin: 18px 0 0 0;
  border: 1px solid #CBCBCB;
  min-height: 37px;
  position: relative;
  font-size: 1.125rem;
}
.tree-filter .tf-choice > div {
  top: 35%;
  margin-top: 4px;
  margin-right: 10px;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 25px;
  background: url("/js/multiple-select/multiple-select.png") left top no-repeat;
}
.tree-filter .tf-choice > div.open {
  background: url("/js/multiple-select/multiple-select.png") right top no-repeat;
}
.tree-filter .tf-choice > span {
  font-size: 1rem;
  position: relative;
  padding: 0.3rem 1.9rem 0.3rem 0.625rem;
  min-height: 2em;
  display: block;
}
.tree-filter .jstree-default .jstree-wholerow,
.tree-filter .jstree-default .jstree-anchor {
  height: 30px;
}
.tree-filter .jstree-default .jstree-wholerow-clicked {
  background: none;
}

@media print {
  .noprint {
    display: none;
  }
}
.region-page .region {
  min-height: 31.25rem;
}
.region-page .region input[type=submit] {
  margin-right: 10px;
}
.region-page .region span.sales-from {
  width: 565px;
  max-width: 100%;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  vertical-align: top;
}
.region-page .region .ms-parent {
  margin-right: 20px;
}
.region-page .sales-block a:link, .region-page .sales-block a:visited {
  color: #36d123;
}

/*# sourceMappingURL=style.css.map */
