@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900);
body {
  background-color: white;
}

body.pc {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.iml1 {
  background: #111f63;
}

body.iml1.customBgTransparent {
  background: none;
  background-color: rgba(17, 31, 99, 0.8);
}

body.customBgTransparent.customBGId2 {
  background: rgba(243, 243, 243, 0.9);
}

body.customBgTransparent.customBGId3 {
  background: rgba(243, 243, 243, 0.9);
}

body.customBgTransparent.customBGId4 {
  background: #010101;
}

body.iml2 {
  background: #f8f8f8;
}

#formApp {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1;
  font-family: Roboto;
}

@keyframes shine {
  25%,
  100% {
    left: 200%;
  }
}

.master {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  max-width: 480px;
  position: relative;
  background-color: #111f63;
}

.master.mobile {
  max-width: 100%;
}

.master.mobile.imliveTheme.transparentBG {
  background-color: transparent;
}

.master.defaultTheme {
  background-color: #f8f8f8;
}

.formWrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 24px;
}

.formWrapper.disable {
  pointer-events: none;
}
.formContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ccFormContainer {
  width: 100%;
  padding: 16px 24px 32px;
  background-color: #0e1848;
}

.imliveTheme .ccFormContainer.transparentBG {
  background-color: rgba(14, 24, 72, 0.8);
}

.ccFormContainer > .inputgroup {
  margin-bottom: 22px;
}

.defaultTheme .ccFormContainer {
  background-color: #e3e3e3;
}

.doubleInputGroup {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  border: none;
  width: 100%;
}

div.formContainer > div:not(.ccFormContainer):not(.disclaimerText) {
  margin-bottom: 22px;
}
div.formContainer > div:nth-child(1) {
  margin-top: 8px;
}

div.formContainer > div:nth-child(7) {
  margin-bottom: 16px;
}

.inputgroup {
  position: relative;
  border-radius: 8px;
  /* border: 1px solid #aaa; */
  box-shadow: 0 0 0 1px #aaa;
  background: #fafafa;
  box-sizing: border-box;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.inputgroup:hover {
  box-shadow: 0 0 0 2px #0090f8;
  background: #e4dddd;
}

.inputgroup.fullWidth {
  width: 100%;
}

.inputgroup.halfWidth {
  width: 48.5%;
}

.inputgroup.thirdWidth {
  width: 31.5%;
}

.inputgroup:focus-within {
  box-shadow: 0 0 0 2px #0090f8;
}

.inputgroup.noBorder {
  border: none;
}

.inputgroup.skeletonInput *,
.inputgroup.skeletonInput #cvvContainer {
  display: none;
}

.inputgroup.skeletonInput {
  box-shadow: 0 0 0 1px #f3f3f3;
  background: #dfdfdf;
  overflow: hidden;
}

.inputgroup.skeletonInput::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #dfdfdf 0%, #f7f8fa 48.96%, #dfdfdf 100%);
  position: relative;
  left: -100%;
  border-radius: 8px;
  animation: 1.5s shine linear infinite;
}

.imliveTheme .ccFormContainer .inputgroup.skeletonInput {
  box-shadow: 0 0 0 1px #343f75;
  background: #343f75;
}

