.c_panel {
  display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	background: var(--c-white);
  border: 1px solid hsla(0, 0%, 67.8%, .2);
	box-sizing: border-box;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
	border-radius: 4px;
}

.c_panel__header {
  padding: 1.2rem 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}

.c_panel__header--white {
  background-color: #fff;
  border-bottom: 1px solid hsla(0, 0%, 67.8%, .16);
}

.c_panel__header--grey {
  background-color: #EDEFF4;
}

.c_panel__header-title {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8rem;
  padding: .8rem 0;
}

.c_panel__header-refresh {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: .8rem;
}

.c_panel__header-refreshDate {
  font-size: 1.2rem;
  line-height: 1.3rem;
  color: var(--c-regular-grey);
  margin-right: 2.4rem;
}

.c_panel__header-refreshButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  border: 1px solid var(--c-border-isdark);
  border-radius: 5px;
  width: 3.2rem;
  min-width: 3.2rem;
  height: 3.2rem;
  margin-left: auto;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
}

@media screen and (min-width:576px) {
  .c_panel__header-refresh {
    width: auto;
  }
}
@media screen and (min-width:992px) {
  .c_panel__header {
    flex-direction: row;
    align-items: center;
    padding: 0.8rem 2.4rem;
  }
  .c_panel__header--grey {
    background-color: #f7f8fb;
  }
  .c_panel__header-refresh {
    padding-bottom: 0;
  }
  .c_panel__header-refreshButton {
    position: relative;
    top: auto;
    right: 0;
    transform: none;
  }
}