button:disabled {
  opacity: 0.7;
}
/* GENERAL STYLES */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "IBM Plex Sans", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.mobile-only {
  display: none !important;
}

.mobile-only-form {
  display: none !important;
}

.container {
  display: flex;
  min-height: 100vh;
}

.bold {
  font-weight: 600;
}

.green {
  color: #27750a !important;
}

#sidebar {
  height: 100vh;
  min-width: 245px;
  max-width: 245px;
  padding-top: 1.5rem;
  position: sticky;
  top: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

#sidebar::-webkit-scrollbar-track {
  box-shadow: none;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.987);
  border-radius: 10px;
  background-color: #d8d8d8;
  overflow-x: auto;
}

#sidebar::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
  overflow-x: auto;
}

#sidebar::-webkit-scrollbar-thumb {
  box-shadow: none;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  background-color: #a0a0a0;
  overflow-x: auto;
}

#brand {
  margin-left: 1.275rem;
}

#side-nav-items {
  margin-top: 2.75rem;
}

#side-nav-items > div {
  position: relative;
  border-bottom: 1px solid #ccd1d9;
  padding-left: 1.275rem;
  width: 100%;
}

#side-nav-items a {
  display: inline-flex;
  align-items: center;
  padding: 1.19rem 0;
}

#side-nav-items li:last-of-type {
  border-bottom: none;
}

#side-nav-items img {
  margin-right: 0.7125rem;
}

#side-nav-items #drop-down {
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
  margin: 0;
}

#sub-nav-items {
  opacity: 0;
  max-height: 0;
}

#sub-nav-items a.sub-nav-item {
  color: #979797;
  padding: 0 0 1.19rem 1.8rem;
  display: block;
}

.sub-nav-item img {
  visibility: hidden;
}

.active-div {
  border-right: 3px solid #cebf09;
  border-bottom: 1px solid #ccd1d9;
}

.active {
  color: #69c448;
  font-weight: 600;
}

#main {
  background-color: #e9eaee;
  min-height: 100vh;
  width: 100%;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}

nav {
  padding: 1.125rem 0;
  border-bottom: 1px solid #9ca3af;
  background-color: #e9eaee;
  top: 0;
  z-index: 8;
}

.brand-phone {
  display: none;
}

.inner-container {
  margin: 0 8.02% 0 4.85%;
}

#nav-items {
  display: flex;
  align-items: center;
}

form {
  width: 70.6%;
  max-width: 735px;
  margin-right: 1rem;
}

input:not([type="radio"]) {
  position: relative;
  height: 4.3125rem;
  width: 100%;
  padding: 1.3125rem 3.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 5px;
  filter: drop-shadow(0px 4px 4px rgba(199, 237, 187, 0.24));
}

.input {
  position: relative;
}

.input img {
  cursor: pointer;
  position: absolute;
  margin-top: 20px;
  right: 2rem;
  display: inline-block;
}

input img {
  cursor: pointer;
}

input::placeholder {
  color: #928989;
  font-size: 1rem;
}

#right-nav-items {
  display: flex;
  margin-left: auto;
}

#profile {
  display: flex;
  align-items: center;
  margin-left: 1.625rem;
}

#profile p {
  white-space: nowrap;
}

.text {
  margin-left: 0.8125rem;
  margin-right: 1.5rem;
}

#sidenav-icon {
  z-index: 9999;
  transition: opacity 0.3s;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.631);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

#sub-nav-items.show {
  opacity: 1;
  max-height: 90px;
  transition: max-height 0.3s;
}

#drop-down.turn {
  transform: rotateX(180deg);
  transition: transform 0.3s;
}

@media only screen and (max-width: 1000px) {
  #sidebar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99999;
    transform: translateX(-245px);
    transition: transform 0.5s;
  }

  #side-nav-items {
    margin-top: 2.25rem;
  }

  #sidenav-icon {
    display: block !important;
    margin-right: 1rem;
  }

  #main {
    border-radius: 0;
  }

  .brand-phone {
    display: block !important;
  }
}

@media only screen and (max-width: 600px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  #main {
    background-color: #fff;
  }

  nav {
    background-color: #fff;
  }

  .inner-container {
    width: 90%;
    margin: 0 auto;
  }

  #mobile-logo {
    margin-right: 1.5rem;
  }

  #profile {
    margin-left: 0.5rem;
  }

  .text {
    margin-left: 0.3rem;
    margin-right: 0.1rem;
    font-size: 0.875rem;
  }

  form.mobile-only {
    width: 100%;
    margin-top: 1rem;
  }

  .mobile-only input {
    background-color: #f6f6f6;
    height: 2.3125rem;
    padding: 1.3125rem 2rem 1.5rem;
  }

  .input::after {
    top: 25%;
    left: 87.5%;
  }

  input::placeholder {
    font-size: 0.875rem;
  }
}

@media only screen and (max-width: 330px) {
  #mobile-logo {
    margin-right: 0.8rem;
  }
}

@media (max-width: 1000px) {
  .mobile-only-form {
    display: block !important;
    width: 100% !important;
    margin: 0;
  }
}
/* END OF GENERAL STYLES */

/* INDEX--PAGE STYLES */
#index--page #hero {
  background-image: url(../img/hero-image.svg);
  background-position: right;
  color: #fff;
  margin: 1.25rem 0;
  padding: 1.5rem 2.6875rem;
  line-height: 1.5rem;
  border: none;
  border-radius: 5px;
}

