﻿.expiry-color {
    color: #0284C7
}

.contact-support-link, .contact-support-link:visited {
    color: white;
    border: 1px solid #FFF;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: small;
}

    .contact-support-link:hover {
        color: black;
        background-color: white;
    }



.app-img {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

    .app-img:hover {
        opacity: 0.8;
    }

.bg-gray {
    background-color: #d1d5db;
}

.blue-button {
    color: white;
    background-color: #0284C7;
}

    .blue-button:hover {
        color: white;
        background-color: #026ba0
    }

.no-underline-blue {
    font-size: small;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-decoration: none;
    color: #00aaff;
}

    .no-underline-blue:hover {
        color: #0088cc;
    }

.w-135{
    width: 135px !important;
}

.btn.gray-hover:hover {
    background-color: #ececec;
}

.load-ing {    
    top: 40%;
    left: 50%;
    display: none;
    color: #424242;
    position: fixed;
    transform: translate(-50%, -50%);    
}

.load-ing > span {
    font-size: 30px;
}

.load-ing > span > label {
    margin: 0;
}

    .load-ing > span > label:before {
        content: "Login in";
    }

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 36px;
    left: -10px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 27px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #333333;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 6px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 6px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 26px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 45px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}