body {
  padding-bottom: 1rem;
}
.btn {
  margin: 0.7rem;
}

a {
    color: #337ab7;
    text-decoration: none;
}
a:hover {
    color: #23527c;
}

img {
  margin: 0.7rem;
  max-width: 100%;
}
img.howto {
  height: auto;
}
img.lazy {
  content: "";
  background: #F1F1FA;
  max-width: 100%;
  display: block;
  margin: 0.7rem auto;
  border: 0;
}
img.lazydone {
  max-width: 100%;
  margin: 0.7rem auto;
  border: 0;
}

img[alt$=">"] {
  float: right;
}

img[alt$="<"] {
  float: left;
}
.video-container { position: relative; padding-bottom: 56.25%; padding-top: 2rem; height: 0; overflow: hidden; } 
.video-container iframe, .video-container object, .video-container embed, .video-container .container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.navbar-brand {
  padding: 0;
}
.navbar-brand>img {
  height: 100%;
  padding: 0;
  margin: 0;
  width: auto;
}


.pricing {
  text-align: center;
  border: 0.07rem solid #f0f0f0;
  color: #000;
  font-size: 1rem;
  padding-left: 0;
  margin-bottom: 30px;
}
.pricing img {
  display: block;
  margin: auto;
  width: 2rem;
}
.pricing li:first-child,
.pricing li:last-child {
  padding: 1.5rem 1rem;
}
.pricing li {
  list-style: none;
  padding: 1rem;
}
.pricing li + li {
  border-top: 0.07rem solid #f0f0f0;
}
.pricing big {
  font-size: 1.5rem;
  font-weight: bold;
}
.pricing h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}
.pricing span {
  font-size: 0.9rem;
  color: #999;
  font-weight: normal;
}
.pricing li:nth-last-child(2) {
  padding: 2rem 1rem;
}
.pricing button {
  width: auto;
  margin: auto;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 3rem;
  color: #fff;
  padding: 0.7rem 1.6rem;
  background: #aaa;
  opacity: 1;
  transition: opacity .2s ease;
  border: none;
  outline: none;
}
.pricing button:hover {
  opacity: .9;
}
.pricing button:active {
  box-shadow: inset 0 0.14rem 0.14rem rgba(0, 0, 0, 0.1);
}
/* pricing color */
.p-green big,
.p-green h3, .p-green .footer {
  color: #4c7737;
}
.p-green button {
  background: #4c7737;
}
.p-yel big,
.p-yel h3,.p-yel .footer {
  color: #ffbb42;
}
.p-yel button {
  background: #ffbb42;
}
.p-red big,
.p-red h3, .p-red .footer {
  color: #e13c4c;
}
.p-red button {
  background: #e13c4c;
}
.p-blue big,
.p-blue h3, .p-blue .footer {
  color: #3f4bb8;
}
.p-blue button {
  background: #3f4bb8;
}
.borderzero {
  border:0;
}
.price-strike {
text-decoration: line-through;
font-weight: 300;
}

.wrapper {
  margin: 0 auto;
  padding: 0;
}

.youtube {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.youtube img {
  width: 100%;
  left: 0; 
  top:-16.7%;
  margin: 0 auto;
  padding: 0;
  opacity: 1;
  overflow: hidden;
}
.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}
.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26.0px;
  border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
  cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d( -50%, -50%, 0 );
}
.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.testimonial-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.testimonial-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

#load-more-button {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}
#searchBox {
    width: 300px;
    padding: 8px;
    font-size: 16px;
}

#resultBox {
    position: absolute;
    width: 300px;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    display: none;
    z-index: 999;
}

.resultItem {
    padding: 8px;
    cursor: pointer;
}

.resultItem:hover {
    background-color: #f0f0f0;
}


/* ProperSoft floating support widget (r/js/support.js) */

#psSupportBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100000;
    padding: 12px 22px;
    min-width: 92px;
    background: #1d73be;
    color: #fff;
    border: none;
    border-radius: 24px;
    font: 600 15px/1.2 Arial, sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}
