body {
  background-color: #ee1c25;
}
.form-group {
  margin-bottom: 8px;
}
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.custom-card {
  max-width: 400px;
  width: 100%;
}

.rating-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.rating-box {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 27px;

  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.rating-box:hover {
  background-color: #f0f0f0;
  border-color: #ee1c25;
}

.description {
  font-size: 13px;
}

.card-title {
  margin-bottom: 2px;
  margin-top: 4px;
}
#feedbackForm label {
  margin-bottom: 0px;
  font-size: 13px;
}

#feedbackForm .btn-primary {
  background-color: #ee1c25;
  border-color: #ee1c25;
}
#feedbackForm .full-width {
  width: 100%;
}

#feedbackForm textarea::placeholder,
#feedbackForm input::placeholder {
  font-size: 14px; /* Adjust the size as needed */
}

#feedbackForm .error {
  font-size: 11px;
  color: red;
}
/* Smartphones (Portrait and Landscape) ----------- */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .rating-box {
    line-height: 27px;
  }
}

/* Tablets, iPads (Portrait and Landscape): ----------- */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Styles */
  .custom-card {
    max-width: 500px;
  }
  .rating-box {
    line-height: 36px;
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

/* Small Laptops and Desktops: ----------- */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /* Styles */
  .custom-card {
    max-width: 600px;
  }
  .rating-box {
    line-height: 47px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Medium Laptops and Desktops: ----------- */
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  /* Styles */
}

/* Large Laptops and Desktops:----------- */
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  /* Styles */
}

/* Extra-large Laptops and Desktops: */
@media only screen and (min-width: 1441px) and (max-width: 1920px) {
  /* Styles */
}

/* High Resolution Desktops: */
@media only screen and (min-width: 1921px) {
  /* Styles */
}

/* Retina Displays: */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  (min-resolution: 192dpi) {
  /* Styles */
}

/* Landscape Orientation: */
@media only screen and (orientation: landscape) {
  /* Styles */
}

/* Portrait Orientation: */
@media only screen and (orientation: portrait) {
  /* Styles */
}


svg {
  display: block;
  height: 150px;
  width: 150px;
  color: #ee1c25; /* SVG path use currentColor to inherit this */
}

.circle {
  stroke-dasharray: 76;
  stroke-dashoffset: 76;
  animation: draw 1s forwards;
}

.tick {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: draw 1s forwards 1s;
}

@keyframes draw { 
  to { stroke-dashoffset: 0 } 
}

/* For styling demo, not required */

.anim-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

