﻿
.loader-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999999;
    align-items: center;
    display: flex;
    justify-content: center;
    display: none;
}

    .loader-wrapper.loader-wrapper--active {
        display: flex;
    }

.loading {
    height: 5vh;
    width: 5vh;
    border: 6px solid rgba(255, 255, 255, 0.8);
    border-top-color: #1a4794;
    border-radius: 100%;
    animation: rotation 0.6s infinite linear 0.25s;
    /* the opacity is used to lazyload the spinner, see animation delay */
    /* this avoid the spinner to be displayed when visible for a very short period of time */
    opacity: 0;
}


@media only screen and (max-width: 576px) {
    .font-size-h1 {
        font-size: 1.8rem !important;
    }
}

/* skeleton elements */
.skeleton {
    background: linear-gradient(90deg, #dce0e5, #f0f2f4, #dce0e5);
    background-size: 200%;
    animation: shimmering 1s infinite reverse;
}

/* skeleton animation */
@keyframes shimmering {
    from {
        background-position: -100% 0;
    }

    to {
        background-position: 100% 0;
    }
}

@keyframes rotation {
    from {
        opacity: 1;
        transform: rotate(0deg);
    }

    to {
        opacity: 1;
        transform: rotate(359deg);
    }
}

.top-93 {
    top: 93px;
}

.bg-green {
    background-color: #00B896 !important;
}

.main-radius {
    border-radius: 9px !important;
}

.border-color--dark {
    border-color: #c5c7c9 !important;
}

* {
    outline: 0 !important;
    box-shadow: none !important;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.content h4 {
    font-size: initial;
    margin-bottom: 0.8em;
    font-weight: 500;
}

.modal-backdrop {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 576px) {
    html {
        font-size: 94% !important;
    }
}

