:root {
    --default_orange_color: rgb(255, 102, 0);
    --default_header_purple: #DC338D;
    --default_purple_from_gradient: #8000DF;
    --default_light_purple_from_gradient: #8507F9;
    --default_pink_from_gradient: #DA00B1;
    --default_pink: #FF00AE;
    --default_vibrant_pink_from_gradient: #FF286A;
    --default_vibrant_orange_from_gradient: #FF3E47;
    --default_green_for_card: #9ED927;
    --default_light_green_for_gradient: #5EE59A;
    --default_dark_green_for_gradient: #73E175;
    --default_gray_color: #898989;
  }

  html {
    scroll-behavior: smooth;
  }

  *{
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
  }

  .max_widht_limiter {
    width: 100%;
    max-width: 1280px;
  }

  .max_widht_limiter_custom {
    max-width: 1420px;
  }

  .main_top_container {
    position: relative;
    top: 90px;
  }

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

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

.sides_padding {
  padding: 0 16px;
}

.wpp_button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  text-decoration: none;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
}

input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus,
input:-moz-autofill:active {
    box-shadow: 0 0 0 30px transparent inset !important;
}