.vv_home {
}

.vv_home_middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vv_home_middle_card {
  width: 32%;
  padding: 1rem;
  /* background-color: #f1f1f1; */
  background: rgb(241, 241, 241);
  background: linear-gradient(
    162deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(100, 153, 233, 1) 70%
  );
  border-radius: 0.5rem;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.vv_home_card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vv_home_card_header_date {
  font-size: var(--P-MEDIUM);
  font-weight: var(--BOLD);
  color: #00337c;
}

.vv_home_card_header_title {
  font-size: var(--P-REGULAR);
  font-weight: var(--BOLD);
  color: #00337c;
}

.vv_home_card_footer {
  margin-top: 2rem;
}

.vv_home_card_footer p {
  font-weight: var(--BOLD);
  font-size: var(--H3-BIG);
  color: #00337c;
}

.vv_home_top {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vv_home_filter_wrapper {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.3rem 0;
  width: 5rem;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  transition: all 0.3s ease;
}

.vv_home_filter_wrapper .bx-menu,
.bx-filter {
  font-size: 1.2rem;
  color: #00337c;
}

.vv_filter_card {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  background-color: #00337c;
  color: #f1f1f1;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  position: absolute;
  top: 2rem;
  right: 0;
}

.vv_filter_card_option {
  padding: 0.5rem 1rem;
  font-size: var(--P-MEDIUM);
  font-weight: var(--MEDIUM);
  cursor: pointer;
  margin: 0.3rem 0;
  transition: all 0.3s ease;
}

.vv_filter_card_option:hover {
  background-color: #6499e9;
  color: #00337c;
}

.vv_home_bottom {
  margin-top: 1rem;
  height: 40vh;
  display: flex;
  justify-content: space-between;
}

.vv_bottom_left {
  width: 55%;
  padding: 1rem;
  background-color: #f1f1f1;
  border-radius: 0.5rem;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.vv_bottom_left h4,
vv_bottom_right h4 {
  font-size: var(--P-REGULAR);
  font-weight: var(--BOLD);
}

.vv_bottom_right {
  width: 43%;
  padding: 1rem;
  background-color: #f1f1f1;
  border-radius: 0.5rem;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.vv_table_container {
  overflow: auto;
  height: 80%;
}

.vv_bottom_left_content_wrapper {
  display: flex;
  flex-direction: column;
}

.vv_bottom_left_content_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vv_bottom_left_content_item label {
  width: 30%;
  font-size: var(--P-MEDIUM);
  font-weight: var(--MEDIUM);
}

.vv_bottom_left_content_item input[type='text'] {
  width: 60%;
  border: none;
  outline: none;
  background-color: #f1f1f1;
  font-weight: var(--P-MEDIUM) !important;
  font-size: var(--BOLD) !important;
}

.vv_bottom_left_content_item input[type='text']:hover,
.vv_bottom_left_content_item input[type='text']:active {
  border: none;
  outline: none;
  background-color: #f1f1f1;
  font-weight: var(--P-REGULAR) !important;
  font-size: var(--BOLD) !important;
}

.vv_bottom_left_content_item button {
  width: 10%;
  border: none;
  outline: none;
  background-color: transparent !important;
}

.vv_bottom_left_content_item button:hover,
.vv_bottom_left_content_item button:active {
  border: none;
  outline: none;
  background-color: transparent !important;
}

.vv_bottom_left_content_item button .bx {
  font-size: var(--P-REGULAR);
  font-weight: var(--BOLD);
  color: #00337c;
}

.vv_commission_table_row {
  font-weight: var(--MEDIUM);
  font-size: var(--P-REGULAR);
}

/* MEDIA QUERY */
@media screen and (max-width: 768px) {
  .vv_home_filter_wrapper .bx-menu,
  .bx-filter {
    font-size: 1rem;
    font-weight: var(--BOLD);
  }

  .vv_home_filter_wrapper span {
    font-size: 1rem;
    font-weight: var(--BOLD);
    color: #00337c;
  }

  .vv_filter_card_option {
    padding: 0.3rem 0.7rem;
    font-size: var(--P-SMALL);
    font-weight: var(--MEDIUM);
    margin: 0.2rem 0;
  }

  .vv_home_middle {
    flex-direction: column;
  }

  .vv_home_middle_card {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
  }

  .vv_home_card_header_date {
    font-size: var(--P-SMALL);
  }

  .vv_home_card_header_title {
    font-size: var(--P-MEDIUM);
  }

  .vv_home_card_footer {
    margin-top: 1.5rem;
  }

  .vv_home_card_footer p {
    font-size: var(--H4-BIG);
  }

  .vv_home_bottom {
    margin-top: 1rem;
    height: auto;
    flex-direction: column;
  }

  .vv_bottom_left {
    width: 100%;
    padding: 0.5rem;
  }

  .vv_bottom_left h4,
  .vv_bottom_right h4 {
    font-size: var(--P-MEDIUM);
    font-weight: var(--BOLD);
  }

  .vv_bottom_right {
    margin: 1.5rem 0;
    width: 100%;
    padding: 0.5rem;
  }

  .vv_bottom_left_table_container {
    overflow: auto;
    height: 80%;
  }

  .vv_bottom_left_content_wrapper {
    display: flex;
    flex-direction: column;
  }

  .vv_bottom_left_content_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .vv_bottom_left_content_item label {
    width: 30%;
    font-size: var(--P-SMALL);
    font-weight: var(--BOLD);
  }

  .vv_bottom_left_content_item input[type='text'] {
    width: 60%;
    font-weight: var(--P-SMALL) !important;
  }

  .vv_bottom_left_content_item input[type='text']:hover,
  .vv_bottom_left_content_item input[type='text']:active {
    border: none;
    outline: none;
    background-color: #f1f1f1;
    font-weight: var(--P-SMALL) !important;
    font-size: var(--BOLD) !important;
  }

  .vv_bottom_left_content_item button {
    width: 10%;
    border: none;
    outline: none;
    background-color: transparent !important;
  }

  .vv_bottom_left_content_item button:hover,
  .vv_bottom_left_content_item button:active {
    border: none;
    outline: none;
    background-color: transparent !important;
  }

  .vv_commission_table_row {
    font-weight: var(--BOLD);
    font-size: var(--P-MEDIUM);
  }
}
