/* THEME [ START ] */
:root {
    --color-scapole-orange: #F0621E;
    --color-scapole-grey: #5B5B5C;
    --color-scapole-grey-2: #404041;
    --color-scapole-grey-3: #424143;
    --color-scapole-grey-4: #8c8e90;
    --color-scapole-grey-5: #dbdddf;
    --color-scapole-grey-6: #a9abad;
}

h1.text-orange,
h2.text-orange,
h3.text-orange,
h4.text-orange,
h5.text-orange,
h6.text-orange
p.text-orange {
    color: var(--color-scapole-orange)!important;
}

h1.text-grey,
h2.text-grey,
h3.text-grey,
h4.text-grey,
h5.text-grey,
h6.text-grey,
p.text-grey {
    color: var(--color-scapole-grey)!important;
}

svg.icon-default {
    fill: #fff!important;
    width: 1.2em!important;
    height: auto!important;
}

svg.icon-default,
svg.icon-default.google {
    width: 1.5em!important;
    height: auto!important;
    fill: #fff!important;
}

h1.section-title {
    position: relative;
    text-decoration: none;
    font-weight: bold;
    color: var(--color-scapole-grey)!important;
    transition: all .35s ease;
}

h1.section-title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: var(--color-scapole-orange);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

h1.section-title::before  {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

h1.page-title {
    position: relative;
    text-decoration: none;
    font-weight: bold;
    color: var(--color-scapole-grey)!important;
    transition: all .35s ease;
}

h1.page-title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: var(--color-scapole-orange);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

h1.page-title::before  {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

h2.page-subtitle-title::before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

h2.page-subtitle {
    position: relative;
    text-decoration: none;
    font-weight: bold;
    color: var(--color-scapole-grey)!important;
    transition: all .35s ease;
}

h2.page-subtitle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: var(--color-scapole-orange);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

h2.page-subtitle::before  {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

div.action-default {
    background-color: #eee;
    border: 1px solid #000;
}

form.form-default {
    background-color: #eee;
    border: 1px solid #000;
}

.custom-switch .custom-control-label::before,
.custom-switch .custom-control-label::after {
    cursor: pointer;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--color-scapole-orange);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.modal-backdrop {
    opacity: 0.8!important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* THEME [ END ] */


#urgency-bar,
#urgency-bar:hover {
    text-decoration: none;
}

/* NAV [ START ] */
nav#main {
    -webkit-box-shadow: 1px 1px 20px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 20px -2px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 20px -2px rgba(0,0,0,0.2);
}

nav#main button.navbar-toggler {
    border-color: var(--light);
}

nav#main button.navbar-toggler:focus {
    outline: var(--light);
    outline: var(--light);
}

nav#main {
    margin-bottom: 0!important;
}

nav#main li > .nav-link {
    position: relative;
    text-decoration: none;
    font-weight: bold;
    color: var(--color-scapole-grey)!important;
    transition: all .35s ease;
}

nav#main ul:first-child li > .nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-scapole-orange);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

nav#main ul:first-child li > .nav-link:hover {
    color: var(--color-scapole-orange)!important;
}

nav#main ul:first-child li > .nav-link:hover::before  {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

nav#main #app-nav-items .nav-item.dropdown .dropdown-menu a.dropdown-item {
    color: var(--color-scapole-grey-2);
    font-weight: bold!important;
}

nav#main #app-nav-items .nav-item.dropdown .dropdown-menu a.dropdown-item:hover {
    background-color: #fff!important;
    color: var(--color-scapole-orange);
}

nav#main ul.navbar-nav .nav-link button.btn.login-btn {
    color: var(--color-scapole-orange);
    border-color: var(--color-scapole-orange);
}

nav#main ul.navbar-nav .nav-link:hover button.btn.login-btn {
    background-color: var(--color-scapole-orange);
    color: #fff;
}
/* NAV [ END ] */

/* FORMS [ START ] */
.form-group ul.errorlist {
    padding-left: 1rem;
    margin-bottom: 0;
}
/* FORMS [ END ] */

/* FOOTER [ START ] */
footer.footer-page { 
    background-color: #58595b;
}

footer.footer-page .footer-title { 
    margin-bottom: 15px;
}

footer.footer-page ul {
    list-style-type: none;
}

footer.footer-page .footer-col {
    margin-bottom: 30px;
}

footer.footer-page .footer-col-1 {
    font-size: 12px;
}

footer.footer-page .footer-col-2 h6 {
    text-decoration: underline;
}

footer.footer-page #row-copy-right {
    height: 45px;
    background-color: #212529;
    font-size: 1rem;
    font-weight: 300;
    border-top: 2px solid var(--color-scapole-orange);
    padding-top: 35px;
    padding-bottom: 80px;
}
/* FOOTER [ END ] */

ul.errorlist {
    list-style-type: none!important;
    padding-left: 0!important;
    /* font-weight: 500; */
    color: #dc3545!important;
}