* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
* a {
  text-decoration: none;
  color: inherit;
}

.bg-none { background-color: unset !important; }
.font1n5em { font-size: 1.5em; }
.green0n1bg { background-color: rgba(0, 128, 0, 0.1) !important; }
.fw800 { font-weight: 800; }
/*navbar CSS*/
.nav {
  background: green;
  display: flex;
  justify-content: center;
  color: white;
  height: 70px;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%),
    0 1px 5px 0 rgb(0 0 0 / 12%);
  z-index: 1111111;
}
.nav .navWrapper {
  width: 1150px;
  display: flex;
  max-width: 100vw;
  align-items: center;
  padding: 0 18px;
  height: 100%;
}
.nav .navWrapper .logo {
  font-size: 30px;
  font-weight: 600;
}
.nav .navWrapper .grow {
  flex-grow: 1;
}
.nav .navWrapper .menuItems {
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav .navWrapper .menuItems li {
  margin: 0 15px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav .menuItems li a.check_status {
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%),
    0 1px 5px 0 rgb(0 0 0 / 12%);
  padding: 8px 18px;
  color: green;
  border-radius: 25px;
  text-transform: uppercase;
  border: none;
  background-color: white;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 2px solid rgb(255, 255, 255);
  cursor: pointer;
}
.nav .menuItems li a.check_status:hover {
  color: white;
  background: transparent;
}

/*Content area CSS*/
.content {
  margin-top: 70px;
  min-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contentWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 27px 18px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  width: 550px;
  max-width: 90vw;
  margin-top: 18px;
}
.contentWrapper h1 {
  width: 100%;
  text-align: center;
  background-color: rgba(0,128,0, 0.1);
  color: green;
  padding: 10px 0;
}
.contentWrapper h1.status-title {
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  background-color: green;
  padding: 30px;
}
.contentWrapper .optionsWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.contentWrapper #imageContent {
  padding: 18px;
}

.contentWrapper .button {
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%),
    0 1px 5px 0 rgb(0 0 0 / 12%);
  padding: 8px 25px;
  color: #fff;
  border-radius: 25px;
  text-transform: uppercase;
  border: none;
  background-color: #009121;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  width: 150px;
  max-width: 95vw;
  text-decoration: none;
  text-align: center;
  border: 2px solid green;
  cursor: pointer;
}
.contentWrapper .button:hover {
  color: green;
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text color */
}
.content-title .Pending {
  color: orange;
}
.content-title .Completed {
  color: rgb(0, 214, 0);
}
.content-title .Failed {
  color: rgb(255, 0, 0);
}

.imagesWrapper h3 { text-align: center; background: #f0f0f0; }
.imagesWrapper .crypto, .imagesWrapper .banks { text-align: center; }
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .copyright {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1150px;
  width: 100%;
  text-align: center;
}
footer .copyright a {
  margin: 0 5px;
  color: green;
  font-weight: 600;
}
footer .copyright a:hover {
  color: gray;
}
/*-----------buy page---------------------------*/
.form-control {
  font-family: system-ui, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  margin-top: 15px;
}

/* .form-control + .form-control {
  margin-top: 1em;
} */

.form-control:focus-within {
  color: var(--form-control-color);
}

input[type="radio"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* 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;
}

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 var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: CanvasText;
  background: green;
}

input[type="radio"]:checked::before {
  transform: scale(1);
  color: #009121;
}

input[type="radio"]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
  outline-color: #009121;
}

.currency {
  position: relative;
}
label img {
  width: 100%;
  max-width: 200px;
  cursor: pointer;
}
.form-control.USDT,
.form-control.TRON,
.form-control.USDC,
.form-control.skrill,
.form-control.bitcoin,
.form-control.shib,
.form-control.volet{
  margin: 35px 0 0;
}

.contentWrapper form {
  display: flex;
  flex-direction: column;
}
.contentWrapper form .buttonWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

.contentWrapper form .buttonWrapper .button {
  width: 46%;
  margin: 2%;
}

/*-----------amount page---------------------------*/

.contentWrapper .optionsWrapper.amount form {
  width: 100%;
  margin-top: 15px;
}

