.material-symbols-outlined {
  display: flex !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none; }

html, body {
  height: 100%;
  overflow: hidden; }

body {
  background-color: #fafafa;
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal; }
  body.__view {
    overflow: scroll; }

header {
  background-color: #000000;
  padding: 20px;
  width: 100%;
  color: #ffffff;
  position: fixed;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  top: 0;
  height: 90px; }
  header .navigation {
    display: grid;
    grid-auto-flow: column;
    gap: 10px; }
    header .navigation .material-symbols-outlined {
      font-size: 24px; }

footer {
  background-color: #000000;
  padding: 20px;
  width: 100%;
  color: #ffffff;
  position: fixed;
  z-index: 10000;
  bottom: 0; }

h1, h2 {
  font-weight: 700; }

h3, h4 {
  font-weight: 500; }

h5, p {
  font-weight: 200; }

a {
  color: #ffffff; }

form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  max-width: 100%;
  width: 700px;
  padding: 20px;
  background-color: #bbb;
  border-radius: 8px; }
  form .form-group {
    margin: 0; }
  form.edit, form.create {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; }
  form .form-group label {
    width: 100%; }
  form .form-group img {
    width: 50%; }
  form .form-group.hundred {
    width: 100%; }
  form .form-group.fifty {
    width: 49%; }
  form .form-group.btn {
    margin: 20px 0 0 0;
    padding: 0; }
  form .form-group.choose {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    form .form-group.choose img {
      margin-right: 20px; }
  form .form-group-split {
    display: flex;
    margin-bottom: 20px; }

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  height: 100%;
  overflow-y: scroll; }
  @media screen and (min-width: 480px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(6, 1fr); } }
  @media screen and (min-width: 768px) {
    .grid {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(6, 1fr); } }
  @media screen and (min-width: 1024px) {
    .grid {
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(5, 1fr); } }
  @media screen and (min-width: 1440px) {
    .grid {
      grid-template-columns: repeat(7, 1fr);
      grid-template-rows: repeat(7, 1fr); } }

.grid-item {
  position: relative;
  padding-top: 100%;
  overflow: hidden; }
  .grid-item :last-child {
    margin: 0; }
  .grid-item__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease; }
  .grid-item__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.1));
    color: #ffffff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.5s ease; }
  .grid-item__title {
    font-size: 1.2em;
    margin-bottom: 5px; }
  .grid-item__subtitle {
    font-size: 0.9em;
    margin-bottom: 10px; }
  .grid-item__info {
    font-size: 0.8em;
    margin-top: auto; }
  .grid-item:hover .grid-item__background {
    transform: scale(1.1); }
  .grid-item:hover .grid-item__content {
    background-color: rgba(0, 0, 0, 0.5); }

