h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
a,
div,
span {
  font-family: "Roboto";
}

.bg-white {
  background-color: #fff;
}

#class-finder {
  display: flex;
}

#class-finder.full-view {
  padding: 0 !important;
  overflow: hidden;
}

#class-finder .filters {
  position: relative;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  width: 350px;
  text-align: left;
  border-right: 1px solid #0000000d;
}

#class-finder .filters .filter-box {
  font-weight: 300;
  font-size: 12px;
  line-height: 14.52px;
  color: #1f232380;
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #0000000d;
  display: flex;
  justify-content: space-between;
}

#class-finder .filters .filter-box.multiple {
  padding: 20px 20px 0;
  align-items: start;
}

#class-finder .filters .filter-control {
  color: #53d89a;
  cursor: pointer;
}

#class-finder .filters .filter-box label {
  font-size: 14px;
  line-height: 17.94px;
}

#class-finder .filters .filter-box .selected-locations {
  margin-top: 5px;
}

#class-finder .result-content {
  width: 100%;
  padding: 20px;
  text-align: left;
  overflow: auto;
}
#class-finder .results {
  width: 100%;
}

#class-finder .filters label {
  font-size: 16px;
  font-weight: 300;
  color: #1f2323bf;
}

#class-finder .result-content h2 {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 0;
}

#class-finder .result-content p {
  margin-top: 0;
  color: #1f2323bf;
}

#class-finder .result-content .bar {
  background: #0000000a;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 20px;
}

#class-finder .results .result-card {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 5px;
  border: 1px solid #0000001a;
  width: auto;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}

#class-finder .results .result-card > p {
  display: none;
}

#class-finder .results .result-card .overview {
  grid-column: span 3 / span 3;
}

#class-finder .results .result-card .overview h2,
#ryb-connect
  #ryb-openings-result
  .step-view
  #class-finder
  .results
  .result-card
  .overview
  h2 {
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: #000;
}

#class-finder .results .result-card .overview p {
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000000bf;
}

#class-finder .results .result-card .age,
#class-finder .results .result-card .gender,
#class-finder .results .result-card .price,
#class-finder .results .result-card .button {
  grid-column: span 1 / span 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#class-finder .results .result-card .age .text,
#class-finder .results .result-card .gender .text {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
}

#class-finder .results .result-card .price {
  line-height: 20px;
  font-size: 16px;
  font-weight: 400;
}

#class-finder .results .result-card .price .text {
  font-weight: 700;
}

#class-finder .results .result-card .calendar {
  grid-column: span 2 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#class-finder .results .result-card .button {
  justify-content: end;
}

#class-finder .results .result-card .calendar .text {
  font-size: 13px;
  line-height: 16px;
}

#class-finder button.enroll-class,
#class-finder a.enroll-class {
  background: linear-gradient(228.01deg, #56dad4 0%, #53d89a 82.24%);
  box-shadow: 0px 10px 20px 0px #56dac980;
  width: 100px;
  height: 40px;
  border-radius: 10px;
  transition: 0.3s all;
  color: #fff;
  cursor: pointer;
  border: none;
}

#class-finder button.enroll-class.waitlist {
  background: linear-gradient(228.01deg, #a4a4a4 0%, #808080 82.24%);
  box-shadow: 0px 10px 20px 0px #a4a4a44d;
}

#class-finder button.trial-full {
  cursor: default !important;
  opacity: 0.7;
  pointer-events: none;
}
#class-finder .result-card .icon {
  display: flex;
  align-items: center;
  margin-right: 5px;
}

#class-finder button.enroll-class:hover,
#class-finder a.enroll-class:hover {
  box-shadow: none;
  transition: 0.3s all;
}

/* Handles the overlay */
.ryb-connect-overlay {
  background: linear-gradient(
    264.9deg,
    #56dad4 4.1%,
    rgba(83, 216, 154, 0.85) 95.9%
  );
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: -99;
  opacity: 0;
  transition: 0.4s all;
  display: flex;
  justify-content: space-around;
  align-items: center;
  pointer-events: none;
}

.ryb-connect-overlay.show {
  opacity: 1;
  transition: 0.4s all;
  z-index: 99;
  pointer-events: all;
}

