﻿/* The purpose of this CSS is to bridge some generic styles of Bootstrap 5 
    so websites and controls that uses Boostrap 4 will display just fine.
    Anything that is specific to a Country styles MUST be on their respective CSS
    and any control specific styles MUST be on the control CSS file.
*/

.form-check {
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem;
}
    .form-check .form-check-input {
        float: left;
        margin-left: -1.5em;
        margin-top: 0.4rem;
    }

.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-select {
        transition: none
    }
}

.form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-right: .75rem;
    background-image: none
}

.form-select:disabled {
    background-color: #e9ecef
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529
}

.form-select-sm {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.form-select-lg {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

@media (min-width: 992px) {
    .offset-lg-1.dg-login-or-new-user__col {
        margin-left: 8% !important;
    }
}

.skeleton-loading {
    animation: skeleton-animation 1s infinite linear;
    color: transparent !important;
}

p.skeleton-loading {
    min-height: 23px;
    margin-bottom: 3px !important;
}

@keyframes skeleton-animation {
    0% {
        background-color: #ddd;
    }

    50% {
        background-color: #d0d0d0;
    }

    100% {
        background-color: #ddd;
    }
}