/* ===================================================================
   GLOBAL STYLES
   =================================================================== */

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
}

h3 {
    margin-top: 0px;
}

ul {
    padding: 0;
    margin: 0;
}

::marker {
    content: '- ';
}

li {
    padding: 0;
    margin: 0;
}

/* ===================================================================
   FORM CONTROLS
   =================================================================== */

.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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 15px;
}

.select-label {
    font-weight: normal;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}

.radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    word-wrap: break-word;
    transition: font-weight 0.2s ease;
}

.radio label.selected {
    font-weight: bold;
}

.radio label .small {
    font-size: 12px;
    font-weight: normal;
}

.radio input[type="radio"]:checked + span,
.radio input[type="radio"]:checked ~ span {
    font-weight: bold;
}

.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

/* ===================================================================
   BUTTONS
   =================================================================== */

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-small {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

.btn-primary:hover {
    background-color: #286090;
    border-color: #204d74;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info:hover {
    background-color: #31b0d5;
    border-color: #269abc;
}

.btn-danger {
    color: #fff;
    background-color: #d81111;
    border-color: #d43f3a;
}

    .btn-danger:hover {
        color: #fff;
        background-color: #c9302c;
        border-color: #ac2925;
    }

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: #fff;
}

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 20px;
    white-space: normal;
    word-wrap: break-word;
}

@media only screen and (min-width: 400px) {
    .btn-lg {
        font-size: 20px;
    }
}

@media only screen and (min-width: 570px) {
    .btn-lg {
        font-size: 22px;
    }
}

.btn-order {
    background-color: #28a745;
    color: white;
    font-size: 22px;
    padding: 15px 50px;
    border-radius: 10px;
    margin-top: 20px;
}

.btn-order:hover {
    background-color: #218838;
    color: white;
}

/*.btn-submit-wrapper {
    padding: 20px 0;
    margin-bottom: 40px;
}*/

.buttons-wrapper {
    padding-bottom: 40px;
}

/* ===================================================================
   COMMON COMPONENTS
   =================================================================== */

.box-main {
  /*  background-color: #ffffff;*/
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 100px;
}

@media only screen and (min-width: 768px) {
    .box-main {
        padding: 20px;
    }
}

.box-titel {
    font-size: 30px;
    font-weight: bold;
    padding: 10px 0px 5px 0px;
    margin: 0;
}

.well {
    min-height: 20px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 2px solid lightgray;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 768px) {
    .well {
        padding: 19px;
    }
}

.label-default {
    background-color: #777;
    color: #fff;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

/* ===================================================================
   INDEX PAGE STYLES
   =================================================================== */

.briefkasten {
    width: 100%;
    max-width: 200px;
    padding: 10px;
    align-content: center;
    display: block;
    margin: 0 auto;
}

.briefkasten-col {
    text-align: center;
    margin-bottom: 20px;
}

.form-col {
    padding: 0 15px;
}

.font-titel {
    font-size: 25px;
    font-weight: bold;
    word-wrap: break-word;
    line-height: 1.0;
}

.section-subtitle {
    font-size: 14px;
    word-wrap: break-word;
}

.section-hr {
    margin: 5px 0;
}

.alert-row {
    padding: 0 10px;
    margin-bottom: 15px;
}

.order-col,
.reason-col {
    padding: 0px 25px;
}

.date-select {
    max-width: 200px;
    width: 100%;
}

.absence-date-row {
    padding: 0 5px;
}

.submit-btn-row {
    text-align: center;
   /* padding: 20px 10px 0 10px;
    margin-top: 15px;*/
}

.pricing-info-text {
    text-align: center;
    padding: 20px 20px;
    margin-top: 20px;
}

.pricing-info-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.info-message-row {
    padding: 20px 15px 0 15px;
    text-align: center;
}

.price-message-row {
    padding: 10px 15px 20px 15px;
    text-align: center;
}

@media only screen and (min-width: 400px) {
    .font-titel {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

@media only screen and (min-width: 570px) {
    .font-titel {
        font-size: 32px;
    }

    .submit-btn-row {
        text-align: right;
        padding-right: 10px;
    }

    .info-message-row {
        padding: 30px 20px 0 20px;
    }

    .price-message-row {
        padding: 10px 20px 20px 20px;
    }
}

@media only screen and (min-width: 768px) {
    .briefkasten {
        width: 100%;
        max-width: 100%;
    }

    .briefkasten-col {
        margin-bottom: 0;
    }

    .form-col {
        padding: 0 20px;
    }

    .font-titel {
        font-size: 35px;
    }

    .grund-trenner {
        display: none;
    }

    .btn-lg {
        padding: 10px 50px 10px 50px;
    }

    .info-message-row {
        padding: 40px 40px 0 40px;
    }

    .price-message-row {
        padding: 10px 40px 20px 40px;
    }
}

@media only screen and (min-width: 992px) {
    .font-titel {
        font-size: 40px;
    }

    .order-col,
    .reason-col {
        padding: 0px 25px;
    }
}

@media only screen and (min-width: 1200px) {
    .font-titel {
        font-size: 45px;
    }
}

.padding-left-10 {
    padding-left: 1px;
    color: red;
}

.label-fett {
    font-weight: bold !important;
}

/* ===================================================================
   EINGABEN PAGE STYLES
   =================================================================== */

.input-error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.input-error-hidden {
    display: none;
}

#weitere-personen-button,
#weitere-personen-eingaben {
    margin-top: 10px;
}

#weitere-personen-eingaben .row {
    margin-bottom: 10px;
}

/* ===================================================================
   BESTELLEN PAGE STYLES
   =================================================================== */

.preis-kasten {
    white-space: nowrap;
    color: white;
    background-color: forestgreen;
    padding: 5px 15px 5px 15px;
    border-radius: 20px;
    font-size: smaller;
}

.monate-auswahl {
    font-weight: bold;
}

.monate-auswahl-disabled {
    color: #999999;
    cursor: not-allowed;
}

.summary-label {
    font-weight: bold;
    margin-right: 10px;
}

.summary-row {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-row:last-child {
    border-bottom: none;
}

.price-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: #d81111;
}