#psSupportBtn:hover {
    background: #155d9c;
}
#psSupportOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, .45);
}
#psSupportOverlay.ps-open {
    display: block;
}
#psSupportModal {
    position: absolute;
    right: 20px;
    bottom: 76px;
    width: 400px;
    max-width: calc(100vw - 40px);
    height: 560px;
    max-height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    font: 14px/1.45 Arial, sans-serif;
    color: #333;
}
#psSupportModal .ps-tabs {
    display: flex;
    gap: 18px;
    padding: 4px 18px 0;
    border-bottom: 1px solid #e5e5e5;
}
#psSupportModal .ps-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 2px 8px;
    font: 600 14px Arial, sans-serif;
    color: #666;
    cursor: pointer;
}
#psSupportModal .ps-tab.ps-active {
    color: #1d73be;
    border-bottom-color: #1d73be;
}
#psSupportModal .ps-pane {
    display: none;
    flex: 1;
    min-height: 0;
}
#psSupportModal .ps-pane.ps-active {
    display: flex;
    flex-direction: column;
}
#psSupportModal .ps-answers-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 18px;
}
#psSupportModal .ps-article {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
#psSupportModal .ps-article:last-child {
    border-bottom: none;
}
#psSupportModal .ps-a-title {
    font-weight: 600;
    color: #1d73be;
    text-decoration: none;
}
#psSupportModal .ps-a-title:hover {
    text-decoration: underline;
}
#psSupportModal .ps-a-sum {
    color: #666;
    font-size: 13px;
    margin-top: 2px;
}
#psSupportModal .ps-answers-note {
    color: #666;
    font-size: 13px;
    padding: 12px 0;
}
#psSupportModal .ps-answers-cta {
    padding: 14px 0 4px;
    font-size: 14px;
}
#psSupportModal .ps-answers-cta a {
    color: #1d73be;
    font-weight: 600;
}
#psSupportModal .ps-answers-search {
    display: flex;
    align-items: center;
    margin: 5px;
    padding: 8px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
    overflow: hidden;
}
#psSupportModal .ps-search-input {
    flex: 1;
    height: 26px;
    box-sizing: border-box;
    padding: 0 0 0 3px;
    margin: 0;
    border: none;
    outline: none;
    background: transparent;
    font: 14px Arial, sans-serif;
}
#psSupportModal .ps-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 26px;
    box-sizing: border-box;
    border: none;
    background: transparent;
    color: #1d73be;
    cursor: pointer;
}
#psSupportModal .ps-search-btn:hover {
    color: #155d9c;
}
#psSupportModal form {
    padding: 16px 18px 18px;
    overflow-y: auto;
}
#psSupportModal label {
    display: block;
    margin: 0 0 4px;
    font-weight: 600;
}
#psSupportModal input[type=text]:not(.ps-search-input),
#psSupportModal input[type=email],
#psSupportModal textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    margin: 0 0 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font: 14px Arial, sans-serif;
}
#psSupportModal textarea {
    min-height: 110px;
    resize: vertical;
}
#psSupportModal input[type=file] {
    margin: 0 0 12px;
    font-size: 13px;
}
#psSupportModal .ps-hp {
    position: absolute;
    left: -5000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
#psSupportModal .ps-submit {
    width: 100%;
    padding: 11px;
    margin: 0 0 10px;
    background: #1d73be;
    color: #fff;
    border: none;
    border-radius: 6px;
    font: 600 15px Arial, sans-serif;
    cursor: pointer;
}
#psSupportModal .ps-submit:hover {
    background: #155d9c;
}
#psSupportModal .ps-submit:disabled {
    background: #9bbdd9;
    cursor: default;
}
#psSupportModal .ps-status {
    margin: 0 0 12px;
    padding: 9px 12px;
    border-radius: 6px;
    display: none;
}
#psSupportModal .ps-status.ps-ok {
    display: block;
    background: #e5f5e9;
    color: #1d6b2f;
    border: 1px solid #bfe5c7;
}
#psSupportModal .ps-status.ps-err {
    display: block;
    background: #fdecea;
    color: #a12622;
    border: 1px solid #f5c6c2;
}
