﻿:root {
    --themeColor: #ea4c89;
    --themeLightColor: #ffb8d4;
    --themeVeryLightColor: #fff3f8;
    --themeBorderColor: #fbd2e2;
}

html {
    scroll-behavior: smooth !important;
}

body {
    /*padding-top: 50px;*/
    padding-bottom: 20px;
    background-color: white !important;
    font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/

.btn {
    height: 40px;
    padding: 10px 16px;
    border-radius: 8px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
}

.btn-theme {
    background-color: var(--themeColor) !important;
    color: white !important;
}

.btn-theme-light {
    background-color: var(--themeLightColor) !important;
    color: white !important;
}

.btn-theme:hover {
    background-color: white !important;
    color: var(--themeColor) !important;
    border-color: var(--themeColor) !important;
}

.btn-theme-sm {
    padding: 5px 12px !important;
    height: auto !important;
}

.theme-color {
    color: var(--themeColor) !important;
}

.theme-light-color {
    color: var(--themeLightColor) !important;
}


.bg-theme-color {
    background-color: var(--themeColor) !important;
}

.bg-theme-light-color {
    background-color: var(--themeLightColor) !important;
}

.bg-theme-very-light-color {
    background-color: var(--themeVeryLightColor) !important;
}

hr {
    background-color: #bab7b7 !important;
    margin: 0 !important;
}

.nav-link {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.navbar-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-brand {
    padding-right: 30px !important;
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-expand-sm {
    justify-content: flex-end !important;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: var(--themeLightColor); /*rgba(126, 239, 104, 0.8)*/
    box-shadow: 0 1px 1px var(--themeBorderColor) inset, 0 0 8px var(--themeBorderColor);
    outline: 0 none;
}

#loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
    background-color: #fff;
    z-index: 99999;
}