@charset "UTF-8";
/**************************************************
Main layout settings
***************************************************/
/**************************************************
Import font
***************************************************/
@font-face {
  font-family: "Kaushan Script";
  font-style: normal;
  font-weight: 400;
  src: local("Kaushan Script"), local("KaushanScript-Regular"), url(../media/kaushan.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/**************************************************
Force border-box sizing mode to be able to add
simple paddings without breaking the grid layout
***************************************************/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.pure-g > div,
.pure-g > section,
.pure-g-r > div,
.pure-g-r > section {
  box-sizing: border-box;
}

/**************************************************
Main layout
***************************************************/
html, body {
  height: 100%;
}

.main {
  overflow: hidden;
  height: 100%;
}
@media (min-width: 515px) and (min-height: 601px) {
  .main {
    font-size: 18px;
  }
}

.main > div {
  width: 100%;
  height: 100%;
}
.main > div > div {
  width: 100%;
  height: 100%;
}

/**************************************************
Reset pure-min rules that we don't want
**************************************************/
.pure-menu-link {
  padding: 5px 5px;
  text-transform: uppercase;
  font-size: small;
  color: inherit;
}

.pure-menu-active > .pure-menu-link,
.pure-menu-link:hover, .pure-menu-link:focus {
  background-color: inherit;
}

abbr[title] {
  border-bottom: inherit;
}

/**************************************************
CSS rules that may be customized per operator
**************************************************/
.logo {
  font-family: "Kaushan Script", cursive;
  font-size: 2em;
}

.navcolor, .linkcolor {
  background-color: #297b2d;
  color: white;
}

.linkcolor:hover {
  background-color: #F3D673;
  color: black;
}

.linkcolor.selected {
  background-color: white;
  color: black;
}

/**************************************************
Home page
***************************************************/
.home {
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: auto;
  /* Padding on home page depends on viewport width and height */
  padding: 0.3em 1em 0;
  background-color: white;
  color: #5d5948;
}
.home .flags {
  position: absolute;
  top: 1em;
  right: 2em;
  display: flex;
  flex-direction: column;
}
.home .flags img {
  cursor: pointer;
  margin-bottom: 0.2em;
}
@media (min-height: 620px) {
  .home {
    padding: 1em 1em 0;
  }
}
@media (min-width: 515px) and (min-height: 651px) {
  .home {
    padding: 2em 2em 0;
  }
}
.home p {
  text-align: center;
  margin: 0 auto;
}
.home img {
  display: inline-block;
  margin-bottom: 0.5em;
}
.home h1 {
  text-align: center;
  padding: 0.1em;
  font-size: 22px;
  margin: 0 0 0.3em 0;
}
@media (min-height: 620px) {
  .home h1 {
    margin: 0 0 0.5em 0;
  }
}
.home h1 .tagline {
  font-size: 16px;
  display: inline-block;
  margin-top: 0.5em;
  line-height: 1em;
}
.home form {
  max-width: 25em;
  margin: 0 auto;
}
.home ul {
  padding-left: 0;
  font-size: 100%;
  width: 16em;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media (min-height: 530px) {
  .home ul {
    margin-top: 1em;
  }
}
.home li {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  list-style-type: none;
}
.home li a {
  width: 16em;
  padding-left: 1em;
  text-align: left;
  border: 1px solid #41924B;
}
.home .counters {
  font-size: 130%;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}
@media (min-height: 560px) {
  .home .counters {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
}
.home .counters .opencounter {
  display: inline-block;
  margin-right: 1em;
}
.home button[data-action=showrecover],
.home button[data-action=showlogin],
.home button[data-action=ok] {
  margin-top: 2em;
}
.home #password {
  display: inline-block;
  width: calc(100% - 4.1em);
  margin-right: 0.5em;
}
.home .lds-ring {
  display: flex;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 1em auto 0;
}
.home .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #5d5948;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #5d5948 transparent transparent transparent;
}
.home .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.home .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.home .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**************************************************
Pages layout
***************************************************/
.pages {
  /************************************************
  Header navigation menu
  *************************************************/
  /************************************************
  Main content
  *************************************************/
  /************************************************
  Footer navigation menu
  *************************************************/
}
.pages > header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5em;
  overflow: hidden;
}
.pages > header .pure-menu {
  height: 2.5em;
  position: relative;
}
.pages > header .pure-menu-list {
  height: 100%;
}
.pages > header .pure-menu-item {
  padding: 0;
  border-right: 1px solid #41924B;
  /* Menu labels only displayed provided enough width available */
}
.pages > header .pure-menu-item span {
  display: none;
}
@media (min-width: 1060px) {
  .pages > header .pure-menu-item span {
    display: inline;
  }
}
.pages > header .pure-menu-link {
  height: 100%;
  padding: 0.7em 0.5em 0;
}
.pages > header .logout {
  position: absolute;
  right: 0px;
  border-right: none;
  border-left: 1px solid #41924B;
}
.pages .content {
  position: absolute;
  top: 2.5em;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /**************************************************
  Section content
  ***************************************************/
  /* Adjust columns in list of commodities based on viewport's width */
  /* Actions bottom navigation menu in market entry form */
  /* Help page */
}
.pages .content > div {
  width: 100%;
  height: 100%;
}
.pages .content > div > div {
  width: 100%;
  height: 100%;
}
.pages .content.insheet {
  bottom: 2.5em;
}
.pages .content h1 {
  text-align: center;
  color: #006666;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0.67em;
  padding-bottom: 0.67em;
  font-size: 1.2em;
}
@media (min-width: 515px) {
  .pages .content h1 {
    font-size: 1.9em;
  }
}
.pages .content h2 {
  color: #006666;
  margin-top: 0;
  font-size: 1.2em;
}
@media (min-width: 515px) {
  .pages .content h2 {
    font-size: 1.5em;
  }
}
.pages .content .container {
  height: 100%;
  position: relative;
}
.pages .content .sectioncontent {
  position: absolute;
  top: 45px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-color: #006666;
  padding: 0.3em 0.2em 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.pages .content .sectioncontent.marketentry {
  bottom: 2.5em;
}
@media (min-width: 515px) {
  .pages .content .sectioncontent {
    top: 85px;
    padding: 0.6em 0.3em 0;
  }
}
.pages .content .sectioncontent > div {
  background-color: white;
  width: 100%;
  height: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 1em 0.5em;
  overflow: auto;
}
.pages .content .sectioncontent section {
  margin-bottom: 2em;
}
@media (min-width: 515px) {
  .pages .content .sectioncontent .commodity .pure-u-1-2 {
    width: 33.3333%;
  }
}
.pages .content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  width: 100%;
}
.pages .content li {
  width: 100%;
  border-bottom: thin solid #006666;
}
.pages .content li > a,
.pages .content li .sheet {
  display: block;
  width: 100%;
  padding: 20px 10px;
  text-decoration: none;
  color: black;
}
.pages .content li i {
  display: inline-block;
}
.pages .content .details li {
  border-bottom: none;
}
.pages .content .listheaders {
  padding: 0 10px;
  border-bottom: thin solid #006666;
  font-style: italic;
}
.pages .content .listheaders span {
  display: none;
}
@media (min-width: 515px) {
  .pages .content .listheaders i {
    display: none;
  }
  .pages .content .listheaders span {
    display: inline;
  }
}
.pages .content label {
  margin-top: 1em;
}
.pages .content legend ~ label {
  margin-top: 0;
}
.pages .content label:not([hidden]) + label:not([hidden]) {
  margin-top: 1em;
}
.pages .content fieldset {
  margin-bottom: 1em;
}
.pages .content legend {
  color: #006666;
  border-bottom: thin solid #006666;
}
.pages .content .largeinput {
  width: 100%;
}
@media (min-width: 515px) {
  .pages .content .largeinput {
    width: 60%;
  }
}
.pages .content .largeinput.password {
  display: inline-block;
  margin-right: 0.5em;
  width: calc(100% - 4.1em);
}
@media (min-width: 515px) {
  .pages .content .largeinput.password {
    width: calc(60% - 4.1em);
  }
}
.pages .content .details .pure-u-1-3,
.pages .content .details .pure-u-2-3 {
  width: 50%;
}
@media (min-width: 515px) {
  .pages .content .details .pure-u-1-3 {
    width: 33.3333%;
  }
  .pages .content .details .pure-u-2-3 {
    width: 66.6666%;
  }
}
.pages .content .commodities .listheaders {
  padding-left: 0;
  padding-right: 0;
}
.pages .content .commodities li {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.pages .content .commodities li > a {
  padding: initial;
}
.pages .content .commodities .info {
  display: flex;
  align-items: center;
}
.pages .content .commodities .icon {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  margin-right: 10px;
}
.pages .content .commodities .desc {
  width: calc(100% - 100px);
}
.pages .content .commodities .innerdesc {
  display: flex;
  flex-wrap: wrap;
}
.pages .content .commodities .name {
  width: 100%;
  vertical-align: middle;
}
.pages .content .commodities .prices {
  width: 100%;
}
.pages .content .commodities .prices,
.pages .content .commodities .supply {
  font-size: 85%;
}
@media (min-width: 600px) {
  .pages .content .commodities .name {
    width: 60%;
  }
  .pages .content .commodities .prices {
    width: 40%;
    font-size: 100%;
  }
}
@media (min-width: 800px) {
  .pages .content .commodities .name {
    width: 400px;
  }
  .pages .content .commodities .prices {
    width: calc(100% - 400px);
  }
}
.pages .content .missing,
.pages .content .missingmarket,
.pages .content .missingdate,
.pages .content .missing_vendor_ws_package {
  display: none;
}
.pages .content .missing.active,
.pages .content .missingmarket.active,
.pages .content .missingdate.active,
.pages .content .missing_vendor_ws_package.active {
  display: block;
  color: red;
}
.pages .content .actionsnav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5em;
  overflow: hidden;
  margin-bottom: 0;
  background-color: #006666;
  color: white;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 0.35em;
  /* Menu labels only displayed provided enough width available */
}
@media (min-width: 515px) {
  .pages .content .actionsnav {
    padding-left: 0.6em;
    padding-right: 0.6em;
  }
}
.pages .content .actionsnav legend {
  display: none;
}
.pages .content .actionsnav button {
  margin-top: 0 !important;
}
.pages .content .actionsnav li {
  width: auto;
}
.pages .content .actionsnav .pure-menu-item {
  padding: 0;
}
.pages .content .actionsnav .pure-menu-item button {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  margin-left: 0.3em;
}
.pages .content .actionsnav .pure-menu-link {
  height: 100%;
  padding: 0.7em 0.5em 0.7em;
  color: white;
}
.pages .content .actionsnav .pure-menu-link.selected,
.pages .content .actionsnav .pure-menu-link:hover {
  background-color: white;
  color: black;
}
.pages .content .actionsnav span {
  display: none;
}
@media (min-width: 515px) {
  .pages .content .actionsnav span {
    display: inline;
  }
}
.pages .content .help ul {
  list-style-type: disc;
  padding-left: 1em;
}
.pages .content .help li {
  border-bottom: none;
}
.pages > footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.5em;
  overflow: hidden;
  background-color: #006666;
  color: white;
  padding-left: 0.2em;
  padding-right: 0.2em;
}
@media (min-width: 515px) {
  .pages > footer {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }
}
.pages > footer .pure-menu.pure-menu-open, .pages > footer .pure-menu.pure-menu-horizontal li .pure-menu-children {
  background-color: #006666;
}
.pages > footer .pure-menu .pure-menu-item {
  padding: 0;
}
.pages > footer .pure-menu .pure-menu-link {
  height: 100%;
  padding: 0.7em 0.5em 0.7em;
}
.pages > footer .pure-menu .pure-menu-link[disabled] {
  color: rgba(255, 255, 255, 0.2);
}
.pages > footer .pure-menu .pure-menu-link.selected,
.pages > footer .pure-menu .pure-menu-link:not([disabled]):hover {
  background-color: white;
  color: black;
  cursor: pointer;
}
.pages > footer .pure-menu li {
  /* Menu labels only displayed provided enough width available */
}
.pages > footer .pure-menu li span {
  display: none;
}
@media (min-width: 515px) {
  .pages > footer .pure-menu li span {
    display: inline;
  }
}

