:root {
  --purple: #690097;
  --pink: #5;
  --black: #5;
  --darkPurple: #170021;
  --headFont: "Bebas";
  --smallHeadFont: "Montserrat";
  --textFont: "Montserrat";
}

.button {
  padding: 12px 32px;
  width: fit-content;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
  color: white;
  font-weight: 500;
  outline: none;
  line-height: 100%;
  font-family: var(--textFont);
}

.buttonS {
  padding: 8px 16px;
  font-size: 12px;
  width: fit-content;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
  color: white !important;
  font-weight: 500;
  outline: none;
  line-height: 100%;
  font-family: var(--textFont);
}

.buttonB {
  padding: 12px 32px;
  width: fit-content;
  text-align: center;
  border-radius: 32px;
  background: none;
  border: none;
  color: var(--darkPurple);
  line-height: 100%;
  outline: 1px solid var(--darkPurple) !important;
  font-family: var(--textFont);
  font-weight: 500;
}

.buttonBS {
  padding: 8px 16px;
  width: fit-content;
  text-align: center;
  border-radius: 32px;
  background: none;
  border: none;
  font-size: 12px;
  color: var(--darkPurple);
  line-height: 100%;
  outline: 1px solid var(--darkPurple) !important;
  font-family: var(--textFont);
  font-weight: 500;
}

p {
  color: var(--darkPurple);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 15.6px */
}

.text {
  color: var(--darkPurple);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 15.6px */
}

.textS {
  color: var(--darkPurple);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 15.6px */
}

.textP {
  color: var(--purple);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}

h4, h2, h3, h5 {
  color: var(--purple);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  margin-bottom: 0;
}

.headTitle {
  color: var(--purple);
  font-family: "Bebas";
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 70px */
}

.headTitleM {
  color: var(--purple);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
}

.headTitleS {
  color: var(--purple);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}

.wrapper {
  height: 100vh !important;
}

.testPage {
  padding-bottom: 120px;
}

.filters {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.filters button {
  opacity: 0.5;
  transition: 0.5s;
}
.filters button.active {
  opacity: 1;
}

.themeList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.themeList .themeRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}
.themeList .themeRow h4.title {
  grid-column: 1/span 4;
}
.themeList .themeRow .rowItem {
  display: flex;
  gap: 5px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.0901960784);
  justify-content: center;
  align-items: center;
}
.themeList .themeRow .rowItem * {
  cursor: pointer;
}

.storeGuide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.storeGuide .step {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.storeGuide .step .path {
  padding: 8px 14px;
  border-radius: 4px;
  background: rgb(40, 44, 52);
  color: rgba(255, 255, 255, 0.9215686275);
  font-size: 14px;
  width: fit-content;
}