.offers, .offers *, .offers :before, .offers :after {
  box-sizing: border-box;
}

.offers *:focus {
  outline: none;
}

.offers {
  margin: 0 auto;
}
.offers-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0px 0px 5px #adadad;
}
.offers-item__left {
  flex: 0 0 200px;
  max-width: 200px;
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
}
.offers-item__left img {
  width: 100% !important;
}
.offers-item__middle {
  width: 100%;
}
.offers-item__right {
  flex: 0 0 200px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 0 0px;
}
.offers-item__row {
  display: flex;
}
.offers-title {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
.offers-rating {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 3;
  font-weight: 600;
}
.offers-rating__stars {
  display: block;
  margin: 0 10px 0 0;
  width: 75px;
  height: 15px;
  background: transparent url(../images/star-empty.png) repeat-x scroll 0 0;
  background-size: 15px;
}
.offers-rating__stars span {
  display: block;
  height: 15px;
  background: transparent url(../images/star-full.png) repeat-x scroll 0 0;
  background-size: 15px;
}
.offers-info {
  position: relative;
  margin: 0 0 0 10px;
  padding: 12px 5px 12px 58px;
  min-width: 180px;
  height: 100%;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.offers-info__icons {
  width: 40px;
  text-align: center;
  position: absolute;
  left: 10px;
  top: 10px;
}
.offers-info__icons img {
  max-width: 100% !important;
}
.offers-info__title {
  margin-bottom: 5px;
  line-height: 1;
	font-size: 14px;
}
.offers-info__text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  opacity: 0.7;
  color: #ba5900;
}
.offers-desc {
  padding: 20px 0 0;
}
.offers-desc ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.offers-desc li {
  position: relative;
  margin: 0 !important;
  padding: 0 0 0 30px !important;
  line-height: 30px !important;
  font-size: 16px !important;
  list-style: none !important;
}
.offers-desc li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(../images/li.jpg);
  background-repeat: no-repeat;
}
.offers-btn {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 20px 0 !important;
  width: 100% !important;
  border-radius: 6px !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-decoration: none !important;
}
.offers-btn:hover {
  text-decoration: none !important;
}
.offers-btn1 {
  margin-bottom: 10px !important;
  background-color: #39B553 !important;
  color: #fff !important;
	border: 1px solid #39B553;
}
.offers-btn1:hover {
  background-color: white !important;
  color: #39B553 !important;
	border: 1px solid #39B553;
	transition: .30s
}
.offers-btn2 {
  background-color: #F4A419 !important;
  color: #fff !important;
	border: 1px solid #F4A419;
}
.offers-btn2:hover {
 background-color: white !important;
  color: #F4A419 !important;
	border: 1px solid #F4A419;
	transition: .30s
}
.offers-item + .offers-item {
  margin-top: 20px;
}

@media (max-width: 1050px) {
  .offers-item__left {
    flex: 0 0 180px;
    max-width: 180px;
  }
}
@media (min-width: 801px) and (max-width: 1050px) {
  .offers-item__middle {
    padding-top: 61px;
  }

  .offers-item__row {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 61px;
    padding-left: 220px;
  }
}
@media (max-width: 800px) {
  .offers-item {
    flex-direction: column;
  }

  .offers-item__left {
    max-height: 150px;
  }
  .offers-item__left img {
    width: auto !important;
  }

  .offers-item__left {
    flex: unset;
    max-width: 100%;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .offers-item__left img {
    max-width: 200px !important;
  }

  .offers-item__middle {
    flex: unset;
    max-width: 100%;
  }

  .offers-item__row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .offers-item__column {
    margin: 0 0 10px;
    text-align: center;
  }
  .offers-item__column:nth-child(1) {
    width: 100%;
  }
  .offers-item__column:nth-child(2) {
    width: 50%;
  }
  .offers-item__column:nth-child(3) {
    width: 50%;
  }

  .offers-title {
    margin-bottom: 5px;
  }

  .offers-info {
    margin: 0 auto;
    width: 200px;
  }

  .offers-rating {
    width: 150px;
    margin: 0 auto;
  }

  .offers-desc {
    margin: 0 auto 15px;
  }

  .offers-item__right {
    flex: unset;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 0;
  }

  .offers-btn1 {
    margin-bottom: 0 !important;
    margin-right: 10px !important;
  }

  .offers-btn2 {
    margin-left: 10px !important;
  }
}
@media (max-width: 500px) {
  .offers-item__right {
    flex-direction: column;
  }

  .offers-item__row {
    flex-direction: column;
  }

  .offers-item__column:nth-child(2) {
    width: 100%;
  }
  .offers-item__column:nth-child(3) {
    width: 100%;
  }

  .offers-desc {
    padding-top: 0;
  }

  .offers-btn1 {
    margin-right: 0 !important;
    margin-bottom: 10px !important;
  }

  .offers-btn2 {
    margin-left: 0 !important;
  }

}

  .offers-ans {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
	margin-bottom: 10px;
  }

/*# sourceMappingURL=app.css.map */