.ryb-connect-overlay .ryb-connect-modal {
  border: 1px solid #0000000d;
  background: #fff;
  border-radius: 15px;
  width: 460px;
  height: auto;
  padding: 20px;
}

.ryb-connect-overlay .ryb-connect-modal {
  transform: translateY(40px);
  transition: 0.4s all;
}

.ryb-connect-overlay.show .ryb-connect-modal {
  transform: translateY(0);
  transition: 0.4s all;
}

.ryb-connect-modal .modal-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 18.15px;
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
}

.ryb-connect-modal .modal-address {
  font-weight: 300;
  font-size: 12px;
  line-height: 14.52px;
  color: #000000bf;
  margin-top: 0;
  margin-bottom: 0;
}

.ryb-connect-modal .modal-price {
  font-weight: 700;
  font-size: 16px;
  line-height: 19.36px;
  color: #0f172a;
}

.ryb-connect-modal .modal-total-price {
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
  color: #0f172a;
}

.ryb-connect-modal .main-modal-data .age,
.ryb-connect-modal .main-modal-data .gender,
.ryb-connect-modal .main-modal-data .modal-meeting-day {
  font-weight: 600;
  font-size: 13px;
  line-height: 15.73px;
  color: #0f172a;
}

.ryb-connect-modal .main-modal-data .modal-start-time,
.ryb-connect-modal .main-modal-data .modal-end-time {
  font-weight: 300;
  font-size: 13px;
  line-height: 15.73px;
  color: #0f172a;
}

.ryb-connect-modal .top-modal-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ryb-connect-modal .top-modal-data > p {
  display: none;
}

.ryb-connect-modal .top-modal-data .left {
  text-align: left;
}

.ryb-connect-modal .main-modal-data {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.ryb-connect-modal .line {
  border-bottom: 1px solid #0000000d;
}

.ryb-connect-modal .modal-description-title {
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: #000000bf;
  margin-bottom: 20px;
  text-align: left;
}

.ryb-connect-modal .modal-description {
  font-weight: 300;
  font-size: 13px !important;
  line-height: 20px;
  text-align: left;
  color: #000000bf;
}

.ryb-connect-modal .main-modal-data > p {
  display: none;
}

.ryb-connect-modal .main-modal-data .age,
.ryb-connect-modal .main-modal-data .gender,
.ryb-connect-modal .main-modal-data .calendar {
  display: flex;
  gap: 5px;
}
.ryb-connect-modal .main-modal-data .age .text,
.ryb-connect-modal .main-modal-data .gender .text,
.ryb-connect-modal .main-modal-data .calendar .text {
  text-align: left;
}
.ryb-connect-modal .main-modal-data .age > p,
.ryb-connect-modal .main-modal-data .gender > p,
.ryb-connect-modal .main-modal-data .calendar > p {
  display: none;
}

.ryb-connect-modal .main-modal-data .age,
.ryb-connect-modal .main-modal-data .calendar {
  grid-column: span 3 / span 3;
}

.ryb-connect-modal .main-modal-data .calendar {
  margin-top: -4px;
}

.ryb-connect-modal .main-modal-data .calendar .text {
  margin-top: -3px;
}

.ryb-connect-modal .main-modal-data .gender {
  grid-column: span 2 / span 2;
}

.ryb-connect-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: end;
  align-items: center;
  margin-top: 60px;
}

.ryb-connect-modal .registration-form,
.ryb-connect-modal .modal-content {
  opacity: 0;
  pointer-events: none;
  height: 0;
  transform: translateY(-20px);
  transition: 0.4s all;
}

.ryb-connect-modal .registration-form.show-field,
.ryb-connect-modal .modal-content.show-field {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  height: auto;
  transition: 0.4s all;
}

.ryb-connect-modal .registration-form .form-name {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 17.58px;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 15px;
}

.ryb-connect-modal form input {
  width: 100%;
  box-sizing: border-box;
}

.ryb-connect-modal form {
  text-align: right;
}

.ryb-connect-modal .modal-actions .register-button {
  width: 100%;
  border: 0px solid transparent;
  background-color: #56dad4;
  color: #fff;
  font-size: 15px;
  line-height: 17.58px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  height: 50px;
  box-shadow: 0px 10px 20px 0px #56dad466;
  transition: 0.4s all;
}