/**************************************************
Latest commodities prices view
***************************************************/
#latest .sectioncontent > div details summary {
  cursor: pointer;
  background-color: #F3D673;
  padding: 0.5em;
}
#latest .sectioncontent > div details summary::-webkit-details-marker {
  display: none;
}
#latest .sectioncontent > div details summary::before {
  color: #333;
  content: "▶";
  display: inline-block;
  height: 18px;
  width: 18px;
}
#latest .sectioncontent > div details[open] summary::before {
  transform: rotate(90deg);
  position: relative;
  top: 3px;
}

/**************************************************
Analysis view
***************************************************/
#analysisform #startdate label,
#settings #startdate label {
  margin-top: 0;
}
#analysisform #yeardate label,
#settings #yeardate label {
  margin-top: 0;
}
#analysisform li,
#settings li {
  border-bottom: none;
}
#analysisform li li,
#analysisform #aggregation li,
#analysisform .marketscontainer li,
#settings li li,
#settings #aggregation li,
#settings .marketscontainer li {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.5em;
}
#analysisform details summary,
#settings details summary {
  cursor: pointer;
}
#analysisform details summary::-webkit-details-marker,
#settings details summary::-webkit-details-marker {
  display: none;
}
#analysisform details summary::before,
#settings details summary::before {
  color: #333;
  content: "▶";
  display: inline-block;
  height: 18px;
  width: 18px;
}
#analysisform details[open] summary::before,
#settings details[open] summary::before {
  transform: rotate(90deg);
  position: relative;
  top: 3px;
}
#analysisform li,
#settings li {
  position: relative;
}
#analysisform li .tooltip,
#settings li .tooltip {
  position: absolute;
  top: 1.5rem;
  width: 16rem;
  margin-left: 1rem;
  background-color: #F3D673;
  padding: 0.5rem;
  z-index: 2;
}
#analysisform .action,
#settings .action {
  position: relative;
  margin-bottom: 1rem;
}
#analysisform .action .tooltip,
#settings .action .tooltip {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  width: 16rem;
  transform: translateX(-50%);
  background-color: #F3D673;
  padding: 0.5rem;
  z-index: 2;
}
#analysisform .languagecontainer label,
#settings .languagecontainer label {
  display: flex;
  align-items: center;
}
#analysisform .languagecontainer label img,
#settings .languagecontainer label img {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

