:root,
[data-bs-theme=light] {
  --mod-primary-text: #212227;
  --mod-primary-bg: #e7e7e7;
  --bs-primary-rgb: 239, 183, 2;
  --bs-link-color-rgb: #EFB702;
  --bs-primary: #EFB702;
  --bs-primary-text-emphasis: #212227;
  --bs-body-bg: #f7f7f7;
  --bs-primary-bg-subtle: #f7f7f7;
  --bs-heading-color:#212227;
  --bs-danger: #ff5956;
  --bs-border-color-translucent: #DDDDDD;
}
:root .btn:hover,
[data-bs-theme=light] .btn:hover {
  --bs-btn-hover-color: #212227;
  --bs-btn-hover-bg: #d6a502;
  --bs-btn-hover-border-color: #EFB702;
}
:root .card,
[data-bs-theme=light] .card {
  --bs-card-bg: #DDDDDD ;
}
:root .nav-link,
[data-bs-theme=light] .nav-link {
  --bs-nav-link-color: #212227;
  --bs-nav-link-hover-color: #EFB702;
}

[data-bs-theme=dark] {
  --mod-primary-text: #DDDDDD;
  --mod-primary-bg: #212227;
  --bs-primary-rgb: 239, 183, 2;
  --bs-link-color-rgb: #EFB702;
  --bs-primary-text-emphasis: #DDDDDD;
  --bs-body-bg: #2E2E34;
  --bs-primary-bg-subtle: #2E2E34;
  --bs-heading-color:#DDDDDD;
  --bs-danger: #ff5956;
  --bs-border-color-translucent: #212227;
}
[data-bs-theme=dark] .btn:hover {
  --bs-btn-hover-color: #212227;
  --bs-btn-hover-bg: #d6a502;
  --bs-btn-hover-border-color: #EFB702;
}
[data-bs-theme=dark] .btn-primary {
  --bs-primary-color-contrast: #212227;
}
[data-bs-theme=dark] .card {
  --bs-card-bg: #212227 ;
}
[data-bs-theme=dark] .nav-link {
  --bs-nav-link-color: #DDDDDD;
  --bs-nav-link-hover-color: #EFB702;
}

/* BASE CSS
 * --------------------------------------- */
body {
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  font-family: "Rubik", sans-serif;
}

body ::selection {
  background: var(--bs-primary);
  color: var(--mod-primary-bg);
}

header {
  margin-bottom: 100px;
}

header li {
  list-style: none;
}

h1 {
  position: relative;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: var(--bs-primary);
  text-transform: uppercase;
  margin-bottom: 80px;
}
h1:after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: table;
  width: 40px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--bs-primary-text-emphasis);
  content: "";
}

