/* Variables */
* {
  box-sizing: border-box;
}

/* Simple fade-out animation */
@keyframes fadeOut {
          from { opacity: 1; }
          to { opacity: 0; }
}
/* Full-screen overlay */
 #overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0,0,0,0.75);
          z-index: 1000;
          opacity: 0;
          animation: fadeOut 1s forwards;
 }

 body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  /* display: grid; */
  background-color: #F5F5F5;
  /* grid-gap: 5px; */
  justify-content: center;
  align-content: center; 
  height: 100vh;
  /*width: 95vw;  */
}

.container_merchant {
  
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
  0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  /* margin:2%; */
  border-radius: 7px;
  max-width: 500px;
  margin: auto;
}

#name_sp{
  display:block;
  padding:12px;
  color:#4d002a;
  text-align: center;
  font-size: medium;
  justify-content: center;
  /* margin-left: auto;
  margin-right: auto; */
  font-size: 2rem;
}

#qr-collect{
  display:block;
  color:#4d002a;
  text-align: center;
  font-size: medium;
  justify-content: center;
  /* margin-left: auto;
  margin-right: auto; */
  font-size: 1rem;
}

.img_logo_sp {
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
   0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius:15px;
  background: #F5F5F5;
  padding: 5px;
  min-height: 10vh;
  max-height: 17vh;

  max-width: 17vw;
  min-width: 10vh;
  display:in-line;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top:10px;
}

.img_logo_qr {
  background: #F5F5F5;
  padding: 2px;
  max-height: 7vh;
  /*max-width: 10vw;*/
  display:in-line;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top:0;
}

.container_qr-collect {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color:#4d002a;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  padding-top: 1%;
  padding-bottom: 1%;
  padding-right: 3%;
  padding-left: 3%;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
    max-width: 500px;
  margin: auto;
  border-radius: 7px;
  margin-top: 1%;
  margin-bottom: 1%;
}

.container_stripe {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  max-width: 500px;
  margin: auto;
  border-radius: 7px;
  margin-top: 1%;
  margin-bottom: 1%;

}

.container_stripe_card {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  max-width: 500px;
  margin: auto;
  border-radius: 7px;
  margin-top: 1%;
  margin-bottom: 1%;

}


#review {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2em;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  padding-top: 1%;
  padding-bottom: 1%;
  padding-right: 3%;
  padding-left: 3%;
  display:block;
  margin-top: 10px;
}

#review_form {
  display:none;
}

#form_value {
  align-self: center;
  /* box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07); */
  border-radius: 7px;
  padding-top: 1%;
  padding-bottom: 1%;
  padding-right: 3%;
  padding-left: 3%;
  box-shadow: none;
}

/* Radio button */

/*
Toggle Radios v1.1
by Adam Culpepper | @adamculpepper
https://github.com/adamculpepper/toggle-radios
*/

/* Customizable styles */

/* Colors: Default (blue) */
.toggle-radio {
  /* -webkit-appearance: radio; */
  background:#f5f5f5; 
  border:1px solid #ccc;
  padding-top: 3%;
  padding-bottom: 3%;
  padding-right: 3%;
  padding-left: 3%;
  color:#4d002a;
  text-align: center;
  font-size: 1.5em;
  border-radius: 7px;
  /* padding: 1rem; */
}
.toggle-radio > input:checked + label {
  background:#d50f7e;
  color:white;
}
.toggle-radio > input + label:not(:last-of-type) {border-right:1px solid rgba(204, 204, 204, 0.692);}
/* Rounded corners */
.toggle-radio {border-radius:4px;}

/* //////////////////////////
CORE STYLES BELOW - NO TOUCHY
////////////////////////// */
.toggle-radio {display:inline-flex;}
.toggle-radio > input[type='radio'] {display:none;}
.toggle-radio > input[disabled] + label {opacity:0.50;}
.toggle-radio > input[disabled] + label:hover {cursor:not-allowed;}
.toggle-radio > input + label {
  display:inline-block; 
  margin-bottom:0; 
  padding:1rem; 
  float:left; 
  cursor:pointer;
  border-radius: 7px;
}

/* Transitions */
/* .toggle-radio > input:checked + label {transition:background 300ms linear;} */

/* //////////////////////////
CORE STYLES ABOVE - NO TOUCHY
////////////////////////// */

/* Style: Rounded */
.toggle-radio[data-style='rounded'] {border-radius:500px;}

