/* Diagramma */

@keyframes bake-pie {
  from {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}


.pieID {
  display: inline-block;
  vertical-align: top;
}

.pie {
  height: 200px;
  width: 200px;
  position: relative;
  margin: 0 30px 30px 0;
}

.pie::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: #eee;
  border-radius: 50%;
  top: 50px;
  left: 50px;
}

.pie::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 3px 4px rgba(0, 0, 0, 0.1);
  margin: 220px auto;

}

.slice {
  position: absolute;
  width: 200px;
  height: 200px;
  clip: rect(0px, 200px, 200px, 100px);
  animation: bake-pie 1s;
}

.slice span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
}

.legend {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #FFF;
  padding: 15px;
  font-size: .8125rem;
  box-shadow: 1px 1px 0 #DDD,
    2px 2px 0 #BBB;
}

.legend li {
  width: 170px;
  height: 1.25em;
  margin-bottom: 0.7em;
  padding-left: 0.5em;
  border-left: 1.25em solid black;
  font-size: 1rem;
}

.legend em {
  font-style: normal;
}

.legend span {
  float: right;
}

.legend span:after {
  content: ' %';
  color: #999;
}

/* beton page */

.beton_page {
  display: flex;
  justify-content: space-between;
}

.beton_page h2,
.beton_page h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #872a18;
}

h1 {
  font-size: 2rem;
  margin: 40px 0;
  color: #111;
}

.product__text {
  margin: 0 30px;
}

.product__text__list li {
  list-style-type: none;
  margin-bottom: 20px;
  border-bottom: 2px dotted #ddd;
  padding-bottom: 5px;

}

.product__text__list__item {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.product__name {
  margin-right: 20px;
  color: #666;
  font-weight: normal;
  padding-left: 5px;
}

.product__price {
  width: 25%;
  background: #eee;
  padding: 0 30px 20px 30px;
  border-radius: 20px;
  background: url(../img/beton.jpg);
  color: #fff;
  position: relative;
  text-align: center;
}

.product__price h3 {
  color: #FFF;
  text-shadow: 2px 2px 3px #111;
}

.product__price span {
  display: block;
}

.product__price .btn {
  font-size: 1.25rem;
  padding: 15px;
  margin: 20px auto 0 auto;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
}

.product__price .price {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.5);
  color: #111;
  font-weight: 700;
  padding: 10px 0;

}

.price_desc {
  font-weight: 700;
  color: #000;
  text-shadow: 0px 0px 20px #fff;
  background: rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
}

.product__desc {
  margin-bottom: 40px;
  font-size: 1.125rem;
  line-height: 150%;
}

.product__desc p,
.product__desc li {
  margin: 15px 0;
}

.product__desc li {
  margin: 15px 0 15px 25px;
}

.product__desc h3 {
  margin-bottom: 30px;
  color: #872a18;
  font-size: 1.185rem;
}

.sub ._text {
  padding: 0;
}

.product__desc h3{
  line-height: normal!important;
}


/*========================================================================== MOBILE =================================================================*/

/* ---------------------------------Mobile Version max 1200px-------------------------------*/


@media (max-width: 1200px) {

  .pie_chart section {
    display: flex;
    flex-wrap: nowrap;
  }

  .product__price {
    width: 100%;
  }


}

/* ---------------------------------Mobile Version max 1024px-------------------------------*/


@media (max-width: 1025px) {

  .beton_page {
    flex-wrap: wrap;
  }

  .product__desc {
    display: block;
  }

  .product__price {
    margin-top: 30px;
  }

  ._text {
    padding: 0 0 0 20px;
    width: auto;
    font-size: .875rem;
  }

  h1 {
    margin: 20px  0;
  }

}

/* ---------------------------------Mobile Version max 836px-------------------------------*/


@media (max-width: 837px) {

  .pie_chart {
    width: 100%;
  }

  .pie_chart section {
    display: flex;
  }

  .product__text {
    width: 100%;
    margin: 20px 0 0 0;
  }

  .product__desc h3{
    font-size: 1.375rem;
  }


}

/* ---------------------------------Mobile Version max 736px-------------------------------*/


@media (max-width: 737px) {


  .beton-m100 {
    padding-top: 90px;
  }

}



/* ---------------------------------Mobile Version max 667px-------------------------------*/


@media (max-width: 668px) {}

/* ---------------------------------Mobile Version max 568px-------------------------------*/


@media (max-width: 569px) {

  .legend li {
    font-size: .875rem;
    width: 130px;
  }

}


/* ---------------------------------Mobile Version max 425px-------------------------------*/


@media (max-width: 426px) {}

/* ---------------------------------Mobile Version max 376px-------------------------------*/

@media (max-width: 376px) {}



/* ---------------------------------Mobile Version max 320px-------------------------------*/


@media (max-width: 321px) {}



/* font */

@media (max-width: 576px) {
  html {
      font-size: 13px;
  }
}

@media (max-width: 768px) {
  html {
      font-size: 14px;
  }
}

@media (max-width: 992px) {
  html {
      font-size: 15px;
  }
}