/* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
/* All scss files used in shared AppComponent.tsx */
/* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
header {
  height: 42px;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: flex-start;
  /* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
  /* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
  /* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
  /* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
}
header #news-menu {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  height: 100%;
  width: 42px;
  background-image: url("../img/icons/icnInfoWhite.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: auto 16px;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
header #news-menu.maintenance {
  background-color: #9a3033;
}
header #news-menu.maintenance:hover {
  background-image: url("../img/icons/icnInfoWhite.png");
  background-color: #c1383c;
}
header #news-menu:hover {
  background-image: url("../img/icons/icnInfoGreen.png");
}
header #news-menu:hover div#news-items {
  display: flex;
}
header #news-menu.active {
  cursor: default;
}
header #news-menu div#nr-of-news {
  display: block;
  font-weight: 700;
  color: #FFF;
  font-size: 0.7rem;
  text-align: center;
  width: 14px;
  height: 14px;
  background-color: #1f2c36;
  float: left;
  margin-top: 10px;
  margin-left: 24px;
  line-height: 14px;
  border-radius: 50%;
}
header #news-menu div#nr-of-news.active {
  background-color: red;
}
header #news-menu div#news-items {
  display: none;
  position: absolute;
  top: 38px;
  right: -140px;
  width: 400px;
  flex-flow: column nowrap;
  z-index: 2;
  overflow: hidden;
  background-color: #2c363d;
  border-radius: 4px;
  border: 1px solid #384751;
}
header #news-menu div#news-items > div.news-item {
  flex: 1 0 auto;
  border-bottom: 1px solid #384751;
}
header #news-menu div#news-items > div.news-item:last-of-type {
  border-bottom: 0;
}
header #news-menu div#news-items > div.news-item.maintenance > a {
  font-weight: bold;
  background-color: #9a3033;
}
header #news-menu div#news-items > div.news-item.maintenance > a:hover {
  background-color: #c1383c;
}
header #news-menu div#news-items > div.news-item.maintenance > a span {
  font-weight: normal;
}
header #news-menu div#news-items > div.news-item > a {
  background-color: #2c363d;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  height: auto;
  float: right;
  line-height: 18px;
  text-align: left;
  padding: 10px 10px 10px 34px;
  background-image: url("../img/icons/icnInfoWhite.png");
  background-repeat: no-repeat;
  background-size: auto 16px;
  background-position: 15px center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
header #news-menu div#news-items > div.news-item > a:hover {
  text-decoration: none;
  background-color: #384751;
}
header #language-selector {
  display: flex;
  flex-flow: row nowrap;
  width: 42px;
  position: relative;
  height: 100%;
}
header #language-selector:hover div#current-language {
  color: #48baaf;
}
header #language-selector:hover div#possible-languages {
  display: flex;
}
header #language-selector div#current-language {
  text-align: center;
  width: 100%;
  font-weight: bold;
  line-height: 1.2rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
header #language-selector div#possible-languages {
  position: absolute;
  top: 38px;
  background-color: #2c363d;
  border: 1px solid #384751;
  left: -18px;
  width: 70px;
  border-radius: 4px;
  flex-flow: row wrap;
  display: none;
  z-index: 2;
}
header #language-selector div#possible-languages div {
  flex-basis: 50%;
  border-radius: 3px;
  line-height: 28px;
  text-align: center;
  font-weight: bold;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
header #language-selector div#possible-languages div:hover {
  cursor: pointer;
  background-color: #0e544d;
}
header #environment-selector {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  height: 100%;
  width: 80px;
}
header #environment-selector:hover div.selected {
  color: #48baaf;
}
header #environment-selector:hover div.other-environments {
  display: flex;
}
header #environment-selector div.selected {
  height: 42px;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1rem;
  width: 100%;
  color: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
header #environment-selector div.other-environments {
  position: absolute;
  display: none;
  color: #fff;
  z-index: 150;
  border-radius: 4px;
  background-color: #2c363d;
  border: 1px solid #384751;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 38px;
  left: -10px;
  width: 100px;
  flex-flow: column nowrap;
}
header #environment-selector div.other-environments a {
  float: left;
  width: 100%;
  color: #fff;
  text-align: center;
  line-height: 1.1rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  padding: 8px 4px;
}
header #environment-selector div.other-environments a:hover {
  background-color: #0e544d;
  text-decoration: none;
}
header #help-menu {
  display: flex;
  flex-flow: row nowrap;
  width: 42px;
  position: relative;
  height: 100%;
  background-image: url("../img/icons/icnHelpWhite.png");
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: center center;
}
header #help-menu:hover {
  background-image: url("../img/icons/icnHelpGreen.png");
  cursor: help;
}
header #help-menu:hover > ul {
  display: flex;
}
header #help-menu > ul {
  display: none;
  position: absolute;
  right: 2px;
  top: 38px;
  background-color: #2c363d;
  border: 1px solid #384751;
  z-index: 2;
  padding: 0;
  border-radius: 4px;
  width: auto;
  flex-flow: column nowrap;
}
header #help-menu > ul li {
  height: 32px;
  margin-left: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
header #help-menu > ul li:first-of-type > * {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
header #help-menu > ul li:last-of-type > * {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
header #help-menu > ul li > a {
  color: #fff;
  width: 100%;
  line-height: 32px;
  font-size: 1rem;
  text-align: left;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: right 10px center;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 45px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
header #help-menu > ul li > a:hover {
  color: #FFF;
  background-color: #0e544d;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
header #help-menu > ul li > a.link-to-download-app {
  background-size: 20px auto;
  background-image: url("../img/logos/logo_pacsonweb_bullets.png");
  background-position: right 11px center;
}
header #help-menu > ul li > a.link-to-about-box {
  background-size: 20px auto;
  background-image: url("../img/icons/icnAboutWhite.png");
  background-position: right 11px center;
}
header #help-menu > ul li > a.link-to-support {
  background-size: 20px auto;
  background-image: url("../img/icons/icnSupportWhite.png");
  background-position: right 11px center;
}
header #help-menu > ul li > a.link-to-user-manual {
  background-size: 22px auto;
  background-image: url("../img/icons/icnUserManualWhite.png");
}
header h1 {
  background-repeat: no-repeat;
  background-position: left center;
  background-position-x: left;
  background-position-y: center;
  background-image: url("../img/logos/logo_pacsonweb_full_white_32.png");
  height: 32px;
  margin: 5px;
  width: 247px;
}
header h1 a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}
header > div#header-components {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex: 1 0 auto;
  flex-flow: row nowrap;
  justify-content: flex-end;
  height: 42px;
}

/* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
.rich-tooltip {
  z-index: 1002;
  font-weight: normal;
  border-radius: 2px;
  background-color: #2c363d;
  border: 1px solid #384751;
  color: #fff;
  font-size: 0.9rem;
  padding: 4px 7px;
  line-height: 16px;
  text-decoration: none;
  position: absolute;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  top: 0;
  left: 0;
  white-space: initial;
  word-break: break-word;
  max-width: 270px;
}

/* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
.modal-dialog.about-us .title {
  padding-left: 30px;
  background-image: url("../img/icons/icnAboutWhite.png");
  background-size: 20px;
  background-position: left center;
  background-repeat: no-repeat;
}
.modal-dialog.about-us .modal-dialog-body {
  display: flex;
  flex-flow: row nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  align-items: stretch;
}
.modal-dialog.about-us .modal-dialog-body > div {
  flex: 0 0 50%;
  display: flex;
  flex-flow: column nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  gap: 10px;
  align-items: stretch;
  justify-content: space-between;
}
.modal-dialog.about-us .modal-dialog-body > div:first-of-type {
  padding-right: 5px;
}
.modal-dialog.about-us .modal-dialog-body > div:first-of-type > div:first-of-type {
  margin-bottom: 4px;
}
.modal-dialog.about-us .modal-dialog-body > div:last-of-type {
  padding-left: 5px;
}
.modal-dialog.about-us .modal-dialog-body > div > div {
  border: 1px solid rgba(255, 255, 255, 0.175);
  padding: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-flow: column nowrap;
  align-items: flex-start;
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification a.toggle-show-third-party-software:hover {
  cursor: pointer;
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
  align-content: center;
  flex-flow: row nowrap;
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div.third-party-software {
  flex-flow: column nowrap;
  max-height: 220px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  /* corner when you have a horizontal and vertical scrollbar */
  align-items: flex-start;
  align-self: stretch;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div.third-party-software::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div.third-party-software::-webkit-scrollbar-track {
  background: #1f2c36;
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div.third-party-software::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div.third-party-software::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div.third-party-software::-webkit-scrollbar-corner {
  background: #1f2c36;
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div.third-party-software > p {
  font-size: 0.8rem;
  line-height: 1rem;
  padding: 4px;
  margin: 0;
}
.modal-dialog.about-us .modal-dialog-body > div > div.software-identification > div.third-party-software > p span {
  color: rgba(255, 255, 255, 0.5);
}
.modal-dialog.about-us h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.modal-dialog.about-us p {
  line-height: 1.5rem;
  margin-bottom: 2px;
}
.modal-dialog.about-us p.environment-machine-name {
  align-self: center;
}
.modal-dialog.about-us p.environment-machine-name span {
  font-weight: bold;
}
.modal-dialog.about-us p.pacsonweb-version-info {
  margin-bottom: 8px;
}
.modal-dialog.about-us img {
  height: 50px;
  margin-bottom: 5px;
  padding: 5px;
  border-radius: 2px;
  background-color: #fff;
  margin-right: 5px;
}
.modal-dialog.about-us a {
  color: #48baaf;
}
.modal-dialog.about-us a:hover {
  text-decoration: underline;
}

/* DEDALUS COLORS COMING FROM THE STYLE GUIDE */
body #app-root #cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1001;
  border-top: 1px solid #dddfe2;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  background-color: #2c363d;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-flow: column nowrap;
  padding: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body #app-root #cookie-banner div.content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-flow: column nowrap;
  position: relative;
}
body #app-root #cookie-banner div.content .close {
  background-image: url("../img/icons/icnCrossWhite.png");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 5px;
  height: 18px;
  right: 10px;
  width: 18px;
  padding: 0;
}
body #app-root #cookie-banner div.content a {
  font-weight: bold;
  color: #48baaf;
}
body #app-root #cookie-banner div.content a:hover {
  text-decoration: underline;
}
body #app-root #cookie-banner div.content h2.title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 150%;
}
body #app-root #cookie-banner div.content p.info {
  line-height: 1.5rem;
  margin-bottom: 10px;
}
body #app-root #cookie-banner div.content div.buttons {
  margin-top: 10px;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-flow: row wrap;
  gap: 10px;
}

