/*   This is the background overlay   */
.backgroundOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000000;
    opacity: .85;
    filter: alpha(opacity=85);
    -moz-opacity: .85;
    z-index: 101;
    display: none;
}
/*   This is the Popup Window   */
.delayedPopupWindow {
    display: none;
    position: fixed;
    width: auto;
    max-width: 420px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: url(../images/p1bg.jpg) no-repeat; */
    z-index: 102;
    background-size: cover;
    background-position: center;
    background:#00a2fa;
    border-radius: 10px;
    overflow: hidden;
}
/*     background: url(../images/p1bg.jpg) no-repeat; */
    z-index: 102;
    background-size: cover;
    background-position:center;
     background: #ffcf52;
}
.pop_inner {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 22px;
    position: relative;
    /*backdrop-filter: blur(2px);*/
}
/* .contentflip {
    background: #000;
} */
.pop_inner h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
    text-transform: capitalize;
}
.back input::placeholder {
  color: #ffffffba;
  opacity: 1; /* Firefox */
}

.back input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #ffffffba;
}
.back textarea::placeholder {
  color: #ffffffba;
  opacity: 1; /* Firefox */
}

.back textarea::-ms-input-placeholder { /* Edge 12 -18 */
  color: #ffffffba;
}
.back .delinpt {
    width: 100%;
    display: block;
    margin-bottom: 5px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ececec4d;
    color: #fff;
    outline: none;
    font-size: 14px;
}
.back select.delinpt{
    width: 100%;
    display: block;
    margin-bottom: 15px;
    height: 40px;
    padding: 0 0px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ececec4d;
    color: #fff;
    outline:none;
}
.back select option{
    color:#000;
}
.backform {
    height: 320px;
    overflow-y: auto;
    scrollbar-color: #757575 transparent;
    padding-right: 11px;
}
.back textarea.delinpt {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    height: 60px;
    padding: 0 0px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ececec4d;
    color: #fff;
     outline:none;
}
.back button {
        background: #FFCF52;
    border: 0;
    color: #000;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
}
.pop_inner #flipBtn {
    background: #ffffff;
    border: 0;
    /* width: 100%; */
    padding: 8px 50px;
    border-radius: 70px;
    font-weight: 600;
    font-size: 17px;
    margin: auto;
}
/* .pop_inner::before {
    content: "";
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #000000e3 90.08%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: -1;
} */
.formContainer .front {
    top: 150px;
    text-align: center;
}
/* .pop_inner:after {
    content: "";
    background: linear-gradient(180deg, rgb(0 0 0 / 22%) 0%, #000000bf 62.08%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: -1;
} */
#btnClose {
    display: flex;
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    /* background-color: #FFCF52; */
    /* width: 17px; */
    /* height: 17px; */
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    z-index: 999;
}
/*   This is the closing button hover state  */
#btnClose:hover {
    color: #c90c12;
}
/*   This is the description headline and paragraph for the form   */
#delayedPopup > div.formDescription {
    width: 100%;
    padding: 0;
    font-size: 18px;
    color: #666;
    text-align: center;
    justify-content: center;
}


#btnClose :hover{
	color: #000;
}


/*   This is the styling for the form's headline   */
#delayedPopup > div.formDescription h2 {
    color: #444444;
    font-size: 26px;
    line-height: 30px;
}
.formContainer {
    perspective: 1000px;
    width: 360px;
    margin: 0px auto;
}

.formCard {
  width: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.front, .back {
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  padding: 30px;
  box-sizing: border-box;
}

.front {
  z-index: 2;
}
.back {
    transform: rotateY(180deg);
    z-index: 1;
}

.formCard.flip {
  transform: rotateY(180deg);
}
.back .wpcf7-form-control-wrap {
    margin-bottom: 25px;
}
.backform .wpcf7-response-output {
    margin: 0 !important;
    color: #ffffffb0;
    font-size: 12px;
}
.backform .captcha-image {
    color: #ffffffb0;
    border: 1px solid #ececec4d;
}