* {box-sizing:border-box;}

@font-face {
  font-family: 'RobotoSlab';
  src:  url('fonts/RobotoSlab-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'RobotoSlab';
  font-weight: bold;
  src:  url('fonts/RobotoSlab-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'RobotoSlab';
  font-weight: 300;
  src:  url('fonts/RobotoSlab-Light.ttf') format('truetype');
}

/* Body */

body {
  font-family: RobotoSlab; /* helvetica, arial, sans */
  background: #c5c8c6;
  color: #c5c8c6;
  overflow: auto;

  --bg: #1d1f21;
  --fg: #c5c8c6;
  --red: #ab4938;
  --green:  #3d8b2e;
  --orange: #de935f;
  --blue: #397aac;
  --cyan: #48c2b6;
  --grey: #808080;
  --light-grey: #c7c7c7;
  --dark-grey: #4a4a4a;
}

/* custom scrollbar (only for webkit browsers) */

::-webkit-scrollbar {
  width: .75em;
}

::-webkit-scrollbar-track {
  background: var(--grey);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--bg);
  border-radius: 5px;
}

/* Animations */

.loader {
  border: .5em solid;
  position: relative;
  float: right;
  top: .5em;
  right: .5em;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  -webkit-animation: blend_sides 4s linear infinite;
  animation: blend_sides 4s linear infinite;
}

@-webkit-keyframes blend_sides {
  0%  {border-color: rgb(197,200,198,0)}
  12%   {border-bottom-color: rgb(197,200,198,1);
      border-right-color: rgb(197,200,198,0);
        border-left-color: rgb(197,200,198,0);
        border-top-color: rgb(197,200,198,0)}
  25%   {border-bottom-color: rgb(197,200,198,1);
      border-right-color: rgb(197,200,198,1);
        border-left-color: rgb(197,200,198,0);
        border-top-color: rgb(197,200,198,0)}
  37%   {border-bottom-color: rgb(197,200,198,1);
      border-right-color: rgb(197,200,198,1);
        border-left-color: rgb(197,200,198,1);
        border-top-color: rgb(197,200,198,0)}
  50%   {border-color: rgb(197,200,198,1)}
  62% {border-bottom-color: rgb(197,200,198,0);
      border-right-color: rgb(197,200,198,1);
        border-left-color: rgb(197,200,198,1);
        border-top-color: rgb(197,200,198,1)}
  75% {border-bottom-color: rgb(197,200,198,0);
      border-right-color: rgb(197,200,198,0);
        border-left-color: rgb(197,200,198,1);
        border-top-color: rgb(197,200,198,1)}
  87% {border-bottom-color: rgb(197,200,198,0);
      border-right-color: rgb(197,200,198,0);
        border-left-color: rgb(197,200,198,0);
        border-top-color: rgb(197,200,198,1)}
  100%  {border-color: rgb(197,200,198,0)}
}

@keyframes blend_sides {
  0%  {border-color: rgb(197,200,198,0)}
  12%   {border-bottom-color: rgb(197,200,198,1);
      border-right-color: rgb(197,200,198,0);
        border-left-color: rgb(197,200,198,0);
        border-top-color: rgb(197,200,198,0)}
  25%   {border-bottom-color: rgb(197,200,198,1);
      border-right-color: rgb(197,200,198,1);
        border-left-color: rgb(197,200,198,0);
        border-top-color: rgb(197,200,198,0)}
  37%   {border-bottom-color: rgb(197,200,198,1);
      border-right-color: rgb(197,200,198,1);
        border-left-color: rgb(197,200,198,1);
        border-top-color: rgb(197,200,198,0)}
  50%   {border-color: rgb(197,200,198,1)}
  62% {border-bottom-color: rgb(197,200,198,0);
      border-right-color: rgb(197,200,198,1);
        border-left-color: rgb(197,200,198,1);
        border-top-color: rgb(197,200,198,1)}
  75% {border-bottom-color: rgb(197,200,198,0);
      border-right-color: rgb(197,200,198,0);
        border-left-color: rgb(197,200,198,1);
        border-top-color: rgb(197,200,198,1)}
  87% {border-bottom-color: rgb(197,200,198,0);
      border-right-color: rgb(197,200,198,0);
        border-left-color: rgb(197,200,198,0);
        border-top-color: rgb(197,200,198,1)}
  100%  {border-color: rgb(197,200,198,0)}
}

@-webkit-keyframes flash {
  0% {background-color:  rgb(255,255,255,0)}
  50% {background-color:  rgb(255,255,255,1)}
  100% {background-color:  rgb(255,255,255,0)}
}

@keyframes flash {
  0% {background-color:  rgb(255,255,255,0)}
  50% {background-color:  rgb(255,255,255,1)}
  100% {background-color:  rgb(255,255,255,0)}
}

/* Images */

img.team_logo {
  -webkit-filter: drop-shadow( 5px 5px 3px rgb(0,0,0,.75));
  filter: drop-shadow( 5px 5px 3px rgb(0,0,0,.75));
}

img.publicon {
  border: var(--bg) solid 1px;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}

img.publicon:hover {
  border: var(--fg) solid 1px;
}

/* Texts */

.striked {
  text-decoration: line-through !important;
}

/* Notifications */

div.notifbox {
  /* message wrapper */
  display: flex;
  flex-direction: column-reverse;
  position: fixed;
  top: .5em;
  right: .5em;
}

div.notifbox > div.notif {
  /* individual messages */
  background-color: rgb(29,31,33,0.9);
  border-radius: 5px;
  width: 12em;
  margin-bottom: .5em;
  padding: .5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -webkit-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  -moz-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
}

div.notif > div.bar {
  /* countdown bar */
  background-color: var(--fg);
  border-radius: 5px;
  height: .25em;
  -webkit-animation: shrink_bar 5s linear 1;
  animation: shrink_bar 5s linear 1;
}

div.notif > span.notif_header {
  width: 100%;
  font-size: .8em;
  font-weight: bold;
}

div.notif > span.notif_line {
  width: 100%;
  font-size: .8em;
}

.notif_blend_in {
  -webkit-animation: blend_in 1s ease-in 1; /* Safari */
  animation: blend_in 1s ease-in 1;
}

.notif_blend_out {
  -webkit-animation: blend_out 1s ease-out 1 forwards;
  animation: blend_out 1s ease-out 1 forwards;
}

@-webkit-keyframes shrink_bar {
  0%    {width: 100%}
  100%  {width: 0%}
}

@keyframes shrink_bar {
  0%    {width: 100%}
  100%  {width: 0%}
}

@-webkit-keyframes blend_in {
  0%    {opacity: 0}
  100%  {opacity: 1}
}

@keyframes blend_in {
  0%    {opacity: 0}
  100%  {opacity: 1}
}

@-webkit-keyframes blend_out {
  0%    {opacity: 1}
  100%  {opacity: 0}
}

@keyframes blend_out {
  0%    {opacity: 1}
  100%  {opacity: 0}
}

/* Tooltip */
/*
  https://www.w3schools.com/css/css_tooltip.asp
  <div class="tooltip">Hover over me
    <span class="tooltiptext">Tooltip text</span>
  </div>
*/

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: var(--dark-grey);
  color: var(--fg);
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px; /* width / 2 */
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* DIVs */

div.login_reg {
  width: 40%;
  background: var(--bg);
  margin: .5em auto 0 auto; /*oben, rechts, unten, links*/
  -webkit-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  -moz-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  border-radius: 5px;
}

div.main_menu {
  width: 75%;
  margin: .5em auto 0 auto; /*oben, rechts, unten, links*/
  background: var(--bg);
  display: flex;
  justify-content: center;
  -webkit-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  -moz-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  border-radius: 5px;
}

div.sub_menu {
  width: 75%;
  margin: .5em auto 0 auto; /*oben, rechts, unten, links*/
  background: var(--bg);
  display: flex;
  justify-content: center;
  -webkit-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  -moz-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  border-radius: 5px;
}

div.center_content {
  width: 75%;
  margin: .5em auto;
  background: var(--bg);
  -webkit-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  -moz-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  border-radius: 5px;
}

div.page_nav {
  margin: .5em 0; /*oben/unten rechts/links*/
  display: flex;
  justify-content: center;
}

div.footer {
  width: 75%;
  margin: .5em auto 0 auto; /*oben, rechts, unten, links*/
  background: var(--bg);
  display: flex;
  align-items: center;
  flex-direction: column;
  -webkit-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  -moz-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
  border-radius: 5px;
}

div.footer > * {
  padding: .5em 2em .5em 2em; /*oben, rechts, unten, links*/
  font-size: .6em;
  text-align: center;
}

div.status_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: .5em;
    width: 95%;
    height: 2em;
    background-color: rgb(29,31,33,0.9);
    border-radius: 5px;
    padding: 0 .5em;
    -webkit-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
    -moz-box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
    box-shadow: 5px 5px 10px 0px rgb(0,0,0,.75);
}

