/*
primary color: #ff802b
*/

/* top bar */
.x-top-bar{
    background-color: #1a4687;
    color: #fff;
    height: 40px;
    overflow: hidden;
    padding: 0;
    display: block;
}
.top-ul{
    list-style: none;
    padding: 0;
    margin: 0;
    height: 40px;
}

.top-ul > li{
    padding: 0;
    display: inline-block;
}



/* ------------------------------------------------------ x com ------------------------------------------------------------- */
/*============================================================================================================================*/


.x-carousel{
  padding: 0 20px 20px 0;
}
#x-slider-big > div{
  cursor: pointer;
  display: block;
  cursor: crosshair;
}
#x-slider-big img{
  width: 100%;
  height: auto;
  display: block;
}
#x-slider-thumb{
  margin-top: 10px;
  margin-bottom: 15px;
}

#x-slider-thumb > div{
  cursor: pointer;
}
#x-slider-thumb .owl-item{
  border: 1px solid #fff;
}
#x-slider-thumb .owl-item.current,
#x-slider-thumb .owl-item:hover{
  border: 1px solid #00aeec;
}

/*----------------------------------- product page --------------------------------------------- */
.x-product-attrs{
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
.x-product-attrs > label{
    text-transform: none;
    font-weight: 600;
    font-size: 1em;
    color: #d26e4b;
}
.x-product-attrs > ul {
    display: block;
    padding: 0;
    margin: 0;
    margin-top: 5px;
    list-style: none;
}
.x-product-attrs > ul > li{
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #777;
    border-radius: 2px;
    color: #777;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
}

.x-product-attrs > ul > li:hover{
    background-color: #ff802b;
    border-color: #ff802b;
    color: #fff;
}

.x-product-attrs > ul > li.active{
    background-color: #d26e4b;
    border-color: #d26e4b;
    color: #fff;
}
.x-product-attrs > ul > li.disabled{
    background-color: #e7e7e7;
    border-color: #e7e7e7;
    color: #888;
    cursor: not-allowed;
}

/* --------------------------- top loader ------------------------------ */
.top-loader{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100001;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: none;
}
.loader {
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #00aeec; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .top-loader.active{
      display: flex;
  }

/* account nav */
  .account-nav > a{
      display: block;
      padding: 5px 10px;
      margin-bottom: 5px;
      border: 1px solid #ccc;
  }

  .account-nav > a.active{
      color: #ff802b;
  }

  .list-table{
      border: 1px solid #ccc;
  }

  .list-table td, .list-table th{
      padding: 5px 10px;
      border: 1px solid #ccc;
  }

  /* discunt */
  .discount-tag{
      display: block;
      padding: 10px 15px;
      background-color: rgb(240, 240, 240);
      border-radius: 5px;
      border: 1px solid #323232;
      color: #323232;
  }

  .discount-tag > a{
      float: right;
      cursor: pointer;
  }

  .discount-tag > a:hover{
      color: #0098cf;
  }


  /* site only */
  .add-cart-area{
    background-color: #f5f5f5;
    padding: 15px 15px;
  }

  .add-cart-area > h5{
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .add-cart-area > ul{
    display: flex;
    padding: 0;
    margin: 0;
  }

  .add-cart-area > ul > li{
    padding: 5px;
    width: 50%;
  }
  .add-cart-area > ul > li > div{
    background-color: #ffffff;
    padding: 10px 15px;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 5px;
    text-align: center;
  }

  .add-cart-area > ul > li > div:hover{
    border: 2px solid #00aeec;
  }

  .add-cart-area > ul > li > div.active{
    border: 2px solid #00aeec;
  }

  .add-cart-area > ul > li > div > div:first-child{
    font-weight: 600;
    line-height: 18px;
    font-size: 16px;
  }

  .add-cart-area > ul > li > div > div:last-child{
    font-size: 14px;
  }

  .product-price{
    font-weight: 600;
  }

  .next-area{
    margin-top: 15px;
  }

  .next-area > button{
    display: block;
    width: 100%;
  }


  /* upload file popup */
  .artwork-popup{
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    display: none;
  }

  .artwork-popup > .inner{
    background-color: #fff;
    padding: 50px 50px;
    width: 1170px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);    
  }

  .artwork-popup .top-section{
    text-align: right;
  }

  .artwork-popup .top-section > span{
    display: inline-block;
    font-size: 25px;
    cursor: pointer;
  }

  .artwork-popup h2{
    font-weight: 600;
    margin-bottom: 20px;
  }

  .upload-artwork{
    padding: 30px;
    border: 1px solid #ddd;
    margin-top: 40px;
    text-align: center;
  }

  .let-us-design{
    margin-top: 40px;
  }

  .artwork-input{
    background-color: #00aeec;
    padding: 12px 20px;
    text-align: center;
    display: inline-block;
    width: 250px;
    color: #fff;
    border-radius: 30px;
    font-size: 20px;
    cursor: pointer;
  }
  .artwork-input:hover{
    background-color: #0098cf;
  }

  .upload-cover{
    background-color: #ccc;
    border-radius: 10px;
    height: 10px;
    width: 100%;
    display: none;
  }
  .upload-bar{
    display: block;
    background-color: #00aeec;
    border-radius: 10px;
    height: 10px;
    width: 0%;
  }

  .uploaded-artwork-files{
    display: block;
    margin: 0;
    padding: 0;
    margin-top: 15px;
    width: 100%;
  }

  .uploaded-artwork-files > li{
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    padding: 10px 15px;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
  }

  .uploaded-artwork-files > li > .img{
    width: 35px;
    margin-right: 10px;
  }

  .uploaded-artwork-files > li > .img > img{
    width: auto;
    height: 25px;
  }

  .uploaded-artwork-files > li > .text{
    display: inline-block;
  }

  .uploaded-artwork-files > li > i{
    cursor: pointer;
    font-size: 20px;
    margin-left: auto;
  }


  /* quotation artwork input */

  .q-upload-artwork{
    padding: 15px;
    border: 1px solid #ddd;
    margin-top: 20px;
    text-align: center;
    display: block;
  }


  .q-artwork-input{
    background-color: #00aeec;
    padding: 7px 10px;
    text-align: center;
    display: block;
    color: #fff;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
  }

  .q-upload-cover{
    background-color: #ccc;
    border-radius: 10px;
    height: 10px;
    width: 100%;
    display: none;
  }
  .q-upload-bar{
    display: block;
    background-color: #00aeec;
    border-radius: 10px;
    height: 10px;
    width: 0%;
  }
  /* end quotation artwork input */



  /* radio button style */
  .x-radio {
    font-size: 1.1em;
    line-height: 1.1;
    display: inline-flex;
    margin-right: 5px;
  }
  
  .x-radio + .x-radio {
    margin-top: 5px;
  }
  
  .x-radio:focus-within {
    color: rgb(37, 37, 37);
  }
  
  .x-radio input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
  
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);
  
    display: grid;
    place-content: center;
    margin-right: 5px;
  }
  
  .x-radio input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em rgb(37, 37, 37);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
  }
  
  .x-radio input[type="radio"]:checked::before {
    transform: scale(1);
  }
  
  .x-radio input[type="radio"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
  }

    /* end radio button style */

  /* cart page */
  .cart-table td{
    vertical-align: top;
  }
  .cart-page-image{
    width: 150px;
  }
  .table-cart-info{
    border: none;
  }
  .table-cart-info .row div{
    text-align: left;
    padding: 4px;
  }
  .table-cart-info .row div:first-child{
    font-weight: 500;
  }
  .cartpage-total{
    font-size: 18px;
  }

  .pro-qty a{
    display: inline-block !important;
  }

  /* online payment page strip styles */
  .p-grid{
    margin-bottom: 50px !important;
  }

  