.inputWrapper {
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: 100%;
  margin-bottom: 20px;
}
.inputWrapper input {
  width: 100%;
  border-radius: 6px;
  padding: 4px 10px;
  margin-top: 5px;
  border: 2px solid #555;
  outline: none;
  font-size: 18px;
  font-weight: 600;
}
.inputWrapper input:focus {
  border-color: green;
}

/*-----------amount page---------------------------*/
.optionsWrapper.payment {
  margin-top: 10px;
}
.optionsWrapper.payment label {
  display: flex;
  align-items: center;
  width: 100%;
  width: 300px;
  max-width: 100%;
  margin: 0 0 15px;
  color: #555;
}
.optionsWrapper.payment label img {
  max-width: 40px;
  filter: grayscale(100%);
}

.optionsWrapper.payment label i {
  font-size: 40px;
}

/*-----------banks page---------------------------*/

.optionsWrapper.banks form {
  width: 100%;
}
.optionsWrapper.banks {
  width: 300px;
}

.optionsWrapper.banks label {
  margin: 12px auto;
}
.optionsWrapper.banks label img {
  max-width: 100px;
}

.inputWrapper.summary {
  list-style: none;
  display: flex;
}
.inputWrapper.summary li {
  display: flex;
}
.inputWrapper.summary li span.listLeft {
  width: 40%;
}
.inputWrapper.summary li span.listRight {
  font-weight: 600;
  width: 60%;
}

/*index page top area*/
.rateWrapper {
  display: flex;
  align-items: center;
  width: 550px;
  padding: 18px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  margin-top: 18px;
  border-radius: 6px;
  max-width: 90vw;
}
.rateWrapper .title {
  flex: 1;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #555;
  width: 100%;
  flex-direction: column;
}
.rateWrapper ul {
  flex: 3;
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.rateWrapper ul li {
  display: flex;
  color: gray;
}
.rateWrapper ul li.heading {
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}
.rateWrapper ul li span {
  font-size: 15px;
}
.rateWrapper ul li span:first-child {
  flex: 2;
}
.rateWrapper ul li span:not(:first-child) {
  text-align: center;
  flex: 1.5;
}

/* Styling for the heading (first li) */
.rateWrapper .heading {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: black;
    color: white;
    font-weight: bold;
}

/* Styling for individual list items */
.rateWrapper li {
    display: flex;
    justify-content: space-between;
    padding: 0px;
    border-bottom: 1px solid #ddd; /* Add a subtle border for separation */
}

/* Styling for odd list items */
.rateWrapper li:nth-child(odd):not(.heading) {
    background-color: #f2f2f2; /* Light grey background for odd list items */
}

/* Styling for even list items */
.rateWrapper li:nth-child(even):not(.heading) {
    background-color: #fff; /* White background for even list items */
}

/* Make sure to style the spans inside the list items */
.rateWrapper li span {
    flex: 1;
    text-align: center;
}

.rateWrapper li span:nth-child(2) {
    margin-right: 10px; /* Space between Buy and Sell columns */
}

@media (max-width: 569px) {
  .rateWrapper {
    flex-direction: column;
  }
  .rateWrapper .title {
    margin-bottom: 10px;
  }
}

/*index page bottom images area*/
.imagesWrapper {
  display: flex;
  width: 750px;
  max-width: 90vw;
  flex-wrap: wrap;
  justify-content: center;
  margin: 18px 0;
}
.imagesWrapper img {
  height: 25px;
  margin: 10px 5px;
}
@media (max-width: 569px) {
  .imagesWrapper img {
    height: 20px;
    margin: 7px 5px;
  }
}

/*after image progress bar*/
.progress {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  color: gray;
}
.bar_container {
  flex-grow: 1;
  height: 8px;
  background: red;
  margin: 0 5px;
  border: 1px solid lightgray;
  position: relative;
  border-radius: 3px;
  opacity: 0.6;
}
.bar_container .bar {
  position: absolute;
  height: 100%;
  width: 40%;
  background: green;
}
.progress .balance {
  color: rgba(0, 128, 0, 0.7);
}

/* imagemodal */
.imageModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 222222222222;
  display: none;
  align-items: center;
  justify-content: center;
}
.imageModal.show {
  display: flex;
}
.imageModal .close {
  position: absolute;
  top: 20px;
  right: 50px;
  cursor: pointer;
}
.imageModal .close i {
  font-size: 30px;
  color: white;
}
.imageModal .imageWrapper img {
  max-height: 95vh;
}
/*maruthalooms banner*/
.bannerWrapper {
  width: 750px;
  max-width: 90vw;
  margin-top: 18px;
}
.bannerWrapper img {
  width: 100%;
}
.phoneFront {
  color: #555;
  text-align: center;
}
.phoneFront .number {
  color: green;
  font-weight: 600;
}

