@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
    user-select: none;
}

i {
    font-size: 1.1em;
}

#mainContent {
    height: 100%;
    margin-top: 0px;
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)), url(/assets/img/bgDocsNHS.webp) no-repeat;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    /* padding: 1rem 1rem; */
}

.pageDiv {
    background-color: white;
    /* background: linear-gradient(to bottom, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 1) 5%); */
    width: 100%;
    height: 100%;
    padding: 1rem 1rem;
}

.interfaceTitle {
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.interfaceTitle span {
    display: block;
    font-size: .5em;
    color: #1db9f7;
}

div::placeholder,
input::placeholder {
    color: #ddd !important;
}

h3 {
    font-size: 1.2375rem;
}

a {
    cursor: pointer;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
}

li {
    list-style: none;
}

/* Layout skeleton */

.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}

.content {
    flex: 1;
    max-width: 100vw;
    width: 100vw;
}

.warningTooltip {
    --bs-tooltip-bg: orange;
    --bs-tooltip-color: white;
}

.infoTooltip {
    --bs-tooltip-bg: rgb(54, 215, 251);
    --bs-tooltip-color: white;
}

.col-form-label-sm {
    padding: 0;
}

.form-label {
    color: #aaa;
    margin: 0;
    margin-left: .2em;
    font-size: .8em;
}

#clientForm .card,
#companyForm .card,
#vehicleForm .card,
#memberForm .card {
    color: #3896ad
}

#clientForm .card-body,
#companyForm .card-body,
#vehicleForm .card-body,
#memberForm .card-body {
    padding-top: 0px;
}

.inputExtra {
    color: orange;
    font-size: .9rem;
    padding-left: .5rem;
}

.card-sm {
    border-radius: 0;
}

.card-sm .card-body {
    padding: .1rem .4rem;
    min-height: 38px;
    padding-right: 30px;
}

.card-sm .card-title {
    font-size: .9rem;
    margin: 0;
}

.card-sm .card-subtitle {
    color: #15aaad;
    font-size: .6rem;
}

.clientInformation {
    font-size: .8rem;
    margin-bottom: 0;
}

#sessionClientsList {
    height: 352px;
    max-height: 352px;
    overflow-y: scroll;
}

#sessionClientsList li {
    cursor: grab;
}

.clientsLists {
    font-size: .8rem;
    margin-bottom: 0;
    height: 170px;
    max-height: 170px;
    overflow-y: scroll;
}

.clientsLists li {
    cursor: move;
}

[contenteditable=true]:empty:before {
    content: attr(placeholder);
    pointer-events: none;
    display: block;
    color: #ddd;
}

.shake {
    animation: shake 0.42s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Responsive */

@media (min-width:768px) {
    .content {
        width: auto;
    }
}