/* CSS - style.css */

@media only screen and (max-width: 767px) { 
  .qr-code-main {
      display: block ;
      column-count: unset !important;
      text-align:center;
  }
  .qr-code-main div div {
      margin: auto;
  }
  .qr-code-main.success-thankyou{
    display: none ;
  }
  
  
  }
  @media only screen and (max-width: 480px) { 

    .qr-code-main div.qr-box {
      margin: auto;
      width: auto;
    }
    section.woocommerce-order-details {
      border: 2px dotted;
      margin: 3px 0;
      padding: 1px 25px;
      border-radius: 3px;
    }
    .woocommerce-columns--addresses {
      padding: 0 20px;
    }
    .woocommerce-thankyou-order-received {
      text-align: center;
      padding: 0;
      margin: 0;
  }
  }
/********************************* Main CSS start ********************************/


strong.success-time {
  color: #000;
  font-size: 16px;
}


.qr-code-main .qr-box {
  margin: auto;
  width: 400px;
}
.qr-code-main {
    column-count: 1;
    margin-bottom: 30px;
    justify-content: space-around;
    align-items: center;
    display: block;
    /* border: 2px dotted; */
    padding: 30px 0;
}	

.qr-copy-text {
    text-align: center;
    margin: 0px auto;
    width: 400px;
    border: 3px solid;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 1px 2px 0px #00000057;
}
section.woocommerce-order-details {
  padding-top: 30px;
}

.copy-text {
    position: relative;
    padding: 2px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    width: 100%;
    margin: 10px auto 10px;
}
.qr-code-main .qr-box svg {
    padding: 25px;
}
.copy-text input.text {
	padding: 10px;
	font-size: 18px;
	color: #555;
	border: none;
	outline: none;
}
.copy-text button {
	padding: 10px;
	background: #5784f5;
	color: #fff;
	font-size: 18px;
	border: none;
	outline: none;
	border-radius: 10px;
	cursor: pointer;
}
path.cls-1 {
    fill: #009e0f;
}
.qr-code {
    text-align: center;
}
.qr-code-main.success-thankyou .qr-box svg {
  width: 120px;
}
.qr-code-main .qr-box svg {
    width: 300px;
}

.copy-text button:active {
	background: #809ce2;
}
.copy-text button:before {
	content: "Copied";
	position: absolute;
	top: -45px;
	right: 0px;
	background: #5c81dc;
	padding: 8px 10px;
	border-radius: 20px;
	font-size: 15px;
	display: none;
}
.copy-text button:after {
	content: "";
	position: absolute;
	top: -20px;
	right: 25px;
	width: 10px;
	height: 10px;
	background: #5c81dc;
	transform: rotate(45deg);
	display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
	display: block;
}
.c-inner-logo {
  text-align: center;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* .spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
  } */

  .spinner-container {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    right: 0;
    left: 0;
    opacity: 0.5;
    background-color: #eee;
    z-index: 10;
}
  
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .qr-code-expird {
    border: 1px #ff0000 solid;
    
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        border-color: #fff;
    }
}

  svg#Layer_1{
    transform-origin: bottom center;
    animation: thumbsUpAnimation 0.5s ease-in-out infinite alternate;
  }
  @keyframes thumbsUpAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.lds-dual-ring.hidden { 
  display: none;
  }
  .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 5% auto;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  
  .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0,0,0,.8);
      z-index: 999;
      opacity: 1;
      transition: all 0.5s;
  }