﻿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;
}

/* Ändern der Farbe und des Hintergrundes der Textauswahl */
::selection {
    color: black;
    background: #f87d62;
}

/* Für Browser, die ::selection nicht unterstützen */
::-moz-selection {
    color: black;
    background: #f87d62;
}


.btn-primary:hover {
    color: #FB532E !important;
    background: #FFF !important;
}

.btn-outline-primary:hover {
    background: #FB532E !important;
    color: #FFF !important;
}

.btn-secondary:hover {
    color: #7c7a7a !important;
    background: #FFF !important;
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
    color: #FFF;
}


.btn:hover {
    color: #FFF;
}
/*.btn-primary {
    color: #fff;
    background-color: #fb532e;
    border-color: #fb532e;
}

    .btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #f87d62;
        border-color: #f87d62;
    }


.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 #f87d62;
}*/