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

:root {
  --color-white: #fff;
  --color-black: #000000;
  --color-gray: #ced5dc;

  --dashboard-gap: 20px;
  --padding-container: 2.3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where(a, ul, ol, li) {
  list-style: none;
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  width: 100vw;
  height: 100vh;
  font-style: normal;
  font-weight: 500;
  margin-left: 0 !important;
  margin-top: 0;
}

em {
  font-style: normal;
}

.header {
  margin-bottom: 20px;
}

.wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.title {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
}

.btn-danger {
  width: 125px;
  background: var(--color-red);
  font-size: 20px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius: 100px;
  color: var(--bg-primary);
}

.btn-terciary {
  width: 125px;
  background: var(--color-medium-turquoise);
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  color: var(--bg-primary);
}

/*figures*/
.meditateFig {
  position: relative;
  height: 170px;
}

/*Icones*/
.icon {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.dashboard .icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-position: center center;
  background-size: 24px 24px;
  background-color: var(--color-green);
}

/*Classes Globais*/
.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

.center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.border {
  border: 2px solid #000;
}

a {
  text-decoration: none;
}

/* Classes criadas */

.btn-border-green {
  border: 1px solid #71ddb1;
  border-radius: 100px;
  background-color: var(--bg-primary);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  padding-right: 40px;
}

.btn-border-green:hover {
  background-color: var(--color-green);
  color: var(--bg-primary);
}

.btn-green {
  border-radius: 100px;
  background-color: var(--color-green);
  padding-top: 15px;
  padding-bottom: 15px;
  width: 150px;
  border: none;
  /* padding-left: 40px;
    padding-right: 40px; */
}

.btn-green:hover {
  box-shadow: 1px 0px 63px -8px rgba(0, 255, 238, 1);
  transform: scale(1.1);
}

.btn-font {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-white);
}

.btn-font-blue {
  font-size: 16px;
  font-weight: bolder;
  color: var(--bg-primary);
}

.m-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.m-30 {
  margin: 30px;
}

.m-20 {
  margin: 20px;
}

.m-10 {
  margin-inline: 10px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.lbl-green {
  color: var(--color-green);
}

.lbl-white {
  color: var(--color-white) !important;
}

.fs-30 {
  font-size: 30px !important;
  line-height: 30px;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fs-10 {
  font-size: 10px;
}

.text-rgt {
  align-self: flex-start;
}

.text-left {
  text-align: left;
}

.fw-300 {
  font-weight: 300;
}

.fs-normal {
  font-weight: normal;
}

.fs-bold {
  font-weight: bold;
}

.fs-medium {
  font-weight: medium;
}

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

.p-inline-20 {
  padding-inline: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.m-auto {
  margin: auto;
}

.mx-10 {
  margin-inline: 10px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.bold {
  font-weight: bold;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.w-auto {
  flex-grow: 1;
  flex-shrink: 0;
}

.w-100 {
  width: 100%;
}

.w-80 {
  width: 80%;
}

.h-100 {
  height: 100% !important;
}

.h-60 {
  height: 60% !important;
}

.relative {
  position: relative;
}

.deg-90 {
  transform: rotate(-90deg);
}

.deg-180 {
  transform: rotate(-180deg);
}

.w-340 {
  width: 360px !important;
  max-width: 360px !important;
}

.w-250 {
  width: 250px;
}