﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    min-width: 250px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.text-large {
    font-size: large;
}

input[type="number"] {
    -moz-appearance: textfield;
    text-align: center;
}

.numeric-input {
    width: 150px;
}

#map {
    height: 400px; /* The height is 400 pixels */
    width: 100%; /* The width is the width of the web page */
}

/* buttons */
/* Basic button styles */
.button {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 6px !important;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin: 5px;
}

    .button:active {
        transform: scale(0.95); /* Makes the button slightly smaller when clicked */
    }

    .button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Primary button styles */
.primary-solid {
    background-color: #264a2e !important;
    color: white;
}

.primary-outline {
    background-color: transparent;
    color: #264a2e !important;
    border: 2px solid #264a2e !important;
    padding: 9px 19px;
}

    .primary-outline:hover {
        color: white !important;
        background-color: #264a2e !important;
    }


/* Secondary button styles */
.secondary-solid {
    background-color: #c4a366 !important;
    color: white;
}

.secondary-outline {
    background-color: transparent;
    color: #c4a366 !important;
    border: 2px solid #c4a366 !important;
    padding: 9px 19px;
}

    .secondary-outline:hover {
        color: white !important;
        background-color: #c4a366 !important;
    }

/* Tertiary button styles */
.tertiary-solid {
    background-color: #94945c !important;
    color: white;
}

.tertiary-outline {
    background-color: transparent;
    color: #94945c !important;
    border: 2px solid #94945c !important;
    padding: 9px 19px;
}

.primary-solid:hover:not(:disabled), .secondary-solid:hover:not(:disabled), .tertiary-solid:hover:not(:disabled) {
    filter: brightness(120%);
}

.primary-solid:disabled, .secondary-solid:disabled, .tertiary-solid:disabled {
    cursor: not-allowed;
    pointer-events: none;
}


.primary-outline:hover:not(:disabled), .secondary-outline:hover:not(:disabled), .tertiary-outline:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.1);
}

.primary-outline:disabled, .secondary-outline:disabled, .tertiary-outline:disabled {
    cursor: not-allowed;
    pointer-events: none;
}


/* Style for the bottom bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* Light gray background */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Optional: adds shadow to the top of the bar */
    padding: 10px 0; /* Padding around the button */
    z-index: 1000;
}

.bottom-bar-inner {
    max-width: 960px;
    height: 100%;
    margin: auto;
    align-items: center;
}

@media only screen and (max-width: 960px) {
    .bottom-bar-inner {
        max-width: 95%;
    }
}

.outline-red {
    border: 1px solid red;
}

.container {
    padding: 8px 0px 8px 0px;
}

.action-link {
    cursor: pointer;
}

@media only screen and (max-width: 759px) {
    .showForMobile {
        display: block;
    }

    .showForDesktop {
        display: none;
    }
}

@media only screen and (min-width: 760px) {
    .showForMobile {
        display: none;
    }

    .showForDesktop {
        display: block;
    }
}

/*Footer*/
#website-links {
    background-color: #e3e0db;
}

#legal-language {
    text-align: left;
    color: white;
}

#social-links {
    text-align: right;
    padding: 15px;
}

@media only screen and (max-width: 759px) {
    #social-links {
        text-align: center;
        padding: 25px 0 20px 0;
    }

    #legal-language {
        text-align: center;
    }
}

#social-links a {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

    #social-links a:hover {
        filter: brightness(0.85);
    }

.footer > .row {
    margin: auto;
    max-width: 1300px;
}

#legal-language p {
    font-size: 12px;
}

@media only screen and (min-width: 760px) {
    #legal-language p {
        position: relative;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

#website-links h2 {
    font-size: 17px;
    font-weight: 700;
    padding-bottom: 5px;
}

#website-links ul {
    font-size: 14px;
    list-style-type: none;
    padding-left: 0;
}

    #website-links ul a {
        text-decoration: none;
        color: #1f1f1f;
    }

        #website-links ul a:hover {
            color: #b56100;
        }

@media only screen and (max-width: 759px) {
    #website-links .row div:not(:first-child) {
        padding-top: 20px;
    }
}
/*End Footer*/

