* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: 'Roboto', sans-serif; }

body {
  background: #1C1C1C;
  padding-top: 65px; }

#loading-page {
  z-index: 30000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); }
  #loading-page .cnt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    #loading-page .cnt .ball-cont {
      margin-bottom: 10px; }
      #loading-page .cnt .ball-cont .ball {
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 8px;
        background: #0078f2;
        animation-duration: 5s;
        animation-iteration-count: infinite; }
      #loading-page .cnt .ball-cont .ball:nth-child(1) {
        animation-name: loading-1; }
      #loading-page .cnt .ball-cont .ball:nth-child(2) {
        animation-name: loading-2; }
      #loading-page .cnt .ball-cont .ball:nth-child(3) {
        animation-name: loading-3; }
      #loading-page .cnt .ball-cont .ball:nth-child(4) {
        animation-name: loading-4; }
      #loading-page .cnt .ball-cont .ball:nth-child(5) {
        animation-name: loading-5; }
    #loading-page .cnt .loading {
      position: relative;
      color: #0078f2; }
    #loading-page .cnt .loading:after {
      content: '...';
      position: absolute;
      left: 100%;
      animation-name: loading-text;
      animation-duration: 2s;
      animation-iteration-count: infinite; }

.msg-box {
  position: relative;
  width: calc(100% - 30px);
  line-height: 30px;
  padding: 25px;
  margin: 10px auto 10px auto;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #F5F5F5;
  background: #202020;
  transition: opacity .5s, height .5s, padding .5s, margin .5s;
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.22); }
  @media screen and (min-width: 900px) {
    .msg-box {
      width: 1080px; } }
  .msg-box .msg-box-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #070707;
    transition: background .5s;
    cursor: pointer; }
  .msg-box .msg-box-close:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    width: 14px;
    height: 2px;
    transform: translate(0, -50%) rotate(-45deg);
    background: #F5F5F5; }
  .msg-box .msg-box-close:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    width: 2px;
    height: 14px;
    transform: translate(-50%, 0) rotate(-45deg);
    background: #F5F5F5; }
  .msg-box .msg-box-close:hover {
    background: #131313; }

#confirm-box {
  z-index: 40000;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #202020;
  opacity: 0;
  transition: opacity .5s;
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.22); }
  @media screen and (min-width: 900px) {
    #confirm-box {
      width: 400px; } }
  #confirm-box .msg-box-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #070707;
    transition: background .5s;
    cursor: pointer; }
  #confirm-box .msg-box-close:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    width: 14px;
    height: 2px;
    transform: translate(0, -50%) rotate(-45deg);
    background: #F5F5F5; }
  #confirm-box .msg-box-close:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    width: 2px;
    height: 14px;
    transform: translate(-50%, 0) rotate(-45deg);
    background: #F5F5F5; }
  #confirm-box .msg-box-close:hover {
    background: #131313; }

/*
#confirm-box:before {
    z-index: -1;
    content: '';
    display: block;
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.7);
}
*/
#menu-cont #menu-header {
  z-index: 18000;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #2B2B2B;
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.22); }
  #menu-cont #menu-header a {
    position: relative;
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    margin: 10px;
    font-size: 15px;
    color: #F5F5F5;
    background: #0078f2;
    overflow: hidden;
    transition: color .5s; }
    #menu-cont #menu-header a img {
      float: left;
      width: 40px;
      height: 40px;
      margin: 10px; }
  #menu-cont #menu-header a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 0;
    height: 100%;
    transform: skewX(45deg);
    background: rgba(255, 255, 255, 0.1);
    transition: width .5s; }
  #menu-cont #menu-header a:hover {
    color: #fff; }
  #menu-cont #menu-header a:hover:before {
    width: 140%; }
#menu-cont #menu-bt {
  z-index: 20000;
  position: fixed;
  display: block;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  border: 1px solid #888888;
  cursor: pointer; }