div.status_bar > * {
  font-size: 0.8em;
}

div.sb_left {
  text-align: start;
}

div.sb_center {
  text-align: center;
}

div.sb_right {
  text-align: end;
}

div.sb_left, div.sb_right {
  width: 30%;
}

div.cont {
  padding: 1em 2em 1em 2em; /*oben, rechts, unten, links*/
  min-height: 10em;
}

div.divider {
  display: flex;
  flex-direction: column;
}

div.divider > * {
  margin: .5em 0; /*top/bottom left/right*/
}

div.two_col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: .5em 0; /*row column*/
  margin: 1em 0;
}

div.blog_entry {
  border-bottom: 1px dashed var(--fg);
}

div.po_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "afc_wc1 afc_wc1 afc_hunt afc_hunt afc_hunt afc_wc2 afc_wc2"
    ". afc_div1 afc_div1 . afc_div2 afc_div2 ."
    ". . afc_ch afc_ch afc_ch . ."
    ". . sb sb sb . ."
    ". . nfc_ch nfc_ch nfc_ch . ."
    ". nfc_div1 nfc_div1 . nfc_div2 nfc_div2 ."
    "nfc_wc1 nfc_wc1 nfc_hunt nfc_hunt nfc_hunt nfc_wc2 nfc_wc2"
    ;
  grid-row-gap: .5em;
}