.hidden {
  display: none;
}

#payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#payment-element {
  margin-bottom: 24px;
}

button:disabled {
  opacity: 0.5;
  cursor: default;
}

/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

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

.x-value-btn{
  display: inline-block;
  padding: 4px 15px;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 4px;
  margin-right: 5px;
  margin-bottom: 5px;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.x-value-btn:hover{
  background-color: #e7e7e7;
}
.x-value-btn img{
  height: 18px;
  width: auto;
}

.x-value-btn > span:first-child{
  margin-right: 10px;
}

.x-value-btn > span:last-child > span{
  height: 4px;
  width: 24px;
  display: inline-block;
  margin-bottom: 2px;
}

.x-value-btn.active{
  border-color: #0098cf;
  background-color: #f3f3f3;
  color: #323232;
}


.e-msg{
  display: none;
  padding: 3px 5px;
}



.card input::placeholder {
  font-size: 14px
}

::placeholder {
  font-size: 14px
}

input.card {
  position: relative
}

.fa.fa-credit-card {
  position: absolute;
  top: 10px;
  padding: 0 15px;
  padding-top: 2px;
}

.fas,
.fa {
  cursor: pointer
}

.cursor {
  cursor: pointer
}

.btn.btn-primary {
  box-shadow: none;
  height: 40px;
  padding: 11px
}

.bg.btn.btn-primary {
  background-color: transparent;
  border: none;
  color: #1976d2
}

.bg.btn.btn-primary:hover {
  color: #539ee9
}

@media(max-width:320px) {
  .h8 {
      font-size: 11px
  }

  .h7 {
      font-size: 13px
  }

  ::placeholder {
      font-size: 10px
  }
}

.card-input{
  padding-left: 35px;
}

.sq{
  height:0;
  width:100%;
  padding-bottom:100%;
}


.breadcrumb-area{
  /* background:linear-gradient(0deg, rgba(255, 0, 150, 0.9), rgba(255, 0, 150, 0.8));
  background-size: cover; */
}

.tp-leftarrow{
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0,0,0,.4);
}
.tp-rightarrow{
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0,0,0,.4);
}