.imliveTheme .ccFormContainer .inputgroup.skeletonInput::after {
  background: linear-gradient(90deg, #343f75 0%, #545c84 48.96%, #343f75 100%);
}

.imliveTheme .ccFormContainer .inputgroup {
  box-shadow: 0 0 0 1px #888;
  background: #111f63;
}

.imliveTheme .ccFormContainer .inputgroup:hover {
  box-shadow: 0 0 0 2px #0090f8;
}

.imliveTheme .ccFormContainer .inputgroup input {
  color: #f3f3f3;
}

.imliveTheme .ccFormContainer .inputgroup label {
  color: #f3f3f3;
}

.imliveTheme .ccFormContainer .inputgroup select {
  background-image: url(https://j0.wlmediahub.com/App_Themes/images/Billing/arrow-light.png);
  color: #f3f3f3;
}

.imliveTheme .ccFormContainer .inputgroup input:focus ~ label,
.imliveTheme .ccFormContainer .inputgroup input.used ~ label,
.imliveTheme .ccFormContainer .inputgroup span {
  color: #888;
  background: #111f63;
}

.inputgroup input {
  font-size: 16px;
  -webkit-appearance: none;
  display: block;
  color: #414141;
  background-color: inherit;
  width: 100%;
  border: none;
  border-radius: 0;
  width: calc(100% - 16px);
  position: relative;
  padding: 0 8px;
}
.inputgroup input:focus {
  outline: none;
}

.inputgroup input#txtCVV {
  width: calc(100% - 50px);
}
.inputgroup label {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: flex;
  color: #414141;
  position: absolute;
  pointer-events: none;
  left: 8px;
  top: 16px;
  transition: all 0.2s ease;
}

.inputgroup input:focus ~ label,
.inputgroup input.used ~ label {
  top: -6px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #414141;
  border-radius: 16px;
  padding: 0px 4px;
  background: #f3f3f3;
}

.inputgroup select {
  height: 100%;
  padding-left: 8px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  color: #414141;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-appearance: none;
  background-image: url(https://j0.wlmediahub.com/App_Themes/images/Billing/arrow.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
  background-color: inherit;
  border-radius: 8px;
}

.inputgroup select:focus {
  outline: none;
}

.inputgroup select.selected {
  line-height: 50px;
}

.inputgroup select.selected#_ccbillId_country,
.inputgroup select.selected#_ccbillId_state {
  white-space: nowrap;
  padding-right: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inputgroup span {
  font-family: Roboto;
  font-weight: normal;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  left: 8px;
  top: -6px;
  transition: all 0.2s ease;
  position: absolute;
  pointer-events: none;
  color: #414141;
  border-radius: 16px;
  padding: 0px 4px;
  background: #f3f3f3;
}

.inputgroup .errText {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  margin: 2px 0 0 0;
  color: #ff1414;
  position: absolute;
  top: 100%;
  left: 0;
}

.inputgroup .errIcon {
  position: absolute;
  top: 16px;
  right: 7px;
}

.cvvInput .errIcon {
  top: 16px;
  right: 35px;
}

.inputgroup .hideError {
  display: none;
}

.inputgroup .showError {
  display: block;
}

.defaultTheme .textgroup {
  width: 100%;
}

.defaultTheme .textgroup #amountHeading {
  color: #414141;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 24px 0;
}

.defaultTheme .textgroup #purchaseHeading {
  color: #414141;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

#btnContainer {
  height: 40px;
  width: 198px;
  margin: 16px 0;
}

#btnContainer.skeletonBtn #sendFormBtn {
  background-color: #9cca9c;
  color: #9cca9c;
}

#sendFormBtn {
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #31b02e;
  border-radius: 125px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  opacity: 1;
  transition: all 0.2s ease;
}

.defaultTheme #sendFormBtn {
  border-radius: 0;
}

#sendFormBtn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

#sendFormBtn:hover {
  opacity: 0.85;
}

.inputgroup select:focus {
  outline: none;
}

.formHeading {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.formHeading .formHeadingText {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.defaultTheme .formHeading .formHeadingText {
  color: #414141;
}

.formHeading #ccLogosWrapper {
  height: 18px;
}

.formHeading #ccLogosWrapper img {
  margin-right: 8px;
  height: 100%;
}

.formHeading #ccLogosWrapper img:last-child {
  margin-right: 0;
}

#cvvContainer {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  width: 33%;
  z-index: 2;
  flex-direction: row;
  cursor: pointer;
}

/* #cvvContainer .cvvText {
        font-family: Roboto;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        display: flex;
        align-items: center;
        color: #182D8F;
    } */

.cvvText.cvvHelp {
  width: 16px;
  height: 16px;
  border: 1px solid #f3f3f3;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #f3f3f3;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  padding-left: 1px;
}

.defaultTheme .cvvText.cvvHelp {
  border: 1px solid #111f63;
  color: #111f63;
}

.disclaimerText {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  color: #888888;
  margin-bottom: 16px;
  line-height: 13px;
  width: 100%;
  position: relative;
  text-align: center;
}

.disclaimerText.imlDiscText {
  color: #4b4b4b;
  margin: 12px auto 0;
}

