.frmElement span.errMsg{
    float: left;
    color: red;
    font-size: 11px;
}

.loader{
	display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background:rgba(255,255,255,.6);
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0px;
    height: 100%;
    top: 0px;
    z-index: 9;
}

.loader span{
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #3498db;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.frm-left {
    position: relative;
    overflow: hidden;
}


.frmElement span.errMsg {
    float: left;
    color: red;
    font-size: 11px;
}
.frmElement.hlf {
    width: 48%;
}
.frmElement.fr {
    float: right;
}
.frmElement {
    float: left;
    width: 100%;
    margin-top:0px;
}

.loader {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background: rgba(255,255,255,.6);
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0px;
    height: 100%;
    top: 0px;
    z-index: 9;
}
.loader span {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}


#spiner {
    display: none;
}
.sp-pstn {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: 999;
}
.spinner {
    --size: 62px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    perspective: 800px;
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}
.inner.one {
    left: 0;
    top: 0;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid #2cfffe;
}
.inner.two {
    right: 0;
    top: 0;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid #fcc10f;
}
.inner.three {
    right: 0;
    bottom: 0;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #ec1b60;
}




@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}



.thnkyou-sec {
    float: left;
    width: 100%;
    background: url(../images/thankyou-bg.jpg) no-repeat center top;
    padding: 90px 0;
}
.thnk-Box {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 770px;
    height: 480px;
    border: 4px solid #fff;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}
.thnk-hdng {
    float: left;
    width: 100%;
    font-size: 42px;
    line-height: 50px;
    color: #ffffff;
    font-weight: bold;
    background: #018bff;
    border-radius: 15px 15px 0 0;
    padding: 10px 0 15px;
}
.thnk-mdl {
    float: left;
    width: 100%;
    padding: 70px;
}
.thnk-mdl span {
    float: left;
    width: 100%;
    font-size: 24px;
    line-height: 34px;
    color: #000000;
    font-weight: 300;
}
.thnk-mdl p {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    color: #5f5f5f;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-top: 45px;
}

@media only screen and (max-width: 767px){
  .thnkyou-sec {
    padding: 25px 0;
    background-size: cover;
}
.thnk-Box {
    height: auto;
}
.thnk-hdng {
    font-size: 30px;
    line-height: 35px;
}
.thnk-mdl {
    padding: 20px;
}
.thnk-mdl span {
    font-size: 19px;
    line-height: 26px;
}
.thnk-mdl p {
    font-size: 17px;
    line-height: 24px;
    margin-top: 15px;
}
}



