/*
#98DBC6 Aquamarine
#5BC8AC Turquiose
#E6D72A Canary Yellow
#F18D9E Pink Tulip
*/

:root {
}

* {
  box-sizing: border-box;
  line-height: 1;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Open Sans", sans-serif;
  /* color: rgba(0, 0, 0, 0.9); */
  color: var(--mild-black);
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(#eee, #fff);
  background-attachment: fixed;
}

header {
  overflow: auto;
  height: 7em;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5em;
}

header img {
  max-height: 2em;
}

section {
  min-height: calc(100% - 10em);
  display: flex;
  padding: 1em;
  width: 100%;
  justify-content: center;
}

.left-column {
  width: 25em;
  border-right: 1px solid lightgray;
  padding: 0 1em 0 0;
}

.extra-column {
  width: 25em;
  border-right: 1px solid lightgray;
  padding: 0 0 0 1em;
}

.main-column {
  flex: 1;
  padding: 0 1em 0 1em;
  width: 100%;
  max-width: 980px;
}

.right-column {
  width: 30em;
  border-left: 1px solid lightgray;
  padding: 0 0 0 1em;
}

footer {
  background-color: #333537;
  overflow: auto;
  height: 20em;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
/* @media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
} */

hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 2em 0;
}

h1 {
  font-size: 2em;
  font-weight: bold;
  /* color: white; */
  margin: 1em 0 0.5em 0.5em;
  /* font-family: 'Crimson Pro', serif; */
}
section h1 {
  margin: 1em 0 0.5em 0;
}
h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0.5em 0 0.5em;
  /* font-family: 'Crimson Pro', serif; */
}
h3 {
  font-size: 1.25em;
  font-weight: bold;
  margin: 0 0 0.5em;
}
h4 {
  font-size: 1.25em;
  font-weight: bold;
  margin: 0 0 1em;
}
h5 {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.25em;
  font-weight: bold;
  margin: 1em 0 0 0;
}
p {
  margin: 0 0 1em 0;
  line-height: 1.25;
}
a {
  color: inherit;
  text-decoration: none;
  font: inherit;
  /* font-weight: bold; */
}
a:hover {
  cursor: pointer;
}

.box {
  box-shadow: 1px 1px 1px rgba(0,0,0,.1);
  border-radius: 4px;
  background-color: white;
  padding: 2em 1em;
  border: 1px solid #e7eaf0;
  margin: 0 0 1em 0;
  position: relative;
  overflow: hidden;
}

.leftStatusBar {
  width: 0.3em;
  height: 100%;
  background-color: gray;
  position: absolute;
  top: 0;
  left: 0;
}



.subNav li:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.subNav li:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.subNav li a {
  /* color: var(--mild-blueblack); */
}

.subNav li.bgBlueblack a {
  color: white;
}

.bgBlueblack {
  color: white;
  background-color: var(--mild-blueblack);
}

.leftSidebar {
  width: 20em;
  height: 100%;
  background-color: #5BC8AC;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color: #fff;
  padding: 1em;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
.logo {
}
.logo img {
  height: 3em;
}

.column {
  width: ;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 1em;
  margin: 0;
  border-right: 1px solid gray;
}

.column:last-child {
  margin: 0 0 1em 0;
  border: none;
}

.uploadColumn {
  width: 40em;
}





.lineitem {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1em;
  margin: 0 0 1em;
}

.creative {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1em;
  margin: 0 0 1em;
}




.fullWidth {
  width: 100%;
}


/* Style the list */
ul.breadcrumb {
  padding: 0;
  list-style: none;
  /* background-color: rgba(255, 255, 255, 0.05); */
  margin: 1em 0 0 1em;
  opacity: 0.5;
}

ul.breadcrumb:hover {
  opacity: 1;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 1em;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: var(--mild-black);
  content: "/\00a0";
  font-weight: bold;
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: rgba(29, 155, 209, 1);
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  /* color: #01447e; */
  text-decoration: underline;
}

.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}

.dynamicIcon[data-icon-value='created']::after {
  content: "assignment";
}

.dynamicIcon[data-icon-value='cron']::after {
  content: "watch_later";
}

.dynamicIcon[data-icon-value='full']::after {
  content: "lens";
}

.dynamicIcon[data-icon-value='change']::after {
  content: "panorama_fish_eye";
}

.dynamicIcon[data-icon-value='digital']::after {
  content: "web";
}

.dynamicIcon[data-icon-value='print']::after {
  content: "menu_book";
}

.iconInactive {
  color: gray;
}

