
:root {
    --main-color: #E9BF6E;
    --alt-color: #111;
    --main-color-dark: #E2AA3C;
}

html,
body {
    background: #FFF;
    color: #121926;
    width: 100%;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.heading {
  font-family: "Playfair Display", serif;
}

.hide-in-sm {
    display: flex !important;
}

.show-in-sm {
    display: none !important;
}

.swal-modal * {
    text-align: center;
}

.btn:focus,
a:focus,
.form-control:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.btn {
    cursor: pointer;
}

.bg-main {
    background: var(--main-color) !important;
}

.text-main {
    color: var(--main-color) !important;
}

.text-main-dark {
    color: var(--main-color-dark) !important;
}

.bg-main-alt {
    background: var(--alt-color) !important;
}

.text-main-alt {
    color: var(--alt-color) !important;
}

.bg-black {
    background: black !important;
}

.text-black {
    color: black !important;
}

.bg-white {
    background: white !important;
}

.text-white {
    color: white !important;
}

/* Color Utilities */
.text-gold {
  color: #e9bf6e;
}
.text-dark {
  color: #201b1d;
}
.text-light {
  color: #f8f6f3;
}
.text-gray {
  color: #737373;
}

.bg-gold {
  background-color: #e9bf6e;
}
.bg-dark {
  background-color: #201b1d;
}
.bg-light {
  background-color: #f8f6f3;
}
.bg-cream {
  background-color: #fdf9f3;
}

a {
    text-decoration: none !important;
}

.navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none;
    outline: none;
}

.rounded-top-10 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rounded-bottom-10 {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.rounded-5 {
    border-radius: 5px;
}

.rounded-10 {
    border-radius: 10px;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

.font-105 {
    font-size: 105%;
}

.font-110 {
    font-size: 110%;
}

.font-95 {
    font-size: 95%;
}

.font-90 {
    font-size: 90%;
}

.font-85 {
    font-size: 85%;
}

.font-80 {
    font-size: 80%;
}

.form-group.row .col-md-3,
.form-group.row .col-md-4 {
    padding-top: 8px;
}

.pointer {
    cursor: pointer;
}

@media only screen and (max-width:786px) {
    .hide-in-sm {
        display: none !important;
    }

    .show-in-sm {
        display: flex !important;
    }

    div.px-4 {
        padding-left: 0.8rem !important;
        padding-right: 0.8rem !important;
    }

    div.pl-5.pr-5 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    div.p-5 {
        padding: 10px !important;
    }

}
