@charset "UTF-8";
/**
@author: Ján Priskin
@copyright www.priskin.sk
**/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@700&family=Open+Sans:wght@300;400;700&display=swap");
:root {
  --vh-offset: 0px;
  --vh: 1vh;
}

html,
body {
  width: 100%;
  height: 100%;
  font: normal 400 15px "Open Sans", sans-serif;
  color: #000;
}

body {
  background: #eeaf9f;
  margin: 0;
  overflow-x: hidden;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}

@media screen and (min-width: 2560px) {
  body {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 3000px) {
  body {
    zoom: calc((100% / 15) * 25);
  }
}

/* ------ */
p {
  margin-bottom: 1.325rem;
  line-height: 1.55;
}

p a {
  text-decoration: underline;
}

p a:hover {
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  p {
    margin-bottom: 2.65rem;
  }
}

b, strong {
  font-weight: 800;
}

/* ------ */
/* CLICKABLES */
a, a:hover, a:focus,
button, button:hover, button:focus,
input[type=submit], input[type=submit]:hover, input[type=submit]:focus {
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

[href^="mailto:"] {
  white-space: nowrap;
}

a {
  color: #6b6d6d;
}

a:hover, a:focus {
  text-decoration: underline;
  color: #6b6d6d;
}

/* ------ */
/* HEADINGS */
h1, .h1 {
  display: inline-block;
  margin: 0 auto 1.75rem;
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-size: 1.6rem;
  position: relative;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 920px) and (orientation: landscape) {
  h1, .h1 {
    margin: 0 auto 2.75rem;
    font-size: 42px;
    font-size: 2.8rem;
  }
}

/* ------ */
/* FORM ELEMENTS */
.form-control {
  border-radius: 2px;
  border: 3px solid #efefef;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #FFF;
  height: auto;
  margin: 0 auto 20px;
  padding: .4rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  font: normal 400 15px "Open Sans", sans-serif;
  color: #000;
  resize: vertical;
}

.form-control::-webkit-input-placeholder {
  color: #6b6d6d;
}

.form-control:-moz-placeholder {
  color: #6b6d6d;
}

.form-control::-moz-placeholder {
  color: #6b6d6d;
}

.form-control:-ms-input-placeholder {
  color: #6b6d6d;
}

.form-control.is-valid::-webkit-input-placeholder {
  color: #028402;
}

.form-control.is-valid:-moz-placeholder {
  color: #028402;
}

.form-control.is-valid::-moz-placeholder {
  color: #028402;
}

.form-control.is-valid:-ms-input-placeholder {
  color: #028402;
}

.form-control.is-invalid::-webkit-input-placeholder {
  color: #ed1b2c;
}

.form-control.is-invalid:-moz-placeholder {
  color: #ed1b2c;
}

.form-control.is-invalid::-moz-placeholder {
  color: #ed1b2c;
}

.form-control.is-invalid:-ms-input-placeholder {
  color: #ed1b2c;
}

.form-control:focus {
  border-color: #7bd7e5;
  color: #000;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 920px) and (orientation: landscape) {
  .form-control {
    letter-spacing: 3px;
    font-size: 20px;
    font-size: 1.33333rem;
  }
}

.btn {
  border-radius: 2px;
  border: 0;
  min-width: 182px;
  padding: .515rem 1.5rem;
  text-decoration: none !important;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 15px;
  font-size: 1rem;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  outline: none !important;
  cursor: pointer;
}

.btn-default {
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.38);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.38);
  background: #ed1b2c;
  color: #FFF;
}

.btn-default:hover, .btn-default:focus, .btn-default:active {
  background: #FFF;
  color: #ed1b2c;
}

/* ------ */
iframe[name=google_conversion_frame] {
  position: absolute;
  bottom: 0;
}

/* ------ */
/* ------ */
/* HEADER */
#navbar {
  -webkit-box-shadow: 0 0 12px 5px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 12px 5px rgba(0, 0, 0, 0.35);
  background: #FFF;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-flow: row;
      flex-flow: row;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#navbar .logo {
  width: 100px;
  display: inline-block;
}

#navbar .logo .svg {
  max-width: 100%;
  display: block;
}

#navbar nav {
  display: inline-block;
}

#navbar ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: bold;
}

#navbar ul li {
  display: inline-block;
}

#navbar ul a {
  margin-left: 10px;
}

#navbar ul a:hover {
  text-decoration: none;
  color: #ed1b2c !important;
}

#navbar ul a img {
  max-width: 30px;
  margin-top: -2px;
  margin-left: 5px;
  position: relative;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media screen and (min-width: 667px) {
  #navbar ul a {
    margin-left: 29px;
  }
}

@media screen and (min-width: 1024px) {
  #navbar {
    height: 76px;
    padding: 0 71px;
  }
  #navbar .logo {
    width: 180px;
  }
}

#contact {
  background: rgba(237, 27, 44, 0.8);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 24px;
  font-size: 1.6rem;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#contact.open {
  opacity: 1;
  visibility: visible;
}

#contact a {
  font-family: "Noto Serif", serif;
  color: #FFF;
}

#contact .close {
  float: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: normal;
  font-size: 40px;
  color: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
  cursor: pointer;
}

@media screen and (min-width: 667px) {
  #contact {
    font-size: 42px;
    font-size: 2.8rem;
  }
}

/* ------ */
/* MAIN */
#content {
  height: 100vh;
  /*display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-flow: column;
	justify-content: center;
	align-items: center;*/
}