div.po_container_new {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "afc_hunt afc_hunt afc_hunt afc_hunt afc_hunt afc_hunt"
    "afc_wc1 afc_wc1 afc_wc2 afc_wc2 afc_wc3 afc_wc3"
    ". afc_div1 afc_div1 afc_div2 afc_div2 ."
    ". . afc_ch afc_ch . ."
    ". . sb sb . ."
    ". . nfc_ch nfc_ch . ."
    ". nfc_div1 nfc_div1 nfc_div2 nfc_div2 ."
    "nfc_wc1 nfc_wc1 nfc_wc2 nfc_wc2 nfc_wc3 nfc_wc3"
    "nfc_hunt nfc_hunt nfc_hunt nfc_hunt nfc_hunt nfc_hunt"
    ;
  grid-row-gap: .5em;
}

div.po_container_new > div {
  border-radius: 5px;
  border: 1px solid var(--dark-grey);
  padding: .25em;
  margin: 1px;
  font-size: .8em;
  display: grid;
  grid-template-areas:
    "visitorlogo weekname weekname weekname homelogo"
    "visitorlogo gameinfo gameinfo gameinfo homelogo"
    "visitorname visitorname at homename homename"
    ;
  grid-template-columns: 12.5fr 30fr auto 30fr 12.5fr;
}
div.po_container_new > span {
  display: flex;
  justify-content: center;
  align-items: center;
}
div.po_container_new > span > img{
  margin: 0 .25em;
}

div.po_weekname {
  grid-area: weekname;
  justify-self: center;
  align-self: center;
  text-align: center;
}

span.po_afc_hunt {
  grid-area: afc_hunt;
}

span.po_nfc_hunt {
  grid-area: nfc_hunt;
}

div.po_afc_wc1 {
  grid-area: afc_wc1;
}

div.po_afc_wc2 {
  grid-area: afc_wc2;
}

div.po_afc_wc3 {
  grid-area: afc_wc3;
}

div.po_nfc_wc1 {
  grid-area: nfc_wc1;
}

div.po_nfc_wc2 {
  grid-area: nfc_wc2;
}

div.po_nfc_wc3 {
  grid-area: nfc_wc3;
}

div.po_afc_div1 {
  grid-area: afc_div1;
}