.bg_green {
  /* background-color: #34a853; */
  background-color: lightgreen;
}
.bg_red {
  background-color: lightcoral;
  /* background-color: #a83434; */
}
.bg_gray {
  background-color: gray;
}
.bg_yellow {
  background-color: #fbbc04;
}
.bg_blue {
  background-color: #2c78e7;
}

.color_green {
  color: #34a853;
}
.color_red {
  color: #a83434;
}
.color_gray {
  color: gray;
}
.color_yellow {
  color: #fbbc04;
}
.color_blue {
  color: #2c78e7;
}
.color_white {
  color: white;
}

.userIcon {
  height: 1.5em;
  border-radius: 50%;
  vertical-align: middle;
}
.imgIcon {
  height: 1.5em;
  vertical-align: middle;
}

.manuscriptTextarea {
  height: 25em;
}


input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font: inherit;
  width: 100%;
  max-width: 20em;
  /* border: 1px solid black; */
  padding: 0.5em 1em;
  line-height: 1.5;
}

.box input, .box textarea, .box select {
  background-color: rgba(0, 0, 0, 0.05);
}

input:focus,
textarea:focus,
select:focus {
  /* outline: none;
  border-bottom: 1px dashed black; */
  /* background-color: lightyellow; */
}

label {
  display: block;
  font-size: 1.5em;
  margin: 0 0 0.25em 0;
}

textarea {
  min-height: 10em;
}

.adminTextArea {
  /* height: 1em; */
  /* min-height: 1em; */
  font-size: 0.8em;
  width: 150px;
}

/* input[type=text], textarea {
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.1);
  font: inherit;
  border: 1px solid rgba(209, 210, 211, 0.5);
  border-radius: 0.5em;
  outline: none;
  color: rgba(209, 210, 211, 1);
  box-sizing: border-box;
}

textarea {
  min-height: 5em;
}

input[type=text]:focus, textarea:focus {
  background-color: rgba(0, 0, 0, 0.3);
} */

/* input[type=submit], input[type=button], button {
  background-color: gray;
  color: white;
  font-size: 1em;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  padding: 0.25em;
  font-weight: bold;
  border-radius: 0.25em;
} */

.proof {
  position: relative;
}
.proof h4 {
  font-weight: bold;
  padding: 0.5em;
  margin: 0 0 1em 0;
  display: inline-block;
}
.proof h5 {
  font-weight: bold;
  padding: 0.5em 0;
  margin: 1em 0 0em 0;
}
.message {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1em;
}
.proofContact {
  margin: 0.25em 0 0 0;
}


.listSetting {
  margin: 0 0 2em 0;
}

.listSetting input {
  margin: 0 0 1em 0;
  width: 20em;
}
.listSetting textarea {
  margin: 0 0 1em 0;
  width: 20em;
  height: 10em;
}

.gamLink img {
  height: 1em;
}

.productionStatusBar {
  padding: 1em;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  height: 3em;
}

.productionStatusBar form {
  margin-top: 0.5em;
}

.draft {
  background-color: gray;
}

.ready {
  background-color: #3e82f2;
}

.waiting {
  background-color: #fbbc04;
}

.productionAssetsExistsBar {
  padding: 1em;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  height: 3em;
}

.assets_ {
  background-color: gray;
}

.assets_1 {
  background-color: #34a853;
}

.checkedInStatusBar {
  padding: 1em;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  height: 3em;
}
.checkedInStatusBar form {
  margin-top: 0.5em;
}

.checked_in {
  background-color: #34a853;
}

.not_checked_in {
  background-color: gray;
}

.proof h4 {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  padding: 0.25em 0 0 0;
  color: white;
  margin: -0.5em 0 0 0;
  text-align: center;
  font-size: 2em;
}