/* ------ */
/* LOGIN */
body.login {
  background: url("../img/page-bg.jpg") center no-repeat;
  background-size: cover;
  position: relative;
}

body.login:before {
  content: "";
  background: rgba(0, 0, 0, 0.31);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

body.login:after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
  width: 100%;
  height: 288px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

body.login #navbar {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}

body.login #navbar .svg g {
  fill: #FFF;
}

body.login #navbar a {
  color: #FFF;
}

#login {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFF;
  position: relative;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

#login .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
}

#login .wrapper.active {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

#login .wrapper > div {
  background: rgba(237, 27, 44, 0.81);
  margin: 0 30px;
  padding: 25px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#login .password-wrapper {
  -webkit-transform: translateY(-50%) rotateY(180deg) !important;
          transform: translateY(-50%) rotateY(180deg) !important;
}

#login .form-control {
  max-width: 308px;
}

#login .btn {
  margin: 0px auto 10px;
}

#login a {
  text-decoration: underline;
  font-size: 13px;
  font-size: 0.86667rem;
  color: inherit;
}

#login a:hover {
  text-decoration: none;
}

@media screen and (min-width: 480px) and (orientation: landscape) {
  #login .login-wrapper .form-control {
    display: inline-block;
    max-width: 45%;
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media screen and (min-width: 600px) {
  #login .wrapper > div {
    width: 588px;
    margin: auto;
  }
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 920px) and (orientation: landscape) {
  #login .wrapper {
    margin: 0;
  }
  #login .wrapper > div {
    padding: 37px 50px 46px;
  }
  #login .form-control {
    max-width: 308px !important;
  }
  #login .btn {
    margin: 12px auto 21px;
  }
}

/* ------ */
/* REPORT */
body.report #navbar {
  -webkit-box-pack: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.report #navbar .logo {
  width: 120px;
  position: absolute;
  left: 20px;
}

body.report #navbar .svg g:nth-child(2) {
  display: none;
}

body.report #navbar ul a span {
  display: none;
}

body.report #content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
}

@media screen and (min-width: 640px) {
  body.report #navbar {
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body.report #navbar .logo {
    position: static;
  }
  body.report #navbar .svg g {
    display: block !important;
  }
  body.report #navbar ul a span {
    display: inline-block;
  }
}

#report {
  width: 588px;
  max-width: 100%;
  margin: auto;
  text-align: center;
  -webkit-box-ordinal-group: 3;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

#report .store {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ed1b2c;
}

#report .wrapper {
  height: 295px;
  margin: 10px 30px 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
}

#report .wrapper.active {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

#report .wrapper > div {
  -webkit-box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.14);
          box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.14);
  background: #FFF;
  width: 100%;
  padding: 30px 20px;
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#report .wrapper strong {
  display: block;
  letter-spacing: -1px;
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-size: 1.33333rem;
  margin-bottom: 6px;
}

#report .edit-wrapper {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

#report .revenue {
  display: block;
  font-weight: 300;
  font-size: 30px;
  font-size: 2rem;
  color: #6b6d6d;
}

#report .form-control {
  max-width: 365px;
  padding: .666rem;
}

#report .btn {
  margin-top: 10px;
}

@media screen and (min-width: 1024px) {
  #report {
    position: relative;
    left: -75px;
  }
  #report .wrapper {
    margin: 10px 0 0;
  }
  #report .wrapper > div {
    padding: 57px 50px 59px;
  }
  #report .revenue {
    font-size: 42px;
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 1200px) {
  #report {
    left: 0;
  }
}

#side-menu {
  max-width: 300px;
  margin: 0 auto;
  padding: calc(50px + 30px) 50px 30px;
  color: #6b6d6d;
  -webkit-box-ordinal-group: 2;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 1024px) {
  #side-menu {
    padding: 0;
    position: absolute;
    top: 150px;
    left: calc(100% - 250px);
  }
}

@media screen and (min-width: 1200px) {
  #side-menu .directory-list {
    margin-right: 55px;
  }
}

.directory-list {
  min-width: 250px;
  margin: 0;
  padding-left: 0;
}

.directory-list ::-webkit-scrollbar {
  width: 5px;
}

.directory-list ::-webkit-scrollbar-thumb {
  background-color: #ed1b2c;
}

.directory-list ul {
  border-left: 1px dashed #6b6d6d;
  margin: -3px 0 3px 5px;
  padding-left: 0;
  position: relative;
  display: none;
}

.directory-list ul:before {
  content: "";
  background: #efefef;
  width: 1px;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: -1px;
}

.directory-list li.centrum {
  font-weight: bold;
}

.directory-list li.centrum:before {
  display: none;
}

.directory-list li.centrum i {
  content: "";
  background: url("../img/icons/plus.svg") 0 0 no-repeat;
  background-size: 11px 12px;
  width: 11px;
  height: 12px;
  margin-right: 1px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
}

.directory-list li.centrum .open i {
  background-image: url("../img/icons/minus.svg");
}

.directory-list li.centrum > a {
  padding-left: 16px;
}

.directory-list li.centrum ul {
  max-height: 30vh;
  overflow-y: auto;
}

.directory-list li {
  list-style: none;
  font-weight: normal;
}

.directory-list li:before {
  content: "–";
  margin-right: 3px;
}

.directory-list a {
  display: inline-block;
  padding: 5px 0;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.directory-list a.active, .directory-list a:hover {
  font-weight: bold;
  color: #ed1b2c;
}

/* ------ */
#frm-loginForm input, #frm-passwordRecoveryForm input {
  text-transform: none;
}

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