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;
}
label {
    cursor: pointer;
}
.validation-invalid-label {
    color: white !important;
    font-size: 75%;
    border: solid 1px darkred;
    border-radius: 5px;
    padding: 2px 7px;
    background: darkred !important;
    background: rgba(169, 13, 13, .58) !important;
}

    .validation-invalid-label.field-validation-valid {
        display: none;
    }

img.icon{
    width:50px;
}
input[type=radio] {
    width: 18px;
    height: 18px;
}


/*list*/
.list-display li {
    margin-bottom: .4rem;
    font-size: 1.1rem;
}

.list-checkmarks {
    padding-left: 1.5rem;
}

    .list-checkmarks li {
        list-style-type: none;
        padding-left: 1rem;
    }

        .list-checkmarks li:before {
            font-family: 'FontAwesome';
            content: "\f00c";
            margin: 0 10px 0 -28px;
            color: #17aa1c;
        }