* {
  font-family: 'Roboto', sans-serif;
}
body, html {
  background: #fff !important;
}

.loader {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}
.loader.active {
  display: flex;
}
.loader__flag {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader__flag_section {
  width: 40px;
  height: 10px;
  opacity: 0;
  animation: logo 3s infinite;
  transition: all .1s ease;
}
.loader__flag_section-1 {
  background: #00ad40;
}
.loader__flag_section-2 {
  background: #f1f1f1;
  animation-delay: 1s;
}
.loader__flag_section-3 {
  background: #fd2038;
  animation-delay: 2s;
}
.loader__description {
  margin-top: 15px;
  font-size: 12px;
  color: #b1b1b1;
}
.loader__ads {
  margin-top: 10px;
  font-weight: 300;
}


.app {
  max-width: 720px;
  padding: 0 15px;
  margin: 90px auto 0;
}
.header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 50%;
  width: 100%;
  background: #fff;
  padding: 15px 30px 10px;
  max-width: 720px;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
  transform: translateX(-50%);
}
.header .logo {
  max-width: 150px;
}
.header__cart {
  position: relative;
  padding-right: 10px;
}
.header__cart_counter {
  display: none;
  position: absolute;
  top: -15px;
  right: -0px;
  align-items: center;
  justify-content: center;
  background: #073dff;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 14px;
}
.header__cart_counter.active {
  display: flex;
}

.content {
  margin: 10px 0;
}
.content__greetings {
  display: flex;
  align-items: flex-end;
}
.content__greetings_ava {
  max-width: 80px;
}
.content__greetings_baloon {
  background: #f9f4f0;
  border-radius: 20px;
  padding: 20px 30px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  margin-top: 8px;
}
.content__greetings span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  color: #8a8a8a;
}



.sections {
  margin-top: 30px;
}
.section__name {
  padding: 10px 0;
  font-size: 24px;
  font-weight: 300;
  border-bottom: 1px solid #ddd;
}

.item {
  margin-top: 20px;
  margin-bottom: 60px;
}
.item__photos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -5px;
  margin-right: -5px;
}
.item__photo {
  margin: 0 5px;
  max-width: 45%;
}
.item__photos img {
  max-width: 100%;
}
.item__timer {
  margin: 20px 0 25px;
}

.item__info {
  margin-top: 20px;
  font-weight: 300;
}
.item__title {
  font-size: 28px;
}
.item__title span {
  font-size: 14px;
  color: #8a8a8a;
}
.item__sizes {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.item__size_title {
  margin-right: 8px;
}
.item__size {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px 10px;
}

.item__prices {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  margin-top: 10px;
}
.item__prices .item__price_label {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}
.item__prices .item__price_old {
  text-decoration: line-through;
  color: #c7c7c7;
}
.item__prices strong {
  font-size: 30px;
}

.buybtn {
  display: block;
  background: #073dff;
  color: #fff;
  padding: 15px;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  border-radius: 30px;
  margin-top: 20px;
}
.buybtn.is-buy {
  background: #c8c8c8;
  color: #111;
}
.morebtn {
  display: block;
  color: #7b7b7b;
  border: 1px solid #c8c8c8;
  padding: 15px;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  border-radius: 30px;
  margin-top: 10px;
}

@-webkit-keyframes logo {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@-o-keyframes logo {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@-moz-keyframes logo {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes logo {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
