body {
    font-size: 0.95rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Spectral, serif;
    font-weight: 300;
    display: flex;
    align-items: stretch;
    color: black !important;
    background-color: #fff !important;
    min-height: 100vh !important;
}

/* Cursor */
.pointer{
    cursor: pointer;
}
.disabled{
    cursor: not-allowed;
}
.move {
    cursor: move !important;
}

/* Text */
.font-weight-100{
    font-weight: 100;
}
.font-weight-200{
    font-weight: 200;
}
.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-700{
    font-weight: 700;
}
.font-weight-800{
    font-weight: 800;
}
.font-weight-900{
    font-weight: 900;
}

.color-inherit{
    color: inherit !important;
}

/* Tables */
.left_center {
    text-align: left;
    vertical-align: middle !important;
}
.center_center {
    text-align: center;
    vertical-align: middle !important;
}
.right_center {
    text-align: right;
    vertical-align: middle !important;
}

/* Utility */
.ps-6{
    padding-left: 5rem;
}
.pe-6{
    padding-right: 5rem;
}

.mobile-w-100{
    width: auto;
}
@media (max-width: 992px) {
    .mobile-w-100{
        width: 100%;
    }
}

.text-block-html *{
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
.text-block-html h1{
    font-size: 3.125rem;
    line-height: 1.17;
}
.text-block-html p,
.text-block-html li{
    margin-bottom: 0;
    font-size: .875rem;
    line-height: 2.29;
}

/* Buttons */
.btn.button{
    text-transform: uppercase;
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .1875rem;
    line-height: 2;
    padding: 10px 30px;
    border-radius: 10px;
}
.btn:focus {
    outline:0;
    box-shadow:none;
}

.btn-outline-beige{
    color: #928763;
    border-color: #928763;
}
.btn-outline-beige:hover{
    background-color: #928763;
    color: white;
    transition: all .3s;
}

/* Backgrounds */
.bg-success-light{
    background-color: rgba(25,135,84,.4);
}

/* Shadows */
.shadow-sm-top{
    box-shadow: 0 -.125rem .25rem rgba(0,0,0,.075)!important
}

/* Tabs */
.nav-tabs > .nav-item > .nav-link.active{
    box-shadow: 0 -.125rem .25rem rgba(0,0,0,.075)!important
}

/* Inputs */
input.no-focus:focus {
    outline: 0;
    box-shadow: none;
    border-color: #ced4da;
}

/* Cards */
.card-hover{
    transition: 0.4s;
}
.card-hover.shadow-sm:hover{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.card-hover[class*="bg-"].bg-opacity-75:hover {
    --bs-bg-opacity: 1 !important;
}
