.image-gallery {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.cursor-pointer {
    cursor: pointer !important;
}
.bg-green {
    background-color: #30BA38;
}

.dashboard-box {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    color: #583610;
}

.dashboard-menu {
    padding: 12px;
    display: table;
    width: 100%;
}

.menu-dashboard-type {
    display: table-cell;
    background-color: #593610;
    /* width: 33.33%; */
    padding: 12px;
    color: white;
    font-size: 16px;
    text-align: center;
}

.menu-dashboard-type.active {
    background-color: #30BA38;
}

.menu-dashboard-type:first-of-type {
    border-radius: 10px 0 0 10px;
}

.menu-dashboard-type:last-of-type {
    border-radius: 0 10px 10px 0;
}

.checkbox-store {
    padding: 12px;
}


.checkbox-dropdown {
    width: 100%;
    padding: 10px;
    position: relative;
    margin: 0 auto;
    user-select: none;
    border-radius: 10px;
    background-color: #30BA38;
    color: white;
    text-align: center;
}

.checkbox-dropdown img {
    width: 28px;
}

/* Display CSS arrow to the right of the dropdown text */
.checkbox-dropdown:after {
    content: '';
    height: 0;
    position: absolute;
    width: 0;
    border: 6px solid transparent;
    border-top-color: #fff;
    top: 50%;
    right: 10px;
    margin-top: -3px;
}

/* Reverse the CSS arrow when the dropdown is active */
.checkbox-dropdown.is-active:after {
    border-bottom-color: #fff;
    border-top-color: #30BA38;
    margin-top: -9px;
}

.checkbox-dropdown-list {
    border-radius: 10px;
    background-color: #fff;
    color: #593610;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 110%;
    /* align the dropdown right below the dropdown text */
    border: inherit;
    border-top: none;
    left: -1px;
    /* align the dropdown to the left */
    right: -1px;
    /* align the dropdown to the right */
    opacity: 0;
    /* hide the dropdown */

    transition: opacity 0.4s ease-in-out;
    height: 250px;
    overflow: scroll;
    overflow-x: hidden;
    pointer-events: none;
    border: 1px solid #30BA38;
    /* avoid mouse click events inside the dropdown */
    z-index: 9;
}

.is-active .checkbox-dropdown-list {
    opacity: 1;
    /* display the dropdown */
    pointer-events: auto;
    /* make sure that the user still can select checkboxes */
}

.checkbox-dropdown-list li label {
    display: block;
    padding: 10px;
    transition: all 0.2s ease-out;
    background-color: #fff;
    color: #593610;
}

.checkbox-dropdown-list li label input {
    margin-right: 6px;
}

.dashboard-box-machine {
    padding: 12px;
}

.dashboard-menu-machine {
    display: table;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #30BA38;
    background: white;
}

.btn-machine {
    text-align: center;
    padding: 8px 12px;
    font-size: 18px;
    display: table-cell;
    vertical-align: middle;
    width: 33.33%;
    background: none;
    border-radius: 8px;
    border: 0;
}

.btn-machine img {
    height: 30px;
}

.btn-water svg,.btn-hot svg,.btn-store svg {
    height: 30px;
}

.btn-water {
    color: #26BCE2
}
.btn-water .cls-1 {
    fill: none;
    stroke: #26bce2;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.btn-water .cls-2 {
    fill: #26bce2;
    stroke-width: 0px;
}
.btn-water.active .cls-1 {
    fill: none;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.btn-water.active .cls-2 {
    fill: white;
    stroke-width: 0px;
}

.btn-hot {
    color: #E53F4F
}
.btn-hot .cls-1 {
    fill: none;
    stroke: #E53F4F;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.btn-hot .cls-2 {
    fill: #E53F4F;
    stroke-width: 0px;
}
.btn-hot.active .cls-1 {
    fill: none;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.btn-hot.active .cls-2 {
    fill: white;
    stroke-width: 0px;
}

.btn-store {
    color: #30BA38
}
.btn-store .cls-1 {
    fill: none;
    stroke: #30BA38;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.btn-store .cls-2 {
    fill: #30BA38;
    stroke-width: 0px;
}
.btn-store.active .cls-1 {
    fill: none;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.btn-store.active .cls-2 {
    fill: white;
    stroke-width: 0px;
}

.btn-water.active {
    color: white;
    background: #26BCE2;
}

.btn-hot.active {
    color: white;
    background: #E53F4F;
}

.btn-store.active {
    color: white;
    background: #30BA38;
}

.box-chart {
    padding: 12px;
    position: relative;
}

.content-chart {
    padding: 4px;
    border-radius: 10px;
    border: 2px solid #593610;
    background: white;
}
.title-chart {
    height: 76px;
    margin-top: -28px;
    margin-bottom: 24px;
}
.chart-data-table {
    display: table;
    width: 100%;
    background: #6ccd71;
}
.chart-data-table .data-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 33.33%;
    padding: 12px 0 ;
    color: #593610;
    font-size: 20px;
    font-weight: 500;
}
.chart-data-table .data-content:first-of-type {
    border-right: 2px solid #593610;
}
.chart-data-table .data-content:last-of-type {
    border-left: 2px solid #593610;
}
.data-use-percent {
    display: table;
    width: 100%;
    border: 2px solid #31B938;
    overflow: hidden;
    border-radius: 20px;
    margin-top:-15px;
}
.data-use-percent-coin {
    display: table-cell;
    background: #30BA38;
    color: white;
    padding: 2px 6px;
    text-align: right;
}
.data-use-percent-online {
    display: table-cell;
    background: white;
    color: #30BA38;
    padding: 2px 6px;
}
.dashboard-box #dateFilterOrder {
    border-radius: 12px;
    border: 2px solid #30BA38;
    box-shadow: 0px 3px 6px #00000029;
    font-size: 18px;
}
.box-chart .fillter-date i {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translate(0%,-50%);
    -ms-transform: translate(-0%,-50%);
}
.text-normal {
    font-weight: 300;
}
.btn-browny {
    background: #30BA38;
    border: none;
    padding: 8px;
    text-align: center;
    color: white;
    width:100%;
    font-size: 18px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 12px;
}
.btn-browny:active,
.btn-browny:focus {
    background: #30BA38;
    color: white;
}
.btn-browny:hover {
    background: #228927;
    color: white;
}
.content-chart.border-green {
    box-shadow: 0px 3px 6px #00000029;
    border-color: #30BA38;
    position: relative;
    overflow: hidden;
}
.content-chart.border-green .mascot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    width: 30%;
    opacity: .3;
}


/* The container */
.container-checkboxBrown {
    display: block;
    position: relative;
    padding-left: 42px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default checkbox */
  .container-checkboxBrown input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    background-color: #fff;
    border: 2px solid #593610;
    border-radius: 50%;
  }

  /* On mouse-over, add a grey background color */
  .container-checkboxBrown:hover input ~ .checkmark {
    background-color: #ccc;
  }

  /* When the checkbox is checked, add a blue background */
  .container-checkboxBrown input:checked ~ .checkmark {
    background-color: #fff;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  .container-checkboxBrown input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .container-checkboxBrown .checkmark:after {
      background-color: #593610;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
  }