#index--page #hero h3 {
  margin: 0.8125rem 0;
  font-size: 1.5rem;
}

#index--page #hero-text {
  width: 70%;
}

#index--page #mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.25rem 0;
}

#index--page .mini-card {
  width: 150px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #27750a;
  font-weight: 600;
  border: none;
  border-radius: 5px;
}

#index--page .mini-card p {
  padding-top: 0.25rem;
}

#index--page #card-1 {
  background-color: #efebbe;
}

#index--page #card-2 {
  background-color: #e1eaa9;
}

#index--page #card-3 {
  background-color: #f8cd8d;
}

#index--page #content {
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.44);
  border: none;
  border-radius: 10px;
  padding: 2.25rem 2.45rem;
  margin-bottom: 5rem;
}

#index--page .court-content {
  margin-bottom: 3.125rem;
}

#index--page .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

#index--page .header h4 {
  font-size: 1.125rem;
  color: #27750a;
  font-weight: 700;
}

#index--page .btn {
  cursor: pointer;
  background: #27750a;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 0.5rem 1.4rem;
}

#index--page .court-item {
  display: flex;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 1.125rem 0;
}

#index--page .sub-text {
  color: #cebf09;
  font-style: italic;
  margin-top: 0.75rem;
}

#index--page .right-align {
  margin-left: auto;
}

@media only screen and (max-width: 600px) {
  #index--page .mobile-sub-text {
    font-size: 0.75rem;
  }

  #index--page #hero {
    background-image: url(../img/hero-image-mobile.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0.6875rem 1.3125rem;
    font-size: 0.875rem;
  }

  #index--page #hero h3 {
    margin: 0.1875rem 0;
    font-size: 1.125rem;
  }

  #index--page #hero-text {
    width: 80%;
  }

  #index--page #mini-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.25rem;
  }

  #index--page .mini-card {
    width: 100%;
  }

  #index--page .mini-card img {
    width: 30px;
    height: 30px;
  }

  #index--page #content {
    padding: 0;
    box-shadow: none;
    margin-top: 3rem;
  }

  #index--page .btn {
    padding: 0.72rem 1rem;
    font-size: 0.875rem;
  }

  #index--page .court-item .text {
    margin: 0 0.5rem;
  }
}
/* END OF INDEX--PAGE STYLES */

/* DASHBOARD-SEARCH--PAGE STYLES */
#dashboard-search--page #search-suggestion-box {
  display: flex;
  padding: 0 0.8rem;
  background: #e5e5e5;
  border: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  flex-wrap: wrap;
}

#dashboard-search--page .search-suggestion {
  background-color: #fff;
  padding: 0.5rem 1.125rem;
  margin: 0.75rem 0.5625rem;
  border: none;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.28);
  border-radius: 5px;
  cursor: pointer;
}

#dashboard-search--page .search-suggestion p {
  white-space: nowrap;
}

#dashboard-search--page #right-nav-items {
  padding-bottom: 5%; /* fixed value, see comment below */
  /* In actual prod, padding-bottom will be set to the height of whatever the height of the suggestion-search-box is */
}

#dashboard-search--page #recent-search-container {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

#dashboard-search--page #recent-searches {
  display: flex;
  margin-left: 2rem;
  margin-right: 0.75rem;
  flex-wrap: wrap;
}

#dashboard-search--page .recent-search {
  display: flex;
  padding: 0.55rem 0.75rem;
  margin: 0 0.625rem;
  margin-bottom: 0.5rem;
  background-color: #dadada;
}

#dashboard-search--page #recent-search-container p {
  white-space: nowrap;
}

#dashboard-search--page .recent-search img {
  margin-left: 1rem;
  cursor: pointer;
}

#dashboard-search--page #btn-tetiary {
  cursor: pointer;
  font-style: italic;
  color: #cacaca;
}

#dashboard-search--page #content {
  display: flex;
}

#dashboard-search--page #main-content {
  width: 100%;
}

#dashboard-search--page #side-content {
  margin: 0 1rem;
}

#dashboard-search--page .card-heading {
  font-size: 0.875rem;
  color: #fff;
  background: #27750a;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.48);
  border: none;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding: 0.75rem 2.625rem;
}

#dashboard-search--page .card-body {
  background: #ffffff;
  box-shadow: 0px 7px 4px rgba(199, 237, 187, 0.37);
  border-radius: 5px;
  padding: 2.875rem 1.78125rem;
  margin-bottom: 5rem;
}

#dashboard-search--page .search-item {
  background-color: #f6f6f6;
  padding: 1.5rem 0.75rem;
  margin-bottom: 1.75rem;
}

#dashboard-search--page .search-item .link {
  color: #69c448;
}

#dashboard-search--page .search-item .alt-link {
  color: #cebf09;
}

#dashboard-search--page .search-item-heading {
  font-weight: 700;
  color: #27750a;
}

#dashboard-search--page .search-item-navigation {
  color: #928989;
}

#dashboard-search--page #search-filters {
  position: sticky;
  top: 10px;
}

#dashboard-search--page .search-filter {
  width: 230px;
}

#dashboard-search--page .search-filter .card-body {
  padding: 1rem;
  margin-bottom: 2.2rem;
  max-height: 240px;
  overflow-y: scroll;
}

#dashboard-search--page .filter {
  display: flex;
  margin-bottom: 0.75rem;
  align-items: center;
}

#dashboard-search--page input[type="checkbox"] {
  height: 24px;
  width: 24px;
  margin-right: 0.75rem;
}

