:root {
    --blue: #0577BE;
    --white: #ffffff;
}

html {
  font-size: 14px;
}

.bg-blue {
    background-color: var(--blue);
}

.text-blue {
    color: var(--blue);
}

.rounded-12 {
    border-radius: 12px;
}

.border-dashed {
    border-style: dashed;
}

.btn-purple-blue {
    color: var(--white);
    background: linear-gradient(30deg, #C146FC, #41B4FB);
    /*transition: all ease-in-out 1000ms;*/
}

.btn-purple-blue:hover, .btn-purple-blue:active, .btn-purple-blue.active, .btn-purple-blue:focus {
    color: var(--white);
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}