::-webkit-scrollbar {
  width: 7px; /* for vertical scrollbars */
  height: 7px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track {
  background: var(--mod-primary-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  height: 10px;
}

::-webkit-scrollbar-track-piece {
  height: 30px;
}

/* ==============================
   Table
=============================== */
.table {
  overflow: auto;
}

table,
.table {
  width: 100%;
  min-width: auto;
  text-align: start;
  margin: 0;
  border-spacing: 0;
  padding: 5px;
  background-color: var(--bs-primary);
  border-collapse: collapse;
  color: #DDDDDD;
  border-radius: 0;
  border: none;
  font-weight: bold;
}
table thead,
.table thead {
  color: #212227;
  text-transform: uppercase;
}
table thead th,
.table thead th {
  width: 20%;
  padding: 16px;
  text-align: start;
  border-bottom: none !important;
  font-weight: bold;
  color: #212227 !important;
  background-color: #EFB702 !important;
}
table tbody,
.table tbody {
  background-color: #212227;
}
table tbody td,
.table tbody td {
  padding: 10px;
}

.breadcrumb {
  background-color: #212227;
}

@keyframes go-to-bottom-anim {
  0% {
    transform: scale(1);
  }
  75% {
    transform: translate3d(0, -12px, 0) scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}
.header-nav {
  position: relative;
  z-index: 40;
  height: 100vh;
  background-position: center;
  background-size: cover;
}
.header-nav:after {
  background-color: var(--bs-primary-bg-subtle);
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  display: table;
  clear: both;
}
.header-nav .navigation {
  position: relative;
  z-index: 100;
  height: 78px;
  line-height: 78px;
}
.header-nav-left {
  float: left;
  display: flex;
}
.header-nav-left .active:after {
  position: absolute;
  top: 0;
  width: 110%;
  left: -5%;
  height: 5px;
  background-color: var(--bs-primary);
  content: "";
}
.header-nav-left .nav-link {
  padding: 0;
  color: var(--bs-primary-text-emphasis);
}
.header-nav-left .nav-link:focus {
  color: #a37d01;
}
.header-nav-left .dropdown-menu {
  z-index: 999;
  line-height: initial;
  background-color: var(--bs-primary-bg-subtle);
}
.header-nav-left .dropdown {
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
  text-transform: uppercase;
}
.header-nav-left .dropdown .active {
  color: var(--bs-primary) !important;
  border-left: 3px solid var(--bs-primary);
}
.header-nav-left .dropdown .active:after {
  display: none !important;
}
.header-nav-left .dropdown a:hover, .header-nav-left .dropdown:hover {
  color: var(--bs-primary);
}
.header-nav-left .dropdown .dropdown-item {
  color: var(--bs-primary-text-emphasis);
  background-color: transparent !important;
}
.header-nav-left .dropdown .dropdown-item .active {
  background-color: transparent !important;
  color: var(--bs-primary) !important;
}
.header-nav-left .dropdown .dropdown-item .active:after {
  display: none !important;
}
.header-nav-left .dropdown .dropdown-toggle::after {
  border-top: 0.3em solid var(--bs-primary);
}
.header-nav-left .item {
  position: relative;
  transition: all 3s ease-in-out;
}
.header-nav-left .item a {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bs-primary-text-emphasis);
}
.header-nav-left .item a:after {
  position: absolute;
  top: 0;
  width: 110%;
  left: -5%;
  height: 0;
  background-color: var(--bs-primary);
  content: "";
  transition: all 0.3s ease-in-out;
}
.header-nav-left .item a:hover:after {
  height: 5px;
}
.header-nav-left .item:not(:first-child) {
  margin-left: 15px;
}
.header-nav-right {
  float: right;
  position: relative;
  display: flex;
}
.header-nav-right .nav-link {
  padding: 0;
}
.header-nav-right .dropdown-menu {
  z-index: 999;
  line-height: initial;
  background-color: var(--bs-primary-bg-subtle);
}
.header-nav-right .item {
  margin-left: 15px;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
}
.header-nav-right .item a {
  color: var(--bs-primary-text-emphasis);
}
.header-nav-right .item a:hover, .header-nav-right .item:hover {
  color: var(--bs-primary);
  background-color: transparent;
}
.header-nav-right .item .dropdown-toggle::after {
  border-top: 0.3em solid var(--bs-primary);
}
.header-nav .header-content {
  position: relative;
  z-index: 2;
  width: 100vw;
  height: calc(100vh - 78px);
}
@media screen and (max-width: 1200px) {
  .header-nav .header-content {
    height: 100vh;
  }
}
@media screen and (max-width: 848px) {
  .header-nav .header-content {
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}
.header-nav .header-content:after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100vw;
  height: 900px;
  content: "";
  display: table;
  clear: both;
  background-image: url(../img/header_shape.svg);
  background-position: center;
  background-position-y: 0px;
  background-size: cover;
  pointer-events: none;
}
.header-nav .header-content .background-brand img {
  width: 100%;
  height: calc(100vh - 78px);
  background-size: cover;
  object-fit: cover;
}
.header-nav .header-content .background-brand:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  background-image: linear-gradient(0deg, var(--bs-primary-bg-subtle) 8%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.header-nav .header-content .description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  z-index: 2;
}
.header-nav .header-content .description img {
  height: auto;
  max-width: 17.5rem;
  object-fit: contain;
}
.header-nav .header-content .description h1 {
  color: var(--bs-primary);
  font-weight: bold;
  font-size: 35px;
  margin-bottom: 40px;
}
.header-nav .header-content .description p {
  font-weight: bold;
  text-align: center;
  max-width: 535px;
  font-size: 23px;
  color: var(--bs-primary-text-emphasis);
}
@media screen and (max-width: 848px) {
  .header-nav .header-content .description p {
    font-size: 17px;
  }
}
.header-nav .header-content .go-to-button {
  position: absolute;
  z-index: 999;
  bottom: -75vh;
  right: 0;
  cursor: pointer;
  animation-name: go-to-bottom-anim;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  padding: 0px 15px;
  border-radius: 16px;
  border: 3px solid var(--bs-primary);
}
@media screen and (max-width: 848px) {
  .header-nav .header-content .go-to-button {
    right: 20px;
  }
}
.header-nav .header-content .go-to-button:hover i {
  color: var(--bs-primary-text-emphasis);
}
.header-nav .header-content .go-to-button i {
  color: var(--bs-primary);
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-content: center;
  height: 66px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.small-header {
  position: relative;
  z-index: 40;
  height: 70vh;
  background-position: center;
  background-size: cover;
}
.small-header:after {
  background-color: var(--mod-primary-bg);
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100vw;
  height: 70vh;
  content: "";
  display: table;
  clear: both;
}
.small-header .navigation {
  position: relative;
  z-index: 100;
  height: 78px;
  line-height: 78px;
}
.small-header-left {
  float: left;
  display: flex;
}
.small-header-left .active:after {
  position: absolute;
  top: 0;
  width: 110%;
  left: -5%;
  height: 5px;
  background-color: var(--bs-primary);
  content: "";
}
.small-header-left .nav-link {
  padding: 0;
}
.small-header-left .dropdown-menu {
  z-index: 999;
  line-height: initial;
  background-color: var(--bs-primary-bg-subtle);
}
.small-header-left .dropdown {
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
  text-transform: uppercase;
}
.small-header-left .dropdown .active {
  color: var(--bs-primary) !important;
  border-left: 3px solid var(--bs-primary);
}
.small-header-left .dropdown .active:after {
  display: none !important;
}
.small-header-left .dropdown a:hover, .small-header-left .dropdown:hover {
  color: var(--bs-primary);
}
.small-header-left .dropdown .dropdown-item {
  color: var(--bs-primary-text-emphasis);
  background-color: transparent !important;
}
.small-header-left .dropdown .dropdown-item .active {
  background-color: transparent !important;
  color: var(--bs-primary) !important;
}
.small-header-left .dropdown .dropdown-item .active:after {
  display: none !important;
}
.small-header-left .dropdown .dropdown-toggle::after {
  border-top: 0.3em solid var(--bs-primary);
}
.small-header-left .item {
  position: relative;
  transition: all 3s ease-in-out;
}
.small-header-left .item a {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bs-primary-text-emphasis);
}
.small-header-left .item a:after {
  position: absolute;
  top: 0;
  width: 110%;
  left: -5%;
  height: 0;
  background-color: var(--bs-primary);
  content: "";
  transition: all 0.3s ease-in-out;
}
.small-header-left .item a:hover:after {
  height: 5px;
}
.small-header-left .item:not(:first-child) {
  margin-left: 15px;
}
.small-header-right {
  float: right;
  position: relative;
  display: flex;
}
.small-header-right .nav-link {
  padding: 0;
}
.small-header-right .dropdown-menu {
  z-index: 999;
  line-height: initial;
  background-color: var(--bs-primary-bg-subtle);
}
.small-header-right .item {
  margin-left: 15px;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
}
.small-header-right .item a {
  color: var(--bs-primary-text-emphasis);
}
.small-header-right .item a:hover, .small-header-right .item:hover {
  color: var(--bs-primary);
  background-color: transparent;
}
.small-header-right .item .dropdown-toggle::after {
  border-top: 0.3em solid var(--bs-primary);
}
.small-header .header-content {
  height: calc(70vh - 78px);
}
.small-header .header-content .background-brand img {
  width: 100%;
  height: calc(70vh - 78px);
  background-size: cover;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .small-header .header-content {
    height: 70vh;
  }
  .small-header .header-content .background-brand img {
    height: 70vh;
  }
}
.small-header .header-content .go-to-button {
  bottom: -45vh;
}

.header-mobile-nav {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  background-color: transparent;
  height: 60px;
  width: 100%;
}
.header-mobile-nav .mobile-btn {
  cursor: pointer;
  position: absolute;
  z-index: 999;
  right: 20px;
  top: 30px;
  transform: translate3d(0, -50%, 0);
}
.header-mobile-nav .mobile-btn i {
  font-size: 30px;
  color: var(--bs-primary);
}
.header-mobile-nav .mobile-navigation {
  transition: all 0.3s ease-in-out;
  transform: translateX(-100vw);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--mod-primary-bg);
  line-height: 20px;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  padding: 30px;
}
.header-mobile-nav .mobile-navigation .nav-link {
  padding: 0;
}
.header-mobile-nav .mobile-navigation li:first-child {
  margin-top: 80px;
}
.header-mobile-nav .mobile-navigation .dropdown-menu {
  position: relative !important;
  width: 100% !important;
  transform: none !important;
  min-width: 100%;
  float: none !important;
  background-color: var(--bs-primary-bg-subtle);
}
.header-mobile-nav .mobile-navigation .item {
  position: relative;
  line-height: 34px;
  font-weight: bold;
  width: 100%;
}
.header-mobile-nav .mobile-navigation .item a {
  width: 100%;
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
}
.header-mobile-nav .mobile-navigation .item a:hover, .header-mobile-nav .mobile-navigation .item:hover {
  color: var(--bs-primary);
  background-color: transparent;
}
.header-mobile-nav .mobile-navigation .item .dropdown-item {
  color: var(--bs-primary-text-emphasis);
  font-size: 18px;
}
.header-mobile-nav .mobile-navigation .active:before {
  content: "";
  clear: both;
  display: table;
  position: absolute;
  left: -30px;
  height: 35px;
  width: 4px;
  background-color: var(--bs-primary);
}
.header-mobile-nav .mobile-navigation .login {
  margin-top: 20px;
}
.header-mobile-nav .mobile-navigation .logout {
  margin-top: 10px;
}
.header-mobile-nav .mobile-navigation .logout a {
  background-color: var(--bs-primary);
  padding: 8px 32px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.header-mobile-nav .mobile-navigation .logout a:hover {
  background-color: var(--bs-primary);
}

a {
  text-decoration: none;
}

.footer {
  position: relative;
  margin-top: 480px;
}
.footer .top-footer {
  background-color: var(--mod-primary-bg);
  padding: 65px 10px;
}
.footer .top-footer:after {
  position: absolute;
  z-index: -1;
  top: -400px;
  left: 0;
  width: 100vw;
  height: 400px;
  content: "";
  display: table;
  clear: both;
  background-image: url(../img/footer_shape.svg);
  background-position: center;
  background-position-y: 0px;
  background-size: cover;
}
.footer .top-footer-content {
  position: relative;
}
.footer .top-footer .footer-title {
  position: relative;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.footer .top-footer .footer-title:after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: table;
  width: 25px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--bs-primary-text-emphasis);
  content: "";
}
.footer .top-footer .about p {
  color: var(--bs-primary-text-emphasis);
  text-align: justify;
}
.footer .top-footer .socials {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 885px) {
  .footer .top-footer .socials {
    margin-top: 40px;
    margin-bottom: 40px;
    float: right;
  }
}
.footer .top-footer .socials .social-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer .top-footer .socials .social-links i {
  font-size: 35px;
  color: var(--bs-primary);
  transition: all 0.3s ease-in-out;
}
.footer .top-footer .socials .social-links a {
  display: inline-block;
  margin-top: 5px;
  margin-left: 7px;
  margin-right: 7px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: bold;
}
.footer .top-footer .socials .social-links a:hover {
  transform: translate3d(0, -5px, 0);
}
.footer .top-footer .links a {
  text-align: center;
  display: block;
  margin-bottom: 5px;
  color: var(--bs-primary);
  transition: letter-spacing 0.3s ease-in-out;
}
.footer .top-footer .links a:hover {
  letter-spacing: 1px;
}
.footer .copyright {
  background-color: var(--bs-primary);
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  color: var(--mod-primary-bg);
}
.footer .copyright p {
  font-size: 16px;
}
.footer .copyright span {
  color: #383a43;
  font-weight: bold;
}
.footer .copyright a[href="https://azuriom.com"] {
  color: #383a43;
  font-weight: bold;
}
.footer .copyright .mention {
  color: var(--mod-primary-bg);
  font-size: 10px;
}

@media screen and (max-width: 1200px) {
  .header-nav .navigation {
    display: none;
  }
  .header-mobile-nav {
    display: block;
  }
}
textarea {
  background-color: var(--bs-primary-bg-subtle) !important;
  border: 2px solid var(--bs-primary) !important;
  color: var(--bs-primary-text-emphasis) !important;
  outline: 0 !important;
}
textarea:focus {
  background-color: var(--bs-primary-bg-subtle) !important;
  color: var(--bs-primary-text-emphasis) !important;
  border-color: var(--bs-primary) !important;
}

input {
  background-color: var(--bs-primary-bg-subtle) !important;
  border: 2px solid var(--bs-primary) !important;
  color: var(--bs-primary-text-emphasis) !important;
  outline: 0 !important;
}
input:focus {
  background-color: var(--bs-primary-bg-subtle) !important;
  color: var(--bs-primary-text-emphasis) !important;
  border-color: var(--bs-primary) !important;
}

select {
  background-color: var(--bs-primary-bg-subtle) !important;
  border: 2px solid var(--bs-primary) !important;
  color: var(--bs-primary-text-emphasis) !important;
  outline: 0 !important;
}
select:focus {
  background-color: var(--bs-primary-bg-subtle) !important;
  color: var(--bs-primary-text-emphasis) !important;
  border-color: var(--bs-primary) !important;
}

.badge-success, .badge-primary, .badge-secondary, .badge-warning, .badge-info, .badge-danger,
.btn-success, .btn-primary, .btn-secondary, .btn-warning, .btn-info, .btn-danger {
  font-weight: bold;
}

.btn-danger {
  background-color: #ff5956;
  color: var(--bs-primary-text-emphasis);
}
.btn-danger:hover {
  background-color: #ff403d;
  color: var(--bs-primary-text-emphasis);
}

.page-container-content img {
  height: 275px;
  object-fit: cover;
}

.shop-sidebar {
  background-color: rgba(33, 34, 39, 0.4);
  border: 3px solid #212227;
  padding: 25px 10px;
}
.shop-sidebar .login {
  color: #EFB702;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.shop-sidebar .top-user-info {
  text-align: center;
}
.shop-sidebar .top-user-info img {
  width: 70px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.shop-sidebar .top-user-info h3 {
  font-weight: bold;
  font-size: 22px;
}
.shop-sidebar .top-user-info p {
  font-size: 18px;
}
.shop-sidebar .top-user-info i {
  font-size: 16px;
  color: #F4DF4C;
}
.shop-sidebar .top-user-info a {
  color: #EFB702;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  font-size: 20px;
}
.shop-sidebar .categories a {
  background-color: rgba(33, 34, 39, 0.8);
  padding: 10px 25px;
  font-size: 18px;
  text-transform: uppercase;
  color: #EFB702;
  border-radius: 0px;
  border: none;
  margin: 5px 0;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.shop-sidebar .categories a:hover {
  color: #212227;
  background-color: #EFB702;
}
.shop-sidebar .categories .category {
  background-color: rgba(33, 34, 39, 0.8);
  padding: 10px 25px;
  font-size: 18px;
  text-transform: uppercase;
  color: #EFB702;
  border-radius: 0px;
  border: none;
  margin: 5px 0;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.shop-sidebar .categories .category:hover {
  color: #212227;
  background-color: #EFB702;
}
.shop-sidebar .categories .sub-category {
  margin-left: 10px !important;
  background-color: rgba(33, 34, 39, 0.8);
  padding: 10px 25px;
  font-size: 18px;
  text-transform: uppercase;
  color: #EFB702;
  border-radius: 0px;
  border: none;
  margin: 5px 0;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  border-left: 4px solid #EFB702;
}
.shop-sidebar .categories .sub-category:hover {
  color: #212227;
  background-color: #EFB702;
}
.shop-sidebar .categories .active {
  color: #212227;
  background-color: #EFB702;
}

#shop .card {
  border-radius: 5px;
  border: 3px solid #EFB702;
  text-align: center;
  background-color: transparent;
}
#shop .card .card-body {
  background-color: transparent;
}
#shop .card img {
  width: 80%;
  height: auto;
  margin: 10%;
}
#shop .card h4 {
  margin-bottom: 5px;
}
#shop .card h5 {
  margin-bottom: 10px;
}
#shop .card .btn {
  padding: 10px 25px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0px;
  border: none;
  margin: 5px 0;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

[data-bs-theme=light] .header-nav .header-content:after {
  background-image: url(../img/header_shape_light.svg);
}
[data-bs-theme=light] .footer .top-footer:after {
  background-image: url(../img/footer_shape_light.svg);
}

/*# sourceMappingURL=style.css.map */
