﻿body {
    background-color: #0D6780 !important;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: "Roboto", sans-serif;
    font-size: 17px;
}

/* HEADER */
.page-header-fixed .page-container {
    margin-top: 0px !important;
}

.public-main-header {
    font-family: "Roboto", sans-serif;
    height: auto !important;
    min-height: 80px;
    border-bottom: 1px solid #e7ecf1 !important;
    display: flex;
    align-items: center;
}

.public-main-header .page-header-inner {
    width: 100%;
    background-color: white !important;
}

.header-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-time-section {
    text-align: right;
    padding-right: 15px;
}

.location-name {
    font-size: 26px;
    line-height: 20px;
    color: #bb1c27;
    font-weight: 500;
}

.live-clock {
    font-size: 16px;
    color: #0d6780;
    display: inline-block;
    margin-left: 10px;
    font-weight: 500;
}

.logo-public-header {
    max-height: 60px;
    width: auto;
    margin: 10px 0;
}

.public-header {
    background: #0D6780;
    padding: 30px 0;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.public-header h1 {
    margin: 0;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}

.public-subheader {
    background-color: #f2f7f8;
    padding: 15px 0;
    border-bottom: 1px solid #e7ecf1;
}

.public-subheader h2 {
    margin: 0;
    font-weight: 400;
    color: #0D6780;
    font-size: 14px;
}

.public-subheader h2 a {
    color: inherit;
    text-decoration: none;
}

.public-subheader h2 a:hover {
    text-decoration: underline;
    color: inherit;
}

/* END HEADER */

.container-fluid-custom {
    padding-left: 30px;
    padding-right: 30px;
}

.container-custom {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-content-padding {
    padding: 25px 0;
    min-height: 80vh;
    background-color: white;
}

.public-description {
    color: black;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* FORM */
.container-public-form {
    background: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #F2F7F8;
    color: black !important;
}

.container-public-form h3 {
    color: #BB1C27;
    /*font-size: 25px;*/
    font-weight: 400;
    line-height: 33px;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}

.public-divider {
    width: 30px;
    height: 4px;
    background-color: #BB1C27;
    margin: 8px 0 20px 0;
}

.container-public-form .required:after {
    color: #BB1C27;
}

.field-validation-error {
    color: #BB1C27;
}

/* Price */
.container-public-price {
    background-color: #F2F7F8;
    padding: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.invoice-info-message {
    display: block;
    font-size: 12.5px
}

/* END FORM */

/* HEADERS */
.public-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d1dee2;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.public-card-title {
    color: #0D6780;
    font-size: 22px;
    font-weight: 700;
}

.container-public-price .price-total {
    color: #BB1C27;
    font-size: 28px;
    font-weight: 700;
}

.container-public-price .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
}

.container-public-price .price-label {
    font-weight: 400;
}

.container-public-price .price-amount {
    font-weight: 600;
}

/* END HEADERS */

/* ACTIONS */
.form-actions {
    background-color: transparent;
    padding: 20px 0;
    border: none;
    margin-top: 10px;
}

.form-actions .btn {
    margin-right: 10px;
}

.form-actions .btn.green {
    background-color: #0D6780;
    border-color: #0D6780;
}

.form-actions .btn.green:hover,
.form-actions .btn.green:focus,
.form-actions .btn.green:active,
.form-actions .btn.green:focus-visible {
    background-color: #0b566b;
    border-color: #0b566b;
    color: white;
}

/* END ACTIONS */

/* CUSTOM TOGGLE SWITCH */
.toggle-flex-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-top: 5px;
    flex-shrink: 0;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px !important;
}

.custom-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

input:checked+.custom-slider {
    background-color: #0D6780;
}

input:focus+.custom-slider {
    box-shadow: 0 0 1px #0D6780;
}

input:checked+.custom-slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}