

@media screen and (max-width: 499px) {
    .details-block {
        width: 375px;
        max-width: 375px;
    }
}

@media screen and (min-width: 500px) {
    .details-block {
        width: 500px;
        max-width: 500px;
    }
}

.clickable{
    cursor:pointer;
}

.status-highlight {
    font-weight: 600;
    background-color: #dddddd;
    border: 1px solid #dddddd;
    border-radius: 6px;
}

.muted-text {
    color: #666666;
}

.qrCode {
    display:flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    padding: 1rem;
}

.qrCodeContainer {
    padding: 1rem;
}

.input-validation-error {
    border-color: red !important;
}
/* Red border for valid select2 */
select.input-validation-error + .select2-container .select2-selection {
    border:1px solid red;
}

.spinner-container {
    margin: 0px;
    padding: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #666666;
    z-index: 30001;
    opacity: .8;
    display: none;
}

.loader {
    width: 120px;
    height: 120px;
    border: 10px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 40%;
    left: 50%;
    margin-left:-60px; /*half width*/
    margin-top:-60px; /*half height*/
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes dotsAnimation {
    0% {
        content: ".";
    }

    33% {
        content: "..";
    }

    66% {
        content: "...";
    }

    100% {
        content: "..";
    }
}

.dots::after {
    content: "";
    display: inline-block;
    animation: dotsAnimation 1s infinite steps(1);
}


