/*
	Theme name: Serchen v3
	Author: Serchen Ltd
	Version: 1.0.0

	-----------------
	TABLE OF CONTENTS
	-----------------

	- Global
	- Navigation
	- Buttons
	- Badges
	- Star Rating System
	- Footer
	- Misc Components
	- Category Page
  - Jumbotron Cards
	- Software Guides

	-------------
	COLOR PALETTE
	-------------

	Main page background: #ffffff (white)
	Main text color: #4a4a4a (grey #1)
	Header background: #4280a6 (blue #1)
	Buttons: #4280a6 (blue #1)	
	Important buttons: #f37a1f (orange #1)	
	Button text: #ffffff (white)
	Some titles, important highlights: #4280a6 (blue #1)
	Listing background, lighter blue badges: #f4f8fb (blue #2)
	Alternate section text background: #f4f8fb (blue #2)
	Get Listed Business plan: #ecf3f9 (blue #4)

	-----
	FONTS
	-----

	Main font (used site-wide): 'Hind', sans-serif
*/

/* Global */
:root {
  --serchen-blue: #4280a6;
  --serchen-orange: #ff751a;
}

.text-primary {
  color: var(--serchen-blue) !important; /* Bootstrap override */
}

.text-dark {
  color: #043A5C !important; /* Bootstrap override */
}

.font-weight-max {
  font-weight: 900;
}

body {
  font-family: 'Hind', sans-serif;
  color: #4a4a4a;
}

.container {
  max-width: 1240px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

a {
  color: #4a4a4a;
}

  a:hover {
    color: #4a4a4a;
  }

.underline {
  text-decoration: underline;
}

.bg-blue2 {
  background-color: #f4f8fb;
}

.container-pager {
  margin-top: 5rem;
}

.pager-controls a {
  background-color: #f4f8fb;
  padding: 2px 8px;
  border-radius: 2px;
}

.pager-controls span {
  font-weight: 700;
  background-color: #ecf3f9;
  padding: 2px 8px;
  border-radius: 2px;
}

/* Navigation */

.navbar-main {
  background-color: #4280a6;
}

  .navbar-main .navbar-nav {
    padding-top: 2em;
  }

  .navbar-main .nav-item {
    border-top: 1px solid #c8deef;
  }

  .navbar-main .nav-link {
    color: #fff;
  }

    .navbar-main .nav-link:hover {
      color: #c8deef;
    }

.navbar-secondary {
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
}

.navbar-nav-breadcrumbs span {
  font-size: 0.8em;
  color: #9ec5e5;
}

.navbar-nav-breadcrumbs a {
  color: #999;
}

.navbar-nav-members a {
  color: #f37a1f;
}

.navbar-toggler-icon {
  width: 100%;
  height: 100%;
}

  .navbar-toggler-icon .fa-bars {
    color: #fff;
  }

/* Buttons */
.btn {
  cursor: pointer;
}

.btn-orange {
  color: #fff;
  background-color: #f37a1f;
  border-color: #f37a1f;
}

  .btn-orange:hover {
    background-color: #e96501;
    color: #fff;
  }

  .btn-orange .fas {
    font-size: 0.9rem;
    color: #fff;
  }

.btn-blue {
  color: #fff;
  background-color: #4280a6;
  border-color: #4280a6;
}

  .btn-blue:hover {
    background-color: #18699a;
    color: #fff;
  }

.btn-outline {
  background-color: none;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0;
}

  .btn-outline:hover {
    color: #fff;
    text-decoration: none;
  }

#hubs .btn {
  padding: .75rem;
  border-color: rgba(66, 128, 166, .1);
}

  #hubs .btn:hover,
  #hubs .btn:active,
  #hubs .btn:focus {
    background-color: rgba(66, 128, 166, .1);
  }

.fas, .fab {
  color: #9ec5e5;
}

/* Alerts */

.alert-orange {
  background-color: #fdebde;
  border-color: #fbd7bb;
}

.alert-link {
  text-decoration: underline;
}

/* Badges */

.badge-category-count {
  font-weight: 300;
  color: #4280a6;
  background-color: #dfecf5;
  padding: .35em .8em .25em .8em;
  border-radius: 10rem;
  min-width: 35px;
}