.disclaimerText span {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  text-align: center;
  color: #f3f3f3;
  text-decoration: underline;
  cursor: pointer;
}

.defaultTheme .disclaimerText span {
  color: #2964aa;
}

.bottomDisclaimerWrapper {
  border-top: 1px solid #2964aa;
  width: 100%;
  margin-bottom: 24px;
}

.bottomDisclaimerWrapper .imlDiscText {
  margin: 8px 0;
  color: #f3f3f3;
  font-family: Roboto;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.bottomDisclaimerWrapper .imlDiscText span {
  text-decoration: underline;
}

body.mobile .bottomDisclaimerWrapper .imlDiscText {
  text-align: center;
}

.defaultTheme .bottomDisclaimerWrapper .imlDiscText {
  color: #414141;
}

.bottomDisclaimerWrapper .secureWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pc .bottomDisclaimerWrapper .secureWrapper {
  justify-content: space-between;
  flex-direction: row;
}

.bottomDisclaimerWrapper .secureWrapper .secureText {
  color: #f3f3f3;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.mobile .bottomDisclaimerWrapper .secureWrapper .secureText {
  margin-bottom: 10px;
}

.defaultTheme .bottomDisclaimerWrapper .secureWrapper .secureText {
  color: #414141;
}

.bottomDisclaimerWrapper .secureWrapper .secureImgsWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
}
#CvvOverlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s linear;
}

#CvvOverlay.showTT {
  opacity: 1;
}

#CvvOverlay #cvvTtWrapper {
  position: relative;
  z-index: 10;
  display: flex;
  top: -17px;
  left: -5px;
}

.master.mobile #CvvOverlay #cvvTtWrapper {
  width: 70dvw;
}

.master.mobile #CvvOverlay #cvvTtWrapper div#imgTtWrapper {
  width: 100%;
}

.master.mobile #CvvOverlay #cvvTtWrapper div#imgTtWrapper img {
  width: 100%;
}

div#imgTtWrapper {
  margin-top: 5px;
  margin-right: 3px;
}

#closeTtWrapper {
  position: absolute;
  right: -30px;
  top: -20px;
}

#closeTtWrapper img {
  cursor: pointer;
}

select:not(:-internal-list-box) {
  background-color: transparent;
}

/*div#root {
    height: 520px;
    overflow-y: scroll;
}*/

/*old*/

#netbillingIframe {
  display: none;
}

body.customBGId2 .transparentBGId2 .inputgroup:hover {
  box-shadow: 0 0 0 2px #fe9c42;
  background: #e4dddd;
}

body.customBGId3 .transparentBGId3 .inputgroup:hover,
body.customBGId4 .transparentBGId4 .inputgroup:hover {
  box-shadow: 0 0 0 2px #ff2099;
  background: #f3f3f3;
}

body.customBGId2 .transparentBGId2 .inputgroup:focus-within {
  box-shadow: 0 0 0 2px #fe9c42;
}

body.customBGId3 .transparentBGId3 .inputgroup:focus-within,
body.customBGId4 .transparentBGId4 .inputgroup:focus-within {
  box-shadow: 0 0 0 2px #ff2099;
}

body.customBGId2 .transparentBGId2 .disclaimerText *,
body.customBGId2 .transparentBGId2 .bottomDisclaimerWrapper *,
body.customBGId3 .transparentBGId3 .disclaimerText *,
body.customBGId3 .transparentBGId3 .bottomDisclaimerWrapper * {
  color: #414141;
}

body.customBGId4 .transparentBGId4 .disclaimerText,
body.customBGId4 .transparentBGId4 .disclaimerText *,
body.customBGId4 .transparentBGId4 .bottomDisclaimerWrapper,
body.customBGId4 .transparentBGId4 .bottomDisclaimerWrapper *,
body.customBGId4
  .transparentBGId4
  .bottomDisclaimerWrapper
  .secureWrapper
  .secureText {
  color: #f3f3f3;
}

.ccFormContainer.transparentBG.transparentBGId2,
.ccFormContainer.transparentBG.transparentBGId3,
.ccFormContainer.transparentBG.transparentBGId4 {
  background-color: #595d6c;
}