.ryb-connect-modal .modal-actions .register-button:hover,
.ryb-connect-modal .modal-actions .already-registered-button:hover {
  box-shadow: none;
  transition: 0.4s all;
}

.ryb-connect-modal .modal-actions .already-registered-button {
  width: 100%;
  border: 0px solid transparent;
  background-color: #53d89a;
  color: #fff;
  font-size: 15px;
  line-height: 17.58px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  height: 50px;
  box-shadow: 0px 10px 20px 0px #53d89a66;
  transition: 0.4s all;
}

#registration-form {
  padding-top: 2rem;
}

#registration-form .input-wrapper {
  margin-bottom: 10px;
}

#registration-form .input-wrapper input {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid #0000001a;
  border-radius: 5px;
}

#registration-form .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#registration-form .checkbox-wrapper label {
  font-size: 14px;
}

.inner-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: 0.4s;
  background-color: #fff;
  box-shadow: 4px 0 6px -1px rgb(0 0 0 / 0.1), 2px 0 4px -2px rgb(0 0 0 / 0.1);
  border-left: 1px solid #0000000d;
}

.inner-filter.active {
  left: 100%;
  pointer-events: all;
  opacity: 1;
  transition: 0.4s;
}

.filter-flex {
  display: flex;
  gap: 15px;
}

.back-arrow {
  font-size: 21px;
}

.back-arrow:hover {
  cursor: pointer;
  color: #53d89a;
  transition: 0.4s;
}

#age-radio,
#class-type,
#locations {
  padding: 10px;
}

#age-radio input[type="radio"] {
  accent-color: #53d89a;
  background-color: #fff;
}

#age-radio input[type="radio"]:focus-visible,
#age-radio input[type="radio"]:focus {
  outline: none;
}

#age-radio input[type="radio"]:after {
  width: 9px;
  height: 9px;
  border-radius: 15px;
  top: 0;
  left: 0;
  position: relative;
  background-color: #d1d3d1;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 3px solid white;
  outline: 1px solid #d1d3d1;
  transition: 0.4s all;
  cursor: pointer;
}

#age-radio input[type="radio"]:disabled:after {
  pointer-events: none;
  background-color: #ededed;
  outline: 1px solid #ededed;
}

#age-radio input[type="radio"]:disabled + label {
  color: #ededed;
}

#age-radio input[type="radio"]:checked:after {
  width: 9px;
  height: 9px;
  border-radius: 15px;
  top: 0;
  left: 0;
  position: relative;
  background-color: #53d89a;
  content: "";
  display: inline-block;
  visibility: visible;
  outline: 1px solid #d1d3d1;
  border: 3px solid #fff;
  transition: 0.4s all;
}

#class-type input:focus-visible,
#class-type input:focus,
#locations input:focus-visible,
#locations input:focus {
  border: none;
  outline: none;
}

#class-type label,
#locations label {
  position: relative;
  cursor: pointer;
}

#class-type input,
#locations input {
  opacity: 0;
  cursor: pointer;
}

#class-type label:hover .custom-checkbox,
#locations label:hover .custom-checkbox {
  background-color: #ededed;
  transition: 0.2s all;
}

#class-type .custom-checkbox,
#locations .custom-checkbox {
  position: absolute;
  top: -1px;
  left: -1px;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid #ededed;
  cursor: pointer;
  transition: 0.2s all;
}

#class-type .custom-checkbox .check,
#locations .custom-checkbox .check {
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  height: 10px;
  width: 4px;
}

#class-type .custom-checkbox:after,
#locations .custom-checkbox:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#class-type .input-option,
#locations .input-option {
  margin-bottom: 10px;
}

#class-type input:checked ~ .custom-checkbox,
#locations input:checked ~ .custom-checkbox {
  background-color: #53d89a;
  transition: 0.2s all;
  border: 1px solid #53d89a;
}

.kids-class-type {
  text-transform: capitalize;
}

.filter-locations .filter-control.disabled {
  opacity: 0;
  pointer-events: none;
}

.empty-results .result-card {
  filter: blur(6px);
  opacity: 0.5;
  pointer-events: none;
}

.empty-results .result-card.last-card {
  opacity: 0.25;
}

.bar-text {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 15.73px;
}
.bar {
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}

