/* Buttons */
button {
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.btn__main,
.btn__main:hover {
  color: var(--white);
}

.btn__main {
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  background-color: var(--blue);
  border-radius: 10px;
  text-align: center;
}

.btn__load__more {
  color: var(--blue);
  background-color: var(--blue10);
  margin: 0 auto;
}

.btn__load__more > svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
}

/* Focus */
button:focus-visible {
  outline: none;
}

/* List */
ul {
  list-style: none;
}

/* Link */
a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* Flex */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap;
}

/* Sizes */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* Gap */
.gap10 {
  gap: 10px;
}

.gap15 {
  gap: 15px;
}

.gap20 {
  gap: 20px;
}

.gap25 {
  gap: 25px;
}

.gap30 {
  gap: 30px;
}

.gap40 {
  gap: 40px;
}

.gap50 {
  gap: 50px;
}

.gap80 {
  gap: 80px;
}

/* Fonts */
.bold {
  font-weight: 700;
}

.font48 {
  font-size: 48px;
}

.font40 {
  font-size: 40px;
}

.font32 {
  font-size: 32px;
}

.font24 {
  font-size: 24px;
}

.font14 {
  font-size: 14px;
}

.font12 {
  font-size: 12px;
}

/* Text transform */
.uppercase {
  text-transform: uppercase;
}

/* Input */
input {
  border: 0;
}

input:focus {
  outline: none !important;
  box-shadow: none !important;
}

input::placeholder {
  color: var(--blue30);
}