/* Star Rating System */
.stars-container {
  width: 98px;
  height: 17px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

  .stars-container .stars {
    background: url("../images/generic/stars-v2-off.png") no-repeat scroll left top transparent;
    width: 99px;
    height: 17px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .stars-container .on {
    background: url("../images/generic/stars-v2-on.png") no-repeat scroll left top transparent;
    z-index: 1;
  }

/* Intro Containers */
.container-intro {
  background-color: #f4f8fb;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container-intro-text {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-intro h1 {
  font-size: 2rem;
  font-weight: 400;
  color: #4280a6;
}

.lead {
  font-size: 0.8rem;
}

/* Footer */

.footer {
  background-color: #4280a6;
  color: #fff;
}

  .footer .company-description {
    margin-bottom: 2rem;
  }

  .footer p {
    font-weight: 300;
    margin-bottom: 0;
  }

  .footer ul {
    margin-bottom: 3rem;
  }

    .footer ul li {
      font-weight: 300;
    }

  .footer a {
    color: #fff;
  }

    .footer a.footer-link {
      font-weight: 400;
      display: block;
      width: 100%;
      padding-top: .5rem;
      padding-bottom: .5rem;
      border-bottom: 1px solid #fff;
    }

  .footer ul li:first-child a.footer-link {
    border-top: 1px solid #fff;
  }

  .footer .copyright a {
    text-decoration: underline;
  }

  .footer i {
    font-size: 1.5rem;
  }

/* Hub Page */
.responsive-rectangle-container {
  position: relative;
}

  .responsive-rectangle-container img {
    width: 100%;
  }

.responsive-rectangle-footer {
  background: #333;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  opacity: 0.8;
  filter: alpha(opacity=80); /* For IE8 and earlier */
}

  .responsive-rectangle-footer span {
    color: #fff;
  }

.featured-profiles h6 {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #4280a6;
}

.featured-profiles p {
  margin-bottom: 0;
}

.featured-profiles img {
  width: 100%;
}

/* Misc Components */
.input-group-search-box span {
  font-size: 1.5rem;
  position: absolute;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  height: 56px;
  z-index: 100;
}

.company-search-box {
  font-size: 1rem;
  padding: 1.8rem .7rem 1.6rem 3rem;
  border: 0;
}

.statistic {
  display: flex;
  align-items: baseline;
  color: var(--serchen-blue);
}

.result-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

  .result-item::after {
    content: attr(data-button-text);
    background-color: var(--serchen-orange);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: .5rem 2rem;
    border-radius: .25em;
  }

.new-reviews a:hover {
  text-decoration: none;
}

.new-reviews img {
  max-width: 120px;
}

@media (max-width: 768px) {
  .new-reviews .review-details {
    flex-direction: column;
  }
}

/* Category Page */

.container-title {
  border-bottom: 1px solid #dadddc;
}

  .container-title h1 {
    font-size: 2rem;
    margin: 0;
  }

    .container-title h1 .fas {
      font-size: 20px;
      cursor: pointer;
    }

  .container-title p {
    margin-bottom: 0;
  }

.search-controls {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dadddc;
}

  .search-controls .form-group {
    margin-bottom: 0;
  }

#container-info {
  background-color: #f4f8fb;
}

  #container-info h2 {
    font-size: 1.8rem;
  }

  #container-info .fas {
    font-size: 26px;
  }

  #container-info .fa-times-circle {
    cursor: pointer;
  }

  #container-info p {
    color: #4a4a4a;
    line-height: 2;
  }

    #container-info p a {
      text-decoration: underline;
    }

.get-started .list-group-item {
  background-color: #ebf3f9;
  border-radius: 0;
  border-color: #f4f8fb;
}

  .get-started .list-group-item h3 {
    margin-bottom: 0;
  }

.get-started img {
  max-width: 22px;
}

.category-filter {
  border: 1px solid #dadddc;
  padding: 1em;
}

  .category-filter h3 {
    font-size: 1em;
    font-weight: 700;
  }

  .category-filter .list-group-item {
    border: 0;
    padding: 5px 0;
  }

    .category-filter .list-group-item a {
      font-size: 0.8em;
    }

  .category-filter .badge-category-count {
    color: #fff;
    background-color: #f37a1f;
  }