#dashboard-search--page #pagination {
  display: flex;
}

#dashboard-search--page .pagination-btn {
  cursor: pointer;
  display: grid;
  place-items: center;
  border: 1px solid #27750a;
  box-sizing: border-box;
  border-radius: 5px;
  width: 60px;
  height: 45px;
  margin-right: 1.375rem;
}

@media only screen and (max-width: 600px) {
  #dashboard-search--page #right-nav-items {
    padding-bottom: 0;
  }

  #dashboard-search--page #search-suggestion-box {
    padding: 0;
  }

  #dashboard-search--page input:focus {
    box-shadow: none;
  }

  #dashboard-search--page .search-suggestion {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.5rem 2rem;
    border-radius: 0;
    background-color: #f6f6f6;
    border-bottom: 1px solid #dadada;
    box-shadow: none;
  }

  #dashboard-search--page .search-suggestion:last-of-type {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: none;
  }

  #dashboard-search--page .search-results {
    margin-top: 2rem;
  }

  #dashboard-search--page .card-heading {
    padding: 0;
    background-color: #fff;
    color: #69c448;
    box-shadow: none;
  }

  #dashboard-search--page .card-body {
    padding: 0;
    padding-bottom: 2rem;
    box-shadow: none;
  }

  #dashboard-search--page .search-item {
    background-color: #fff;
    border-bottom: 1px solid #dadada;
    margin-bottom: 0;
    padding: 1.5rem 0;
  }

  #dashboard-search--page .search-item:last-of-type {
    border: 0;
  }

  #dashboard-search--page .item-text {
    font-size: 0.875rem;
  }

  #dashboard-search--page .pagination-btn {
    width: 30px;
    height: 30px;
  }

  #dashboard-search--page .pagination-btn img {
    width: 60%;
  }
}
/* END OF DASHBOARD-SEARCH--PAGE STYLES */

/* JUDGEMENT--PAGE STYLES */
#judgement--page #page-heading {
  text-align: center;
  background: #27750a;
  color: #fff;
  width: 100%;
  padding: 2.125rem 0;
  border: none;
  border-radius: 5px;
}

#judgement--page #page-heading p {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#judgement--page #content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2.3125rem 0;
  column-gap: 5.26%;
}

#judgement--page .court-content {
  background-color: #fff;
  padding: 2.6875rem 2.3125rem 5rem 1.375rem;
  border: none;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.38);
  border-radius: 5px;
}

#judgement--page h3 {
  font-size: 1.125rem;
  color: #27750a;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #dadada;
}

#judgement--page .content-body {
  display: flex;
  flex-direction: column;
}

#judgement--page #court-items {
  margin-bottom: 2rem;
}

#judgement--page .court-item {
  display: flex;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 1.125rem 0;
}

#judgement--page .sub-text {
  color: #cebf09;
  font-style: italic;
  margin-top: 0.75rem;
}

#judgement--page .right-align {
  margin-left: auto;
}

#judgement--page .btn {
  cursor: pointer;
  background-color: #27750a;
  color: #fff;
  padding: 0.5rem 1.375rem;
  margin-left: auto;
  border: none;
  border-radius: 5px;
}

@media only screen and (max-width: 1000px) {
  #judgement--page #page-heading {
    margin-top: 1rem;
  }

  #judgement--page #content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  #judgement--page .court-item {
    padding: 0.675rem 0;
  }

  #judgement--page .court-item .text {
    margin: 0 0.5rem;
  }
}
/* END OF JUDGEMENT--PAGE STYLES */

/* JUDGEMENT-OPTION-1--PAGE STYLES */
#judgement-option-1--page #page-heading {
  text-align: center;
  background: #27750a;
  color: #fff;
  width: 100%;
  padding: 2.125rem 0;
  border: none;
  border-radius: 5px;
}

#judgement-option-1--page #page-heading p {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#judgement-option-1--page #content {
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.38);
  padding: 1rem 1.375rem;
  margin: 2.3125rem 0;
  border: none;
  border-radius: 5px;
}

#judgement-option-1--page #content-title {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e5e5;
}

#judgement-option-1--page #content-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.1875rem;
  margin: 2.1875rem 0;
}

#judgement-option-1--page .case {
  display: flex;
  align-items: start;
  background: #f7f7f7;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.38);
  padding: 1.84rem 1.72rem;
  border: none;
  border-radius: 5px;
}

#judgement-option-1--page .case-default-border {
  border-left: 8px solid #69c448;
}

#judgement-option-1--page .case-yellow-border {
  border-left: 8px solid #cebf09;
}

#judgement-option-1--page .case-peach-border {
  border-left: 8px solid #f8cd8d;
}

#judgement-option-1--page .case-pink-border {
  border-left: 8px solid #efebbecc;
}

#judgement-option-1--page .case a {
  color: #cebf09;
  font-style: italic;
}

#judgement-option-1--page .case .text {
  margin: 0;
  margin-left: 1.25rem;
}

#judgement-option-1--page .case-title {
  color: #69c448;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

#judgement-option-1--page .mid-yellow {
  color: #cebf09;
}

#judgement-option-1--page .case-number {
  font-style: italic;
  margin-bottom: 1.25rem;
}

#judgement-option-1--page .case-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.125rem;
}

#judgement-option-1--page #pagination {
  display: flex;
}

#judgement-option-1--page .pagination-btn {
  cursor: pointer;
  display: grid;
  place-items: center;
  border: 1px solid #27750a;
  box-sizing: border-box;
  border-radius: 5px;
  width: 60px;
  height: 45px;
  margin-right: 1.375rem;
}

