@charset "UTF-8";
.services {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: -30px;
  margin-left: -15px;
  margin-right: -15px;
}
.services + .more,
.services + .pagination-wrapper {
  margin-top: 2rem;
}
.section-inner.container .services {
  max-width: unset;
}

.service {
  position: relative;
  flex-grow: 0;
  flex-shrink: 1;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.service:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .service {
    width: 25%;
  }
  .sidebar .service, .half .service {
    width: 50%;
  }
}

.service-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .service-inner {
    transition: none;
  }
}
.service-inner:hover {
  box-shadow: 0 0 0.65rem rgba(17, 17, 17, 0.15);
}

.service-img,
.service-title,
.service-info,
.service-rating {
  width: 100%;
}

.service-img {
  align-self: flex-start;
  display: block;
  max-width: 100%;
  margin: 0 0 15px;
}
@media (min-width: 576px) {
  .service-img {
    margin-left: auto;
    margin-right: auto;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
}

.service-title,
.service-info {
  margin: 0 0 8px;
  padding: 0 15px;
}

.service-info {
  position: relative;
}

.service-title {
  font-size: 1rem;
}

.service-price {
  padding-right: 15px;
  font-weight: 700;
  color: #111;
}

.service-category,
.service-rating {
  color: #212529;
}

.service-category {
  padding-right: 15px;
}

.service-rating,
.service-labels {
  font-size: 0.875rem;
}

.service-rating {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-end;
  align-items: center;
  padding: 0 15px;
  background-color: #e9ecef;
  margin-top: auto;
}

.service-rating-stars {
  padding-top: 1rem;
  flex-basis: 100%;
}
@media (min-width: 576px) {
  .service-rating-stars {
    flex-basis: auto;
    padding: 1rem 8px 1rem 0;
  }
}

.service-rating-count {
  padding: 15px 0;
  text-align: left;
  color: #6c757d;
}
@media (min-width: 576px) {
  .service-rating-count {
    text-align: right;
  }
}

.service-rating-stars,
.service-rating-count {
  flex-grow: 1;
  flex-shrink: 0;
  line-height: 1;
}

.service-labels {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
}

.service-label {
  padding: 0 8px;
  color: #fff;
}
.service-label.service-label-shoptet, .service-label.service-label-partner {
  background-color: #21afe5;
}
.service-label.service-label-new {
  background-color: #a6c721;
  white-space: nowrap;
}
.service-label.service-label-recommended {
  background-color: #f6a12d;
}
.service-label:last-child {
  border-top-right-radius: 0.25rem;
}

.service-info-table th {
  padding-right: 1rem;
}

.service-description {
  z-index: 1;
  position: absolute;
  left: -1px;
  right: -1px;
  top: 0;
  padding: 15px;
  border-style: solid;
  border-width: 0 1px 1px;
  border-color: #d9d9d9;
  border-radius: 0 0 0.25rem 0.25rem;
  font-size: 0.875rem;
  background-color: #fff;
}
.service .service-description {
  display: none;
}
.service:hover .service-description {
  display: block;
}

.section-inner.container div.service-description {
  max-width: none;
}

.service-price-heading {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.service-price-heading h3 {
  white-space: nowrap;
}
.service-price-heading .alert {
  display: inline-block;
  color: #212529;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  margin-left: 8px;
}
@media (min-width: 576px) {
  .service-price-heading .alert {
    white-space: nowrap;
  }
}

.filter {
  margin-bottom: 2rem;
}
.filter select {
  margin-bottom: 1rem;
}
.filter label {
  margin-bottom: 0;
  font-weight: 700;
  color: #111;
}
@media (min-width: 576px) {
  .filter {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .filter > div {
    width: calc(50% + 15px);
    padding-right: 30px;
  }
  .filter > div:nth-child(even) {
    width: calc(50% - 15px);
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .filter label {
    white-space: nowrap;
    padding-right: 8px;
  }
  .filter select {
    margin-bottom: 0;
  }
  .filter > div {
    width: auto;
    padding-right: 15px;
  }
  .filter > div:nth-child(even) {
    width: auto;
    padding-right: 15px;
  }
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}
.screenshots .screenshot {
  flex-grow: 0;
  display: block;
  width: calc(100% - 1rem);
  margin: 0.5rem;
  text-align: center;
}
.screenshots .screenshot img {
  display: block;
  border: 1px solid #d9d9d9;
}
.screenshots .screenshot p {
  padding: 1rem;
  font-size: 90%;
}
@media (min-width: 576px) {
  .screenshots .screenshot {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 768px) {
  .screenshots .screenshot {
    width: calc(33.333333% - 1rem);
  }
}

.rating-summary-wrapper,
.rating-reviews {
  max-width: 960px;
}

.rating-form {
  max-width: 720px;
  margin-bottom: 2rem;
}
.rating-form .form-control {
  margin-bottom: 2rem;
}
.rating-form textarea.form-control {
  margin-bottom: 1rem;
}
.rating-form .star {
  cursor: pointer;
}
.rating-form .star-radio {
  position: fixed;
  opacity: 0;
}
.rating-form .star-hover {
  border-bottom-color: #f7a12b;
}
.rating-form .star-hover::before, .rating-form .star-hover::after {
  border-bottom-color: #f7a12b;
}

.rating-form-submit {
  padding-top: 2rem;
}

.rating-summary-wrapper,
.rating-summary-overview,
.rating-review {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.rating-summary-wrapper {
  margin-bottom: 2rem;
}

.rating-summary,
.rating-add {
  width: 100%;
}
@media (min-width: 768px) {
  .rating-summary,
.rating-add {
    width: 50%;
  }
}

.rating-summary {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .rating-summary {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .rating-add {
    align-self: flex-end;
    text-align: right;
  }
}

.rating-summary-overview {
  margin-bottom: 2rem;
}
.rating-summary-overview .stars {
  margin-right: 8px;
}

.rating-review .stars {
  margin-right: 8px;
}
.rating-review .progress {
  width: 100px;
}
.rating-review .info {
  width: 100%;
}
@media (min-width: 576px) {
  .rating-review .info {
    width: auto;
  }
  .rating-review .progress {
    margin-right: 8px;
  }
}

#rating-form > div.stars.stars-big {
  display: inline-block;
}

.rating-review-wrapper {
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-top: 1px solid #d9d9d9;
}

.rating-review {
  display: flex;
  align-items: flex-start;
}

.rating-review-content {
  width: calc(100% - 100px);
}

.rating-review-text {
  margin-bottom: 1rem;
}

.gravatar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin: 0 15px 0 0;
}
.gravatar-icon .initials,
.gravatar-icon .gravatar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gravatar-icon .initials {
  background: #e9ecef;
  font-weight: 700;
  font-size: 25px;
}
.gravatar-icon .gravatar {
  width: 100%;
}
.rating-review-reaction .gravatar-icon {
  width: 48px;
  height: 48px;
}
.rating-review-reaction .gravatar-icon .initials {
  font-size: 22px;
}

.rating-review-reaction {
  display: flex;
  margin-top: 1rem;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .rating-review-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}

.endpoint-groups {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.endpoint-group {
  display: flex;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 1ex;
  text-align: center;
  color: #fff;
  background-color: #a6c721;
}
.endpoint-group + .endpoint-group {
  margin-left: 1ex;
}
.endpoint-group i {
  display: block;
  margin: 0 auto;
}

@font-face {
  font-family: "shoptet";
  src: url("/src/dist/fonts/shoptet/shoptet.ttf?hmbg33") format("truetype"), url("/src/dist/fonts/shoptet/shoptet.woff?hmbg33") format("woff"), url("/src/dist/fonts/shoptet/shoptet.svg?hmbg33#shoptet") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=shp-], [class*=" shp-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "shoptet" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.shp-orders:before {
  content: "";
}

.shp-products:before {
  content: "";
}

.shp-customers:before {
  content: "";
}

.shp-settings:before {
  content: "";
}

.shp-info:before {
  content: "";
}

.pagination-wrapper {
  position: relative;
}

.total-items {
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  .total-items {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.5rem 0;
    line-height: 1.25;
  }
}

#frm-loginForm input[type=url] {
  padding: 1rem;
}

.install-result > p.success {
  color: #28a745;
}

.install-result > p.error {
  color: #dc3545;
}

.halfs .btn {
  float: right;
}

blockquote {
  color: #212529;
  margin-bottom: 1rem;
}

.big {
  font-size: 120%;
}

.strong {
  font-weight: bold;
}

.custom-control-label .discount {
  color: #5F9A3C;
}

.has-tooltip {
  border-bottom: 1px dotted #6c757d;
}
.has-tooltip:hover {
  border-bottom: 1px solid transparent;
}

.loader-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ffffffb3;
}

.custom-control-label:before, .custom-control-label:after {
  top: 50%;
  margin-top: -0.5rem;
}

.sticky-sidebar {
  align-items: stretch;
}
.sticky-sidebar .sidebar {
  position: relative;
}
.sticky-sidebar .sidebar .content-box {
  position: sticky;
  top: 1rem;
}

.break-word {
  word-break: break-word;
}

.alert-description {
  color: #145f7b;
  background-color: #def2fa;
  border-color: #8cd5f1;
}

.simple-widget {
  margin-bottom: 1rem;
}
.simple-widget a:hover {
  text-decoration: none;
}
.simple-widget .simple-widget-row {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.simple-widget .simple-widget-row .simple-widget-image {
  flex: 0 0 25%;
}
@media (min-width: 992px) {
  .simple-widget .simple-widget-row .simple-widget-image {
    flex: 0 0 20%;
  }
}
.simple-widget .simple-widget-row .simple-widget-title {
  flex: 0 0 75%;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .simple-widget .simple-widget-row .simple-widget-title {
    flex: 0 0 80%;
  }
}
.simple-widget .simple-widget-row .simple-widget-title .service-title {
  width: auto;
  margin: 0;
  padding: 0;
  color: #000;
  display: inline-block;
}
.simple-widget .simple-widget-row .simple-widget-title .service-category {
  display: inline-block;
  color: #21afe5;
}

.content-tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.content-tabs .tab-link {
  background: #EDEDED;
  display: inline-block;
  padding: 1rem;
  cursor: pointer;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.content-tabs .tab-link.current {
  background: #fff;
  color: #222;
}

.tab-content {
  display: none;
  border-top-left-radius: 0;
}
.tab-content.current {
  display: inherit;
}

.admin-bar {
  display: none;
}
@media (min-width: 768px) {
  .admin-bar {
    width: 100%;
    height: 25px;
    z-index: 10;
    position: relative;
    display: block;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #333;
    font-size: 11px;
    line-height: 24px;
    background-color: #484848;
    color: #dbdbdb;
  }
  .admin-bar ul {
    margin: 0;
    padding: 0;
  }
  .admin-bar ul li {
    list-style: none;
  }
  .admin-bar ul li a,
.admin-bar ul li span {
    display: block;
    text-decoration: none;
  }
  .admin-bar .container {
    position: relative;
  }
  .admin-bar .container > ul {
    display: flex;
    justify-content: space-between;
  }
  .admin-bar .container > ul li:hover > ul {
    display: block;
  }
  .admin-bar .container > ul > li {
    position: relative;
    float: left;
    width: 100%;
    border-style: solid;
    border-width: 0 1px 0 0;
    border-color: #636363;
    text-align: center;
  }
  .admin-bar .container > ul > li > a,
.admin-bar .container > ul > li > span {
    padding: 0 10px;
    color: #dbdbdb;
  }
  .admin-bar .container > ul > li:last-child {
    border-right: 0;
  }
  .admin-bar .container > ul > li:hover {
    color: #fff;
    background-color: #636363;
  }
  .admin-bar .container > ul > li:hover > a,
.admin-bar .container > ul > li:hover > span {
    color: #fff;
  }
  .admin-bar .container > ul > li ul {
    z-index: 4;
    position: absolute;
    top: -1px;
    right: 100%;
    display: none;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: #dbe0e2;
    background-color: #f5fcfe;
  }
  .admin-bar .container > ul > li ul li {
    text-align: left;
    position: relative;
  }
  .admin-bar .container > ul > li ul li a,
.admin-bar .container > ul > li ul li span {
    padding: 0 5px;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #d0effc;
    color: #000;
  }
  .admin-bar .container > ul > li ul li a:hover,
.admin-bar .container > ul > li ul li span:hover {
    background-color: #e1f4fa;
  }
  .admin-bar .container > ul > li ul li:last-child {
    border-bottom: 0;
  }
  .admin-bar .container > ul > li > ul {
    top: 24px;
    right: 0;
    border-top-color: #333;
  }
  .admin-bar .container > a,
.admin-bar .container > span {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    padding: 0 10px;
    border-style: solid;
    border-width: 1px 1px 0 1px;
    border-color: #333;
    line-height: 23px;
    text-decoration: none;
    color: #dbdbdb;
    background-color: #636363;
  }
  .admin-bar .container > a:hover,
.admin-bar .container > span:hover {
    background-color: #555;
    color: #fff;
  }
}

.articles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-flow: column;
}
@media (min-width: 768px) {
  .articles {
    flex-flow: row;
    margin: 0 -8px 0 -8px;
  }
  .section-inner.container .articles {
    max-width: unset;
  }
}

.article {
  display: inline-block;
  padding: 1rem;
  max-width: 100%;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  background: #fff;
  text-align: left;
  margin: 8px 0 8px 0;
}
@media (min-width: 768px) {
  .article {
    width: 50%;
    margin: 8px;
  }
}
.article .article-inner {
  display: flex;
  color: #212529;
  align-items: flex-start;
}
.article .article-inner .texts {
  padding-right: 15px;
}
.article .article-inner .perex {
  display: block;
}
.article .article-inner .more {
  display: inline-block;
  padding-top: 1rem;
  color: #21afe5;
  text-align: left;
}
.article .article-inner img {
  width: 35%;
  border-radius: 0.25rem;
}
.article:hover {
  text-decoration: none;
}

/*# sourceMappingURL=main.css.map */
