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: 70px;
  background-color:#fdfdfd;
}

.required {
    color: red;
    font-size: 0.9em;
    /*    padding-left: 2px;
    padding-right: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
    
   background-color: rgb(255, 166, 166, 0.1);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;*/
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}



button.green-btn {
    background-color: #07b886;
    /*   font-family: 'Open Sans', sans-serif;*/
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    font-size: 12pt;
    padding: 4px 16px 4px 16px;
    font-weight: normal;
    height: 36px;
    outline: 0;
    color: #fff;
    border: 0;
    overflow: hidden;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.25);
    -moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.25);
    box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.25);
}


    button.green-btn:hover {
        background-color: #06a276;
        color: #fff;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -kthtml-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }



.form-check-input:checked {
    background-color: #333;
    border-color: #333;
}

.form-check-input:focus {
    border-color: #333;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.15);
}

/*.form-check-input-red:focus {*/
.form-check-input-red {
    border-color: red !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.15) !important;
}
