/*
 Theme Name:   Retensa Child
 Template:     retensa
 Description:  Child theme for the retensa theme
 Author:       Your Name
 Version:      1.0.0
*/

/* Your custom CSS below */




.custm-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
	gap:10px;
}
/* .custm-spinner a {
    margin-left: 50px!important;
    margin-right: 0px!important;
} */
.custm-loader {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  background: conic-gradient(#f3bf5a 70%, transparent 10%);
}

.custm-loader::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: white; /* or your background color */
  border-radius: 50%;
}

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


.custom-payment-tabs {
    display: flex;
    border-bottom: 4px solid #d6cee4;
    list-style: none;
    padding: 0;
}
.payment-tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    background: #f8f8f8;
    margin-right: 10px;
    border-radius: 5px 5px 0 0;
}
.payment-tab.active {
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: 2px solid #fff;
}
.payment-tab-content {
    display: none;
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 5px 5px;
}