@media only screen and (max-width: 1000px) {
  #judgement-option-1--page #page-heading {
    margin-top: 1rem;
  }

  #judgement-option-1--page #content {
    padding: 1rem 1rem;
  }

  #judgement-option-1--page #content-body {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  #judgement-option-1--page .case {
    padding: 1.5rem 1rem;
  }

  #judgement-option-1--page .case .text {
    margin-left: 0.75rem;
  }

  #judgement-option-1--page .case-title {
    font-size: 1rem;
  }

  #judgement-option-1--page .pagination-btn {
    width: 30px;
    height: 30px;
    margin-right: 0.75rem;
  }

  #judgement-option-1--page .pagination-number {
    width: auto;
    padding: 0 0.5rem;
  }

  #judgement-option-1--page .pagination-btn img {
    width: 60%;
  }
}
/* END OF JUDGEMENT-OPTION-1--PAGE STYLES */

/* JUDGEMENT-OPTION-1-DETAIL--PAGE STYLES */
#judgement-option-1-detail--page #body .inner-container {
  margin: 0 3.02% 0 0.5%;
}

#judgement-option-1-detail--page #content {
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.38);
  margin-top: 1.4375rem;
  border: none;
  border-radius: 5px;
  padding-bottom: 3px;
}

#judgement-option-1-detail--page #rows {
  position: sticky;
  z-index: 30;
}

#judgement-option-1-detail--page #title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 1.125rem 4.5625rem;
  border-bottom: 1px solid #e5e5e5;
}
@media only screen and (max-width: 1000px) {
  #judgement-option-1-detail--page #title-row {
    padding: 1.125rem 0.5625rem;
  }
}

#judgement-option-1-detail--page #title {
  color: #27750a;
  font-size: 1.5rem;
  font-weight: 700;
}

#judgement-option-1-detail--page .btn {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #27750a;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 5px;
}

#judgement-option-1-detail--page .btn span {
  margin-right: 0.75rem;
}

#judgement-option-1-detail--page #button-extension {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#judgement-option-1-detail--page .d-none {
  display: none;
}

#judgement-option-1-detail--page .extension-row {
  padding: 0.75rem 0;
  text-align: center;
  color: #69c448;
  border-bottom: 1px solid #dadada;
}

#judgement-option-1-detail--page #nav-row {
  background-color: #ffffff;
  padding: 1.125rem 4.5625rem;
  border-bottom: 1px solid #e5e5e5;
}

#judgement-option-1-detail--page #nav-row ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#judgement-option-1-detail--page #content-body {
  height: 100%;
  display: flex;
  padding-top: 0.5rem;
}

#judgement-option-1-detail--page #main-content {
  position: relative;
  width: 73.5%;
  min-height: 100vh;
}
@media only screen and (max-width: 1000px) {
  #judgement-option-1-detail--page #content-body {
    display: block;
  }
  #judgement-option-1-detail--page #main-content {
    width: 100%;
  }
}

#judgement-option-1-detail--page #comment-icon {
  position: absolute;
  top: 13px;
  right: 24px;
}

#judgement-option-1-detail--page #case-info {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 4rem 0;
  padding: 0 10%;
}

#judgement-option-1-detail--page #case-title {
  color: #69c448;
  margin-bottom: 1.25rem;
}

#judgement-option-1-detail--page .yellow {
  color: #cebf09;
}

#judgement-option-1-detail--page #case-number {
  color: #101010;
  margin-bottom: 0.375rem;
}

#judgement-option-1-detail--page #court-type {
  /* margin-top: 2.25rem; */
  text-transform: uppercase;
}

#judgement-option-1-detail--page #case-id {
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 2.75rem;
}

#judgement-option-1-detail--page .green-text {
  color: #27750a;
  font-weight: 400;
}

#judgement-option-1-detail--page #appelent {
  margin-top: 1.8125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

#judgement-option-1-detail--page .other-appelent {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

#judgement-option-1-detail--page #last-appelent,
#judgement-option-1-detail--page #last-respondent {
  margin-bottom: 1.5rem;
}

#judgement-option-1-detail--page #respondent {
  margin-top: 1.8125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

#judgement-option-1-detail--page .other-respondent {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

#judgement-option-1-detail--page #ending-text {
  font-weight: 400;
}

#judgement-option-1-detail--page #case-info-sections {
  padding: 0 2.25rem;
}

#judgement-option-1-detail--page .section-title {
  padding: 0.75rem 1.125rem;
  background-color: #f6f6f6;
  color: #27750a;
  font-size: 1.5rem;
}

#judgement-option-1-detail--page #justices-section .section-title p {
  display: inline-block;
  border-bottom: 4px solid #cebf09;
  border-radius: 5px;
}

#judgement-option-1-detail--page .section-body-row p {
  color: #000000;
}

#judgement-option-1-detail--page #justices-section .section-body {
  margin: 3rem 0;
}

#judgement-option-1-detail--page #justices-section .section-body-row p {
  color: #000000;
  font-size: 1.5rem;
}

#judgement-option-1-detail--page .section-body .section-body-row .sub-text {
  color: #27750a;
  font-size: 1rem;
  font-weight: 600;
}

#judgement-option-1-detail--page .section-body-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

#judgement-option-1-detail--page .section-title {
  margin-top: 2.5rem;
}

