/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.category-header {
  border-bottom: 2px solid #d8d8d8;
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0 30px;
  padding-bottom: 0.5em;
  padding-top: 20px;
}
.category-link {
  color: #2577ff;
  font-size: 15px;
}
.category-link span {
  text-decoration: underline;
}
.service-page .title-box {
  padding-bottom: 5px;
  position: relative;
  display: flex;
  align-items: center;
}
.service-page .title-box h1 {
  display: inline-block;
}
.service-page .title-box img {
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 3px rgba(30, 30, 30, 0.4);
  -moz-box-shadow: 0 0 3px rgba(30, 30, 30, 0.4);
  box-shadow: 0 0 3px rgba(30, 30, 30, 0.4);
}

.service-page .title-box img+h1 {
  padding-left: 25px;
}

.service-page .title-box .price {
  font-family: 'segoe_uilight';
  font-size: 34px;
  color: #4c4c4c;
  font-weight: normal;
  margin-left: auto;
}
.service-page .title-box .price span {
  font-size: 16px;
}
.category-services {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-services li {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-radius: 10px;
  display: flex;
  padding: 16px;
  background-color: #f6f6f6;
  border-bottom-color: #ddd;
  margin-bottom: 20px;
}
.category-services li .pic {
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
  flex-basis: 90px;
  height: 90px;
}
.category-services li .content {
  display: flex;
  padding-left: 20px;
}
.category-services li .content .info {
  padding-right: 20px;
  text-align: left;
}
.category-services li .content .header a {
  color: inherit;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-decoration: none;
}
.category-services li .content p a {
  color: inherit;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
}
.category-services li .content .btn {
  font-size: 16px;
  line-height: 22px;
  color: white;
  align-self: center;
  flex-shrink: 0;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  min-width: 170px;
}
.pay-btn {
  font-size: 22px !important;
  padding: 34px 62px !important;
}
@media (max-width: 991px) {
  #page-wrapper .title-box {
    display: flex;
  }
  #page-wrapper .title-box h1 {
    max-width: 470px;
  }
}
@media (max-width: 768px) {
  #page-wrapper .title-box {
    display: block;
  }
  #page-wrapper .title-box h1 {
    max-width: none;
  }

  .category-services li .content {
    flex-direction: column;
  }
}

.service__success {
  padding: 25px;
  border: 1px solid green;
  color: green;
  border-radius: 10px;
  background: #0080001a;
}
