html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Poppins';
}

.ocultar{
    visibility:hidden;
}

.mostrar{
    visibility: visible;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

.close {
    float: right;
}

#loader {
    position: fixed;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.required {
    color: red;
}