.icon_png{
  max-height: 20px;
}
.alert_message{
  color: red;
}

.login{
  display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertical */
  height: auto;
  margin-bottom: auto;
  margin-top: auto;
  overflow-y: auto;
}

.signup {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
  overflow-y: auto;
}

.password_reset {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  height: auto;
  margin-bottom: auto;
  margin-top: auto;
    overflow-y: auto;
}

.edit_profile {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
  overflow-y: auto;
}

.password_change {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
  overflow-y: auto;
}

.verification {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
    overflow-y: auto;
}

/*.center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}*/

.contact .btn-contact {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .btn-contact:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.contact .item-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.contact .item-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.newsletter .btn-newsletter {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.newsletter .btn-newsletter:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.mission .icon-box {
  display: flex;
}

.mission .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.mission .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.mission .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# flip cards
--------------------------------------------------------------*/

.any h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.any i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.any .card-flip p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}


.any .card-container {
  perspective: 1000px;
  width: 300px;
  height: 200px;
  margin: auto;
  padding: 3px;
}

.any .card-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.any .card-container:hover .card-flip {
  transform: rotateY(180deg);
}

.any .card {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

.any .card.back {
  transform: rotateY(180deg);
}

/*--------------------------------------------------------------
# ESG Section
--------------------------------------------------------------*/
.esg .esg-container .esg-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.esg .esg-container .esg-item:last-child {
  margin-bottom: 0;
}

.esg .esg-container .esg-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.esg .esg-container .esg-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.esg .esg-container .esg-item h3:hover {
  color: var(--accent-color);
}

.esg .esg-container .esg-item .esg-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  visibility: hidden;
  opacity: 0;
  font-size: 14px;
  font-weight: 400;
}

.esg .esg-container .esg-item .esg-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.esg .esg-container .esg-item .esg-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.esg .esg-container .esg-item .esg-toggle:hover {
  color: var(--accent-color);
}

.esg .esg-container .esg-active h3 {
  color: var(--accent-color);
}

.esg .esg-container .esg-active .esg-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.esg .esg-container .esg-active .esg-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/* ToastUI chart */

.tui-chart-tooltip {
  position: absolute !important;
  z-index: 1000 !important;
  pointer-events: none;
  background: white;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart, #stepsChart, #bloodsugarChart,
#hrHrvChart, #caloryChart, #spo2Chart,
#recoveryChart, #sleepChart, #weightChart {
  position: relative;     /* needed for absolute tooltip positioning */
  height: 300px;          /* fixed height, avoid auto */
  overflow: visible;      /* allow tooltip to go outside */
}

.chart-body {
  position: relative;
  overflow: visible;
}

.biosensor-input:hover{
    transform: scale(0.9);
}

/* Service */

.service .icon-box {
  display: flex;
}

.service .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.service .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.service .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.service .icon-box .icon-orange{
  color: #fd7e14;
}

.service .icon-box .icon-cyan{
  color: #0dcaf0;
}

.service .icon-box .icon-teal{
  color: #20c997;
}

.service .icon-box .icon-red{
  color: #df1529;
}

.service .icon-box .icon-indigo{
  color: #6610f2;
}

.service .icon-box .icon-pink{
  color: #f3268c;
}

.service-heading-img{
  max-height: 300px;
  width: 100%;
  margin: auto;
  /*object-fit: cover;*/
}