.transparentBGId2 #btnContainer #sendFormBtn {
  background-color: #fe9c42;
  border-radius: 125px;
}

.transparentBGId3 #btnContainer #sendFormBtn {
  background-color: #ff2099;
  border-radius: 125px;
}

.transparentBGId4 #btnContainer #sendFormBtn {
  background-color: #ff2c60;
  border-radius: 125px;
}

.transparentBGId2 #btnContainer.skeletonBtn #sendFormBtn {
  background-color: #fac695;
  color: #fac695;
}

.transparentBGId3 #btnContainer.skeletonBtn #sendFormBtn {
  background-color: #fd99d0;
  color: #fd99d0;
}

.transparentBGId4 #btnContainer.skeletonBtn #sendFormBtn {
  background-color: #fca3b9;
  color: #fca3b9;
}

body.customBGId2 .transparentBGId2 .formHeading .formHeadingText,
body.customBGId3 .transparentBGId3 .formHeading .formHeadingText,
body.customBGId4 .transparentBGId4 .formHeading .formHeadingText {
  color: #f3f3f3;
}

.master.defaultTheme.transparentBG.transparentBGId2,
.master.defaultTheme.transparentBG.transparentBGId3 {
  background-color: transparent;
}

.master.defaultTheme.transparentBG.transparentBGId4 {
  background-color: #010101;
}

#errPageWrapper {
  width: 100%;
  height: 100%;
  max-height: 520px;
  display: flex;
  margin: 0;
  background: #fff;
}

#errPageWrapper.blockedMsg {
  z-index: 3;
  width: 120%;
  position: absolute;
  left: -10%;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  #errPageWrapper.blockedMsg {
    height: 100%;
  }
}

#errMsgWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#errMsgHead {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #414141;
  margin: 8px 10%;
}

.errMsgBody {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #414141;
  margin: 8px 10%;
}

.errMsgBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 43px;
  background: #0090f8;
  border-radius: 120px;
  color: #fff;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  margin: 10px 0;
  cursor: pointer;
}

#loaderContainer {
  position: absolute;
  z-index: 50;
  /* pointer-events: none; */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.5s linear;
  overflow: hidden;
}

#loaderContainer.imliveLoader {
  background-color: rgba(17, 31, 99, 0.75);
}

#loaderContainer.visible {
  opacity: 1;
}

#loaderContainer.pc {
}

#loaderWrapper {
  position: absolute;
  top: calc(50% - 69px);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  width: 55px;
  height: 55px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imliveLoader #loaderWrapper {
  background-color: #ffffff;
}

#loaderWrapper div {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 5px solid #ffffff;
  border-color: #ffffff transparent transparent transparent;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.imliveLoader #loaderWrapper div {
  border: 5px solid #111f63;
  border-color: #111f63 transparent transparent transparent;
}

#loaderWrapper div:nth-child(1) {
  animation-delay: -0.45s;
}

#loaderWrapper div:nth-child(2) {
  animation-delay: -0.3s;
}

#loaderWrapper div:nth-child(3) {
  animation-delay: -0.15s;
}

#loaderTextContainer {
  position: relative;
  width: calc(100% - 64px);
  height: 100%;
  display: flex;
  justify-content: center;
}
.loaderText {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #f3f3f3;
  position: absolute;
  width: 100%;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px;
  margin: 0 0 32px;
  bottom: -30%;
  transition-property: bottom;
  transition-timing-function: ease-in;
  transition-duration: 0.7s;
  /* transition-delay: 0.7s; */
}

.imliveLoader #loaderTextContainer .loaderText {
  background: rgba(0, 0, 0, 0.35);
}

.loaderText.slidein {
  bottom: 15%;
}

#loaderContainer.pc .loaderText.slidein {
  bottom: 0px;
  margin: 0 0 12px;
}

.loaderText.blueTxt {
  background: rgba(0, 0, 0, 0.8);
}

.loaderText.visible {
  opacity: 1;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

html {
  height: 100%;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-thumb {
  background: #595d6c;
  border-radius: 8px;
}

html::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

#authIframe {
  display: none;
  width: 99%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 100;
}