#menu-cont #menu-list-cont {
  z-index: 17000;
  position: fixed;
  float: left;
  display: block;
  top: 60px;
  left: 0;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background: #1C1C1C;
  border-right: 5px solid #2B2B2B;
  transform: translate(-100%, 0);
  transition: transform .5s;
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.22); }
  @media screen and (min-width: 900px) {
    #menu-cont #menu-list-cont {
      width: 350px; } }
  #menu-cont #menu-list-cont #menu-list {
    float: left;
    width: 100%;
    height: 100%;
    padding: 10px;
    list-style-type: none;
    overflow: auto;
    color: #888888; }
    #menu-cont #menu-list-cont #menu-list .menu-item a {
      float: left;
      position: relative;
      width: 100%;
      line-height: 50px;
      font-size: 15px;
      color: #888888;
      transition: color .3s;
      cursor: pointer; }
      #menu-cont #menu-list-cont #menu-list .menu-item a .menu-item-icon {
        position: relative;
        float: left;
        width: 50px;
        height: 50px;
        margin-right: 10px; }
        #menu-cont #menu-list-cont #menu-list .menu-item a .menu-item-icon img {
          position: absolute;
          top: 50%;
          left: 50%;
          width: auto;
          height: 50%;
          transform: translate(-50%, -50%);
          color: #888888;
          opacity: .6;
          transition: opacity .3s; }
      #menu-cont #menu-list-cont #menu-list .menu-item a .menu-item-arrow {
        position: absolute;
        top: 10px;
        right: 10px;
        display: block;
        width: 30px;
        height: 30px;
        overflow: hidden;
        transition: transform .5s; }
    #menu-cont #menu-list-cont #menu-list .menu-item .menu-sub {
      float: left;
      width: 100%;
      max-height: 0;
      list-style-type: none;
      overflow: hidden;
      transition: max-height .5s, padding .5s; }
      #menu-cont #menu-list-cont #menu-list .menu-item .menu-sub .menu-sub-item a {
        position: relative;
        float: left;
        width: calc(100% - 70px);
        min-height: 20px;
        line-height: 20px;
        margin: 5px 0px 5px 60px;
        padding: 10px 10px 10px 20px;
        font-size: 15px;
        transition: color .3s; }
      #menu-cont #menu-list-cont #menu-list .menu-item .menu-sub .menu-sub-item a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 10px;
        height: 10px;
        transform: translate(0, -50%);
        background: #888888;
        transition: background .3s; }
      #menu-cont #menu-list-cont #menu-list .menu-item .menu-sub .menu-sub-item a:hover {
        color: #F5F5F5; }
      #menu-cont #menu-list-cont #menu-list .menu-item .menu-sub .menu-sub-item a:hover::before {
        background: #F5F5F5; }
    #menu-cont #menu-list-cont #menu-list .menu-item:hover a {
      color: #F5F5F5; }
      #menu-cont #menu-list-cont #menu-list .menu-item:hover a .menu-item-icon img {
        opacity: 1; }
      #menu-cont #menu-list-cont #menu-list .menu-item:hover a .menu-item-arrow .arrow::before {
        background: #F5F5F5; }
      #menu-cont #menu-list-cont #menu-list .menu-item:hover a .menu-item-arrow .arrow::after {
        background: #F5F5F5; }
    #menu-cont #menu-list-cont #menu-list .menu-item:hover .menu-sub a {
      color: #888888; }
    #menu-cont #menu-list-cont #menu-list .menu-sub-open .menu-item-arrow {
      transform: rotate(-180deg); }
    #menu-cont #menu-list-cont #menu-list .menu-sub-open .menu-sub {
      max-height: 300px;
      padding-bottom: 30px; }
#menu-cont .menu-list-cont-open {
  transform: translate(0, 0) !important; }

.box-cont {
  display: flex;
  float: left;
  width: 100%;
  padding: 3px; }

.cont {
  float: left;
  width: 100%;
  padding: 10px; }

.box-1-3 {
  flex: 1;
  float: left;
  width: calc(100% - 6px); }

.box-2-3 {
  float: left;
  width: calc(100% - 6px); }

.box-1-4 {
  float: left;
  width: calc(100% - 6px); }

.box-2-4 {
  float: left;
  width: calc(100% - 6px); }

.box-3-4 {
  float: left;
  width: calc(100% - 6px); }

.box-full {
  float: left;
  width: calc(100% - 6px); }

.box-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px); }
  @media screen and (min-width: 900px) {
    .box-center {
      width: 400px; } }

.box-one {
  margin: 3px; }

.box-md {
  padding: 20px;
  margin: 3px;
  border-radius: 5px;
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.22); }

@media screen and (min-width: 900px) {
  .box-1-3 {
    width: calc((100% / 3) - 6px); }

  .box-2-3 {
    width: calc(((100% / 3) * 2) - 6px); }

  .box-1-4 {
    width: calc((100% / 4) - 6px); }

  .box-2-4 {
    width: calc(((100% / 4) * 2) - 6px); }

  .box-3-4 {
    width: calc(((100% / 4) * 3) - 6px); }

  .box-full {
    width: calc(100% - 6px); }

  .box-md {
    padding: 20px;
    margin: 3px;
    border-radius: 5px;
    box-shadow: 0 2px 19px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.22); } }