#judgement-option-1-detail--page .section-body {
  padding-top: 2.5rem;
  padding-bottom: 3.1825rem;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.9;
}

#judgement-option-1-detail--page #side-content {
  z-index: 88;
  position: sticky;
  overflow-y: auto;
  scrollbar-width: thin;
  font-size: 0.875rem;
  width: 26.5%;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#judgement-option-1-detail--page #side-content::-webkit-scrollbar-track {
  box-shadow: none;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.987);
  border-radius: 10px;
  background-color: #d8d8d8;
  overflow-x: auto;
}

#judgement-option-1-detail--page #side-content::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
  overflow-x: auto;
}

#judgement-option-1-detail--page #side-content::-webkit-scrollbar-thumb {
  box-shadow: none;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  background-color: #a0a0a0;
  overflow-x: auto;
}

#judgement-option-1-detail--page #side-content-wrapper {
  position: relative;
}

#judgement-option-1-detail--page #side-content-title {
  position: sticky;
  top: 0;
  background-color: #dadada;
  padding: 0.75rem 1.75rem;
  color: #101010;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

#judgement-option-1-detail--page .ratio-decendi {
  padding: 1.375rem 1.75rem;
  border-bottom: 1px solid #dadada;
}

#judgement-option-1-detail--page .ratio-decendi a {
  color: #cebf09;
}

#judgement-option-1-detail--page .ratio-decendi-title {
  color: #69c448;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
/* END OF JUDGEMENT-OPTION-1-DETAIL--PAGE STYLES */

/* SUBSCRIPTION--PAGE STYLES */
#subscription--page #page-heading {
  text-align: center;
  background: #27750a;
  color: #fff;
  width: 100%;
  padding: 2.125rem 0;
  margin-top: 2.125rem;
  border: none;
  border-radius: 5px;
}

#subscription--page #page-heading p {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#subscription--page #tab-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1.75rem 2.7rem;
  margin: 1.25rem 0;
  border: none;
  border-radius: 5px;
}

#subscription--page .tab {
  cursor: pointer;
  color: #928989;
  font-size: 1.125rem;
  font-weight: 600;
}

#subscription--page #active-tab {
  color: #27750a;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #27750a;
}

#subscription--page #content {
  margin: 4rem 0;
}

#subscription--page #content-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem 0;
}

#subscription--page #content-body img {
  max-width: 100%;
}

#subscription--page .btn {
  width: fit-content;
  color: #fff;
  background: #27750a;
  padding: 0.625rem 4rem;
  border: none;
  border-radius: 5px;
}

@media only screen and (max-width: 600px) {
  #subscription--page #tab-bar {
    align-items: start;
    padding: 1.75rem 1rem;
  }

  #subscription--page .tab {
    font-size: 0.875rem;
  }

  #subscription--page #active-tab {
    padding-bottom: 0.5rem;
  }
}
/* END OF SUBSCRIPTION--PAGE STYLES */

/* PLANS--PAGE STYLES */
#plans--page #page-heading {
  text-align: center;
  background: #27750a;
  color: #fff;
  width: 100%;
  padding: 2.125rem 0;
  margin-top: 2.125rem;
  border: none;
  border-radius: 5px;
}

#plans--page #page-heading p {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#plans--page #tab-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1.75rem 2.7rem;
  margin: 1.25rem 0;
  border: none;
  border-radius: 5px;
}

#plans--page .tab {
  cursor: pointer;
  color: #928989;
  font-size: 1.125rem;
  font-weight: 600;
}

#plans--page #active-tab {
  color: #27750a;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #27750a;
}

#plans--page #content {
  margin: 4rem 0;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.44);
  background-image: url(../img/rings-bg.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 1.5rem 4%;
  border: none;
  border-radius: 10px;
}

#plans--page #title {
  color: #69c448;
  font-size: 1.5rem;
  font-weight: 600;
}

#plans--page #content-tab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.4);
  padding: 0.75rem 5.125rem;
  margin: 3rem 0;
  border: none;
  border-radius: 5px;
}

#plans--page .content-tab {
  color: #928989;
  padding: 0.75rem 0;
}

#plans--page #active-content-tab {
  background-color: #69c448;
  color: #fff;
  padding-left: 3rem;
  padding-right: 3rem;
  border: none;
  border-radius: 5px;
}

#plans--page #content-options {
  display: flex;
  align-items: center;
}

#plans--page .option-group {
  margin-right: 5.8125rem;
}

#plans--page .option-group input {
  margin-right: 1.125rem;
}

#plans--page .option-group input:checked + label {
  font-weight: 600;
  color: #27750a;
}

#plans--page #plans {
  display: flex;
  justify-content: space-between;
  gap: 4.55%;
  margin: 4.5rem 0;
}

#plans--page .plan {
  text-align: center;
  background: #ffffff;
  box-shadow: -4px 0px 4px rgba(199, 237, 187, 0.26),
    0px 4px 6px 2px rgba(199, 237, 187, 0.56);
  padding: 2.25rem 0.875rem;
  border: none;
  border-radius: 5px;
}

#plans--page .plan-title {
  color: #27750a;
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.25rem;
  margin-bottom: 1.125rem;
  border-bottom: 3px solid #cebf09;
}

#plans--page .plan-price {
  color: #27750a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
}

#plans--page .plan-text {
  margin-bottom: 3.3125rem;
}

#plans--page .btn {
  width: fit-content;
  color: #fff;
  background: #27750a;
  padding: 0.625rem 4rem;
  border: none;
  border-radius: 5px;
}

