html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.container {
    justify-items: end;
}

.bg-lavender {
    background-color: lavender;
}

/* Responsive styles for pv_Comments form */
@media (max-width: 600px) {
    #comments {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        display: block !important;
    }
    #comments > div {
        width: 100% !important;
        padding: 0.5rem !important;
    }
    #comments form input[type="text"],
    #comments form textarea {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
    #comments form textarea {
        height: 120px !important;
    }
    #comments form div[style*="display: table-caption;"] {
        display: block !important;
    }
}