/*Checkout Area*/
.member-info-container .btn-outline-danger {
    color: #474343;
    font-style: italic;
    border-color: transparent;
    font-weight: bold;
}

.memberVerifyBtn {
    --bs-btn-border-radius: 0.0rem;
}

#discount-statement {
    background-color: transparent;
    border: none;
    color: #474343;
    font-style: italic;
    text-align: justify;
}

/*End Checkout Area*/

/*Main Events page*/

@media only screen and (max-device-width: 991px) {
    #Ad-Gutter {
        display: none;
    }
}

@media only screen and (min-device-width: 992px) {
    #Ad-Gutter {
        display: block;
        text-align: right;
    }
}

#Ad-Gutter a img {
    margin-bottom: 20px;
}

    #Ad-Gutter a img:hover {
        filter: brightness(0.85);
    }


.btn-prairiegold {
    --bs-btn-color: #fff;
    --bs-btn-bg: #c4a366;
    --bs-btn-border-color: #c4a366;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #9e8352;
    --bs-btn-hover-border-color: #9e8352;
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b02a37;
    --bs-btn-active-border-color: #a52834;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #c4a366;
    --bs-btn-disabled-border-color: #c4a366;
    --bs-btn-border-radius: 0.0rem;
}

.bi-search-black::before {
    content: "\f52a";
    filter: brightness(0);
}

.form-control-sharp {
    border-radius: 0rem;
}

.card-Events {
    border-top: 2px solid #1f1f1f;
    --bs-card-border-radius: 0.0rem;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    margin-bottom: 0px !important;
}

    .card-Events.highlight {
        background-color: #e3e0db91;
    }

.card-Events-name {
    color: #1f1f1f;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
}

.card-Events-time {
    color: #c4a366;
    font-weight: 700;
}



@media only screen and (max-device-width: 991px) {
    .card-Events-title-square {
        border-right: none;
    }

    .card-Events-descr-square {
        padding-top: 12px;
    }

    .card-Events-descr {
        word-break: break-word;
        padding: 0 20px 10px 0;
    }
}

@media only screen and (min-device-width: 992px) {
    .card-Events-title-square {
        border-right: 2px solid #1f1f1f;
    }

    .card-Events-descr {
        word-break: break-word;
        padding: 0 10px 10px 0;
    }
}



.title-links a, .title-sub-links a {
    color: #1f1f1f;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 2.5;
}

    .title-links a:hover {
        color: #b56100;
    }

.title-sub-links {
    display: none;
}

.title-links div:hover a + div {
    display: flex;
    position: absolute;
    z-index: 99;
}

#PF-links {
    background: #c4a366;
}

#QF-links {
    background: #c4a366;
}

BI-component {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banquet-intro {
    border: 1px solid #c4a366;
    border-radius: 4px;
    margin: 0px 12px;
    max-width: 960px;
    margin: auto;
    font-family: 'Open Sans', sans-serif;
    background-color: rgba(196, 163, 102, 0.05);
    overflow-wrap: break-word;
}

/*    .banquet-intro p {
        font-size: 14px;
        text-align: center;
        padding: 16px 24px;
        margin: 0px;
    }*/

@media only screen and (max-width: 960px) {
    .banquet-intro {
        max-width: 95%;
    }
}

.banquet-intro-header {
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    background-color: #c4a366;
    text-shadow: unset;
    font-weight: 400;
    padding: 10px 24px;
    margin: 0px;
    color: white;
}

/*Add new PF/QF Colors*/
.color-big-bluestem-orange {
    color: #b56100;
}

.color-tall-pine-green {
    color: #264a2e;
}

.color-prairie-gold {
    color: #c4a366
}

.color-topknot-black {
    color: #1f1f1f
}

.color-mesquite-green {
    color: #94945c
}

.color-bobwhite {
    color: #e3e0db
}

.color-bg-tall-pine-green {
    background-color: #264a2e;
}

.color-bg-big-bluestem-orange {
    background-color: #b56100;
}

.color-bg-prairie-gold {
    background-color: #c4a366
}

.color-bg-topknot-black {
    background-color: #1f1f1f
}

.color-bg-mesquite-green {
    background-color: #94945c
}

.color-bg-bobwhite {
    background-color: #e3e0db
}


/*End Main Events page*/