.listing {
  background-color: #f4f8fb;
  padding: 1em 1em .75em 1em;
}

  .listing h2 {
    font-size: 1.8rem;
    color: #4a4a4a;
    margin: 0;
  }

    .listing h2 a:hover {
      color: #4280a6;
      text-decoration: none;
    }

  .listing .listing-screengrab {
    width: 100%;
  }

  .listing .stars-container {
    margin-top: -3px;
  }

  .listing .btn {
    font-weight: 300;
    width: 100%;
    padding: .75rem .5rem;
    border-radius: .15rem;
  }

  .listing .tagline {
    color: #4280a6;
  }

    .listing .tagline a {
      color: #4280a6;
    }

      .listing .tagline a:hover {
        text-decoration: none;
      }

  .listing .review-info {
    font-size: 0.8em;
  }

    .listing .review-info a {
      color: #4a4a4a;
      text-decoration: underline;
    }

  .listing p {
    margin-bottom: 0;
  }

    .listing p a {
      text-decoration: underline;
    }

  .listing hr {
    border-top-color: #c8deef;
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .listing .stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

    .listing .stats .col-stat {
      width: 25%;
      text-align: center;
    }

    .listing .stats .col-stat-si {
      width: 100%;
      margin-bottom: 1em;
    }

      .listing .stats .col-stat-si .stat {
        display: block;
        margin-bottom: 5px;
      }

  .listing .progress {
    background-color: #DFECF5;
    border-radius: 0;
    height: 22px;
    margin-left: 5px;
    min-width: 100px;
  }

  .listing .progress-bar {
    background: #f37a1f;
    text-align: left;
  }

    .listing .progress-bar span {
      margin-left: 5px;
      color: #fff;
    }

  .listing .stats .fab, .listing .stats .fas {
    display: none;
    color: #9ec5e5;
  }

  .listing .stat {
    font-size: 0.8rem;
    color: #4280a6;
  }

    .listing .stat strong {
      display: block;
    }

/* Profile Page */

.container-company-overview h1 {
  font-size: 2.8rem;
}

.container-company-overview img {
  width: 100%;
}

.container-company-overview .btn {
  width: 100%;
}

.container-company-overview .stars-container {
  margin-top: -4px;
  margin-right: .25rem;
}

.container-company-description {
  background-color: #f4f8fb;
}

.navbar-profile {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

  .navbar-profile .nav {
    margin-left: -15px;
    margin-right: -15px;
  }

  .navbar-profile .nav-item {
    border-bottom: 1px solid #ebebeb;
  }

  .navbar-profile .nav-link {
    color: #4280a6;
    padding: .6rem 1.3rem;
  }

    .navbar-profile .nav-link.active,
    .navbar-profile .nav-link:hover {
      text-decoration: underline;
    }

.navbar-tools {
  background-color: #ecf3f9;
}

  .navbar-tools .nav-item {
    padding: 20px 0;
    border-bottom: 1px solid #fff;
  }

  .navbar-tools i {
    font-size: 1.4em;
    color: #9ec5e5;
    vertical-align: middle;
  }

.container-key-features p .fas {
  font-size: 1.6em;
  color: #4280a6;
  vertical-align: middle;
}

.profile-index-stats h2 {
  vertical-align: middle;
  margin-bottom: 0;
}

.profile-index-stats .si {
  width: 100%;
  vertical-align: middle;
}

.profile-index-stats .progress {
  background-color: #DFECF5;
  border-radius: 0;
  height: 22px;
}

.profile-index-stats .progress-bar {
  background: #f37a1f;
  text-align: left;
}

  .profile-index-stats .progress-bar span {
    margin-left: 5px;
    color: #fff;
  }

.profile-index-stats .stat {
  font-size: 3.5em;
  font-weight: 300;
  background: #f4f8fb;
  padding: .35em 0 .2em 0;
  line-height: 1;
  color: #4280a6;
}

.profile-index-stats .description {
  background: #f4f8fb;
  margin-top: 1px;
  margin-bottom: 1em;
  padding: .8em;
  color: #4280a6;
}

.row-company-description h3 {
  color: #4280a6;
}

.container-rating-overview {
  background: #f4f8fb;
  padding: 20px;
}

  .container-rating-overview h2 {
    font-size: 3.5rem;
    margin-bottom: 0;
    color: #f37a1f;
    line-height: 1;
  }

  .container-rating-overview p.rating-phrase {
    font-size: 1.3em;
    font-weight: 700;
    color: #f37a1f;
    margin-bottom: 0;
  }

  .container-rating-overview p.review-count {
    margin-bottom: 0;
  }

  .container-rating-overview p.last-reviewed-on {
    font-size: 0.9em;
    margin-bottom: 0;
    color: #999;
  }

  .container-rating-overview .progress {
    background-color: #dfecf5;
    height: 6px;
  }

  .container-rating-overview .progress-bar {
    background-color: #f37a1f;
  }

.write-a-review-widget .far {
  color: #4280a6;
}

.write-a-review-widget h5 {
  font-weight: 700;
  color: #4280a6;
}

.write-a-review-widget p {
  font-size: 0.9em;
  max-width: 250px;
  margin: 0 auto;
}

.review-item {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.review-verified {
  color: #0077b5;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

.review-author {
  font-size: 1.2rem;
  font-weight: 300;
  vertical-align: middle;
  display: block;
}

  .review-author span {
    color: #4280a6;
    word-break: break-all;
    display: block;
  }

.permalink {
  font-size: 0.9em;
}

.review-text {
  font-size: 1.1em;
  line-height: 1.5;
}

.review-helpful {
  background-color: #f4f8fb;
}

  .review-helpful .btn {
    font-size: 0.9em;
    padding: 0.1rem 0.5rem;
  }

.detailed-ratings p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.container-review-response {
  background-color: #f4f8fb;
}

.response-from {
  font-weight: 700;
}

.response-date {
  font-size: 0.9em;
  color: #999;
}

.review-response {
  margin-top: 1rem;
  margin-bottom: 0;
}

.listing-sm {
  background-color: #f4f8fb;
}

  .listing-sm .col {
    color: #4280a6;
  }

  .listing-sm .fab, .listing-sm .fas {
    color: #9ec5e5;
  }

  .listing-sm .col:last-child {
    border-right: 0;
  }

  .listing-sm .screenshot {
    max-width: 52px;
    height: auto;
    vertical-align: top;
  }

.new-companies .listing-sm .screenshot {
  width: 100%;
  height: auto;
}

.listing-sm .btn {
  width: 100%;
}

.linked-in-profile {
  background-color: #0077b5;
  color: #fff;
}

  .linked-in-profile .review-author {
    line-height: 1;
  }

  .linked-in-profile .fa-linkedin {
    font-size: 2em;
    color: #fff;
  }

/* Reviews Modal  */
.reviews-modal {
  max-width: 575px;
}

.write-your-review {
  margin-top: 15px;
}

.reviews-label {
  font-size: 0.9em;
}

/* Browse Page */
.container-browse h2.category-group {
  font-size: 1.5rem;
}

.container-browse .input-group-lg > .form-control:not(textarea) {
  font-size: 1rem;
  height: calc(1.5em + 2rem + 2px);
  padding-left: 0;
}

/* Search Page */
.container-search .input-group-lg > .form-control:not(textarea) {
  font-size: 1rem;
  height: calc(1.5em + 2rem + 2px);
  padding-left: 0;
}

/* Glossary Page */
.glossary-item a {
  text-decoration: underline;
}

/* Legal Page */
.legal h5 {
  font-weight: 400;
  color: #000;
}

.legal a {
  text-decoration: underline;
  word-break: break-all;
}

/* Get the Reviews Widget */
.get-the-reviews-widget h5 {
  font-weight: 400;
  color: #000;
}

.alert-code textarea {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  width: 100%;
  height: auto;
  border: 1px solid #fbd7bb;
  resize: none;
  padding: 5px;
  display: block;
}

.alert-code input {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  width: 100%;
  height: auto;
  border: 1px solid #fbd7bb;
  resize: none;
  padding: 5px;
}

/* Get Listed Page */
.partners {
  background-color: #f4f8fb;
  margin-top: 5rem;
}

.table-compare {
  margin-top: 5rem;
}

  .table-compare th {
    border-top: none;
  }

    .table-compare td:nth-child(3), .table-compare th:nth-child(3) {
      background-color: #f4f8fb;
    }

    .table-compare td:nth-child(4), .table-compare th:nth-child(4) {
      background-color: #ecf3f9;
    }

  .table-compare .fa-info-circle {
    font-size: .8rem;
    margin-left: .2rem;
  }

  .table-compare .fa-check-circle {
    font-size: 1rem;
    color: #4280a6;
  }

.colleague:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,.1);
}

/* Contact Us */
.contact-us .partners {
  margin-top: 0;
}

/* Login */

.login body {
  background-color: #4280a6;
  color: #fff;
}

.container-login {
  max-width: 330px;
  margin-top: 150px;
}

  .container-login .error-message {
    color: #721c24;
  }

  .container-login .login-link {
    color: #fff;
    text-decoration: underline;
  }

/* Autocomplete */
.search-results-container {
  position: absolute;
  z-index: 100;
}

ul.ui-autocomplete {
  background: #fff;
  top: 5px !important;
  list-style: none;
  padding: 0;
  border-radius: .25rem;
  box-shadow: 1px 1px 10px #333;
}

  ul.ui-autocomplete li {
    font-size: 1rem;
    text-align: left;
    padding: .5rem 1rem;
    border-top: 1px solid #ccc;
    color: #666;
    cursor: pointer;
  }

    ul.ui-autocomplete li:first-child {
      border-top: none;
    }

    ul.ui-autocomplete li:hover {
      background: #f5f5f5;
    }

.ui-helper-hidden-accessible {
  display: none;
}

/* Extra small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

  /* Navigation */
  .navbar-main .navbar-nav {
    padding-top: 0;
  }

  .navbar-main .nav-item {
    border-top: 0;
  }

  .navbar-main .dropdown-menu {
    min-width: 0;
  }

  .navbar-main .dropdown-item {
    padding: .25rem 1.2rem;
    text-align: right;
  }

  /* Intro Container */
  .container-intro h1 {
    font-size: 4rem;
  }

  .lead {
    font-size: 1rem;
  }

  /* Footer */
  .footer a.footer-link {
    font-weight: 300;
    display: inline;
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer ul li:first-child a.footer-link {
    border-top: 0;
  }

  /* Category Page */
  .search-controls {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

    .search-controls .form-inline {
      display: flex;
      justify-content: flex-end;
    }

  #category-filters { /* Override the collapse on medium devices up */
    display: block;
  }

  .listing {
    min-height: 200px;
  }

    .listing .btn {
      width: auto;
      padding: .25rem .6rem;
    }

    .listing .stats .col-stat {
      width: auto;
    }

    .listing .stats .col-stat-si {
      width: auto;
      margin-bottom: 0;
    }

      .listing .stats .col-stat-si .stat {
        float: left;
        display: inline;
        margin-right: 5px;
        margin-bottom: 0;
      }

    .listing .stats .fab, .listing .stats .fas {
      display: inline-block;
    }

    .listing .stat {
      font-size: 1rem;
    }

      .listing .stat strong {
        display: inline;
      }

  /* Profile Page */
  .container-company-overview .btn {
    width: auto;
  }

  .navbar-profile .nav-item:first-child .nav-link {
    padding-left: 0;
  }

  .navbar-profile .nav {
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-profile .nav-item {
    border-bottom: 0;
  }

  .navbar-tools .nav-item {
    border-bottom: 0;
    border-right: 1px solid #fff;
  }

    .navbar-tools .nav-item:first-child {
      border-left: 1px solid #fff;
    }

  .profile-index-stats h2 {
    display: inline-block;
  }

  .profile-index-stats .si {
    display: inline-block;
    width: 150px;
  }

  .profile-index-stats .si {
    margin-left: 20px;
  }

  .profile-index-stats .description {
    margin-bottom: 0;
  }

  .review-author {
    font-size: 1.5em;
    line-height: 50px;
    display: inline;
  }

    .review-author span {
      display: inline;
    }

  /* Browse Page */
  .container-browse h2.category-group {
    font-size: 2rem;
  }

  .container-browse .input-group-lg > .form-control:not(textarea) {
    font-size: 1.25rem;
  }

  /* Search Page */
  .container-search .input-group-lg > .form-control:not(textarea) {
    font-size: 1.25rem;
  }

  .new-companies .listing-sm .screenshot {
    max-width: 52px;
    height: auto;
    vertical-align: top;
  }

  /* Get Listed Page */
  .get-listed .price strong {
    font-size: 1.7rem;
  }

  .table-compare .fa-info-circle {
    font-size: .8rem;
    margin-left: .5rem;
  }

  .table-compare .fa-check-circle {
    font-size: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .listing-sm .col {
    border-right: 1px solid #fff;
  }

  .listing-sm .btn {
    width: auto;
  }

  .listing-sm .col-buttons {
    min-width: 264px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

  .listing .btn {
    width: auto;
    padding: .375rem 1rem;
  }
}

/* Jumbotron Cards */
.jumbotron {
  background-color: rgba(158, 197, 229, .1);
}

.left-column img {
  max-width: 25%;
}

.left-column > h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1rem 0;
}

@media (max-width: 576px) {
  .left-column {
    margin-bottom: 2rem;
    text-align: center;
  }
}

.d-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem 1rem;
}

@media (min-width: 576px) {
  .d-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .d-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Software Guides */
.card-post {
  position: relative;
  background-color: #fff;
}

  .card-post:hover {
    text-decoration: none;
    box-shadow: 0 0 1.5rem lightgrey;
    transition-duration: .5s;
  }

  .card-post > img {
    max-width: 100%;
  }

  .card-post > span:first-of-type {
    color: var(--serchen-blue);
    font-size: .7rem;
  }

  .card-post > span:nth-of-type(2) {
    font-weight: lighter;
    font-size: 1.5rem
  }
