@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
html, body {
  font-family: "Roboto";
  padding: 0;
  margin: 0;
  font-size: 16px;
  background-color: #e9dede;
}

.spinner {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
}
.spinner .fa-spinner {
  font-size: 28px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #66b0ff;
}

.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  border-bottom: 1px solid #007bff;
  box-shadow: 0px 10px 10px rgba(0, 123, 255, 0.1);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
}

.site-heading {
  margin: 0px;
  padding: 0px 10px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.site-nav ul li a {
  display: inline-block;
  padding: 20px 16px;
  color: #333;
  transition: all 0.3s;
  text-decoration: none;
}
.site-nav ul li a .button-icon {
  margin-right: 4px;
  vertical-align: middle;
}
.site-nav ul li a:hover {
  background-color: #007bff;
  color: #fff;
  transition: all 0.3s;
}

.main-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}

.left-sidebar {
  width: 350px;
  background-color: #fff;
  position: fixed;
  height: calc(100vh - 70px);
  overflow-y: scroll;
  top: 65px;
  left: 0;
  z-index: 99;
  padding: 16px;
  padding-bottom: 25px;
}

.site-logo-section {
  padding: 10px;
  border-bottom: 1px solid white;
}
.site-logo-section .site-logo {
  width: 100%;
  padding: 20px 10px;
  text-align: center;
}
.site-logo-section .site-logo .site-logo-img {
  width: 45%;
}
.site-logo-section .site-tagline h1 {
  font-size: 26px;
  text-align: center;
}

.filter_box {
  margin: 5px;
  margin-top: 20px;
}

.filter-container {
  display: flex;
  align-items: center;
  margin: 8px 0px;
}

.filter {
  color: #707070;
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
  width: 30%;
}

.filter_box label {
  margin: 0px;
}

.boxTitle {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  position: relative;
}
.boxTitle:after {
  content: "";
  position: absolute;
  top: 105%;
  left: 0px;
  width: 40px;
  height: 2px;
  border-radius: 50px;
  background-color: #007bff;
}

.main-contents {
  width: calc(100% - 350px);
  position: relative;
  left: 350px;
  top: 0px;
}

.content-body {
  padding: 20px 50px;
}

.data-content-pagination {
  text-align: center;
}
.data-content-pagination .status-text {
  text-align: center;
  margin-top: 20px;
}
.data-content-pagination .pagination {
  justify-content: center;
}

button {
  font-size: 16px;
}

#filter {
  margin: 20px 0;
}

.float_left {
  float: left;
  margin: 0 10px 10px 0;
}

.float_right {
  float: right;
}

input.input-filter {
  width: 35px;
  height: 16px;
}

/* hide spin*/
input.input-filter::-webkit-inner-spin-button,
input.input-filter::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

input[type=button] {
  width: 100%;
  height: 30px;
  margin: 5px 0px;
}

.filterbox-check {
  display: flow-root;
  margin: 10px 10px;
  font-size: 16px;
}

input[type=checkbox] {
  width: 13px;
  height: 13px;
  margin: 0px 5px 0px 0px;
  font-size: 16px;
}

.floatOff {
  clear: both;
}

#myInputTextField {
  height: 20px;
}

.dataTables_filter {
  display: none;
}

#shopCol, #nameCol {
  width: 200px;
}

#ageCol, #abcCol, #rateCol, #likeCol, #dislikeCol {
  width: 60px;
}

#footerTitle {
  margin: 0 auto 0 auto;
}

.loading-data {
  position: relative;
}
.loading-data::before {
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999999;
  content: "Processing...";
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  color: #fff;
  padding: 40px;
  box-sizing: border-box;
  transition: all 0.4s;
}

.parent-row td:first-child {
  background: #fcfcfc !important;
  cursor: pointer;
}

.child-row {
  display: none;
}

