:root {
  --border-radius: 7px;
  --mob-menu-color: rgb(34, 27, 22);
  --bg-color: #180e08;
}

body {
  font-family: "Rooters", sans-serif;
  font-weight: 400;
}

@font-face {
  font-family: "Rooters";
  src: url("../assets/fonts/RootersRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Proxima";
  src: url("../assets/fonts/Proxima_Nova_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Proxima";
  src: url("../assets/fonts/Proxima_Nova_Semibold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Proxima";
  src: url("../assets/fonts/Proxima_Nova_Thin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Proxima";
  src: url("../assets/fonts/Proxima_Nova_Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Proxima";
  src: url("../assets/fonts/Proxima_Nova_Black.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.main-page-wrapper {
  background: var(--bg-color) !important;
}
.wrapp-header {
  background-color: var(--mob-menu-color);
}

.navigation-wrap {
  margin: 15px 0 0 0;
  height: 150px;
  overflow-y: auto;
}

.navigation-wrap::-webkit-scrollbar {
  width: 2px;
  background: black;
  border-radius: 10px;
}

.navigation-wrap::-webkit-scrollbar-thumb {
  background-color: rgb(150 100 75);
  border-radius: 10px;
}

.swiper-slide a {
  display: block;
  justify-self: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

div[class^="p-image-grid-cat-"] {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.p-imagegrid-item-img {
  transition: filter 0.2s ease;
  width: 200px;
  height: 125px;
  border-radius: var(--border-radius);
}

div[class^="p-image-grid-cat-"] > div {
  margin: 0 5px 0 5px;
}

.p-imagegrid-item-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.p-imagegrid-overlay {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.p-imagegrid-overlay-content {
  text-align: center;
}

.p-imagegrid-item-container:hover .p-imagegrid-overlay {
  opacity: 1;
  pointer-events: auto;
}

.p-imagegrid-item-container:hover .p-imagegrid-item-img {
  filter: blur(10px);
  border-radius: var(--border-radius);
}

.p-imagegrid-item-container:hover {
  border-radius: var(--border-radius);
}

div[class^="p-title-bar-cat-"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

div[class^="p-banner-"] {
  display: flex;
}

div[class^="p-listbox-wrapper-"] {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  user-select: none;
}

img[class^="p-listbox-item-content-img-"] {
  min-width: 200px;
  min-height: 75px;
  padding: 0 7px 0 7px;
}

.p-listbox-wrapper-providers::-webkit-scrollbar {
  display: none;
}

.top-bar-left {
  display: flex !important;
}

ul[class^="p-fmenu-list-"] {
  display: flex;
  justify-content: space-evenly;
}
