.wrq-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
}

.wrq-message.success {
  color: green;
  border: 1px solid green;
  background-color: #e0f5e0;
}

.wrq-message.error {
  color: red;
  border: 1px solid red;
  background-color: #f5e0e0;
}


button.wrq-add-quote-btn {
padding: 16px 24px;
  background: #00093c;
  color: #ffffff;
  font-size: 1.2rem!important;
  line-height: 20px;
  font-weight: 400;
  border-radius: 3px;
  text-decoration: none;
  transition: all .5s ease;
cursor: pointer;
border: none;
}

button.wrq-add-quote-btn:hover {
background: #F29102;
}

.quote-request-content-list ul li {
display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
border: 1px solid rgba(0,0,0,.1);
border-bottom: none;
padding: 20px;
}

.quote-request-content-list ul li:last-child {
border-bottom: 1px solid rgba(0,0,0,.1);
}

.quote-request-content-list ul li .product-name {
color: #00093c;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-decoration: none;
max-width: 600px;
width: 100%;
  text-align: center;
}

.quote-request-content-list ul li .product-subtotal {
font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #00093c;
display: flex;
gap: 10px;
max-width: 260px;
min-width: 170px;
}

.quote-request-content-list ul li .wrq-remove-quote-btn {
position: relative;
width: 40px;
  height: 40px;
display: inline-block;
    font-size: 0;
  background: none;
  border: none;
cursor: pointer;
}

.quote-request-content-list ul li .wrq-remove-quote-btn::before {
content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/thrash-icon.svg);
  background-repeat: no-repeat;
}

#wrq-quote-form label {
font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
    width: 100%;
  display: block;
}

#wrq-quote-form input,#wrq-quote-form textarea {
width: 97%;
  padding: 10px;
font-size: 14px;
  line-height: 22px;
  color: #77878F;
  font-weight: 400;
  padding: 12px 16px;
  border: 1px solid rgba(119, 135, 143, 0.5);
  border-radius: 4px;
margin-bottom: 16px;
}

#wrq-quote-form input[type="submit"] {
width: auto;
display: flex;
align-items: center;
background: #00093C;
color: #fff;
font-size: 14px;
line-height: 20px;
font-weight: 400;
border: none;
padding: 16px 24px;
cursor: pointer;
}
.quote-request-content-list ul li img {
max-width: 100px;
  height: auto;
}
.quote-request-content {
text-align: center;
margin-bottom: 60px !important;
}

.quote-request-content p {
    text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #00093C;
}

.quote-request-content .button {
    padding: 16px 24px;
  background: #00093c;
  color: #fff;
  font-size: 1.2rem!important;
  line-height: 20px;
  font-weight: 400;
  border-radius: 3px;
  text-decoration: none;
  transition: all .5s ease;
cursor: pointer;
border: none;
    display: inline-block;
}

.quote-request-content .button:hover {
background: #F29102;
}
@media (max-width: 767px) {
.quote-request-content-list ul li {
  flex-direction: column;
  gap: 20px;
}

#wrq-quote-form input {
  width: 97%;
}

.quote-request-content-list ul li .product-subtotal {
      max-width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: inherit;
}
}