#total_final_amount{
	display:block-flex;
	text-align:center;
	font-size: 1.5rem;
	color: #4d002a;
	/*color: #ff36a6;*/
	/*background: #ff36a6;*/
	background: #f5f5f5;
	height: 2.5rem;
	width: 30%;
	border-radius: 7px;
	margin-top: 0.5rem;
	margin-bottom:0;
  border: 2px solid #ccc;
  /*border-radius: 4px;*/
  box-sizing: border-box;
}

#feetopayer{
	display:block-flex;
	text-align:center;
	font-size: 1rem;
	color:white;
	background:#ff36a6;
	height: 1rem;
	width: 1rem;
	border-radius: 7px;
	margin-top: 0.5rem;
	margin-bottom:0;
}


form {
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 1em;
}

.hidden {
  display: none;
}

#payment-message {
  color: #ff36a563;
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

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


/* Popup container - can be anything you want */
.popup {
  /*text-decoration: underline;*/
  font-style: italic;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
    left:-250px;
    visibility: hidden;
    width: 300px;
    background-color: #555555ed;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    padding: 5px;
    z-index: 1;
    bottom: 100%;
}



/* Popup arrow 
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
*/

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


/* Buttons and links */
button {
  background: #d50f7e;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px #ff36a563;
  width: 100%;
}
button:hover {
  filter: contrast(115%);
}
button:disabled {
  opacity: 0.5;
  cursor: default;
}

@-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);
  }
}

@media only screen and (max-width: 500px) {
  form {
    /* width: 80vw; */
    min-width: initial;
  }
}

#footer {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  color:#4d002a;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  padding-top: 1%;
  padding-bottom: 1%;
  padding-right: 3%;
  padding-left: 3%;
  margin-top: 5px;

}

/* payment page end */


/* payment completed page start */

.container_approved {
  color:white;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  background-color:#32a852;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
  0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  /* margin:2%; */
  border-radius: 7px;
  max-width: 500px;
  margin: auto;
}

.container_approved_tax {
  color:white;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  background-color:#32a852;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
  0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  /* margin:2%; */
  border-radius: 7px;
  max-width: 500px;
  height:25%;
  margin: auto;
}

.img_logo_approved {
  
  max-height: 30vh;
  max-width: 30vw;
  display:in-line;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top:20%;
  margin-bottom:5%;
}

/* payment completed page start for TAX  */

.container_approved_tax {
  color:white;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  background-color:#32a852;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
  0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  /* margin:2%; */
  border-radius: 7px;
  max-width: 500px;
  height:auto;
  margin: auto;
}

.img_logo_approved_tax {
  
  max-height: 10vh;
  max-width: 10vw;
  display:in-line;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top:1%;
  margin-bottom:1%;
}

.container_form_tax {
  /* Styles for the form container */
  width: auto;
  max-width: 500px;
  border-radius: 7px;
  max-width: 500px;
  height:auto;
  margin: auto;
  margin-top: 1%;
  background-color:#91a998;
}

.form_tax {
  /* Additional form styling if needed */
}

.form_title {
  text-align: center;
  font-size: x-large;
  margin-bottom: 20px; /* Space below the title */
  color: darkgreen;
  text-decoration:underline;
  
}

.form_row {
  display: flex;
  align-items: center;
  margin-bottom: 10px; /* Adjust spacing between rows */
}

.form_row label {
  flex-basis: 30%; /* Adjust based on your design */
  text-align: right;
  margin-right: 10px; /* Space between label and input */
  color: darkgreen;
}

.form_row input[type="text"], 
.form_row input[type="email"] {
  flex-grow: 1; /* Input fields take up remaining space */
  /* Add input styling as needed */
}

.submit_button {
  margin-top: 1%;
  background: palevioletred; /* Moved from inline style to here */
  color: white; /* Text color for the submit button */
  padding: 10px 20px; /* Button padding */
  border: none; /* Remove border */
  cursor: pointer; /* Cursor pointer */
  flex-grow: 1; /* Button takes up the full row width */
  transition: background-color 0.3s ease; /* Smooth background color transition on hover */
}

.submit_button:hover {
  background-color: #d3568f; /* Darker shade when hovered */
}

/* payment completed end */

.container_calculator{
  margin: auto;
  padding: 10px;
  touch-action: manipulation !important;
}

.calculator{
  padding: 15px !important;
  font-weight: bold !important;
  font-size: 25px !important;
  color:#4d002a !important;
  border: none !important;
  background-color: #ebebeb !important;
  width: 100% !important;
  cursor: pointer !important;
}

table{
  width: 100%;
  padding: 0rem;
  margin: auto;
}


/* payment page */

.follow-us_0 {
	display: flex;
    	justify-content: center;
    	align-items: center;
}
.follow-us_1 {
	display: flex;
    	justify-content: center;
    	align-items: center;
}