.upperRight {
  position: absolute;
  top: 1em;
  right: 1em;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

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

.proof_file_container {
  background-color: #eee;
  padding: 1em;
  text-align: center;
}

.proof_file {
  max-width: 100%;
  max-height: 10em;
}

.ad {
  background-color: lightyellow;
}

.ad_container {
  background-color: #eee;
  padding: 1em;
  text-align: center;
}

.ad img {
  max-width: 100%;
  max-height: 10em;
}

.productionStatusIcon {
  vertical-align: middle;
  font-size: 1.5em;
}

.productionStatusIconsContainer {
    width: 50%;
    float: left;
    text-align: center;
    font-weight: bold;
}

.productionStatusIconsContainer i {
    font-size: 3em;
    display: block;
    margin-bottom: 0.25em;
}

.productionCheckInIconsContainer {
    width: 50%;
    float: left;
    text-align: center;
    font-weight: bold;
}

.productionCheckInIconsContainer i {
    font-size: 3em;
    display: block;
    margin-bottom: 0.25em;
}

.large {
  font-size: 2em;
  height: 2em;
}

.gamLink img {
  height: 1.5em;
}

.width20 {
  width: 20em;
}

.float {
  float: left;
  margin: 0 1em 1em 0;
}

.float:last-child {
  margin: 0;
}

.bigStat {
  width: 20em;
  height: 10em;
}

.bigStat td {
  text-align: center;
  text-transform: uppercase;
}
.bigStat tr:first-child td {
  font-size: 5em;
}
.bigStat tr:last-child td {
  color: gray;
  padding-top: 1em;
}

.halfWidth {
  width: 50%;
  float: left;
}
.deliveryStatus {
  text-align: center;
  font-size: 2em;
}

.dashboardWeekday {
  color: #333537;
  margin: 1em 0 1em;
  /* font-family: 'Barlow', sans-serif; */
  text-transform: capitalize;
  font-size: 4em;
  text-align: center;
}

.dashboardHeader {
  background-color: lightgray;
  padding: 0.5em;
  text-align: center;
  font-weight: bold;
  font-size: 2em;
}
.dashboardNumbers {
  padding: 0.5em;
  text-align: center;
  font-weight: bold;
  font-size: 4em;
  margin-top: -0.5em;
}

.normalLink {
  font-weight: normal;
}
.normalLink:hover {
  text-decoration: underline;
}

.inlineIcon {
  height: 1em;
  vertical-align: baseline;
}

.respectiveLabel {
  display: none;
}

ul {
  list-style: disc;
}

li {
  margin: 0 0 0.75em 1em;
}

input[type=checkbox], input[type=radio] {
  font: inherit;
  width: 1em;
  height: 1em;
  vertical-align: sub;
}

.button.pink {
  font-size: 1.5em;
}

.invert {
  background-color: #f953c6;
  color: white;
  padding: 0.25em 0.5em;
}

a {
  color: #f953c6;
  text-decoration: underline;
}

.kikare {
  float: left;
  height: 15em;
}


section.adminSection {
  max-width: 100%;
  background-color: #eee;
}

.imgContainer {
  padding: 0.5em;
  border: 0;
}

.imgContainer img {
  width: 100%;
}

.contact {
  padding: 0.25em;
}

.contact p {
  margin: 0;
}

.rsvp-ja {
  background-color: lightgreen;
}

.rsvp-nej {
  background-color: lightcoral;
}

.rsvp-kanske {
  background-color: orange;
}

.guestList li {
  padding: 0.25em 0;
  margin: 0 0 0 1em;
  font-weight: bold;
}

.guestList li:hover {
  background-color: lightgray;
}

b {
  font-weight: bold;
}
i {
  font-style: italic;
}

.richText .richText-editor {
  font-family: inherit;
}

.richText a {
  color: inherit;
}

.inviteDraftContainer {
  margin: 0 1em 1em 0em;
  display: inline-block;
}

.inviteDraft {
  white-space: pre-wrap;
  width: 20em;
  height: 10em;
  padding: 0.5em;
  background-color: #eee;
  border: 3px solid transparent;
}

.inviteDraft:hover {
  cursor: pointer;
}

.inviteDraft.exceeded {
  background-color: #a83434;
  color: white;
}

.length_status {
  font-weight: bold;
}

.marked {
  border: 3px solid #2c78e7;
}

.fail {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.fail h1 {
  background-color: white;
  color: #f953c6;
  padding: 0.5em 1em;
  font-weight: bold;
  /* font-family: 'Ubuntu Mono', monospace; */
}

.tight {
  width: 1em;
}

.flex {
  display: flex;
}
.flex1 {
  flex: 1;
  margin: 0 1em 1em 0;
}
.flex1:last-of-type {
  margin: 0 0 1em 0;
}

.collected {
  font-size: 4em;
}

.hidden {
  display: none;
}

input.freeAmount {
  width: 5em;
}

.adminTable {
  text-align: left;
  width: 100%;
}

.adminTable thead {
  font-weight: bold;
  background-color: #ccc;
}

.adminTable th, .adminTable td {
  border: 1px solid black;
  padding: 0.25em 0.5em;
  white-space: nowrap;
}

.adminTable tbody tr:nth-child(odd) {
  background-color: #eee;
}

.total {
  font-size: 1.5em;
}