div.po_afc_div2 {
  grid-area: afc_div2;
}

div.po_nfc_div1 {
  grid-area: nfc_div1;
}

div.po_nfc_div2 {
  grid-area: nfc_div2;
}

div.po_afc_con1 {
  grid-area: afc_ch;
}

div.po_nfc_con1 {
  grid-area: nfc_ch;
}

div.po_sb {
  grid-area: sb;
}


div.sched_container {
  display: grid;
  grid-template-columns: 12.5fr 35fr 5fr 35fr 12.5fr;
  grid-template-areas:
    "visitorlogo visitorname at homename homelogo"
    "visitorlogo gameinfo gameinfo gameinfo homelogo"
    ;
   grid-auto-flow: row;
   border-radius: 5px;
   margin: 0 0 .25em 0;
   height: 5em;
}

div.sched_header {
  grid-area: header;
  justify-self: start;
  margin: 1em 0 0 0;
}

div.sched_weekname {
  grid-area: weekname;
  justify-self: center;
  align-self: center;
  font-size: .8em;
  text-align: center;
}

div.sched_visitorlogo {
  grid-area: visitorlogo;
  justify-self: end;
  align-self: center;
}

div.sched_visitorname {
  grid-area: visitorname;
  justify-self: end;
  align-self: end;
}

div.sched_at {
  grid-area: at;
  justify-self: center;
  align-self: end;
  padding: 0 .5em;
}

div.sched_homename {
  grid-area: homename;
  justify-self: start;
  align-self: end;
}

div.sched_homelogo {
  grid-area: homelogo;
  justify-self: start;
  align-self: center;
}

div.sched_gameinfo {
  grid-area: gameinfo;
  justify-self: center;
  font-size: .8em;
  text-align: center;
}

div.stand_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 1em; /*row column*/
  align-items: start;
  justify-content: center;
}

div.stand_header {
  display: flex;
  justify-content: center;
  margin: 2em 0 1em 0;
}

div.stand_entry {
  display: grid;
  grid-template-columns: .25fr .5fr 3fr auto;
  grid-template-areas:
    "rank logo name wlt"
    ;
}

div.stand_rank {
  grid-area: rank;
  align-self: center;
  justify-self: center;
  font-weight: bold;
}

div.stand_logo {
  grid-area: logo;
  align-self: center;
  padding: 0 .25em;
}

div.stand_name {
  grid-area: name;
  align-self: center;
}

div.stand_wlt {
  grid-area: wlt;
  align-self: center;
}

div.menu_hor {
  display: flex;
  flex-flow: row wrap;
  margin: .5em 0;
  align-items: center;
}

div.menu_hor > * {
  font-size: .8em;
  margin: 0 .25em;
}

div.log_cont {
  height: 35em;
  overflow: auto;
}

