/*BODY*/
body
{
    font-family: 'Ubuntu', Arial, serif !important;
    font-weight: normal;
    min-height: 100vh;
    font-size: 1em;
    color: var(--gray);
    min-width: 320px;
    background-color: var(--white);
}
ul:not(.normal-list)
{
    padding: 0px;
    list-style: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6
{
    font-weight:normal;
}
/*COMPONENTS*/
.btn,.nav-pills .nav-link,.alert,.form-control,.card,.jumbotron,.breadcrumb
{
    border-radius: 0px;
}
.form-control
{
    margin-bottom: .5rem;
}
/*BUTTON*/
.btn
{
    border: 3px solid transparent;
    text-transform: uppercase;
    font-size: 0.75em;
}
.btn-light
{
    padding: 1em .5em;
    background-color: transparent;
}
.btn-dark
{
    padding: 1em .5em;
    background-color: transparent;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle,
.btn-light:hover
{
    text-decoration: underline !important;
    background-color: transparent;
}
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle,
.btn-dark:hover
{
    text-decoration: underline !important;
    background-color: transparent;
}
/*JUMBOTRON*/
.jumbotron
{
    overflow: hidden;
    padding: 0px;
    text-align: center;
}
.jumbotron>.lead
{
    font-weight: normal;
}
/*CARD*/
.card
{
    border-style: none;
}
.card-img-top
{
    border-radius: 0px
}
/*CAROUSEL*/
.carousel-item h5,.carousel-item p
{
    text-shadow: 0 0 8px #000000;
}
.carousel-caption h5
{
    font-size: 1.25em;
    font-weight: bolder;
}
.carousel-caption
{
    text-align: center;
    font-size: 4vw;
    top: 50%;
    transform: translateY(-50%);
}
/*CUSTOM-SELECT*/
.custom-select
{
    -webkit-appearance: none;
    -moz-appearance: none;
}
.shortcut-notification-badge
{
    display: none;
    background-color: #be202e;
    color: white;
    font-size: 25px;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
}
/* TABLE */
.table {
    color: var(--grey);
}
.table > thead > tr > th {
    white-space: nowrap;
}
.read-dpi-logo
{
    font-size: 50vw;
}
@media (min-width: 992px)
{
    .read-dpi-logo
    {
        font-size: 20vw;
    }
}
.vertical-align
{
    display: flex;
    align-items: center;
}

.toast-body,
.toast-header > strong
{
    font-size: 1.2em !important;
}

.contacts-list-add {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.contacts-list-inputs {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contacts-list-input {
    outline:none;
    border:0px;
    border-bottom: 1px solid var(--secondary);
    width:30%;
    min-width:90px;
    flex-shrink:1;
    margin-left: 0.2em;
    margin-right: 0.2em;
    margin-bottom: 0.3em;
}

.contacts-list-input.invalid {
    border-bottom: 1px solid var(--warning);
}
.contacts-list-input.invalid::placeholder {
    color: var(--warning);
}

.contacts-list-input:read-only {
    color: var(--secondary);
    border-bottom: 0px;
}

.contacts-list-input:read-only::placeholder {
    color: transparent;
}