.tab-cont-one {
  float: left;
  width: 100%;
  padding: 20px;
  background: #202020; }

.tab-row {
  float: left;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #202020; }

.tab-row:nth-child(even) {
  background: #1C1C1C; }

.tbr-link {
  transition: transform .5s, box-shadow .5s; }

.tbr-link:hover {
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.22);
  transform: scale(1.05, 1.05); }

.tab-head {
  background: #888888;
  font-weight: bold;
  color: #202020 !important; }

.tab-cell {
  float: left;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  font-size: 13px;
  color: #888888; }

.tab-cell:nth-child(even) {
  opacity: .8; }

.tbc-10 {
  width: 10%; }

.tbc-20 {
  width: 20%; }

.tbc-70 {
  width: 70%; }

.tbc-80 {
  width: 80%; }

.txtr {
  text-align: right; }

.form-cont-one {
  float: left;
  width: 100%;
  padding: 20px;
  background: #202020; }

.form-field-1-2 {
  position: relative;
  float: left;
  width: 50%;
  height: 70px;
  padding: 0 13px;
  margin-bottom: 6px; }

.form-field-2-2 {
  position: relative;
  float: left;
  width: 100%;
  padding: 0 13px;
  margin-bottom: 6px; }
  .form-field-2-2 p {
    line-height: 20px;
    font-size: 16px;
    color: #888888;
    padding: 0 0 20px 0; }

.form-label {
  float: left;
  width: 100%;
  height: 20px;
  line-height: 20px;
  font-size: 15px;
  font-weight: bold;
  color: #888888; }

.form-input {
  float: left;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  font-size: 18px;
  color: #F5F5F5;
  background: #2B2B2B;
  outline: none;
  border: none;
  transition: background .3s; }

.f-test {
  border: 1px solid yellow; }

.form-checkbox {
  position: relative;
  float: left;
  width: 20px;
  height: 20px;
  margin: 25px 26px 25px 0;
  background: #888888;
  cursor: pointer; }
  .form-checkbox input {
    width: 100%;
    height: 100%;
    opacity: 0; }
  .form-checkbox .form-checkbox-my {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    transition: background .3s; }
  .form-checkbox input:checked ~ .form-checkbox-my {
    background: #F5F5F5; }

.form-text {
  float: left;
  line-height: 20px;
  font-size: 16px;
  color: #888888;
  margin: 25px 0; }

.form-button {
  position: relative;
  float: left;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin-top: 20px;
  padding: 0 10px;
  font-size: 18px;
  color: #F5F5F5;
  text-transform: uppercase;
  background: #0078f2;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background .3s; }

.form-button:hover {
  background: #2692ff; }

.crpntr {
  cursor: pointer; }

.crnor {
  cursor: default; }

.form-input-list {
  z-index: 15000;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: calc(100% - 26px);
  max-height: 0;
  margin: 0 13px;
  padding: 0 15px;
  background: #2B2B2B;
  overflow: hidden;
  transition: max-height .5s, padding .5s; }
  .form-input-list .form-input-list-item {
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #888888;
    cursor: pointer;
    transition: color .3s; }
  .form-input-list .form-input-list-item:hover {
    color: #F5F5F5; }

.form-input-list-open .form-arrow {
  transform: rotate(-180deg); }
.form-input-list-open .form-input-list {
  max-height: 300px;
  padding: 15px; }

.form-arrow {
  position: absolute;
  top: 30px;
  right: 23px;
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s; }

.form-arrow:hover ::before, .form-arrow:hover ::after {
  background: #F5F5F5; }

.bars-2-cross {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: width .5s, height .5s, margin .5s; }
  .bars-2-cross span {
    position: absolute;
    display: block;
    background: #888888;
    transition: top .3s, width .3s, transform .3s; }
  .bars-2-cross span:nth-child(1) {
    top: 35%;
    right: 15%;
    height: 4%;
    width: 50%; }
  .bars-2-cross span:nth-child(2) {
    top: 61%;
    right: 15%;
    height: 4%;
    width: 70%; }
  .bars-2-cross span::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #F5F5F5;
    transition: width .3s ease-out; }

.bars-2-cross:hover span::before {
  width: 100%; }

.bars-2-cross-change span:nth-child(1) {
  top: 46%;
  width: 70%;
  transform: rotate(45deg); }
.bars-2-cross-change span:nth-child(2) {
  top: 46%;
  transform: rotate(-45deg); }

.arrow {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%) rotate(-45deg); }

.arrow::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8%;
  background: #888888;
  transition: background .3s; }

.arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8%;
  height: 100%;
  background: #888888;
  transition: background .3s; }

.text-editor {
  float: left;
  width: 100%;
  padding: 33px;
  background: #202020; }
  .text-editor .text-tools {
    float: left;
    width: 100%;
    height: 70px;
    margin-bottom: 3px;
    padding: 10px;
    background: #F5F5F5; }
    .text-editor .text-tools .text-tool-bt {
      float: left;
      width: 50px;
      height: 50px;
      margin-right: 3px;
      background: #888888;
      cursor: pointer; }
  .text-editor .text-area {
    float: left;
    width: 100%;
    height: 250px;
    padding: 20px;
    margin-bottom: 3px;
    background: #F5F5F5;
    resize: none;
    overflow: auto;
    border: none;
    outline: none; }
  .text-editor .text-area-output {
    float: left;
    width: 100%;
    height: 250px;
    padding: 20px;
    background: #F5F5F5;
    overflow: auto; }

.bt01 {
  float: left;
  margin: 0px 3px 3px 0;
  width: 100px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: dodgerblue;
  cursor: pointer; }

.graph-circle-cont {
  float: left;
  display: block;
  position: relative;
  width: calc(50% - 30px);
  height: auto;
  margin: 15px; }
  .graph-circle-cont svg .graph-circle {
    stroke-width: 3;
    fill: none;
    stroke: #A31B73;
    stroke-dasharray: 0 100;
    transition: stroke-width .5s, stroke-dasharray 1s;
    transform: rotate(0deg);
    transform-origin: 50% 50%; }
  .graph-circle-cont svg .graph-circle:hover {
    stroke-width: 3.8; }
  .graph-circle-cont span {
    display: block;
    width: 20px;
    height: 20px;
    background: red;
    cursor: pointer; }

.graph-label-cont {
  float: left;
  display: block;
  width: calc(50% - 30px);
  height: 100px;
  margin: 15px; }
  .graph-label-cont .graph-label {
    position: relative;
    display: block;
    line-height: 20px;
    margin: 3px 0;
    padding: 0 45px 0 25px;
    font-size: 15px;
    color: #888888; }
    .graph-label-cont .graph-label .graph-label-square {
      position: absolute;
      top: 0;
      left: 0;
      display: inline-block;
      float: left;
      width: 20px;
      height: 20px; }
    .graph-label-cont .graph-label span {
      position: absolute;
      top: 0;
      right: 0; }
  .graph-label-cont .graph-label:first-letter {
    text-transform: capitalize; }

.file-bt {
  float: left;
  display: inline-block;
  position: relative;
  min-width: 100%;
  min-height: 40px;
  line-height: 50px;
  /*
  div:hover ~ .file-bt-name {
      max-width: 200px;
      padding: 0 10px;
  }
  */ }
  @media screen and (min-width: 900px) {
    .file-bt {
      min-width: 0; } }
  .file-bt input[type="file"] {
    display: none; }
  .file-bt .file-bt-name {
    float: left;
    height: 40px;
    max-width: 0px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    color: #F5F5F5;
    border: none;
    outline: none;
    background: #00458c;
    transition: max-width .5s, padding .5s; }
  .file-bt .file-bt-bt {
    float: left;
    position: relative;
    display: inline-block;
    min-width: 100%;
    line-height: 40px;
    height: 40px;
    font-size: 15px;
    padding-right: 20px;
    color: #F5F5F5;
    background: #0078f2;
    overflow: hidden;
    transition: color .5s;
    cursor: pointer; }
    @media screen and (min-width: 900px) {
      .file-bt .file-bt-bt {
        min-width: 0%; } }
    .file-bt .file-bt-bt img {
      float: left;
      width: 40px;
      height: 40px;
      padding: 10px;
      margin-left: 10px; }
  .file-bt .file-bt-bt:before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 0;
    height: 100%;
    transform: skewX(45deg);
    background: rgba(255, 255, 255, 0.1);
    transition: width .5s; }
  .file-bt .file-bt-bt:hover {
    color: #fff; }
  .file-bt .file-bt-bt:hover:before {
    width: 140%; }

.file-import {
  float: right;
  min-width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-align: center;
  font-size: 15px;
  color: #F5F5F5;
  border: none;
  outline: none;
  background: #0078f2;
  cursor: pointer;
  transition: background .5s, opacity .5s; }
  @media screen and (min-width: 900px) {
    .file-import {
      min-width: 0%; } }

.file-import:hover {
  background: #409eff; }

@media screen and (min-width: 900px) {
  .overview-row {
    display: flex; } }

.hide {
  display: none;
  opacity: 0; }

.overview-cont {
  float: left;
  width: calc(100% - 6px);
  margin: 3px;
  background: #202020;
  padding-bottom: 20px; }
  .overview-cont .overview-logo {
    position: relative;
    width: 100%; }
    .overview-cont .overview-logo img {
      width: 60%;
      height: auto;
      margin: 50px 20%; }
  .overview-cont .overview-head {
    display: block;
    width: 100%;
    line-height: 40px;
    margin-bottom: 15px;
    color: #F5F5F5;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 20px;
    background: #2B2B2B;
    /*
    a {
        display: inline-block;
        float: right;
        line-height: 30px;
        padding: 0 10px;
        margin: 5px 0;
        text-align: center;
        color: $clr_three;
        font-size: 13px;
        background: darken($clr_two, 20%);
        transition: background .5s;
    }
    a:hover {
        background: darken($clr_two, 50%);
    }*/ }
    .overview-cont .overview-head a {
      position: relative;
      float: right;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      padding: 0 20px;
      margin: 5px 0;
      font-size: 13px;
      color: #888888;
      background: #202020;
      overflow: hidden;
      transition: color .5s;
      cursor: pointer; }
      .overview-cont .overview-head a img {
        float: left;
        width: 40px;
        height: 40px;
        margin: 10px; }
    .overview-cont .overview-head a:before {
      content: '';
      position: absolute;
      top: 0;
      left: -20%;
      width: 0;
      height: 100%;
      transform: skewX(45deg);
      background: rgba(255, 255, 255, 0.1);
      transition: width .5s; }
    .overview-cont .overview-head a:hover {
      color: #fff; }
    .overview-cont .overview-head a:hover:before {
      width: 140%; }
  .overview-cont .overview-info {
    float: left;
    display: block;
    width: 100%;
    line-height: 40px;
    color: #888888;
    padding: 5px 20px; }
    .overview-cont .overview-info span {
      float: left;
      display: inline-block;
      width: calc(50% - 10px);
      line-height: 20px;
      padding: 10px 0;
      margin-right: 10px;
      font-weight: bold; }
      @media screen and (min-width: 900px) {
        .overview-cont .overview-info span {
          width: 150px; } }
    .overview-cont .overview-info span:nth-child(2) {
      width: 50%;
      margin: 0;
      font-weight: normal; }
      @media screen and (min-width: 900px) {
        .overview-cont .overview-info span:nth-child(2) {
          width: calc(100% - 160px); } }
  .overview-cont .overview-box {
    float: left;
    width: calc(100% - 20px);
    height: 300px;
    margin: 10px;
    padding: 15px;
    background: #1C1C1C;
    color: #F5F5F5;
    border: none;
    outline: none;
    overflow-y: auto;
    overflow-x: hidden;
    resize: none; }
    @media screen and (min-width: 900px) {
      .overview-cont .overview-box {
        width: calc(50% - 20px); } }
    .overview-cont .overview-box xnp SKL_KARTY {
      color: red; }
  .overview-cont .overview-line-2-2 {
    float: left;
    display: block;
    width: 100%;
    line-height: 40px;
    color: #888888;
    padding: 5px 20px; }
    .overview-cont .overview-line-2-2 span {
      float: left;
      display: inline-block;
      width: calc(50% - 10px);
      line-height: 20px;
      padding: 10px 0;
      margin-right: 10px;
      font-weight: bold; }
    .overview-cont .overview-line-2-2 span:nth-child(2) {
      width: 50%;
      margin: 0;
      font-weight: normal; }
  .overview-cont .overview-line-1-2 {
    float: left;
    display: inline-block;
    width: 50%;
    line-height: 40px;
    color: #888888;
    padding: 5px 20px; }
    .overview-cont .overview-line-1-2 span {
      display: inline-block;
      width: 100%;
      line-height: 20px;
      padding: 10px 0;
      margin-right: 20px;
      font-weight: bold; }
  .overview-cont .overview-text {
    float: left;
    display: block;
    min-height: 40px;
    line-height: 20px;
    padding: 15px 20px;
    color: #888888;
    transition: opacity .5s; }
  .overview-cont .overview-bt {
    display: block;
    width: 100%;
    line-height: 40px;
    text-align: center;
    color: #1C1C1C;
    background: #F5F5F5;
    transition: background .5s; }
  .overview-cont .overview-bt:hover {
    background: #c2c2c2; }

#welcome-page {
  background-size: cover; }

.welcome-logo {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background-image: url("../files/img/main/logo_light.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: .02; }

.welcome-cont {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center; }
  .welcome-cont .welcome-label {
    position: relative;
    display: inline-block;
    line-height: 60px;
    padding: 0 10px;
    text-align: center;
    font-size: 15px;
    color: #F5F5F5;
    text-transform: uppercase; }
  .welcome-cont .welcome-label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translate(0, -50%);
    display: block;
    width: 50px;
    height: 3px;
    background: #F5F5F5; }
  .welcome-cont .welcome-label:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translate(0, -50%);
    display: block;
    width: 50px;
    height: 3px;
    background: #F5F5F5; }
  .welcome-cont .welcome-head {
    display: block;
    width: 100%;
    line-height: 60px;
    text-align: center;
    font-size: 50px;
    color: #F5F5F5;
    text-transform: uppercase; }
  .welcome-cont .welcome-progress-cont {
    float: left;
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    margin: 0 auto 20px auto; }
    .welcome-cont .welcome-progress-cont .welcome-progress-frame {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      height: 5px;
      background: #363636; }
      .welcome-cont .welcome-progress-cont .welcome-progress-frame .welcome-progress-bar {
        position: relative;
        display: block;
        width: 75%;
        height: 15px;
        transform: translate(0, -5px);
        background: #F5F5F5;
        overflow: hidden; }
      .welcome-cont .welcome-progress-cont .welcome-progress-frame .welcome-progress-bar:before {
        content: '';
        position: absolute;
        top: 0;
        left: -170px;
        width: 150px;
        height: 100%;
        transform: skewX(-45deg);
        background: #cfcfcf;
        animation-name: progress;
        animation-duration: 3s;
        animation-iteration-count: infinite; }
      .welcome-cont .welcome-progress-cont .welcome-progress-frame .welcome-progress-count {
        position: absolute;
        top: 0;
        left: 55%;
        line-height: 25px;
        transform: translate(10px, -5px);
        font-size: 25px;
        font-weight: 900;
        color: #F5F5F5; }
    .welcome-cont .welcome-progress-cont .welcome-progress-frame:before {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      transform: translate(-50%, 0);
      color: #F5F5F5; }
    .welcome-cont .welcome-progress-cont .welcome-progress-frame:after {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      transform: translate(50%, 0);
      color: #F5F5F5; }
  .welcome-cont .welcome-login {
    padding: 10px 30px;
    color: #F5F5F5;
    text-transform: uppercase;
    border: 1px solid #F5F5F5;
    transition: background .5s, color .5s; }
  .welcome-cont .welcome-login:hover {
    color: #1C1C1C;
    background: #F5F5F5; }

@keyframes progress {
  from {
    left: -170px; }
  to {
    left: calc(100% + 20px); } }
@keyframes loading-1 {
  0% {
    transform: translate(0, 0); }
  10% {
    transform: translate(0, -50px); }
  20% {
    transform: translate(0, 0); }
  100% {
    transform: translate(0, 0); } }
@keyframes loading-2 {
  0% {
    transform: translate(0, 0); }
  20% {
    transform: translate(0, 0); }
  30% {
    transform: translate(0, -50px); }
  40% {
    transform: translate(0, 0); } }
@keyframes loading-3 {
  0% {
    transform: translate(0, 0); }
  40% {
    transform: translate(0, 0); }
  50% {
    transform: translate(0, -50px); }
  60% {
    transform: translate(0, 0); } }
@keyframes loading-4 {
  0% {
    transform: translate(0, 0); }
  60% {
    transform: translate(0, 0); }
  70% {
    transform: translate(0, -50px); }
  80% {
    transform: translate(0, 0); } }
@keyframes loading-5 {
  0% {
    transform: translate(0, 0); }
  80% {
    transform: translate(0, 0); }
  90% {
    transform: translate(0, -50px); }
  100% {
    transform: translate(0, 0); } }
@keyframes loading-text {
  0% {
    content: ''; }
  20% {
    content: '.'; }
  40% {
    content: '..'; }
  60% {
    content: '...'; }
  80% {
    content: '....'; }
  100% {
    content: '.....'; } }

/*# sourceMappingURL=main-style.css.map */
