a {
    color:#333;
}

.navbar-brand-img
{
    max-height: 5.5rem;
}

.btn-primary {
    background-color: #192a55;
}

check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle, .btn-primary:hover {
    background-color: #192a55;
    border-color: #22416a;
    color: #fff;
}
.btn-primary-soft {
    background-color: rgb(90 128 225 / 40%);
    color: #1d377a;
}
.btn-primary-soft:hover {
    background-color: rgba(25, 42, 85, 0.34);
    color:#fff;
}

.dropdown-header {
    color: #4a7390;
}
.text-primary {
    color: #7e0808 !important;
}
.nav-link:hover {
    color: #4a6890;
}

.grad {
    background-image: linear-gradient(
        45deg
        , #6caafd, #5375c1);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.navbar {
    padding:10px 0 10px 0;
}

.grad-top {
    border-top:2px solid;
    border-color:#73c2fd !important;
}

.bg-dark {
    background-color:#192a55!important;
}

.text-dark {
    color:#192a55!important;
}
.footer-brand {
    max-height: 4rem;
}

.front-page-img {
    max-height: 10rem;
}

.text-reset {
    font-size:11pt;
}

p.desc {
    color: #767676;
    font-size: 9pt;
}

.brand-text {
    stroke: black;
    font-family: 'Fjalla One', sans-serif;
    text-shadow: 0px 0px 15px #fff;
}

.nav-link:hover {
    color: #1b2f4e;
}

.about-pic {
    max-height: 15rem;
}

.form-control {
    border:1px solid #b1b1b1;
}


/* MS FORM START */
/*form styles*/
#bookingForm {
    position: relative;
}

#bookingForm fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;
    height:100%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#bookingForm fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
/*#bookingForm input, #bookingForm textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
}

#bookingForm input:focus, #bookingForm textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #1b4e42;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}*/

/*buttons*/
#bookingForm .action-button {
    width: 100px;
    background: #1b2f4e;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#bookingForm .action-button:hover, #bookingForm .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #1b2f4e;
}

#bookingForm .action-button-previous {
    width: 100px;
    background: #909090;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#bookingForm .action-button-previous:hover, #bookingForm .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #717171;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: #000000;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: #fff;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #1b2f4e;
    color: #fff;
}

.form-select {
   border:1px solid #b1b1b1;
}

.btn-outline-primary {
    border-color: #1b2f4e;
    color: #1b2f4e;
}

.btn-outline-primary:hover {
    background-color: #1b2f4e;
    border-color: #1b2f4e;
    color: #fff;
}

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

/**
* Shows how you can use CSS to style your Element's container.
* These classes are added to your Stripe Element by default.
* You can override these classNames by using the options passed
* to the `card` elemenent.
* https://stripe.com/docs/js/elements_object/create_element?type=card#elements_create-options-classes
*/

.StripeElement {
    height: 40px;
    padding: 10px 12px;
    width: 100%;
    color: #32325d;
    background-color: white;
    border: 1px solid #b1b1b1;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

.summaryList li {
    list-style: none;
    margin-left:0;
    margin-bottom: 4px;
}

.grandTotal {
    color: #469333;
    font-weight:bold;
}
.formInfo {
    font-size:9pt;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #4da2ce;
}

.error-payment {
    font-size:8pt;
    color: #a10000;
}

.error {
    color:#a10000;
    font-weight: bold;
}

.btn-primary:disabled {
    background-color: rgba(62, 108, 125, 0.53);
}

input:read-only .form-control[readonly] {
    background-color:#fff;
}

@media (max-width: 767.98px) {
    .card-bleed {
        margin-left: 0;
        margin-right: 0;
    }
}

.summary-info {
    font-size: 10pt;
    background-color: #fffff5;
    border: 1px solid #f5df81;
    border-radius: 10px;
    padding: 10px;
}


.btn-primary:active, .btn-primary:focus
{
    background-color: #336dbb;
}

.bg-between
{
    background-size: auto 22vw;
}