.popup-message-wrapper {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0px auto;
  background-color: #dbdbdb;
  color: #4c4c4c;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 9999999999999;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.popup-message-wrapper.success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}
.popup-message-wrapper.warning {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.checkbox-label-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.checkbox-label-text .checkbox-input {
  visibility: hidden;
  position: absolute;
  left: -100%;
  top: -100%;
}
.checkbox-label-text label {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid #d3cfcf;
  top: 0;
  left: 0;
  color: #494949;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9;
  padding: 0px 10px;
}
.checkbox-label-text label::-moz-selection {
  background-color: transparent;
}
.checkbox-label-text label::selection {
  background-color: transparent;
}
.checkbox-label-text label:after {
  position: absolute;
  content: "";
  padding-left: 5px;
  padding-top: 2px;
  font-size: 12px;
  color: #fff;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #007bff;
  display: block;
  transform: scale(0);
  transform-origin: center;
}
.checkbox-label-text .checkbox-input:checked + label {
  color: #fff;
  border-color: #007bff;
}
.checkbox-label-text .checkbox-input:checked + label:after {
  transform: scale(1);
  z-index: -1;
}

.checkbox-label {
  width: 20px;
  height: 20px;
  border: 2px solid #d3cfcf;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
}
.checkbox-label ~ span {
  display: inline-block;
  vertical-align: top;
  color: #707070;
  font-size: 14px;
  cursor: pointer;
}
.checkbox-label ~ span::-moz-selection {
  background: transparent;
}
.checkbox-label ~ span::selection {
  background: transparent;
}
.checkbox-label:after {
  position: absolute;
  content: "✓";
  text-align: center;
  font-size: 12px;
  color: #fff;
  top: 0.5%;
  left: 0.5%;
  width: 99%;
  height: 99%;
  background-color: #007bff;
  display: block;
  border-radius: 3px;
  transform: scale(0);
  transform-origin: center;
  transition: 0.1s;
}
.checkbox-label:has(.checkbox-input:checked) {
  border-color: #007bff;
}
.checkbox-label:has(.checkbox-input:checked):after {
  transform: scale(0.9);
  transition: 0.3s;
}
.checkbox-label:has(.checkbox-input:checked) ~ span {
  color: #333;
}
.checkbox-label .checkbox-input {
  visibility: hidden;
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
}

.range-filter-container input {
  visibility: hidden;
}

.range-slider-container {
  padding: 5px 20px;
  padding-left: 0px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.range-slider-container .filter {
  margin-right: 15px;
}
.range-slider-container .noUi-target.noUi-horizontal {
  width: 100%;
}

.clear {
  clear: both;
}

.data-content-row {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #cebebe;
  border-radius: 5px;
  margin: 5px auto;
  padding: 10px;
  box-sizing: border-box;
}
.data-content-row:hover {
  background-color: #ededed;
  transition: background-color 0.3s;
}
.data-content-row .primary-data-section {
  width: 50%;
  box-sizing: border-box;
  float: left;
  display: flex;
}
.data-content-row .primary-data-section .arrows-section {
  display: flex;
  width: 20px;
  cursor: pointer;
  align-items: center;
  border-radius: 50px;
  text-align: center;
  margin-right: 5px;
}
.data-content-row .primary-data-section .shop-name {
  cursor: pointer;
}
.data-content-row .primary-data-section .shop-name::-moz-selection {
  background: transparent;
}
.data-content-row .primary-data-section .shop-name::selection {
  background: transparent;
}
.data-content-row .primary-data-section .shop-name, .data-content-row .primary-data-section .cast-name, .data-content-row .primary-data-section .shop-score {
  display: inline-block;
}
.data-content-row .primary-data-section .shop-name {
  width: 40%;
}
.data-content-row .primary-data-section .shop-score {
  text-align: center;
  width: 20%;
}
.data-content-row .primary-data-section .cast-name {
  width: 26%;
}
.data-content-row .secondary-data-section {
  width: 50%;
  box-sizing: border-box;
  float: left;
}
.data-content-row .hidden-data-section {
  width: 100%;
  display: block;
  border-top: 1px solid #ccc;
  padding: 10px 0px;
  box-sizing: border-box;
  margin-top: 20px;
  display: none;
}

.secondary-data-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.secondary-data-list li {
  padding: 0px 10px;
  flex-grow: 1;
  text-align: center;
}

.data-title-span {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: #606060;
}

.data-span {
  display: block;
  font-size: 16px;
  color: #333;
}

.data-content-row:hover .data-span {
  color: #000;
}

.cust-button {
  border-radius: 4px;
  border: 2px solid #e6f2ff;
  cursor: pointer;
  outline: none;
  transition: background-color 0.1s;
}
.cust-button:hover {
  background-color: #e6f2ff;
  box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.4);
  transition: all 0.2s;
}
.cust-button:disabled {
  background-color: rgb(128, 128, 128);
  border-color: rgb(153, 151, 151);
  cursor: not-allowed;
  position: relative;
}
.cust-button:disabled:hover {
  background-color: rgb(128, 128, 128);
  border-color: rgb(153, 151, 151);
}
.cust-button:disabled:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: red;
  top: 50%;
  left: 0px;
  transform: rotate(-45deg);
}
.cust-button:focus {
  outline: none;
}
.cust-button img {
  width: 15px;
}

.cust-like-button {
  background-color: rgba(37, 184, 37, 0.2);
  border-color: rgba(37, 184, 37, 0.6);
}
.cust-like-button:hover {
  background-color: rgba(37, 184, 37, 0.5);
  border-color: rgba(37, 184, 37, 0.8);
}

.cust-dislike-button {
  background-color: rgba(236, 5, 5, 0.2);
  border-color: rgba(236, 5, 5, 0.3);
}
.cust-dislike-button:hover {
  background-color: rgba(236, 5, 5, 0.5);
  border-color: rgba(236, 5, 5, 0.5);
}

.search-form-container {
  width: 100%;
  padding: 10px 0px;
  display: flex;
}

.search-input-container {
  width: 100%;
  background-color: rgb(243, 235, 235);
  border: 2px solid #fefefe;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-radius: 6px;
}
.search-input-container .search-icon {
  padding: 5px;
  display: inline-block;
  width: 30px;
  text-align: center;
  box-sizing: border-box;
  transform: translateY(4px);
}
.search-input-container .search-input {
  width: calc(100% - 35px);
  display: inline-block;
  padding: 5px;
  padding-left: 0px;
  border: none;
  outline: none;
  background: transparent;
}
.search-input-container .search-input:focus {
  outline: none;
}
.search-input-container:has(.search-input:focus) {
  border-color: #e6f2ff;
  background-color: white;
  transition: all 0.2s;
}

.like-dislike-filters-wrapper {
  display: inline-block;
  margin: 20px 0px;
}

.filter-button {
  margin: 0px 10px;
  display: none;
}

.filter-close-button {
  position: relative;
  left: calc(100% - 50px);
  border: none;
  background: none;
  margin: 10px 0px;
  padding: 15px;
  box-sizing: border-box;
  outline: none;
}
.filter-close-button:focus {
  outline: none;
}
.filter-close-button img {
  width: 20px;
  pointer-events: none;
}

.menu-button {
  position: relative;
  border: none;
  background: none;
  margin: 10px 0px;
  padding: 15px;
  box-sizing: border-box;
  outline: none;
  display: none;
}
.menu-button:focus {
  outline: none;
}
.menu-button img {
  width: 20px;
  pointer-events: none;
}

.filter-top-button {
  position: relative;
  border: none;
  background: none;
  margin: 10px 0px;
  padding: 15px;
  box-sizing: border-box;
  outline: none;
  display: none;
}
.filter-top-button:focus {
  outline: none;
}
.filter-top-button img {
  width: 20px;
  pointer-events: none;
}

.overlay-window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}
.overlay-window .overlay-content {
  min-width: 400px;
  width: 50%;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #e6f2ff;
}
.overlay-window .overlay-content .overlay-content-header {
  padding: 10px;
  border-bottom: 1px solid #e6f2ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
}
.overlay-window .overlay-content .overlay-content-header .overlay-close-button img {
  width: 30px;
}
.overlay-window .overlay-content .overlay-content-body {
  padding: 10px;
}
.overlay-window .overlay-content-sm-width {
  width: 400px;
}
.overlay-window .overlay-content-md-width {
  width: 50%;
}
.overlay-window .overlay-content-lg-width {
  width: 80%;
}

