/* ================= ORELI PRICE PAGE ================= */

/* HERO */

.oreli-price-hero {
    background:
        radial-gradient(circle at center,
          rgba(255, 183, 0, 0.8) 0%,
          rgba(255, 122, 0, 0.4) 50%,
          rgba(255, 76, 0, 0.9) 70%),
        linear-gradient(135deg, #ff4c00, #ff7a00);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}


.oreli-price-title{
  font-size:42px;
  margin-bottom:10px;
}

.oreli-price-desc{
  font-size:18px;
  opacity:.9;
  max-width:700px;
  margin:auto;
}

/* LAYOUT */

.oreli-price-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  margin-top:40px;
}

/* SIDEBAR */

.oreli-price-box{
  border:1px solid #eee;
  padding:25px;
  border-radius:8px;
  background:#fafafa;
  margin-bottom:30px;
}

/* PRICE TABLE */

.oreli-price-content table{
  width:100%;
  border-collapse:collapse;
  margin:30px 0;
}

.oreli-price-content th{
  background:#880063;
  color:#fff;
  padding:14px;
}

.oreli-price-content td{
  border:1px solid #eee;
  padding:14px;
}

.oreli-price-content tr:nth-child(even){
  background:#fafafa;
}

.oreli-price-box li{
list-style:none;
position:relative;
padding-left:20px;
}

.oreli-price-box li:before{
content:"";
position:absolute;
left:0;
top:8px;
width:14px;
height:14px;
background:url('/wp-content/uploads/2019/09/dau-nu-cuoi.png') no-repeat center;
background-size:contain;
}

/* MOBILE */

@media(max-width:991px){

.oreli-price-layout{
  grid-template-columns:1fr;
}

}