@media only screen and (max-width: 600px) {
  #plans--page #tab-bar {
    align-items: start;
    padding: 1.75rem 1rem;
  }

  #plans--page .tab {
    font-size: 0.875rem;
  }

  #plans--page #active-tab {
    padding-bottom: 0.5rem;
  }

  #plans--page #content {
    padding: 1.5rem 1.25rem;
  }

  #plans--page #content-tab-row {
    padding: 0.5rem;
  }

  #plans--page .content-tab {
    color: #928989;
    padding: 0.5rem 0;
  }

  #plans--page #active-content-tab {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  #plans--page .option-group {
    margin-right: 2.8125rem;
  }

  #plans--page .option-group input {
    margin-right: 0.5rem;
  }

  #plans--page #plans {
    flex-direction: column;
  }
}
/* END OF PLANS--PAGE STYLES */

/* SUBSCRIBE--PAGE STYLES */
#subscribe--page #page-heading {
  text-align: center;
  background: #27750a;
  color: #fff;
  width: 100%;
  padding: 2.125rem 0;
  margin-top: 2.125rem;
  border: none;
  border-radius: 5px;
}

#subscribe--page #page-heading p {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#subscribe--page #tab-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1.75rem 2.7rem;
  margin: 1.25rem 0;
  border: none;
  border-radius: 5px;
}

#subscribe--page .tab {
  cursor: pointer;
  color: #928989;
  font-size: 1.125rem;
  font-weight: 600;
}

#subscribe--page #active-tab {
  color: #27750a;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #27750a;
}

#subscribe--page #content {
  margin: 4rem 0;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.44);
  background-image: url(../img/rings-bg.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 1.5rem 2.625rem;
  border: none;
  border-radius: 10px;
}

#subscribe--page #title {
  color: #69c448;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.125rem;
}

#subscribe--page #content-options {
  display: flex;
  align-items: center;
}

#subscribe--page .option-group {
  margin-right: 5.8125rem;
}

#subscribe--page .option-group input {
  margin-right: 1.125rem;
}

#subscribe--page .option-group input:checked + label {
  font-weight: 600;
  color: #27750a;
}

#subscribe--page #content-body form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 2.5rem 0;
}

#subscribe--page #payment-method {
  display: flex;
  align-items: center;
}

#subscribe--page #payment-method p {
  margin-right: 2rem;
}

#subscribe--page #text-input > div {
  margin-bottom: 2.25rem;
}

#subscribe--page #text-input input {
  background-color: #f7f7f7;
  filter: none;
  width: 100%;
  margin: 0.5rem 0;
}

#subscribe--page #text-input input::placeholder {
  color: #000000;
}

#subscribe--page .radio-div {
  display: flex;
  margin: 2rem 0;
  align-items: center;
}

#subscribe--page .radio-div > div {
  display: flex;
  align-items: center;
  margin-right: 3rem;
}

#subscribe--page .radio-div input {
  height: 24px;
  width: 24px;
  margin-right: 0.7rem;
  background-color: #69c448;
  z-index: 0;
}

#subscribe--page .radio-div input:checked + label {
  font-weight: 600;
  color: #27750a;
}

#subscribe--page button {
  align-self: center;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: #27750a;
  border: none;
  border-radius: 5px;
  margin: 2rem 0;
}

@media only screen and (max-width: 600px) {
  #subscribe--page #tab-bar {
    align-items: start;
    padding: 1.75rem 1rem;
  }

  #subscribe--page .tab {
    font-size: 0.875rem;
  }

  #subscribe--page #active-tab {
    padding-bottom: 0.5rem;
  }

  #subscribe--page #content {
    padding: 1.5rem 1.25rem;
  }

  #subscribe--page .option-group {
    margin-right: 2.8125rem;
  }

  #subscribe--page .option-group input {
    margin-right: 0.5rem;
  }

  #subscribe--page #content-body {
    padding-left: 0;
    padding-right: 0;
  }

  #subscribe--page .radio-div {
    font-size: 0.875rem;
  }

  #subscribe--page .radio-div p {
    margin-right: 2rem;
    width: 100%;
  }

  #subscribe--page .radio-div > div {
    margin-right: 1.5rem;
  }

  #subscribe--page #payment-method {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* END OF SUBSCRIBE--PAGE STYLES */

/* SUBSCRIPTION-FILLED--PAGE STYLES */
#subscription-filled--page #page-heading {
  text-align: center;
  background: #27750a;
  color: #fff;
  width: 100%;
  padding: 2.125rem 0;
  margin-top: 2.125rem;
  border: none;
  border-radius: 5px;
}

#subscription-filled--page #page-heading p {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#subscription-filled--page #tab-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1.75rem 2.7rem;
  margin: 1.25rem 0;
  border: none;
  border-radius: 5px;
}

#subscription-filled--page .tab {
  cursor: pointer;
  color: #928989;
  font-size: 1.125rem;
  font-weight: 600;
}

#subscription-filled--page #active-tab {
  color: #27750a;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #27750a;
}

#subscription-filled--page #content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.44);
  border: none;
  border-radius: 10px;
  margin: 4rem 0;
  padding: 3rem 0;
}

#subscription-filled--page #subscription-details {
  position: relative;
  display: flex;
  background: #f7f7f7;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1.75rem 1.8125rem;
  margin: 0 3.4rem;
  margin-bottom: 2.8125rem;
  border: none;
  border-radius: 5px;
}

