* {
    padding:0px;
    margin:0px;
}

/* ---------- navbar-top-base  header ----------*/
.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height: 50px;
  padding: 1rem;
  color: white;
  background: #333;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .header_hempking {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.header .header_item {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.header .header_text {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  cursor: default;
}

.header .header_item:hover {
  background: #ddd;
  color: black;
}

.nav {
    float: left;
    width: 150px;
    background: #333;
    color: white;
    margin-right: 50px;
    overflow:hidden
}

/* ---------- end navbar-top-base  header ----------*/


.change_combobox {
    margin-bottom: 30px;
    margin-right:10px;
    font-size:20px;
}

.content {
    margin: 0% 5%;
    width:90%;
}

body {
    padding-top:40px;
}

.body_content_top {
  width: 100%;
  display: block;
  align-items:center;
  text-align: center;
}

.body_content_top_item {
  display: inline-block;
  text-align: center;
  cursor:pointer;
  margin: 2%;
}

.body_content_main {
    box-sizing:content-box;
    display:block;
    width:100%;
    height:auto;
}

/*
.container {
    overflow: hidden;
}
*/


.dropdown {
  position: relative;
  font-size: 14px;
  color: #333;

  .dropdown-list {
    padding: 12px;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 2px;
    right: 2px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
    transform-origin: 50% 0;
    transform: scale(1, 0);
    transition: transform .15s ease-in-out .15s;
    max-height: 66vh;
    overflow-y: scroll;
  }

  .dropdown-option {
    display: block;
    padding: 8px 12px;
    opacity: 0;
    transition: opacity .15s ease-in-out;
  }

  .dropdown-label {
    display: block;
    height: 30px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 12px;
    line-height: 1;
    cursor: pointer;

    &:before {
      content: '▼';
      float: right;
    }
  }

  &.on {
   .dropdown-list {
      transform: scale(1, 1);
      transition-delay: 0s;

      .dropdown-option {
        opacity: 1;
        transition-delay: .2s;
      }
    }

    .dropdown-label:before {
      content: '▲';
    }
  }

  [type="checkbox"] {
    position: relative;
    top: -1px;
    margin-right: 4px;
  }
}
.input-wrapper {
  display: flex;
}
label {
  margin-right: 10px;
}

/* ---------- am4 gantt chart  chartdiv ----------*/
#chartdiv {
  width: 100%;
  height: 60%;
}

.chartdiv {
  width: 49.5%;
  height: 40%;
  display:inline-block;
}
/* ---------- end am4 gantt chart  chartdiv ----------*/

/*-- seungwon commit test --*/