.footer-logo{
  max-width: 250px;
  height: auto;
  margin-bottom: 10px;
}

.top-logo img{
  height: 40px;
  width: auto;
}

@media only screen and (max-width: 768px) {
  .top-logo img{
    height: 30px;
    width: auto;
  }
}

.breadcrumb-area{
  /* text-shadow: #1b1b1b 1px 1px 0; */
  
}
.breadcrumb-list__item{
  /* font-weight: 600 !important; */
}


.bg-section-1{
  background-color: #eff8fd;
}

.btn-brand,
.btn-brand:link,
.btn-brand:visited,
.btn-brand:active{
  background-color: #5dbaea !important;
  border-color: #5dbaea !important;
}

.btn-brand:hover{
  background-color: transparent !important;
  color: #5dbaea !important;
  border: 1px solid #5dbaea !important;
}

/* .btn-slider,
.btn-slider:link,
.btn-slider:visited,
.btn-slider:active{
  background-color: #5dbaea !important;
  color: #fff;
  transition: none 0s ease 0s;
  text-align: center;
  line-height: 40px;
  border: 1px solid #5dbaea;
  padding: 15px 55px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 20px;
  margin-top: 60px;
  text-transform: uppercase;
} */

/* .btn-slider:hover{
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.Slider-button-alt-white,
.Slider-button-alt-white:link,
.Slider-button-alt-white:visited,
.Slider-button-alt-white:active{
  background-color: #5dbaea !important;
  color: #fff !important;
  text-transform: uppercase;
}
.Slider-button-alt-white:hover{
  color: #1c3846 !important;
  border-color: #5dbaea !important;
} */



.btn-accent,
.btn-accent:link,
.btn-accent:visited,
.btn-accent:active{
  background-color: #f9d284 !important;
  border-color: #f9d284 !important;
  color: #323232 !important;
}

.btn-accent:hover{
  background-color: transparent !important;
  color: #f9d284 !important;
}
/* .lezada-button,
.lezada-button:link,
.lezada-button:visited,
.lezada-button:active{
  background-color: #5dbaea;
  border-color: #5dbaea;
}

.lezada-button:hover{
  background-color: transparent;
  color: #5dbaea;
} */



.section-footer{
  background-color: #eff8fd !important;
}

.single-product__content .title > a{
  color: #5dbaea;
}


h1,
h2,
h3,
h4,
h5,
h6{
  color: #13252f !important;
}