label {
  display: block;
  margin-bottom: 5px; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="hash"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #bdc3c7;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: border-color 0.5s ease; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="number"]:focus,
  input[type="hash"]:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #222; }

input::file-selector-button {
  padding: 10px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  background-color: #222;
  color: #ffffff;
  border: none;
  transition: background-color 0.5s ease, color 0.5s ease;
  cursor: pointer; }

input::file-selector-button:hover {
  background-color: #555555; }

.btn {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.5s ease, color 0.5s ease;
  cursor: pointer; }
  .btn-primary {
    background-color: #222;
    color: #ffffff;
    border: none; }
    .btn-primary.header {
      display: flex;
      flex-direction: column;
      font-size: 10px;
      gap: 5px; }
    .btn-primary:hover {
      background-color: #555555; }
  .btn-secondary {
    background-color: #bbb;
    color: #333333;
    border: none; }
    .btn-secondary:hover {
      background-color: #eeeeee; }
  .btn-outline {
    background-color: transparent;
    color: #222;
    border: 2px solid #222; }
    .btn-outline:hover {
      background-color: #222;
      color: #ffffff; }
  .btn .material-symbols-outlined {
    font-size: 14px; }

.view {
  max-width: 1000px;
  margin: auto;
  padding: 20px; }
  .view .nav {
    display: flex;
    justify-content: right;
    gap: 10px;
    float: right; }
  .view img {
    margin: 10px 0 0 0;
    width: 100%; }

table {
  width: 90%;
  margin: 110px auto 40px;
  padding: 20px;
  background-color: #bbb;
  border-radius: 8px;
  font-size: 14px; }
  table th {
    text-align: left; }
  table td {
    padding: 10px 5px; }
    table td.utility {
      display: flex;
      gap: 5px; }
      table td.utility .btn {
        padding: 8px; }

/* Main vertical swiper styles */
.swiper-container-vertical {
  width: 100%;
  height: 100%; }

/* Horizontal swiper styles */
.swiper-container-horizontal {
  width: 100%;
  height: 100%; }

/* Slide content styles */
.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  color: white;
  text-align: center;
  padding: 5%; }
  .slide-content.grid {
    margin: 0;
    display: block;
    padding: 0; }
  @media screen and (min-width: 500px) {
    .slide-content {
      padding: 20px; } }

/* Background image styles */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1; }

/* Text block styles */
.text-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  position: absolute;
  text-align: left;
  border-radius: 8px;
  width: 90%; }
  .text-block .btn {
    width: fit-content;
    font-weight: 400; }
  .text-block :nth-child(3) {
    margin-bottom: 20px; }
  @media screen and (min-width: 500px) {
    .text-block {
      width: 500px; } }

/* Button styles */
.cta-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px; }

.swiper-pagination-bullet-active {
  background: #ffffff; }

.admin-body {
  width: 90%;
  max-width: 1520px;
  margin: 110px auto 40px;
  padding: 10px;
  background-color: #bbb;
  border-radius: 8px;
  font-size: 14px;
  text-align: left; }
  .admin-body.admin-info {
    max-width: unset; }
  .admin-body .admin-content {
    overflow-x: scroll; }
  .admin-body .admin-head {
    display: flex;
    font-weight: 600;
    border-bottom: 1px solid #555;
    background-color: #bbb;
    border-radius: 8px 8px 0 0; }
    .admin-body .admin-head.admin-info {
      justify-content: space-between; }
  .admin-body .admin-row {
    display: flex;
    align-items: center;
    min-width: 1500px; }
    .admin-body .admin-row:nth-child(even) {
      background-color: #eee; }
    .admin-body .admin-row:nth-child(odd) {
      background-color: #ddd; }
    .admin-body .admin-row.admin-info {
      min-width: unset;
      justify-content: space-between; }
  .admin-body .admin-cell {
    padding: 10px 5px;
    overflow-wrap: break-word;
    text-align: left; }
    .admin-body .admin-cell.admin-title {
      min-width: 150px;
      max-width: 75px; }
    .admin-body .admin-cell.admin-subtitle {
      min-width: 150px;
      max-width: 75px; }
    .admin-body .admin-cell.admin-desc {
      min-width: 300px;
      max-width: 75px; }
    .admin-body .admin-cell.admin-btn {
      min-width: 100px;
      max-width: 75px; }
    .admin-body .admin-cell.admin-btn-url {
      min-width: 250px;
      max-width: 75px; }
    .admin-body .admin-cell.admin-order {
      min-width: 75px;
      max-width: 75px;
      text-align: center; }
    .admin-body .admin-cell.admin-hash {
      min-width: 75px;
      max-width: 75px; }
    .admin-body .admin-cell.admin-img {
      min-width: 150px;
      max-width: 150px; }
    .admin-body .admin-cell.admin-img {
      min-width: 300px;
      max-width: 75px; }
    .admin-body .admin-cell.admin-actions {
      min-width: 75px;
      max-width: 75px; }
  .admin-body .admin-actions {
    display: flex;
    gap: 5px; }
    .admin-body .admin-actions .btn {
      padding: 8px; }

table {
  width: 90%;
  margin: 110px auto 40px;
  padding: 20px;
  background-color: #bbb;
  border-radius: 8px;
  font-size: 14px; }
  table th {
    text-align: left; }
  table td {
    padding: 10px 5px; }
    table td.utility {
      display: flex;
      gap: 5px; }
      table td.utility .btn {
        padding: 8px; }

::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  background: #bbb; }

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #222;
  border-radius: 0 0 10px 10px; }

::-webkit-scrollbar-thumb:hover {
  background: #555555; }

/*# sourceMappingURL=style.css.map */
