* {
    margin: 0;
    padding: 0;
    font-family: Arial;
    box-sizing: border-box;
  }
  
  /*::-webkit-scrollbar {
      display: none;
    }*/
  
  html,
  body {
    height: 100%;
  }

  .body {
    height: 100%;
    position: relative;
    overflow: auto;
    background-image: url('../images/background.png');
    background-size: 100% 100%;
  }

  .hide {
    display: none !important;
  }
.row-nowrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.flex-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.flex-con {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.flex-tow {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    flex: 2;
}

.flex-vertical {
    -webkit-box-orient: vertical;
    -webkit-flex-flow: column;
    flex-flow: column;
}

.flex-horizontal {
    -webkit-box-orient: horizontal;
    -webkit-flex-flow: row;
    flex-flow: row;
}

.box-pack {
    -webkit-box-pack: center;
    box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.box-pack-left {
    -webkit-box-pack: start;
    box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.box-pack-right {
    -webkit-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.box-pack-justify {
    -webkit-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.box-align {
    -webkit-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex-rowWrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}