#subscription-filled--page #subscription-details #status {
  position: absolute;
  top: 1.25rem;
  right: 3rem;
  display: flex;
  align-items: center;
}

#subscription-filled--page #subscription-details #status span {
  color: #cebf09;
  font-weight: 600;
  margin-left: 1.125rem;
}

#subscription-filled--page #subscription-details .text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

#subscription-filled--page #subscription-details #details-title {
  font-weight: 600;
}

#subscription-filled--page #subscription-details #plan-type {
  color: #69c448;
  font-weight: 600;
}

#subscription-filled--page #subscription-details input {
  width: initial;
  margin-bottom: 1.5rem;
}

#subscription-filled--page #subscription-details label {
  color: #27750a;
}

#subscription-filled--page #subscription-details #expiration-date {
  color: #69c448;
}

#subscription-filled--page #subscription-details .image {
  width: 50%;
  display: flex;
  justify-content: center;
}

#subscription-filled--page #content-body img {
  max-width: 100%;
}

#subscription-filled--page #subscription-btn {
  width: fit-content;
  background: #f7f7f7;
  margin-left: auto;
  margin-right: 3.4rem;
  padding: 0.8125rem 1.625rem;
  border: none;
  border-radius: 5px;
}

#subscription-filled--page #table {
  margin-top: 3rem;
}

#subscription-filled--page .table {
  white-space: nowrap;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

#subscription-filled--page .table thead {
  text-align: left;
}

#subscription-filled--page .table tbody tr:nth-child(odd) {
  background-color: #f7f7f7;
}

#subscription-filled--page .table tr th {
  padding-bottom: 2rem;
  color: #cebf09;
}

#subscription-filled--page .table tr td {
  padding: 1rem 0;
}

#subscription-filled--page .table tr th:first-child {
  padding-left: 3.4rem;
  padding-right: 0;
}

#subscription-filled--page .table tr th:last-child {
  padding-right: 3.4rem;
  padding-left: 0;
}

#subscription-filled--page .table tr td:first-child {
  padding-left: 3.4rem;
  padding-right: 0;
}

/* #subscription-filled--page .table tr td:last-child {
	padding-right: 3.4rem;
	margin-left:1rem;
  } */

@media only screen and (max-width: 600px) {
  #subscription-filled--page #tab-bar {
    align-items: start;
    padding: 1.75rem 1rem;
  }

  #subscription-filled--page .tab {
    font-size: 0.875rem;
  }

  #subscription-filled--page #active-tab {
    padding-bottom: 0.5rem;
  }

  #subscription-filled--page #content {
    box-shadow: none;
  }

  #subscription-filled--page #subscription-details {
    margin: 0 0 2.8125rem 0;
  }

  #subscription-filled--page #subscription-details .image {
    display: none;
  }

  #subscription-filled--page #subscription-details #status {
    top: 0.75rem;
    right: 1rem;
  }

  #subscription-filled--page #subscription-btn {
    margin-right: 0;
  }

  #subscription-filled--page .table {
    display: block;
    overflow: auto;
  }

  #subscription-filled--page .table tr th {
    padding-right: 2rem;
  }

  #subscription-filled--page .table tr td {
    padding-right: 2rem;
  }

  #subscription-filled--page .table tr th:first-child {
    padding-left: 1rem;
    padding-right: 2rem;
  }

  #subscription-filled--page .table tr td:first-child {
    padding-left: 1rem;
    padding-right: 2rem;
  }
}
/* END OF SUBSCRIPTION-FILLED--PAGE STYLES */

/* NOTES--PAGE STYLES */
#notes--page #page-heading {
  text-align: center;
  background: #27750a;
  color: #fff;
  width: 100%;
  padding: 2.125rem 0;
  margin-top: 2.125rem;
  border: none;
  border-radius: 5px;
}

#notes--page #page-heading p {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#notes--page #content {
  background: #ffffff;
  padding-bottom: 3rem;
  margin: 3.4375rem 0;
  box-shadow: 0px 4px 4px rgba(199, 237, 187, 0.44);
  border-radius: 10px;
}

#notes--page #content img {
  cursor: pointer;
}

#notes--page #content-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid #dadada;
}

#notes--page #filter {
  display: flex;
  align-items: center;
}

#notes--page #filter p {
  color: #27750a;
  font-size: 1.125rem;
  margin-left: 1.25rem;
}

#notes--page .note {
  padding: 2rem 1.75rem 1.75rem;
  border-bottom: 1px solid #dadada;
}

#notes--page .note-heading,
#notes--page .note-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

#notes--page .note-title {
  color: #69c448;
  font-size: 1.5rem;
  font-weight: 600;
}

#notes--page .note-text {
  color: #928989;
}

#notes--page .note-time {
  color: #cebf09;
  margin-left: 1rem;
  margin-top: auto;
}
/* END OF NOTES--PAGE STYLES */

/* PROFILE-UPDATE--PAGE STYLES */
#profile-update--page #body {
  display: flex;
}

#profile-update--page h2 {
  color: #69c448;
  font-size: 2.25rem;
  font-weight: 600;
  padding: 0.75rem 0;
}

#profile-update--page #profile-sidebar {
  min-width: 270px;
  max-width: 270px;
  border-right: 1px solid #c4c4c4;
  height: 90vh;
  position: sticky;
  top: 110px;
}

#profile-update--page .profile-sidebar-item {
  display: flex;
  align-items: center;
  padding: 1.125rem 0;
  padding-left: 2.25rem;
  border-bottom: 1px solid #c4c4c4;
  font-size: 1.1rem;
  color: #606060;
  cursor: pointer;
}

