.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 999999;
    color: #585858;
    display: none
}

.overlay .container {
    height: 100%
}

.overlay .container .thank-you-msg {
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 650px;
    border-radius: 25px;
    padding: 35px;
    text-align: center
}

@media screen and (min-width: 992px) {
    .overlay .container .thank-you-msg {
        padding: 35px;
        text-align: left
    }
}

.overlay .container .thank-you-msg .img-wrapp {
    padding: 0
}

.overlay .container .thank-you-msg .img-wrapp img {
    width: 150px;
    margin-top: 30px;
    margin-bottom: 30px
}

@media screen and (min-width: 576px) {
    .overlay .container .thank-you-msg .img-wrapp img {
        width: 150px
    }
}

@media screen and (min-width: 992px) {
    .overlay .container .thank-you-msg .img-wrapp img {
        width: 180px
    }
}

.overlay .container .thank-you-msg h3 {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 26px;
    color: #06a2e4;
    font-weight: 700;
    margin: 0 auto
}

@media screen and (min-width: 576px) {
    .overlay .container .thank-you-msg h3 {
        font-size: 30px
    }
}

.overlay .container .thank-you-msg p {
    font-family: "Roboto", sans-serif;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.5em
}

@media screen and (min-width: 576px) {
    .overlay .container .thank-you-msg p {
        font-size: 20px
    }
}

.overlay .container .thank-you-msg .confirm {
    background: #06a2e4;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 80px;
    font-weight: 100;
    text-shadow: none;
    opacity: 9;
    line-height: 1.5em
}

@media screen and (min-width: 576px) {
    .overlay .container .thank-you-msg .confirm {
        padding: 10px 100px
    }
}

.overlay .container .thank-you-msg .confirm:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}



#msgContainer {
    color: red
}

.respond-card {
    padding: 0 35px;
    background: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, .25)
}

.card-respond-wrapper {
    text-align: center;
    padding-top: 30px
}

.respond-header {
    font-size: 20px;
    padding: 12px 0px !important
}

.respond-body {
    display: inline-block;
    padding: 15px !important;
    font-size: 18px;
    border-style: groove
}

.card-body {
    padding: 0 !important;
    word-break: break-all !important
}

.respond-btn {
    width: 100% !important;
    max-width: 360px !important;
    display: inline-block !important;
    background: #00d1ff !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #fff !important;
    margin: 20px 0 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    padding: 10px 0 !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    transition: .3s all ease-in-out !important;
    transform-origin: 50% 50% 50% !important;
    backface-visibility: hidden !important
}

@media(min-width: 576px) {
    .respond-btn {
        width: auto !important;
        padding: 10px 65px !important
    }
}

@media(min-width: 992px) {
    .respond-card {
        min-height: 480px
    }

    .respond-btn {
        width: 100% !important;
        padding: 10px 0px !important
    }
}

.nxreg-form-loader-ctr {
    width: 345px;
    height: 564px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.nxreg-form-loader-ctr .nxreg-form-loader {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border-left: 5px solid #ff066e;
    animation: rightrotate 900ms linear infinite
}

.nxreg-form-loader-ctr .nxreg-form-loader::before,
.nxreg-form-loader-ctr .nxreg-form-loader::after {
    content: "";
    width: 120px;
    height: 120px;
    display: block;
    position: absolute;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    border-radius: 50%;
    border-right: 4px solid #3853de;
    animation: leftrotate 900ms linear infinite
}

.nxreg-form-loader-ctr .nxreg-form-loader::after {
    width: 90px;
    height: 90px;
    top: calc(50% - 45px);
    left: calc(50% - 45px);
    border: 0;
    border-left: 3px solid #efc000;
    animation: none
}

@keyframes leftrotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(720deg)
    }
}

@keyframes rightrotate {
    from {
        transform: rotate(360deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}