.other-usdt-amount { background-color: green; text-align: center; color: #fff; font-size: 25px; }
.other-usdt-amount-fees { margin-top: 7px; }
.red { color: red; }
.strike { text-decoration: line-through; }
.listRight.thirtyeight { width: 38% !important; }

.form-control.PI, .form-control.DOGE { margin-top:35px; }

.warning {
            color: red;
            margin-top: 10px;
        }
        
.warning-no-fees {
            color: green;
            margin-top: 10px;
        }        
        
.send-pm-nmbr { text-align: center;
    margin-top: 10px;
    color: red; }
    
/* Fees page */

.formWrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formWrapper div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    border-radius: 6px;
}

.formWrapper div:nth-child(odd) {
    background-color: #f9f9f9;
}

.formWrapper label {
    font-weight: bold;
    font-size: 14px;
    color: #444;
    margin-right: 10px;
    width: 45%;
}

.formWrapper span {
    font-size: 14px;
    color: #555;
    width: 50%;
    text-align: right;
}
.formWrapper .fa-level-down { transform: scaleX(-1) rotate(90deg); }    
label.fees, span.fees { font-size: 12px; padding-left: 10px; }
.formWrapper .fa-level-down:before { color: #85df85; }
        
/* next button on amunt0new.php page*/
/* Default button style */
.button.next {
    background-color: #009121; /* Default green background */
    color: #fff; /* Default white text color */
    cursor: pointer; /* Show pointer cursor when hovering */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text color */
}

/* Button hover effect */
.button.next:hover {
    background-color: #fff; /* Change background color to white on hover */
    color: #009121; /* Change text color to green on hover */
    cursor: pointer; /* Make sure it stays a pointer on hover */
    background-repeat: no-repeat;
    background-position: center;
}

/* Disabled state styling (when amount exceeds available balance) */
.button.next.disabled {
    background-color: #fff; /* White background */
    color: #ccc; /* Grey text color to indicate it's inactive */
    cursor: not-allowed; /* Change cursor to indicate it's not clickable */
    background-repeat: no-repeat;
    background-position: center;
}

/* Button hover effect when disabled (still shows stop icon) */
.button.next.disabled:hover {
    background-color: #fff; /* Keep the background white */
    color: #ccc; /* Keep the grey text color */
}

/* account details page */
.inputWrapper.sell-binance-wallet { width: 100%; }

/* status new */
h1.status-title {
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
    background-color: green;
    padding: 30px;
	font-size: 2em !important;
}
h1.status-title span { font-size: 1em !important; }

h1.status-title span.status_timing { width: 100%; color: #fff; text-align: center; font-size: 12px !important; }
.staus_btns { text-align: center; margin-top: 20px;}
.staus_btns .button {box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    padding: 8px 25px;
    color: #fff;
    border-radius: 25px;
    text-transform: uppercase;
    border: none;
    background-color: #009121;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    width: 150px;
    max-width: 95vw;
    text-decoration: none;
    text-align: center;
    border: 2px solid green;
    cursor: pointer;}
	
#imageContent .formWrapper { box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3); }

/* version */
@keyframes moveUpDown {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-3px); /* Moves the 2.0 up */
    }
    100% {
        transform: translateX(0);
    }
}

.nav .navWrapper .grow {
   animation: moveUpDown 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite; /* Animation lasts 1 second, repeats indefinitely */
    position: relative;
    top: -12px; /* Adjust this value as needed to move the 2.0 upwards */
    left: -16px; /* Adjust this value to move the 2.0 slightly left */
    font-size: 12px; /* You can adjust the font size if necessary */
}
