.select_part {
  margin: 50px 0;
}

.sidebar_search-box {
  border: 1px solid #deefd9;
  border-radius: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-items: center;
  padding: 1px;
  margin-left: 10px;
}

.sidebar_search-box__button {
  background-color: #65b64c;
  border-radius: 12px;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar_search-box__button {
  height: 44px;
  width: 44px;
  background-color: #65b64c;
  border-radius: 12px;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar_search-box__button img {
  transform: scale(0.8);
}

.sidebar_search-box__button:hover {
  background-color: #cbe0c3;
  border: 2px solid #65b64c;
  transition: var(--animation-time) var(--animation-rendering);
}

.sidebar_search-box__button img:hover {
  transform: scale(1.1);
  transition: var(--animation-time) var(--animation-rendering);
}

.sidebar_search_input {
  border-radius: 12px;
  border: 0;
  outline: none;

  height: 44px;
}
.sidebar_search_input:hover {
  border: 1px solid #65b64c;
  transition: var(--animation-time) var(--animation-rendering);
}

.custom-select {
  --focused-border-color: #65b64c;
}

.custom-select select {
  appearance: none;
  border-width: 2px;
  border-color: transparent;
  box-sizing: border-box;
  height: 2rem;
  flex-grow: 1;
  border: 0;
  text-align: right;
  padding: 0 16px;
  outline: none;
  background-color: transparent;
}
.custom-select label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 1px solid #deefd9;
  border-radius: 12px;
}
.custom-select label::after {
  content: "\25BE";
  background-color: var(--focused-border-color);
  color: #fff;
  width: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: var(--animation-time) var(--animation-rendering);
}
.custom-select.index-selector label {
  width: 100px;
}
.custom-select.content-selector label {
  width: 200px;
}
.custom-select.index-selector label:after {
  left: 0vw;
}
.custom-select.content-selector label:after {
  right: 148px;
}
.custom-select label.svg::after {
  width: 50px;
  content: url(".~/Content/images/articles/arrow-down.svg");
  line-height: 0;
  border-radius: 13px;
}
.custom-select select:focus {
  outline: none;
  border-color: var(--focused-border-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 80px;
}

thead {
  border: 1px solid #deefd9;
  border-collapse: collapse;
  text-align: center;
  color: #444444;
  font-size: 16px;
}

thead th {
  padding: 20px;
}

tbody {
  text-align: center;
  box-shadow: 1px 2px 20px #0000000d;
  align-items: center;
  background-color: #fbfbfb;
  font-size: 16px;
  color: #6d6d6d;
}

tbody a {
  font-size: 16px;
  color: #6d6d6d;
}

tbody tr:hover {
  background-color: #deefd9;
  font-weight: bold;
  transition: var(--animation-time) var(--animation-rendering);
}

tbody tr:active {
  background-color: #deefd9;
  font-size: large;
}

/* -----------------------------Media Query-------------------------------- */

@media screen and (max-width: 800px) {
  .table-font {
    font-size: 0.7em;
  }
  table img {
    width: 15vw;
  }
}

@media screen and (max-width: 500px) {
  .sidebar_search-box {
    margin-left: 5px;
  }

  .sidebar_search-box {
    width: 26vw;
  }

  .sidebar_search_input {
    width: 15vw;
  }
}

