@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #2B90C8;
  --2color: #51A1CE;
  --3color: #9FC0DF;
  --4color: #C8D5E8;
  --background: #E7EDF0;
  --background2: #F5F6F7;
  --dark: #444750;
  --text: #393939;

  --notif: #F57600;
}

.big-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.normal-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
  color: var(--text);
  font-style: normal;
}

body {
  background-color: var(--background);
}

/* HEADER */
/*
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    box-shadow: 0 24px 32px rgba(0, 0, 0, 0.164);
    height: 10vh;
    background-color: #E7EDF0;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 1vw;
    height: 100%;
}

.header_right_second{
    display: flex;
    justify-content: center;
    align-items: center;
}

svg {
    height: 5px;
}