/* Style the form */
#regForm {
    background-color: #ffffff;
    margin: 70px auto;
    padding: 40px;
    width: 50%;
    min-width: 300px;
}

@media screen and (max-width: 600px) {
    #regForm {
        background-color: #ffffff;
        margin: 70px auto;
        padding: 40px;
        width: 100%;
        min-width: 300px;
    }
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #003a25;
}


.user-profile-header-banner img {
    width: 100%;
    height: 300px;
}

.user-profile-header img {
    height: 150px !important;
    width: 150px !important;
}


:root {
    --min-size: 2px;
    --max-size: 20px;
}

* {
    box-sizing: border-box;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    background: white;
    margin: 5px;
    animation-name: loader;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.dot:nth-child(1) {
    animation-delay: 0.2s;
}

.dot:nth-child(2) {
    animation-delay: 0.4s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

.dot:nth-child(4) {
    animation-delay: 0.8s;
}

.dot:nth-child(5) {
    animation-delay: 1s;
}

.btn-outline-primary:hover {
    color: #121212 !important;
    background-color: #ffffff !important;
    border-color: #0d6efd !important;
}

.btn-outline-primary {
    color: #ffffff !important;
    border-color: #0d6efd !important;
    background-color: #0d6efd !important;
}

.btn-outline-bg {
    color: #1707ff !important;
    border-color: #0d6efd !important;
    background-color: #e9e8e8 !important;
}

@keyframes loader {
    from {
        width: var(--min-size);
        height: var(--min-size);
        border-radius: calc(var(--min-size) / 2);
    }

    to {
        width: var(--max-size);
        height: var(--max-size);
        border-radius: calc(var(--max-size) / 2);
    }
}

/* login css  */
.img_Design {
    max-width: 100%;
    height: 217px;
}

.res_contactUs_map iframe {
    width: 550px !important;
    height: 300px !important;
}
.footerIfram iframe {
    width: 320px !important;
    height: 200px !important;
}