/** Generic - Not Vuetify specific, as soon as you have a custom template have this.  */
/** Extremely important to have the header as is like the other divi pages */
#top-header .container {
  padding-bottom: 0;
}

#main-header .container {
  padding: 0;
  width: 80%;
}

/* This solves an issue when v-select dropdown shows in the bottom right corner */
#app .container, #app {
  position: static;
}

/* otherwise the min height is 100vh this creates problem for small pages. */
.v-application--wrap {
  min-height: auto;
}

/** Vuetify Specific Starts Here */
input {
  border: none !important;
}

[v-cloak] {
  display: none !important;
}

/** Project Specific Code Goes Here */
body, p {
  font-family: "Hind Vadodara", sans-serif !important;
  font-size: 14px;
}

.v-application {
  font-family: "Hind Vadodara", sans-serif !important;
}

h1, h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px !important;
}

/* Small Devices, Tablets */
/* Medium Devices, Desktops */
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  body {
    font-size: 16px;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px !important;
  }

  body, p {
    font-size: 18px;
  }
}

/*# sourceMappingURL=vuetify.css.map */
