@charset "UTF-8";

/* Web Fonts : Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

/* FontAwesome 4.7 CDN */
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');


*{ margin: 0; }
body {
  font-size: 15px; font-family: 'Lato', sans-serif;
  background-color: #4F6EDF;
}
.price-inner {
  width: 300px; min-height: 500px; padding: 25px;
  border-radius: 10px;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.price-inner h3 {
  padding:10px 20px; margin-bottom: 10px;
  font-weight: 700; font-size: 26px; line-height: 38px; text-align: center;
}
.title {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  cursor: pointer;
}
.title:after {
  content:"\f107";
  width: 20px; height: 20px;
  float: right;
  border-radius: 50%;
  line-height: 20px; font-family: fontawesome; color: #555; text-align: center;
  transition: all 0.5s;
}
.title.active:after {transform: rotate(180deg);}
.content {
  display: none;
  padding: 0px 20px; margin-bottom: 5px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}
.content span {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px; line-height: 20px;
}
.content span:last-child {border: none;}
.content span em {
  float: right;
  padding: 0px 8px;
  border-radius: 3px;
  font-size: 12px; line-height: 20px; font-style: normal; color: #fff;
  background-color: #777;
}