.btn-primary {
  background-color: #007bff;
  border-color: #0062cc;
}
.btn-primary:hover, .btn-primary:active {
  background-color: #0062cc;
  border-color: #0062cc;
}
.btn-primary:focus {
  outline-color: #007bff;
  background-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus {
  outline-color: #007bff;
  background-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.site-footer {
  width: 100%;
  padding: 10px 20px;
  border-top: 1px solid #707070;
}

.noUi-target {
  border: 0;
  background: rgb(231, 217, 217);
  box-shadow: none;
}

.noUi-target.noUi-horizontal {
  height: 10px;
}

.noUi-target.noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  top: -6px;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

.noUi-target.noUi-horizontal .noUi-handle::before {
  display: none;
}

.noUi-target.noUi-horizontal .noUi-handle::after {
  display: none;
}

.noUi-target.noUi-vertical {
  height: 150px;
  width: 15px;
}

.noUi-target.noUi-vertical .noUi-handle {
  width: 24px;
  height: 24px;
  right: -4.5px;
  border-radius: 50%;
  outline: none;
}

.noUi-target.noUi-vertical .noUi-handle::before {
  display: none;
}

.noUi-target.noUi-vertical .noUi-handle::after {
  display: none;
}

.noUi-target .noUi-connect {
  background: #99caff;
}

.noUi-target .noUi-handle {
  background-color: #007bff;
  border: 3px solid white;
  box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05);
}

.noUi-target.noUi-sm {
  height: 6px;
}

.noUi-target.noUi-sm .noUi-handle {
  width: 20px;
  height: 20px;
  top: -7px;
}

.noUi-target.noUi-lg {
  height: 18px;
}

.noUi-target.noUi-lg .noUi-handle {
  width: 30px;
  height: 30px;
  top: -6px;
}

.noUi-tooltip {
  position: absolute;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  background: white;
  color: #707070;
  font-size: 12px;
  border: 0;
  padding: 2px 4px;
  border-radius: 4px;
  border: 2px solid #e6f2ff;
}

.pagination {
  height: 36px;
  margin: 0;
  padding: 0;
}

.pager, .pagination ul {
  margin-left: 0;
  *zoom: 1;
}

.pagination ul {
  padding: 0;
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination li {
  display: inline;
  cursor: pointer;
}

.pagination a {
  float: left;
  padding: 0 12px;
  line-height: 30px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 0;
}

.pagination .active a, .pagination a:hover {
  background-color: #f5f5f5;
  color: #94999E;
}

.pagination .active a {
  color: #94999E;
  cursor: default;
}

.pagination .disabled a, .pagination .disabled a:hover, .pagination .disabled span {
  color: #94999E;
  background-color: transparent;
  cursor: default;
}

.pagination li:first-child a, .pagination li:first-child span {
  border-left-width: 1px;
  border-radius: 3px 0 0 3px;
}

.pagination li:last-child a {
  border-radius: 0 3px 3px 0;
}

.pagination-centered {
  text-align: center;
}

.pagination-right {
  text-align: right;
}

.pager {
  margin-bottom: 18px;
  text-align: center;
}

.pager:after, .pager:before {
  display: table;
  content: "";
}

.pager li {
  display: inline;
}

.pager a {
  display: inline-block;
  padding: 5px 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager a:hover {
  text-decoration: none;
  background-color: #f5f5f5;
}

.pager .next a {
  float: right;
}

.pager .previous a {
  float: left;
}

.pager .disabled a, .pager .disabled a:hover {
  color: #999;
  background-color: #fff;
  cursor: default;
}

.pagination .prev.disabled span {
  float: left;
  padding: 0 12px;
  line-height: 30px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 1;
}

.pagination .next.disabled span {
  float: left;
  padding: 0 12px;
  line-height: 30px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 0;
}

.pagination li.active, .pagination li.disabled {
  float: left;
  padding: 0;
  line-height: 30px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 0;
}

.pagination li.active a {
  background: #007bff;
  color: #fff;
}

.pagination li:first-child {
  border-left-width: 1px;
}

/* -------------------------------------------------------------------------------
-------------------------------- RESPONSIVE MEDIA QUERIES ------------------------
/* ------------------------------------------------------------------------------- */
@media only screen and (min-width: 1650px) {
  .site-header {
    width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .left-sidebar {
    position: fixed;
    height: calc(100vh - 70px);
    top: 80px;
    left: auto;
    border-radius: 5px;
  }
  .main-body {
    max-width: 1400px;
    width: 1400px;
    margin: 20px auto;
    padding-top: 75px;
    display: flex;
    justify-content: space-between;
  }
  .main-contents {
    left: 350px;
  }
  .content-body {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 1450px) {
  .data-content-row .primary-data-section {
    width: 40%;
  }
  .data-content-row .primary-data-section .shop-name {
    width: 40%;
    vertical-align: top;
  }
  .data-content-row .primary-data-section .cast-name {
    width: 35%;
    vertical-align: top;
  }
  .data-content-row .primary-data-section .shop-score {
    width: 16%;
    vertical-align: top;
  }
  .data-content-row .secondary-data-section {
    width: 60%;
  }
}
@media only screen and (max-width: 1400px) {
  .content-body {
    padding: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-contents {
    width: 100%;
    left: 0px;
  }
  .filter-top-button {
    display: block;
  }
  .left-sidebar {
    left: -100%;
    padding-top: 80px;
    transition: all 0.4s;
  }
  .active-left-sidebar {
    left: 0px;
    transition: all 0.6s;
  }
}
@media only screen and (max-width: 1050px) {
  .data-content-row .primary-data-section {
    width: 50%;
  }
  .data-content-row .secondary-data-section {
    width: 50%;
  }
}
@media only screen and (max-width: 1000px) {
  .content-body {
    padding: 20px 10px;
  }
  .data-content-row .primary-data-section {
    width: 100%;
  }
  .data-content-row .secondary-data-section {
    width: 100%;
    border-top: 1px solid #ecdede;
    margin-top: 5px;
    padding-top: 5px;
  }
}
@media only screen and (max-width: 762px) {
  .popup-message-wrapper {
    width: 80%;
  }
  .menu-button, .filter-top-button {
    display: block;
    z-index: 9999999;
  }
  .site-nav {
    position: fixed;
    width: 90%;
    height: calc(100vh - 70px);
    background-color: #fff;
    right: -100%;
    top: 70px;
    transition: all 0.3s;
  }
  .active-site-nav {
    right: 0%;
    transition: all 0.6s;
  }
  .site-nav ul {
    display: block;
    text-align: right;
    padding-top: 20px;
  }
  .overlay-window .overlay-content {
    min-width: 90%;
    width: 90%;
    margin: 20px auto;
  }
  .overlay-window .overlay-content-sm-width, .overlay-window .overlay-content-md-width, .overlay-window .overlay-content-lg-width {
    width: 90%;
  }
}
@media only screen and (max-width: 550px) {
  .left-sidebar {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 60px;
  }
  .site-nav {
    width: 100%;
  }
  .secondary-data-list {
    flex-wrap: wrap;
  }
  .secondary-data-list li {
    padding: 0px 5px;
    flex-grow: 1;
  }
  .data-title-span {
    margin-bottom: 2px;
  }
  .pagination {
    flex-wrap: wrap;
    margin: 20px auto;
    justify-content: center;
  }
  .like-list-item,
.dislike-list-item {
    width: 50%;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */