.card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.input-label {
    display: block;
    margin-bottom: 5px;
}

#phn {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 10px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

form #submit_btn {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

form #submit_btn:hover {
    background-color: #333;
}

.otp-form p {
  margin-bottom: 20px;
}

.otp-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.otp-inputs input {
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
}

.otp-inputs input:focus {
  border-color: #3a79fd;
  outline: none;
}


form .submit_btn {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

form .submit_btn:hover {
    background-color: #333;
}

.box_de_f{
  border: none;
}


.order-container {
  background-color: #fff;
  border-radius: 8px;
  /* padding: 20px; */
/*  box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
  width: 545px;
  margin: auto;
  max-width: 100%;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
   padding: 20px;
  margin-bottom: 20px;
}

.order-title {
  font-size: 24px;
   /* padding: 20px; */
  color: #333;
}





.order-info {
  display:flex; 
  align-items:center;
  justify-content:space-between;
   padding-right: 20px;
   padding-left: 20px;
  text-align: right;
  color: #555;
}

.order-info span {
  display: block;
  margin-bottom: 5px;
}

.order-info .estimated-delivery {
  color: green;
  font-weight: bold;
}



.order-details {
   padding: 20px;
  display: block;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.order-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.item-image {
  width: 50px;
  height: 50px;
  background-color: #ddd;
  border-radius: 4px;
  margin-right: 10px;
}

.item-details {
  flex-grow: 1;
}

.item-details span {
  display: block;
  color: #555;
}

.item-details .product-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.item-price {
  font-size: 16px;
  color: #555;
  white-space: nowrap;
}

.payment-delivery-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.payment-info, .delivery-info {
  font-size: 16px;
  color: #555;
}

.payment-info img, .delivery-info img {
  vertical-align: middle;
  margin-right: 5px;
}

.action-buttons {
  text-align: right;
  margin-top: 20px;
}

.action-buttons a, .action-buttons button {
  text-decoration: none;
  color: #007bff;
  background-color: transparent;
  border: none;
  padding: 0;
  margin-left: 10px;
  cursor: pointer;
}

.action-buttons button {
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
  transition: background-color 0.3s ease;
}

.action-buttons button:hover {
  background-color: #0056b3;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  font-size: 14px;
  color: #555;
}

.order-footer span {
  color: #000;
}


 .feedback-form {
  display: none; 
  margin-top: 20px;
  padding: 20px;
  /* background: #f7f7f7; */
  /* border-radius: 8px; */
  border-top: 1px solid #eee;
}

.feedback-container {
  background-color: #fff;
  
  border-radius: 10px;
  padding: 20px;
  /*box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  width: 400px;*/
}

.feedback-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.feedback-question, .follow-up-question {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.emoji-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.emoji-container input[type='radio'] {
  display: none;
}

.emoji-container label {
  font-size: 24px;
  cursor: pointer;
}

.emoji-container input[type='radio']:checked + label {
    transform: scale(1.2);
    border: 1px solid;
    border-radius: 50%;
    padding: 3px;
    height: 40px;
    width: 40px;
    text-align: center;
}

.text-feedback, .follow-up {
  margin-bottom: 20px;
}

.text-feedback textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  height: 80px;
  font-size: 14px;
  box-sizing: border-box;
}

.follow-up label {
  font-size: 14px;
  color: #333;
  margin-right: 10px;
}

.submit-container button {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.submit-container button:hover {
  background-color: #004494;
}

.submit-container .finale_submit {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.submit-container .finale_submit:hover {
  background-color: #004494;
}


.issue-question, .issue-selection {
margin: 20px 0;
}

.issue-question label, .issue-selection label {
font-weight: bold;
color: #333;
}

/* Style for the container of the radio options */
.radio-option-container {
display: flex;
align-items: center;
margin-bottom: 5px;
}

.issue-question input[type="radio"], .follow-up input[type="radio"],
.issue-question label, .follow-up label {
margin-right: 10px;
}

.issue-question label, .follow-up label {
cursor: pointer;
display: inline-block;
vertical-align: middle;
}

select {
width: 100%;
padding: 8px;
margin-bottom: 15px;
border-radius: 4px;
border: 1px solid #ccc;
background-color: white;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; 
}



.greeting {
  padding: 20px;
  background: #4CAF50; 
  color: white; 
  border-radius: 8px 8px 0 0; 
  text-align: center;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}


.greeting:before {
  content: '👋';
  display: inline-block;
  margin-right: 8px;
  font-size: 24px;
  vertical-align: middle;
}





.step-wizard {
  width:100%
    display: flex;
    justify-content: center;
    align-items: center;
}
.step-wizard-list{
    background: #fff;
    /* box-shadow: 0 5px 5px rgba(0,0,0,0.1); */
    color: #333;
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 40px 10px;
    position: relative;
    z-index: 10;
}

.step-wizard-item{
    /* padding: 0 20px; */
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive:1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* min-width: 170px; */
    position: relative;
}
.step-wizard-item + .step-wizard-item:after{
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: #21d4fd;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}

/* Assuming you want to keep the numeric step indicators */
.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: #21d4fd; /* Color for the icons */
}
.progress-count:after{
    content: "";
    height: 40px;
    width: 40px;
    background: #21d4fd;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
}
.progress-count:before{
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
}

.progress-label {
    /* display: none; */
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.step-wizard-item:hover .progress-label {
    display: block;
}

/* Icon styling */
/*.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  color:#21d4fd;
    
}
.fa:after{
  color:#21d4fd;
}*/


.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before{
    display: none;
}
.current-item ~ .step-wizard-item .progress-count:after{
   height: 40px;
    width: 40px;
}
.current-item ~ .step-wizard-item .progress-label{
    opacity: 0.5;
}
.current-item .progress-count:after{
    background: #21d4fd;
    border: 2px solid #21d4fd;
}
.progress-count:after{
    background: #fff;
    border: 2px solid #21d4fd;
}
.current-item .progress-count{
    color: #21d4fd;
}

.customer-info label {
  display: block;
  margin-top: 10px;
  color: #333;
  font-weight: bold;
}

.customer-info input[type="text"],
.customer-info input[type="email"],
.customer-info input[type="tel"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}




.box_de_f{
  border: none;
}

.order-listing-container {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 30px;
}

h1 {
    text-align: center;
    color: #333;
}

.order-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 10px 20px;
    /*margin-bottom: 15px;*/
    margin: 15px;
}

.order-badge {
    background-color: #2c7be5;
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 20px;
}

.order-details {
    flex-grow: 1;
}

.order-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.order-status {
    color: #555;
    font-size: 0.9em;
}

.order-date {
    color: #999;
    margin-right: 20px;
}

.order-icons {
    /* Placeholder for icons */
}

.page.page-id-8909 .box_de_f{
    padding: 35px;
}
.feedBlock_outer .card {
    padding: 0;
}
.feedBlock_outer p {
    text-align: center;
    margin: 0 0 22px 0;
    font-size: 15px;
}
.feedBlock_outer h2 {
    font-size: 22px !important;
    padding: 0 0 32px 0 !important;
}
#otp_frm .otp-inputs {
    max-width: 100%;
    margin: auto;
    width: 100%;
    padding: 15px;
    background: #fefefe;
    border: 1px solid #ececec;
    border-radius: 5px;
    border-bottom: 0;
}
.feedBlock_outer h4 {
    text-align: center;
    font-size: 15px;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.page.page-id-8909 .box_de_f figcaption .feedBlock_outer h1 {
    font-weight: 600;
    font-size: 21px;
}
.page.page-id-8909 .order-title {
    font-weight: 600;
    font-size: 16px;
}
.step-wizard-item.current-item svg {
    color: white;
}





.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon {
    margin-right: 8px;
}

.label {
    font-size: 14px;
}
