/* cyrillic-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/jizaRExUiTo99u79D0-ExdGM.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/jizaRExUiTo99u79D0aExdGM.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/jizaRExUiTo99u79D0yExdGM.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/jizaRExUiTo99u79D0KExQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


body {
  margin: 0 auto;
  margin-top: 2%;
  background: #070707;
  overflow-x: hidden;
  font-family: "PT Sans", sans-serif; }

  #header a {
    text-decoration: none;
    color: #070707; }

#nav {
  display: flex;
  width: 100%; 
  text-align: center;
}
  #nav #logo {
    position: absolute;
    left: 0;
  }
  #nav #company {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    color: #E3E5E3;
    text-align: center;
    display: grid;
    font-size: 16px;
    min-height: 9rem;
    }
    #nav #company h3 {
      color: #E6AF2E;
      margin: 0;
      text-transform: uppercase;
      }
  #nav #logout {
    /* width: 10%;  */
    position: absolute;
    right: 0;
  }
    #nav #logout #clock, #date {
      min-width: 150px;
      text-align: center;
      color: #E3E5E3;
      width: 95%;
      height: 20px; }
    #nav #logout input[type=submit] {
      /* margin: 0px 30px 20px; */
      width: 110px;
      background: #3167AE;
      padding: 10px;
      font-size: 15px;
      border: none;
      color: #070707;
      letter-spacing: 0.5px;
      border: none;
      border-radius: 10px;
      box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease 0s;
      cursor: pointer;
      outline: none; }

      #nav #logout input[type=submit]:hover {
        background-color: #3a3a3a;
      }

#menu {
  padding: 15px;
  background: #C80000;
  margin: 0 auto;
  font-size: 23px;
  text-align: center;
  user-select: none; }

  #menu a {
    padding: 0 5%;
  }

  #menu a:hover {
    color: rgb(227, 229, 227);
  }

#content {
  display: grid;
  width: 100%; }

  #confBar {
    margin: 10px auto;
    background: #797979;
    border-radius: 10px;
    padding: 8px;
    font-size: 14px;
    width: 70%;
    max-width: 65rem;
    height: 1rem;
    color: #E3E5E3;
    display: grid;
    position: relative;
  }

  #confBar .confRow {
    display: grid;
    grid-template-columns: auto auto auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
    height: 2rem;
}

  #confBar .confRow:not(:first-of-type) {
    opacity: 0;
    visibility: hidden;
  }

  #conf div {
    display: inline;
    margin: 5%;
    white-space: nowrap;
}

#confBar input {
  border: none;
  border-radius: 10px;
  font-size: 11.5px;
  padding: 5px 0;
  color: white;
  width: 10rem;
  background-color: #fe0000;
  cursor: pointer;
  transition: .3s;
}
#confBar .confSended {
  border: none;
  border-radius: 10px;
  font-size: 11.5px;
  padding: 5px 0;
  color: white;
  width: 10rem;
  background-color: #2A6612;
}
#confBar input:hover {
  animation: btnBounce 0.5s infinite alternate;
}
@keyframes btnBounce {
  from { transform: scale(1); }
  to {transform: scale(1.08); } }

.blink {
  animation: alert-text .5s infinite alternate;
}
@keyframes alert-text {
  from {
    color: #c80000; }
  to {
    color: white; } }

#conf input:disabled {
  background-color: #ff6100;
}

  #loggedUser {
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 10px;
  }

  #loggedUser span {
    color: #E6AF2E;
    display: block;
  }

  .conf-active {
    background-color: #ff6100 !important;
  }

  #company-logo {
    position: absolute;
    top: 3%;
    right: 15%;
  }

  #company-logo img {
    max-height: 9.25rem;
  }


