.mybutton {
	width: 100px;
	float: left;
	margin-right: 35px;
}

/*** The details area ***/
.review_wrapper {
  flex: 1 1 44%;
  justify-content: center;  
  width: 100%;
  max-width: 100%;
  font-family: 'Monda', sans-serif;
  position: relative;
  padding: 12px 24px;
  box-sizing: border-box;
  overflow: visible;
  gap: 20px;      
  }
.review_form {
    flex: 1 1 96%;
    margin: 28px auto;
   
    background: transparent;
    font-family: 'Monda', sans-serif;
    box-sizing: border-box;
  }
.review_form h3 {
    font-size: 1.215em;
    margin-top: 0;
    color: #103d5f;
    margin-bottom: 22px;
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 2px solid #009933;
  }
  .review_form label {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 6px;
    font-weight: bold;
    text-transform: capitalize;
  }
  .review_form input[type="text"],
  .review_form textarea,
  .review_form select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    font-size: 14px;
    resize: vertical;
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .review_form textarea {  min-height: 80px; }
  .review_form button {
    background: #007BFF;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
  }
  .review_form button:hover { background-color: #0056b3; }
    @media (max-width: 600px) {
    .review_wrapper {
      flex: 1 1 100%;  
      padding: 10px;
      margin: 10px;
    }
  }
  @media (max-width: 480px) {
    .review_form {
      flex: 1 1 100%;  
      padding: 10px;
      margin: 10px;
    }
  }
  
.reviews-section {
    flex: 1 1 52%;
    max-width: 100%;
    font-family: 'Monda', sans-serif;
    padding: 12px 24px;
    display: flex;
    margin: 28px auto;
    flex-direction: column;
    box-sizing: border-box;
    overflow: visible;
    gap: 20px;

  }
.reviews-section h3 {
    font-size: 1.215em;
    margin-top: 0;
    color: #103d5f;
    margin-bottom: 22px;
    padding-bottom: 8px;
    font-weight: bold;
    border-bottom: 2px solid #009933;
  }
.reviews-section .review {
  display: block;
  float: none; 
  width: 100%;
  clear: both;
 }
  .review {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
  }
.review:last-child { border-bottom: none; }
.review strong { font-size: 0.925em; }
.rating {
    margin-left: 10px;
    color: #ff9900;
    font-weight: bold;
  }
.review p { 
   font-size: 14px;
    color: #555;
    margin: 8px 0;
  }
.review small {
    color: #666;
    font-size: 0.625em;
    font-style: italic;
    text-transform: italic;
  }
  @media (max-width: 600px) {
    .reviews-section {
      flex: 1 1 100%;  
      padding: 10px;
      margin: 10px;
    }
  }
  @media (max-width: 480px) {
.reviews-section {
      padding: 0 10px;
      margin: 20px auto;
    }
.review {
      padding: 10px 0;
    }
.review strong {
      font-size: 1em;
    }
.rating {
      display: block;
      font-size: 0.9em;
      margin-left: 5px;
    }
.review p {
      font-size: 0.9em;
    }
.review small {
      font-size: 0.75em;
    }
  }
/*** End of the details area ***/
