.single-category__content .title > a{
  color: #13252f !important;
}

.scroll-top{
  background: #5dbaea !important;
}
.scroll-top:hover{
  background: #4a95bb !important;
}

.text-white{
  color: #fff !important
}

.text-white a,
.text-white a:link,
.text-white a:visited,
.text-white a:hover,
.text-white a:active{
  color: #fff;
}


.pagination > li > a{
  padding: 10px 15px;
}

.pagination > .page-item > .page-link{
  color: #4a95bb;
}
.pagination > .page-item.disabled > .page-link{
  color: #535353;
}

.pagination > .page-item.active > a{
  background-color: #4a95bb;
  border-color: #4a95bb;
  color: #fff;
}

.footer-nav-container nav ul li{
  padding-top: 0;
}

@media(max-width:768px) {
  .cart-table .product-name{
    padding-top: 16px !important;
  }
}

.tb{
  display: block;
}

.tb .tbr{
  display: flex;
  border: 1px solid #ddd;
  border-bottom: 0px;
}
.tb .tbr:last-child{
  border-bottom: 1px solid #ddd;
}

.tb .tbr .tbc{
  padding: 8px 16px;
  align-self: center;
}

.tb .tbh .tbc{
  font-weight: 600;
}

.tb-label{
  font-weight: 500;
  margin-right: 5px;
  display: none;
}

@media(max-width:768px) {
  .tb .tbr{
    display: block;
    border: 1px solid #ddd;
    margin-bottom: 4px;
    padding: 8px 8px;
  }
  .tb .tbr .tbc{
    display: block;
    padding: 5px 10px;
  }
  .tb .tbh{
    display: none;
  }
  .tb-label{
    display: inline-block;
  }
}



.ot1{
  width: 22.5%;
}
.ot2{
  width: 22.5%;
}
.ot3{
  width: 22.5%;
}
.ot4{
  width: 22.5%;
}
.ot5{
  width: 10%;
  text-align: right;
}

@media(max-width:768px) {
  .ot1,
  .ot2,
  .ot3,
  .ot4,
  .ot5{
    width: 100%;
  }
}


.qt1{
  width: 30%;
}
.qt2{
  width: 30%;
}
.qt3{
  width: 30%;
}
.qt4{
  width: 10%;
  text-align: right;
}

@media(max-width:768px) {
  .qt1,
  .qt2,
  .qt3,
  .qt4{
    width: 100%;
  }
}


@media(max-width:768px) {
  .btn-sm-block{
    display: block;
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }
}

.btn-2{
  background-color: #fff;
  border: 1px solid #333;
  color: #333 !important;
}
.btn-2:hover{
  background-color: #f2f2f2;
  border: 1px solid #333;
  color: #555 !important;
}

.rqt1{
  width: 10%;
}
.rqt2{
  width: 35%;
}
.rqt3{
  width: 10%;
}
.rqt4{
  width: 35%;
}
.rqt5{
  width: 10%;
  text-align: right;
}

@media(max-width:768px) {
  .rqt1,
  .rqt2,
  .rqt3,
  .rqt4,
  .rqt5{
    width: 100%;
  }
}
.mrow-about-title{
  margin-bottom: 50px; 
  margin-top: 24px; 
  font-size: 2.6em;
  line-height: 1.2em;
}
.mrow-about{
  border-left: 2px solid #323232;
  padding-left: 40px;
  width: 75%;
  margin-left: 8%;
  text-align: justify;
}
.row1{
  padding-left: 160px;
}
.mrow{
  position: relative;
}
.mrow::before{
  background-color: #eff8fd;
  /* background-color: #f4fbff; */
  content: "";
  height: 80%;
  left: -80px;
  position: absolute;
  right: 80px;
  top: 80px;
  z-index: 0;
  /* box-shadow: rgba(17, 12, 46, 0.02) 0px 48px 100px 0px; */
}


.mrow > .mcontent{
  position: relative;
  z-index: 1;
}

