﻿/* Move down content because we have a fixed navbar that is 50px tall */
/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}*/

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Set widths on the form inputs since otherwise they're 100% wide */
/*input,
select,
textarea {
    max-width: 280px;
}*/
/* Responsive: Portrait tablets and up */
/*@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}*/

/*A custome claas to set content color */
.mandatory:after {
    content: " *";
    color: red;
}

.error, .form-control > span:last-child {
    color: #a94442 !important;
    font-size: 85% !important;
}

.calender > input {
    width: 100% !important;
}
/*Used to display full text of selected dropdown list (Devexpress Combobox).*/
input[type="text"].dxeEditArea_Metropolis, input[type="password"].dxeEditArea_Metropolis {
    max-width: none !important;
}

#footer #contactus {
    color: #505057;
    text-align: center;
    padding: 10px 0 5px;
}

.btn.btn-default {
    color: #a30234 !important;
    background-color: #fff !important;
    border: 1px solid #a30234 !important;
}
    .btn.btn-default:hover {
        color: #fff !important;
        font-weight: normal !important;
        background: #a30234 !important;
        border: 1px solid #a30234 !important;
    }


/*Waitting and loading*/
.lodingcontainer {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
    opacity: 0.9;
    background-color: gray;
    /* z-index: 1; */
    padding: 10% 45%;
    display: none;
    top: 0;
    margin: 0 -25px;
    align-items: center;
}

.loader {
    margin: auto;
}

.loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    /*border: 2px solid white;*/
}

    .loader--dot:first-child {
        background-color: #001738;
        animation-delay: 0.5s;
    }

    .loader--dot:nth-child(2) {
        background-color: #001738;
        animation-delay: 0.4s;
    }

    .loader--dot:nth-child(3) {
        background-color: #a20234;
        animation-delay: 0.3s;
    }

    .loader--dot:nth-child(4) {
        background-color: #a20234;
        animation-delay: 0.2s;
    }

    .loader--dot:nth-child(5) {
        background-color: #fdb913;
        animation-delay: 0.1s;
    }

    .loader--dot:nth-child(6) {
        background-color: #fdb913;
        animation-delay: 0s;
    }

.loader--text {
    position: absolute;
    left: 0;
    right: 0;
    width: 9rem;
    margin: auto;
    padding: 1.5% 0px;
    color: white;
}

    .loader--text:after {
        content: "Please Wait.";
        font-weight: bold;
        animation-name: loading-text;
        animation-duration: 3s;
        animation-iteration-count: infinite;
    }

@keyframes loader {
    15% {
        transform: translateX(0);
    }

    45% {
        transform: translateX(230px);
    }

    65% {
        transform: translateX(230px);
    }

    95% {
        transform: translateX(0);
    }
}

@keyframes loading-text {
    0% {
        content: "Please Wait.";
    }

    25% {
        content: "Please Wait..";
    }

    50% {
        content: "Please Wait...";
    }

    75% {
        content: "Please Wait....";
    }
}
