﻿body {
    color: #000;
    overflow-x: hidden;
    height: 100%;
    background-color: #B0BEC5;
    background-repeat: no-repeat;
}

.card0 {
    /*box-shadow: 0px 4px 8px 0px #757575;
    border-radius: 0px;*/
    box-shadow: 0px 7px 12px 6px #757575;
    border-radius: 10px;
}

.card2 {
    margin: 0px 40px;
}

.logo {
    width: 200px;
    height: 100px;
    margin-top: 20px;
    margin-left: 35px;
}

.image {
    /* width: 360px;
    height: 280px;*/
    width: 427px;
    height: 320px;
}

.border-line {
    border-right: 1px solid #EEEEEE;
}

.facebook {
    background-color: #3b5998;
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.twitter {
    background-color: #1DA1F2;
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.linkedin {
    background-color: #2867B2;
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.line {
    height: 1px;
    width: 45%;
    background-color: #E0E0E0;
    margin-top: 10px;
}

.or {
    width: 10%;
    font-weight: bold;
}

.text-sm {
    font-size: 14px !important;
}

::placeholder {
    color: #BDBDBD;
    opacity: 1;
    font-weight: 300
}

:-ms-input-placeholder {
    color: #BDBDBD;
    font-weight: 300
}

::-ms-input-placeholder {
    color: #BDBDBD;
    font-weight: 300
}

input, textarea {
    padding: 7px!important;
    border: 1px solid lightgrey;
    border-radius: 2px;
    margin-bottom: 5px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 14px;
    /*letter-spacing: 1px;*/
}

    input:focus, textarea:focus {
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        border: 1px solid #304FFE;
        outline-width: 0;
    }

button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0;
}

a {
    color: inherit;
    cursor: pointer;
}

.btn-blue {
    background-color: #1A237E;
    width: 150px;
    color: #fff;
    border-radius: 2px;
}

    .btn-blue:hover {
        background-color: #000;
        cursor: pointer;
    }

.bg-blue {
    color: #fff;
    background-color: #1A237E;
}

.fw-600 {
    font-weight: 600!important;
}
.fs-20 {
    font-size:20px;
}
.fs-13
{
    font-size:13px!important;
}

.paddingtopleftright {
    padding: 60px 38px 0 72px;
}
.p80 
{
    padding-top: 80px !important;
}
.bg-primary {
    background-color: #CE0101 !important;
}
@media screen and (max-width: 991px) {
    .logo {
        margin-left: 0px;
    }

    .image {
        width: 300px;
        height: 220px;
    }

    .border-line {
        border-right: none;
    }

    .card2 {
        border-top: 1px solid #EEEEEE !important;
        margin: 0px 15px;
    }
}


/* Loader CSS */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* semi-transparent white */
    z-index: 9999;
    display: none;
    /* hide by default */
}

#loader {
    /*border: 16px solid #f3f3f3;*/ /* Light grey */
    /*border-top: 16px solid #3498db;*/ /* Blue */
    /*border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;*/
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.overlayloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(220,20,60);*/
    background-color: #fff /rgb(0 0 0 / 50%)/;
    z-index: 9999;
}

#rbloader {
    color: red;
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    animation: loader-rotate 1s infinite cubic-bezier(0.62, 0.49, 0.52, 0.32);
    transform: skew(20deg, 20deg);
    transform-origin: center;
}

.main-div {
    position: absolute;
    left: 46%;
    top: 30%;
    width: auto;
}

.loader-icon1 {
    border-bottom: 2px solid red;
    rotate: 4deg;
}

.loader-icon2 {
    border-bottom: 2px solid #fff;
    rotate: 129deg;
}

.loader-icon3 {
    border-bottom: 2px solid green;
    rotate: 272deg;
}

.text {
    color: #fff;
    position: relative;
    top: 37px;
    left: 22px;
}

.text2 {
    color: #000000;
    position: relative;
/*    top: 70%;
    left: -37%;
    position: absolute;*/
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    margin-top: 10%;
}

@keyframes loader-rotate {
    0% {
        transform: skew(20deg, 20deg) rotate(0deg)
    }

    100% {
        transform: skew(20deg, 20deg) rotate(360deg);
    }
}