#analysischart .chart-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#analysisdata #rawdata {
  overflow-x: auto;
}
#analysisdata .name {
  min-width: 13rem;
  text-align: left;
  padding-right: 0.5rem;
}
#analysisdata .name[colspan] {
  background-color: #F3D673;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
#analysisdata .datum {
  min-width: 5.5rem;
  max-width: 5.5rem;
  text-align: right;
  border-left: thin solid #006666;
  padding-right: 0.5rem;
}
#analysisdata .header {
  text-align: center;
}
#analysisdata tr {
  border-bottom: thin solid #006666;
}

#feedback .action {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#feedback .action .tooltip {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  width: 16rem;
  transform: translateX(-50%);
  background-color: #F3D673;
  padding: 0.5rem;
  z-index: 2;
}

/**************************************************
About page
***************************************************/
#about li {
  border-bottom: none;
}

/**************************************************
Spinner
***************************************************/
.spinner {
  text-align: center;
  margin-top: 3em;
  max-width: 30em;
  margin-left: auto;
  margin-right: auto;
}

/**************************************************
Error / Dialog
***************************************************/
.error {
  width: 80%;
  border-radius: 5px;
  background-color: #f2dede;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
}

.box-simple {
  padding: 1em;
}

.disabled {
  color: grey;
}