body > #app-root #legal-master-component {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-flow: column nowrap;
  max-width: 90rem;
  margin: 50px auto 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body > #app-root #legal-master-component > .legal-partial-container {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-flow: column nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
body > #app-root #legal-master-component > .legal-partial-container.impressum > .content p {
  margin-bottom: 15px;
}
body > #app-root #legal-master-component > .legal-partial-container > h2 {
  font-weight: bold;
  font-size: 2rem;
  text-transform: uppercase;
  padding: 25px 40px;
  transition: padding 0.3s ease-out, background-color 0.3s ease, background-image 0.3s ease;
  background-image: url("../img/icons/icnArrowDownWhite.png");
  background-position: right 50px center;
  background-size: 24px;
  background-repeat: no-repeat;
}
body > #app-root #legal-master-component > .legal-partial-container > h2:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.25);
}
body > #app-root #legal-master-component > .legal-partial-container.active {
  background-color: rgba(0, 0, 0, 0.35);
}
body > #app-root #legal-master-component > .legal-partial-container.active > h2 {
  padding: 40px 40px;
  background-image: url("../img/icons/icnArrowUpWhite.png");
}
body > #app-root #legal-master-component > .legal-partial-container.active > h2:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
body > #app-root #legal-master-component > .legal-partial-container.active > .content {
  visibility: visible;
  opacity: 1;
  height: auto;
  margin-bottom: 20px;
  padding: 20px 50px;
}
body > #app-root #legal-master-component > .legal-partial-container > .content {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s ease-out, opacity 0.35s ease-out;
  height: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-flow: column nowrap;
  padding: 0;
  overflow: hidden;
}
body > #app-root #legal-master-component > .legal-partial-container > .content a {
  color: #48baaf;
}
body > #app-root #legal-master-component > .legal-partial-container > .content a:hover {
  text-decoration: underline;
  cursor: pointer;
}
body > #app-root #legal-master-component > .legal-partial-container > .content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 35px 0 20px 0;
  color: #fff;
}
body > #app-root #legal-master-component > .legal-partial-container > .content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 15px 0 10px 0;
  color: #fff;
}
body > #app-root #legal-master-component > .legal-partial-container > .content button {
  align-self: flex-start;
}
body > #app-root #legal-master-component > .legal-partial-container > .content p, body > #app-root #legal-master-component > .legal-partial-container > .content ul, body > #app-root #legal-master-component > .legal-partial-container > .content li, body > #app-root #legal-master-component > .legal-partial-container > .content td, body > #app-root #legal-master-component > .legal-partial-container > .content th, body > #app-root #legal-master-component > .legal-partial-container > .content a {
  font-size: 1rem;
  line-height: 150%;
}
body > #app-root #legal-master-component > .legal-partial-container > .content p {
  margin-bottom: 3px;
  margin-top: 3px;
  color: #eee;
}
body > #app-root #legal-master-component > .legal-partial-container > .content ul {
  list-style-type: disc;
  margin-bottom: 3px;
  margin-top: 3px;
}
body > #app-root #legal-master-component > .legal-partial-container > .content ul li {
  margin-left: 18px;
  color: #eee;
}
body > #app-root #legal-master-component > .legal-partial-container > .content table {
  margin-top: 5px;
  margin-bottom: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  table-layout: fixed;
}
body > #app-root #legal-master-component > .legal-partial-container > .content table th {
  font-weight: bold;
}
body > #app-root #legal-master-component > .legal-partial-container > .content table th, body > #app-root #legal-master-component > .legal-partial-container > .content table td {
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  color: #eee;
}