@media(max-width:768px) {
  .row1{
    padding-left: 16px;
  }
  .mrow::before{
    /* background-color: #f5fcff; */
    left: -15px;
    right: 15px;
  }
  .mrow-about-title{
    font-size: 1.6em;
  }
  .mrow-about{
    border-left: 1px solid #323232;
    padding-left: 30px;
    padding-right: 0;
  }
}


.row2{
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
}
.row2::before{
  background-color: #eff8fd;
  /* background-color: #f4fbff; */
  content: "";
  height: 80%;
  left: 0;
  position: absolute;
  right: 160px;
  top: -80px;
  bottom: 80px;
  z-index: 0;
  /* box-shadow: rgba(17, 12, 46, 0.02) 0px 48px 100px 0px; */
}

.row2 div{
  position: relative;
}

.row2 > div:first-child{
  width: 60%;
}
.row2 > div:first-child img{
  width: 100%;
  height: auto;
}

.row2 > div:last-child{
  width: 40%;
  padding-left: 80px;
}

@media(max-width:768px) {

  .row2 {
    display: block;
  }

  .row2::before{
    right: 60px;
    /* box-shadow: rgba(17, 12, 46, 0.02) 0px 48px 100px 0px; */
  }
  

  .row2>div:first-child {
    width: 100%;
  }

  .row2>div:first-child img {
    width: 100%;
    height: auto;
  }

  .row2>div:last-child {
    margin-top: 30px;
    width: 100%;
    padding-left: 15px;
  }
}


.row3{
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
}
.row3::before{
  background-color: #eff8fd;
  /* background-color: #f4fbff; */
  content: "";
  height: 80%;
  left: 25%;
  position: absolute;
  right: 0;
  top: 80px;
  bottom: 80px;
  z-index: 0;
  /* box-shadow: rgba(17, 12, 46, 0.02) 0px 48px 100px 0px; */
}

.row3 div{
  position: relative;
}

.row3 > div:first-child{
  width: 50%;
  text-align: right;
  padding-right: 80px;
  padding-left: 80px;
}
.row3 > div:last-child img{
  width: 100%;
  height: auto;
}

.row3 > div:last-child{
  width: 50%;
  
}

@media(max-width:768px) {

  .row3 {
    display: block;
  }

  .row3::before{
    left: 15%;
  }
  

  .row3>div:first-child {
    width: 100%;
  }

  .row3>div:first-child {
    width: 100%;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }

  .row3>div:last-child {
    margin-top: 30px;
    width: 100%;
  }
}



.row4{
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
}
.row4::before{
  background-color: #eff8fd;
  /* background-color: #f4fbff; */
  content: "";
  height: 80%;
  left: 0;
  position: absolute;
  right: 20%;
  top: -80px;
  bottom: 80px;
  z-index: 0;
  /* box-shadow: rgba(17, 12, 46, 0.02) 0px 48px 100px 0px; */
}

.row4 div{
  position: relative;
}

.row4 > div:first-child{
  width: 55%;
}
.row4 > div:first-child img{
  width: 100%;
  height: auto;
}

.row4 > div:last-child{
  width: 45%;
  padding-left: 80px;
  padding-right: 80px;
}

@media(max-width:768px) {
  .row4{
    display: block;
  }
  .row4::before{
    height: 90%;
  }
  
  .row4 > div:first-child{
    width: 100%;
    display: block;
  }
  
  .row4 > div:last-child{
    width: 100%;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
  }
  
}


.team-col{
  padding: 15px;
}

.team-col img{
  width: 100%;
  height: auto;
}

.team-col h5{
  font-size: 1.3em;
  margin-top: 24px;
  font-weight: 600;
}

.team-col .pos{
  font-size: 1.1em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.team-col p{
  color: #343a40;
}


#simplify-checkout-embed-frame {

  border: none;
  width: 100%;
  height: 500px; 

  overflow: hidden;

}

/* 
#secure3d-frame {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0, 0, 0, 0.5);
}

#secure3d-frame.text {
  color: black;
}

#challengeFrame {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0, 0, 0, 0.5);
}

#challengeFrame.text {
  color: black;
}

#methodFrame {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0, 0, 0, 0.5);
}

#methodFrame.text {
  color: black;
} */