#profile-update--page .profile-sidebar-item p {
  margin-left: 1rem;
}

#profile-update--page #active-chevron {
  display: none;
  margin-left: auto;
  padding-right: 2.25rem;
}

#profile-update--page #active-profile-sidebar-item {
  padding: 1.9375rem 0;
  padding-left: 2.25rem;
  font-weight: 600;
  color: #000;
}

#profile-update--page #active-profile-sidebar-item #active-chevron {
  display: block;
}

#profile-update--page input[type="file"] {
  display: none;
}

#profile-update--page #profile-div {
  width: 100%;
  padding: 0 16.57%;
  margin-top: 2rem;
}

#profile-update--page #profile-img {
  width: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

#profile-update--page #image-div {
  position: relative;
}

#profile-update--page #image-div label {
  position: absolute;
  top: 55%;
  right: 0;
}

#profile-update--page #form {
  width: 100%;
  margin-bottom: 3rem;
}

#profile-update--page .two-input-row {
  display: flex;
  column-gap: 2.25rem;
}

#profile-update--page .input {
  position: relative;
  padding: 1.28125rem 0;
  width: 100%;
}

#profile-update--page input {
  background-color: transparent;
  width: 100%;
  font-size: 1.125rem;
}

#profile-update--page p.placeholder {
  position: absolute;
  top: 0;
  left: 30px;
  background-color: #f7f7f7;
  padding: 0.1rem 0.75rem;
  font-size: 1.125rem;
  color: #27750a;
  font-weight: 600;
  opacity: 0;
}

#profile-update--page input:not([type="checkbox"]) {
  width: 100%;
  height: 3.75rem;
  padding: 0 2rem;
  border: 1px solid #27750a;
  border-radius: 5px;
  position: relative;
}

#profile-update--page input:not([type="checkbox"])::placeholder,
p.l {
  color: #27750a;
  font-weight: 600;
  font-size: 1rem;
}

#profile-update--page input:not([type="checkbox"]):focus::placeholder {
  opacity: 0;
}

#profile-update--page input:focus + p.placeholder {
  opacity: 1;
}

#profile-update--page input:valid + p.placeholder {
  opacity: 1;
}

#profile-update--page .upload-id-label {
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

#profile-update--page .upload-id {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  background-color: #cebf09;
  padding: 1.1rem 2.75rem;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  margin-bottom: 2rem;
}

#profile-update--page .upload-id img {
  margin-right: 2rem;
}

#profile-update--page .button {
  display: block;
  width: 100%;
  cursor: pointer;
  background-color: #27750a;
  padding: 1.1rem 2.75rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  border-radius: 5px;
}

.mx-auto {
  margin: 0 auto;
  display: block;
}
.img-404 {
  margin: 40px 20px;
}
.no-avai {
  font-weight: 600;
  text-align: center;
  padding: 10px 30px;
  background-color: #27750a;
  color: #fff;
  border-radius: 8px;
  margin-top: 20px;
}

.custom-font {
  font-family: "Montserrat", sans-serif;
}

#pc-head {
  display: flex;
  align-items: center;
  padding: 30px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.pc-ti1 {
  display: flex;
  align-items: center;
}

.pc-ti2 {
  display: flex;
  margin-left: auto;
}

#pc-card > img {
  display: flex;
  margin-left: auto;
}
#pc-num {
  margin-top: 48px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 18px;
}
#pc-card-foot {
  display: flex;
}
#pc-input-head {
  position: absolute;
  z-index: 1;
  margin-left: 20px;
  margin-top: 10px;
  color: #737a91;
  font-size: 14px;
}
#pc-input {
  border: 1px solid #dfe2e6 !important;
  box-sizing: border-box !important;
  border-radius: 8px !important;
  padding-top: 40px !important;
  padding-bottom: 15px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  width: 100%;
  outline: none !important;
  color: #111111;
  font-size: 18px;
  background-color: #fff;
}
#row-input {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  width: 100%;
}
#row-input > div {
  width: 100%;
}
#pc-button {
  max-width: 375px;
  margin: 40px auto;
}
#pc-form-sub {
  background: #27750a;
  border-radius: 5px;
  padding: 15px;
  margin: auto;
  width: 100%;
  font-size: 18px;
  color: #fff;
  outline: none !important;
  border: none !important;
  cursor: pointer;
}

@media (max-width: 425px) {
  #pc-head {
    display: block;
  }
  .pc-ti2 {
    margin-top: 20px;
  }
  #row-input {
    display: block;
  }
  #row-i-2 {
    margin-top: 20px;
  }
}

@media (min-width: 601px) and (max-width: 1300px) {
  #profile-update--page .two-input-row {
    display: block;
  }
  #profile-update--page #profile-div {
    padding: 0 10%;
  }
}

@media (max-width: 600px) {
  #profile-update--page #profile-sidebar {
    max-width: 100%;
    height: auto;
    position: relative;
    top: 0;
  }
  #profile-update--page #body {
    display: block;
  }
  #profile-update--page .two-input-row {
    display: block;
  }
  #profile-update--page #profile-div {
    padding: 0 5%;
  }
}

@media (max-width: 1000px) {
  .desktop-only {
    display: none;
  }
}

/* END OF PROFILE-UPDATE--PAGE STYLES */

/* DASHBOARD-SEARCH--PAGE STYLES */
/* END OF DASHBOARD-SEARCH--PAGE STYLES */