.bar-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bar-col .bar-days {
  display: flex;
  gap: 3px;
  font-size: 13px;
  font-weight: 600;
}

.bar .day {
  border-radius: 7px;
  width: 24px;
  height: 24px;
  background-color: #fff;
  transition: 0.3s all;
  border: 1px solid #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-days .day,
.bar-days .day.weekend {
  cursor: pointer;
  transition: 0.4s;
}

.bar-days .day:hover,
.bar-days .day.weekend:hover {
  transition: 0.4s;
  background-color: #dfe7e3;
}

.bar .day.weekend {
  background-color: #effcfb;
  border: 1px solid #c0e3d3;
  transition: 0.3s all;
}

.bar .day.active {
  background-color: #53d89a;
  border: 1px solid #53d89a;
  color: #fff;
  transition: 0.3s all;
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  outline: 1px solid #0000001a;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: -1px;
  bottom: -1px;
  background-color: #0000001a;
  border: 1px solid #0000001a;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #fff;
}

input:checked + .slider:before {
  background-color: #53d89a;
}

input:focus + .slider {
  box-shadow: 0 0 1px #fff;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 5px;
}

.slider.round:before {
  border-radius: 5px;
}

.filter-top {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1900px;
}

.grid-view-select {
  display: flex;
  justify-content: end;
  max-width: 1900px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
  padding-bottom: 10px;
}

.grid-view-select span {
  cursor: pointer;
}

.grid-view-select .active {
  font-weight: 600;
}

.grid-view-select .label {
  font-weight: 200;
  cursor: auto;
}

#ryb-connect .grid-view,
#ryb-connect .list-view {
  margin-left: auto;
  margin-right: auto;
  max-width: 1900px;
}

#ryb-connect .full-view .filter-top .main-title {
  font-weight: 800 !important;
  font-size: 3rem;
  line-height: 3.625rem;
}

.grid-view .grid-results {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid #00000026;
}

.grid-view .grid-results > div {
  grid-column: span 1 / span 1;
  border: 1px solid #00000026;
  position: relative;
}

