@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --break-point-xs: 320px;
  --break-point-sm: 640px;
  --break-point-md: 720px;
  --break-point-lg: 1024px;
  --break-point-xl: 1200px;
  --break-point-xxl: 1536px;

  --color-primary: #641210;
  --color-second: #9B009B;
  --color-third: #b83933;
  --color-fourth: #e9cfc4;
  --color-fifth: #B97DFF;
  --light-red: #f50010;
  --color-black: #1A1A1A;
  --color-grafiti: #232323;
  --color-light-gray: #C0C0C0;
  --color-dark-gray: #898989;
  --color-green-whatsapp: #25D366;

  --font-family-main: "Inter";
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semi-bold: 500;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;

  --safezone-width: 1100px;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -webkit-text-stroke: unset;
  text-decoration: none;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100vh;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;

  font-family: var(--font-family-main) !important;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;

  background-color: var(--color-black) !important;
  scroll-behavior: smooth;
  overflow-x: hidden;

  color: #FFFFFF;
}

a {
  text-decoration: none !important;
  -webkit-text-stroke: unset;
  color: white;
}

p {
  font-size: 18px;

  @media (max-width: 640px) {
    font-size: 16px;
  }
}

h1,
h2,
h4,
h5,
h6,
p {
  font-family: var(--font-family-main);
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: fit-content;
  padding: 30px;
  flex-grow: 1;

  @media (max-width: 640px) {
    padding: 0;
  }

}

input[type="checkbox"] {
  margin-right: 12px;
  height: 16px;
  width: 16px;
  background: var(--color-dark-gray);
  transition: background 250ms;
  border: 1px solid var(--color-light-gray);
  border-radius: 3px;

  &::after {
    content: "";
    position: relative;
    display: none;
    left: 2px;
    top: 2px;
    width: 10px;
    height: 10px;
    transition: background 250ms;
    background-color: #FFFFFF;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  }

}

input[type="radio"] {
  margin-right: 12px;
  height: 16px;
  width: 16px;
  background-color: #898989;
  transition: background 250ms;
  border: 1px solid #C0C0C0;
  border-radius: 20px;

  &::after {
    content: "";
    position: relative;
    display: none;
    width: 8px;
    height: 8px;
    left: 3px;
    top: 3px;
    border-radius: 20px;
    background-color: #FFFFFF;
    transition: background 250ms;
  }

}

input[type="radio"],
input[type="checkbox"] {

  &:checked::after {
    display: block;
  }

  &:not([disabled]),
  &:focus {
    background: #E2E8F0;
    border-color: #64748B;
  }

  &:checked {
    background: #e00303;
    border-color: #e00303;
  }

  &:disabled {
    opacity: 0.5;
    cursor: not-allowed;

    &::after {
      background: #FFFFFF;
    }
  }
}

select:focus {
  background: #F2F2F2;
	border: 1px solid #5A7EC7;
	border-radius: 5px;
}

select::after {
  content: "";
  position: relative;
  pointer-events: none;
  right: 10px;
  background-color: var(--color-dark-gray);
  width: 12px;
	height: 12px;
	background-color: var(--color-dark-gray);
  clip-path: polygon(50% 0%, 100% 40%, 0% 60%, 17% 60%, 50% 83%, 83% 60%, 100% 60%, 50% 100%, 0% 60%, 100% 40%, 83% 40%, 50% 17%, 16.67% 40%, 0% 40%);
}

mark {
  background-color: unset;
  color: var(--color-third);
}