dialog {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  max-width: 80%;
}
dialog button {
  margin-bottom: 0.3em;
}

/**************************************************
Version number
***************************************************/
.version {
  position: absolute;
  bottom: 0.2em;
  right: 1em;
  font-size: 70%;
  color: #aaaaaa;
  text-align: right;
}
.version a {
  color: inherit;
}

/**************************************************
Embedded styles
***************************************************/
.embedded.main, .embedded .main {
  overflow: auto;
}
.embedded .home {
  padding: 0;
}
.embedded .pages .content {
  position: relative;
  top: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
}
.embedded .pages .content.insheet {
  bottom: 0;
}
.embedded .pages .content h1 {
  text-align: inherit;
  color: inherit;
  font-size: 20px;
  margin: 0.67em 0;
  padding: 0;
}
.embedded .pages .content h2 {
  font-size: 20px;
  color: inherit;
}
.embedded .pages .content .sectioncontent {
  position: relative;
  top: 0;
  padding: 0;
  overflow: auto;
  background-color: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.embedded .pages .content .sectioncontent > div {
  background-color: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: inherit;
  height: inherit;
  padding: 0;
}
.embedded .pages .content .sectioncontent .pure-form .pure-input-1 {
  width: inherit;
}
.embedded #analysisform .action .tooltip {
  margin-left: 1rem;
  left: inherit;
  transform: none;
}
.embedded #analysisdata {
  margin-top: 1em;
  margin-bottom: 1em;
}
.embedded #analysischart .chart-container {
  height: 600px;
}

/**************************************************
Survey form
***************************************************/
.survey h2 {
  text-align: center;
}
.survey .intro, .survey .question {
  margin-bottom: 2em;
}
.survey .actions {
  text-align: center;
}
.survey .actions button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5em;
}
@media (min-width: 650px) {
  .survey .actions button {
    display: initial;
    margin: initial;
  }
}
.survey .rating {
  width: 100px;
  height: 20px;
  unicode-bidi: bidi-override;
  direction: rtl;
  text-align: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.survey .rating > label {
  float: right;
  display: inline;
  padding: 0;
  margin: 0;
  position: relative;
  width: 1.1em;
  cursor: pointer;
  color: black;
}
.survey .rating > label:hover,
.survey .rating > label:hover ~ label,
.survey .rating > input[type=radio]:checked ~ label {
  color: transparent;
}
.survey .rating > label:hover:before,
.survey .rating > label:hover ~ label:before,
.survey .rating > input[type=radio]:checked ~ label:before,
.survey .rating > input[type=radio]:checked ~ label:before {
  content: "★";
  position: absolute;
  left: 0;
  color: #FFD700;
}

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