div.publicons_generate {
  margin: 1em auto .5em auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

div.publicons_file_upload {
  width: 100%;
  display: flex;
  justify-content: center;
}

div.publicons_color_select {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1px;
  row-gap: 1px;
}
div.publicons_color_select > * {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.publicons_size_select {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
div.publicons_size_select > * {
  display: flex;
  align-items: baseline;
}

div.publicons_display {
  margin: 1em 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  justify-items: center;
  row-gap: .5em;
}
div.publicons_display > div {
  text-align: center;
}

/* Spans */

span.small {
  font-size: .8em;
}

span.win {
  color: var(--green);
}

span.win_flash {
  color: var(--green);
}

span.tie {
  color: var(--orange);
}

span.tie_flash {
  color: var(--orange);
}

span.loss {
  color: var(--red);
}

span.loss_flash {
  color: var(--red);
}

span.loss, span.tie, span.win {
  font-weight: bold;
}

span.loss_flash, span.tie_flash, span.win_flash {
  font-weight: bold;
  -webkit-animation: flash 2s linear 3;
  animation: flash 2s linear 3;
}

span.clinch {
  font-weight: 400;
  opacity: .5;
}

span.ep_type {
  margin: 0 0 0 .5em;
  padding: 0 .5em;
  background: var(--fg);
  color: var(--bg);
  border-radius: 5px;
  font-weight: 300;
}

span.hist_del {
  margin: 0 0 0 .5em;
  color: var(--red);
  cursor: pointer;
}

span.weather {
  font-weight: 300;
}

span.loader_info {
  -webkit-animation: blend_in 1s alternate infinite;
  animation: blend_in 1s alternate infinite;
}

span.note {
  font-weight: 400;
  padding: 0 0.15em 0 0.15em;
  margin: 0 0.1em 0 0.1em;
  border-radius: 2px;
}

/* Paragraphs */

p.header {
  font-size: 1.2em;
  margin: 2em 0 1em 0;
}

p.header_small {
  margin: 1em 0 .5em 0;
}

p.default {
  margin: 0; /*top/bottom left/right*/
}

p.note {
  margin: .25em 0; /*top/bottom left/right*/
  font-size: 0.8em;
}

p.footnote {
  font-size: 0.8em;
  margin: 2em 0 1em 0;
}

p.menu_item {
  color: var(--fg);
  font-size: 0.8em;
  text-transform: uppercase;
  margin: .5em 2em;
}

p.menu_link {
  color: var(--fg);
  font-size: 0.8em;
  text-transform: uppercase;
  margin: .5em 2em;
  cursor: pointer;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}

p.menu_link:hover {
  color: var(--grey);
}

p.error {
  color: var(--red);
}

p.success {
  color: var(--green);
}

p.error, p.success, p.message{
  padding: 0 2em;
  font-size: 0.8em;
  text-align: center;
}

/* Links */

a.small {
  font-size: 0.8em;
}

a.big {
  font-size: 1.2em;
}

a.small, a.normal, a.big {
  color: var(--fg);
  text-decoration: none;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}

a.small:hover, a.normal:hover, a.big:hover {
  color: var(--grey);
}

/* Titles */

h2 {
  color: var(--fg);
  font-size: 1.4em;
  display: block;
  background: var(--bg);
  text-transform: uppercase;
}

/* Forms */

form {
  display: block;
}

form > * {
  margin-bottom: 1em;
}

select {
  color: var(--fg);
  background: var(--bg);
  border: none;
  overflow: hidden;
}

select:focus, input:focus {
  outline: none;
}

input[type="text"], input[type="password"] {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--fg);
    padding: .5em 0;
    color: var(--fg);
    background: var(--bg);
    text-align: center;
}

input[type="radio"], input[type="file"] {
  display: none;
}

::placeholder {
  color: var(--dark-grey);
  opacity: 1; /*Firefox*/
}

button.btn {
  display: block;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 5px;
  margin: 0 auto;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}

button.btn:hover {
  outline: none;
  background: var(--grey);
}

button.btn:active, button.btn:focus {
  outline: none;
}

/* custom elements */

span.vertical_spacer {
  display:block;
  margin:0.5em auto;
}

span.horizontal_spacer {
  margin:auto 0.5em;
}

/* colors */

.bg_red {
  color: var(--bg);
  background-color: var(--red);
}

.bg_orange {
  color: var(--bg);
  background-color: var(--orange);
}

/* custom radio button */

label.radio_select > span {
  border-radius: 24%;
  width: .75em;
  height: .75em;
  display: inline-block;
  border: 1px solid var(--fg);
  margin: 0 .25em 0 0;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}

label.radio_select:hover > span {
  background: var(--grey);
}

label.radio_select > input[type="radio"]:checked + span {
  background: var(--grey);
}

/* publicon color selector */

label.color_select {
  border-radius: 5px;
  height: 1em;
}

label.color_select > span {
  border-radius: 5px;
  background: var(--fg);
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: .75;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}

label.color_select:hover > span {
  opacity: 0;
}

label.color_select > input[type="radio"]:checked + span {
  opacity: 0;
  border: 1px solid var(--fg);
}

/* custom file upload */

label.input_file {
  background: var(--fg);
  color: var(--bg);
  border-radius: 5px;
  padding: .25em .25em;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}

label.input_file:hover {
  background: var(--grey);
}

/* media queries */

@media only screen
  and (min-device-width: 1024px)
  and (max-device-width: 1366px)
  and (-webkit-min-device-pixel-ratio: 2.0) {

    div.main_menu, div.sub_menu, div.center_content, div.footer {
      width: 95%;
    }

    div.status_bar {
      width: 100%;
    }

}