.grid-view .grid-results > div > div {
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid-view .grid-results > div .accordion svg {
  width: 20px;
  transform: rotate(0);
  fill: rgba(86, 218, 212, 1);
  transition: 0.4s;
}

.grid-view .grid-results > div .accordion.open svg {
  transform: rotate(45deg);
  fill: rgba(0, 0, 0, 0.5);
  transition: 0.4s;
}

.grid-view .grid-results > div .accordion {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
}

.grid-view .grid-results h4 {
  color: #00000080;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 3%;
  font-weight: 700;
  text-align: center;
  margin-top: 0.8rem;
  padding-bottom: 0.8rem;
  margin-bottom: 0;
  border-bottom: 1px solid #00000026;
}

.grid-view .grid-results h4 + div {
  padding: 5px;
}

.grid-results h3 .class-name {
  font-size: 20px;
  line-height: 20px;
  color: #000;
  padding-top: 16px;
  font-weight: 600;
  text-align: left;
  padding-left: 1rem;
  text-transform: capitalize;
  position: relative;
}

.result-grid-cell .location-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.result-grid-cell .location-wrapper h6 {
  margin-block-start: 0;
  margin-block-end: 0;
}

.result-grid-cell .info {
  position: relative;
  cursor: pointer;
}

.result-grid-cell .info .tooltip_text {
  opacity: 0;
  pointer-events: none;
  width: 80px;
  background-color: #796e6e;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  position: absolute;
  transition: 0.2s;
  top: -100%;
  right: 0%;
}

.result-grid-cell .info .info-icon {
  width: 18px;
  height: 18px;
}

.info .info-icon .details {
  stroke: white;
  fill: #d9d9d9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info:hover .info-icon .details {
  fill: #777;
}

.result-grid-cell .info:hover .tooltip_text {
  opacity: 1;
  pointer-events: all;
  transition: 0.2s;
}

.form-info .error-message {
  color: red;
  font-size: 0.8rem;
  margin-top: 5px;
}

.result-grid-cell {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #0000001a;
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.result-grid-cell:last-child {
  margin-bottom: 0;
}

.result-grid-cell .class-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #000000bf;
}

.result-grid-cell .classes-per-week {
  color: red;
  font-size: 13px;
  padding: 0 1rem 0.5rem;
}

.result-grid-cell .class-data .class-time,
.result-grid-cell .class-data .class-price {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #000000bf;
}

.result-grid-cell .button-section {
  display: flex;
}

.result-grid-cell .control-button {
  width: 100%;
}

.result-grid-cell .control-button button.enroll-class,
.result-grid-cell .control-button a.enroll-class {
  color: #5426d5 !important;
  height: 44px !important;
  width: 100% !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  background-color: #fff !important;
  background: #fff !important;
  border-top: 1px solid #0000001a !important;
  border-bottom-left-radius: 5px !important;
}

.result-grid-cell .control-button a.enroll-class {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.result-grid-cell .info-button {
  background: transparent;
  cursor: pointer;
  border-top: 1px solid #0000001a;
  border-left: 1px solid #0000001a;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-bottom-right-radius: transparent;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  height: 44px;
  width: 64px;
  border-radius: 5px;
}

.result-grid-cell .class-start {
  width: fit-content;
  position: absolute;
  top: -15px;
  left: 15px;
  background: #defffb;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 5px;
}
.result-grid-cell .class-start .time {
  font-weight: 700;
}

.result-grid-cell .class-start .period {
  font-weight: 200;
}

.filter-top .edit-option {
  position: relative;
  border: 1px solid #00000026;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 205px;
  height: 44px;
  transition: 0.4s;
}

.filter-top .dropdown {
  position: absolute;
  top: 100%;
  width: -webkit-fill-available;
  left: 0;
  border: 1px solid #00000026;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  margin-top: 5px;
  transform: translateY(-20px);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
  max-height: 50vh;
  overflow: scroll;
  z-index: 2;
}

.filter-top li.select {
  background-color: #53d89a;
  color: #333;
}

.filter-top .select {
  color: #53d89a;
}

.filter-top .edit-option.active .dropdown {
  opacity: 1;
  transition: 0.4s;
  transform: translateY(0);
  pointer-events: all;
}

.filter-top .dropdown ul {
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  width: 100%;
}

.filter-top .dropdown ul li {
  padding: 5px 10px;
  width: 100%;
  transition: 0.4s;
}

.filter-top .dropdown ul li:hover {
  background-color: #00000026;
  transition: 0.4s;
}

.filter-top .dropdown ul li:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.filter-top .dropdown ul li:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.filter-top .edit-option:hover,
.filter-top .edit-option.active {
  transition: 0.4s;
  border: 1px solid #53d89a;
  cursor: pointer;
}

.filter-top .edit-option.active svg {
  transition: 0.4s;
  fill: #53d89a;
  fill-opacity: 1;
  transition: 0.4s;
}

.filter-top .edit-option .label {
  color: #1f2323bf;
  font-size: 1rem;
  font-weight: 300;
}

.filter-top .edit-option .value {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
}

.filter-top .edit-option svg {
  fill: #1f2323;
  fill-opacity: 0.75;
  transition: 0.4s;
}

.filter-top .filter-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.grid-view .no-result {
  font-size: 0.9rem;
  color: #00000095;
  text-align: center;
  padding-top: 0.75rem;
}

.grid-view .grid-results .accordion {
  display: none;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

@media only screen and (max-width: 1370px) {
  .filter-top .edit-option {
    width: 170px;
  }
}

@media only screen and (max-width: 1250px) {
  .filter-top {
    flex-flow: column;
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 1200px) {
  .grid-view .grid-results .accordion {
    display: block;
  }

  .grid-view .grid-results .accordion + div {
    display: none;
  }

  .grid-view .grid-results .accordion.open + div {
    display: flex;
  }

  .grid-view .grid-results {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-view .grid-results > div > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .result-grid-cell {
    max-width: 30%;
  }
}

@media only screen and (max-width: 767px) {
  .result-grid-cell {
    max-width: 45%;
  }
}

@media only screen and (max-width: 520px) {
  .filter-top .filter-controls {
    flex-flow: column;
  }

  .filter-top .filter-controls .edit-option {
    width: 100%;
    box-sizing: border-box;
    height: 70px !important;
  }
}

@media only screen and (max-width: 450px) {
  .result-grid-cell {
    max-width: 100%;
  }
}
