/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

:root {
	--cnvs-themecolor: #02c204;
	--cnvs-themecolor-rgb: 2, 194, 4;
	--cnvs-secondary-color: #02c204;
	--bs-btn-bg: #02c204;
	--cnvs-content-padding:	5rem;
}
.quickscan-color {
	background-color: var(--cnvs-themecolor);
}
.btn-primary {
  --bs-btn-bg: #02c204;
  --bs-btn-border-color: #02c204;
  --bs-btn-hover-bg: #02ac04;
  --bs-btn-hover-border-color: #02ac04;
  --bs-btn-active-bg: #02c204;
  --bs-btn-active-border-color: #02c204;
}

.featured-by-apple {
	margin-top: 30px;
}

.btn-no-padding {
	padding-left: 0px;
}

.press-app-icon {
	width:30px !important;
	border-radius: 16%;
}
.press-app-icon-text {
	font-size: 12;
}
.section-clients .col {
	text-align:center;
}
.press-gray {
	filter: grayscale(100%); 
	opacity: 90%;
	text-align:center;
}
.press-gray span {
	color: #888;
	opacity: 90%;
	margin-left:8px;
	margin-right:0px;
}

.qsRetina {
	max-width:80% !important;
}

/* Specific css to match Apple reviews style */
.specific-max-width {
	max-width:1624px;
}

.testimonial-col {
	background-color: #F8F8F8;
}
.testimonial-title {
	font-size: 13px;
	line-height: 1.38462;
	font-weight: 600;
	letter-spacing: -.005em;
	font-family: "SF Pro Text","SF Pro Icons","Apple WebExp Icons Custom","Helvetica Neue",Helvetica,Arial,sans-serif !important;
	margin-bottom:0px;
}
.testimonial-user-date {
	color: #636366;
	font-size: 12px;
	line-height:1.33337;
	font-weight:600;
	letter-spacing:0;
	font-family: "SF Pro Text","SF Pro Icons","Apple WebExp Icons Custom","Helvetica Neue",Helvetica,Arial,sans-serif !important;
	margin-bottom: 8px;
}
.testimonial-5-stars {
	background-image: url("../quickscan/images/star.svg");background-position-x: 0px;background-size: 24px 50px;box-sizing: border-box;color: rgb(29, 29, 31);direction: ltr;display: inline-block;font-family: "SF Pro Text", "SF Pro Icons", "Apple WebExp Icons Custom", "Helvetica Neue", Helvetica, Arial, sans-serif;font-size: 13px;font-style: normal;font-synthesis-small-caps: none;font-synthesis-style: none;font-synthesis-weight: none;font-weight: 400;height: 25px;letter-spacing: -0.065px;line-height: 9.5px;quotes: "%E2%80%9C" "%E2%80%9D";text-align: left;visibility: visible;width: 120px;-webkit-font-smoothing: antialiased;
}

/* Testimonials block CSS */
.block-testimonials-3,
.block-testimonials-3 h1,
.block-testimonials-3 h2,
.block-testimonials-3 h3,
.block-testimonials-3 h4,
.block-testimonials-3 h5,
.block-testimonials-3 h6,
.block-testimonials-3 p,
.block-testimonials-3 a {
/*	font-family: 'Inter', sans-serif !important;*/
	font-family: "SF Pro Text","SF Pro Icons","Apple WebExp Icons Custom","Helvetica Neue",Helvetica,Arial,sans-serif !important;
	padding-top: 5px;
}

.block-testimonials-3 .swiper-slide {
	width: 400px;
	padding: 15px;
}

.block-testimonials-3 .testimonial-col {
 	border: 1px solid #EEE;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px 0 rgba(0,0,0,.05);
}

.block-testimonials-3 .testimonial-col p {
	font-size: 13px;
/*	line-height: 26px !important;*/
	margin-bottom: 0px;
}

.block-testimonials-3 .swiper-container-horizontal>.swiper-scrollbar {
	width: 75%;
	max-width: 700px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0,0,0,.06);
}

.block-testimonials-3 .swiper-container,
.block-testimonials-3 .swiper-wrapper {
	cursor: ew-resize !important;
}
/* END Testimonials block CSS */

/* POPUP support */
/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 12px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}