.error-message {
  color: rgb(74, 0, 0) !important;
  margin: 5px 0;
}
.field-container .invalid {
  /* border: 1px solid red !important; */
  /* color: red !important; */
}

.field-container .valid {
  /* color: rgb(169, 212, 169) !important; */
  /* background-color: rgb(217, 238, 217) !important; */
}

.field-container.invalid {
  background-color: rgb(245, 203, 203, 0.47);
}

.field-container.valid {
  background-color: rgba(215, 238, 215, 0.47);
}

.section-header {
  font-size: 30px;
  color: #293e71;
  text-align: center;
  margin: 0;
}

.hide-not-current-step {
  display: none !important;
}

button {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
}

button:disabled {
  opacity: 0.5;
}

.btns-container {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.next-btn,
.submit-btn {
  background-color: #293e71;
  border: none;
  color: white;
}

.back-btn {
  border: 1px solid #293e71;
  background-color: white;
  color: #293e71;
}

button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

input:not([type="radio"]):not([type="checkbox"]):not([class="bv_input"]),
textarea {
  padding: 15px 10px;
  border: 1px solid lightgray;
  width: 100%;
  border-radius: 5px;
}

select {
  height: 50px;
  background: white;
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 0 10px;
}

.field-container {
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-verse-container{
  display: flex;
  flex-direction: column;
  gap: 5px
}

svg {
  width: 30px;
  height: 30px;
}

.uppy-btns-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.uppy-btns-container p {
  text-align: center;
  width: 50%;
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  border: 1px solid rgba(0, 61, 76, 0.08);
  background: rgba(234, 234, 234, 0.4) !important;
  color: rgba(43, 44, 89, 0.6);
}
.uppy-btns-container button {
  width: 50%;
  padding: 10px 0;
  background-color: #293e71 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  border: 1px solid rgba(0, 61, 76, 0.08);
  color: white;
}

html,
body {
  scroll-behavior: smooth !important;
}
.hidden {
  display: none;
}

#loading-screen::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' width='150' height='150' id='L4' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 0 0' xml:space='preserve'%3E%3Ccircle fill='%23293e71' stroke='none' cx='26' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1.5s' values='0;1;0' repeatCount='indefinite' begin='0.1'/%3E%3C/circle%3E%3Ccircle fill='%23293e71' stroke='none' cx='46' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1.5s' values='0;1;0' repeatCount='indefinite' begin='0.2'/%3E%3C/circle%3E%3Ccircle fill='%23293e71' stroke='none' cx='66' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1.5s' values='0;1;0' repeatCount='indefinite' begin='0.3'/%3E%3C/circle%3E%3C/svg%3E");
  display: block;
  height: 150px;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}


.steps-view-container{
  display: flex;
  justify-content:space-evenly;
  /* align-items:start ; */
  margin-bottom: 15px;
  /* margin-left: auto; */
  text-align: center;
  /* text-wrap: wrap; */
}

.steps-view-sub-container{
    margin-left: 4px;
  margin-right: 4px;
}

.steps-view-title{
  text-wrap: balance;
}

.phoneNumber{
  display: flex;
}


.phoneNumber input:not([class="bv_input"]){
  margin: 7px 0px 7px 0px;
}
.countryName {
  display: none;
}

.rating-group {
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}

.active {
  color: #293e71;
}

.not-active {
  color: grey;
}

.modal {
  position: fixed;
  z-index: 1; /* Set a higher z-index to bring the modal to the front */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Add a semi-transparent background */
}

html:not(.w-theme-dark) .modal-content {
  background-color: white;
  box-shadow: 0 0 7px rgba(0,0,0,.2);
  border-radius: 5px;
  font-size: 90%;
  text-align: center;
  padding: 40px 30px;
  max-width: 400px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

html.w-theme-dark .modal-content {
  box-shadow: 0 0 7px rgba(0,0,0,.2);
  border-radius: 5px;
  font-size: 90%;
  text-align: center;
  padding: 40px 30px;
  max-width: 400px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
  border: none;
  background: transparent;
  cursor: pointer;
}


.rate {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin: 20px;
  height: 46px;
  padding: 0 10px;
}
.rate:not(:checked) > input {
  position:absolute;
  top:-9999px;
}
.rate:not(:checked) > label {
  float:right;
  width:1em;
  overflow:hidden;
  white-space:nowrap;
  cursor:pointer;
  font-size:30px;
  color:#ccc;
}
.rate:not(:checked) > label:before {
  content: '★ ';
}
.rate > input:checked ~ label {
  color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #f2ce4b;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}

.icon {
  width: 20px;

}


.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top: 2px solid #333;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.disabled-container {
  pointer-events: none !important; /* Disable interactions */
  opacity: 0.5 !important; /* Make it look disabled */
  background-color: #f5f5f5 !important; /* Optional: Add a background color */
}
input:disabled {
  pointer-events: none !important; 
  opacity: 0.5 !important; 
  background-color: #f5f5f5 !important; 
}
