.line-ttl {
  display: block;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 45px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d6d6d6;
  font-size: 40px;
  font-weight: 300;
  color: #323232;
}
.btn {
  border: none;
  outline: none !important;
  text-decoration: none !important;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  background-color: #ccc;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 14px 10px;
  min-width: 165px;
  -webkit-box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.3);
}
.btn:hover {
  color: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.btn.btn-blue {
  background-color: #04a0c7;
}
.btn.btn-green {
  background-color: #1ab45e;
}
.btn.btn-white {
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  color: #323232;
}
.btn.btn-white:hover {
  color: #323232;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.style-inpt,
.style-area {
  width: 100%;
  outline: none !important;
  border: 1px solid #acacac;
  border-radius: 8px;
  margin: 0;
  padding: 15px 18px;
  font-size: 22px;
  font-weight: 300;
  color: #323232;
}
.style-inpt:focus,
.style-area:focus {
  border-color: #1ab45e;
}
.style-inpt::-webkit-input-placeholder,
.style-area::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #272727;
  opacity: .3;
}
.style-inpt::-moz-placeholder,
.style-area::-moz-placeholder {
  /* Firefox 19+ */
  color: #272727;
  opacity: .3;
}
.style-inpt:-ms-input-placeholder,
.style-area:-ms-input-placeholder {
  /* IE 10+ */
  color: #272727;
  opacity: .3;
}
.style-inpt:-moz-placeholder,
.style-area:-moz-placeholder {
  /* Firefox 18- */
  color: #272727;
  opacity: .3;
}
.style-area {
  resize: none;
  min-height: 180px;
}
.select-stl {
  position: relative;
  width: 100%;
}
.select-stl input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -999;
}
.select-stl input[type="checkbox"]:checked ~ .list-wra {
  display: block;
}
.select-stl:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2;
  margin-top: -3px;
  cursor: pointer;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: #323232 transparent transparent transparent;
}
.select-stl:hover .selected {
  border-color: #1ab45e;
}
.select-stl:hover:after {
  border-color: #1ab45e transparent transparent transparent;
}
.select-stl .selected {
  display: block;
  border: 1px solid #acacac;
  border-radius: 8px;
  margin: 0;
  padding: 12px 18px;
  font-size: 22px;
  font-weight: 400;
  color: rgba(50, 50, 50, 0.3);
  cursor: pointer;
}
.select-stl .list-wra {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-top: 5px;
  z-index: 3;
}
.select-stl .list-wra .inner-wrap {
  border: 1px solid #acacac;
  border-radius: 8px;
  background-color: #fff;
  max-height: 150px;
  overflow-y: auto;
}
.select-stl .list-wra li {
  display: block;
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #323232;
}
.select-stl .list-wra li:hover {
  background-color: #eee;
}
