/*Some basic edits*/

html {
	overflow-y: scroll;
} 

.callout-blue {

	border-radius: 30px;
	border-left-color: transparent !important;

}

.callout-red {

	border-radius: 30px;
	border-left-color: transparent !important;

}

.callout-green {

	border-radius: 30px;
	border-left-color: transparent !important;

}

.callout {

	border-radius: 30px;
	border-left-color: transparent !important;

}

table {

	border: 0px !important;
	width: 100%;
	table-layout: fixed;

}

tr {

	border: 0px !important;

}

td {

	text-align: center !important;
	border: 0px !important;

}

#sidebar li{
	background-color: transparent!important;
}

/*For the collapsible questions*/

.collapsible {
  	background-color: #DEF5FE;
  	color: #444;
  	cursor: pointer;
  	padding: 18px;
  	width: 100%;
  	border: none;
  	text-align: left;
  	outline: none;
  	font-size: 20px;
	font-weight: bold;
  	border-radius: 15px;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
	border-right: 2px solid #bee0ed;
	border-bottom: 2px solid #bee0ed;
	border-left: 0px;
	border-top: 0px;
}

.active.collapsible:hover, .collapsible:hover {
  	background-color: #A9D6F0;
	border-right: 2px solid #7fbadb;
	border-bottom: 2px solid #7fbadb;
	
}

.subheader {
	background-color: #EFEFEF;
	border-right: 2px solid #d1d1d1;
	border-bottom: 2px solid #d1d1d1;

}

.active.subheader, .collapsible.subheader:hover {
	background-color: #CCCCCC;
	border-right: 2px solid #b3b3b3;
	border-bottom: 2px solid #b3b3b3;

}

/*For the +/- next to each collapsible Q*/

button.Q:not(.active):after {
	content: "+";
	float: right;
}


.active.collapsible.Q:after {
	content: "-";
	float: right;

}

.content {
  	padding: 0 18px;
  	display: none;
  	overflow: hidden;
}

/*Main search bar area*/

#docsSearch {
	background-color: #B7D5D4;
}

#docsSearch button {
	display: none !important;
}

#docsSearch input {
	border-radius: 30px !important;
}


#docsSearch {
	padding-top: 75px !important;
	padding-bottom: 75px !important;
}

#docsSearch::before {
	content: "How can we help?";
	display: block;
	width: 100%;
	text-align: center !important;
	color: white;
	font-size: 30px;
}
	
/*Category underline*/

#home.active, #general.active, #subscriptions-payments.active, #features.active {
	text-decoration-line: underline;
   	text-underline-offset: 3px !important;
	background-color: transparent !important;
	color: white !important;
}

/*Hide carets and article count*/

.caret, .article-count {
	display: none !important;
}

/*Round-out categories on main Home page*/

.category {
	border-radius: 10px !important;
}

/*Make collections with only one category the same width as other categories*/

.category-list.two-col .category {
    width: 29%;
}

@media (max-width: 768px) and (max-width: 600px) {
	.category-list.two-col .category {
    		width: 100% !important;
	}
}

/*For YouTube videos*/

iframe {
	display: block;
	margin: auto;
	width: 100%;
	height: 360px;

}

/*Hide rating faces underneath modals*/

.rating-face {
	z-index: 0 !important;
}

/* Create three aligned divs */

.carousel-container {
	width: 100%;
	text-align: center;
}

.carousel1 {
	width: 30%;
	float: left;
}

.carousel2 {
	width: 30%;
	display: inline-block;
	margin:0 auto;
}

.carousel3{
	width: 30%;
	float: right;
}


/* Create three equal columns that floats next to each other */


.columnDemo {
  float: left;
  width: 33.33%;
}

/*For mobile responsiveness*/

@media (min-width: 914px) {
	.column {
  		float: left;
  		width: 30%;
	}
}

@media (max-width: 913px) {
	.column {
  		float: left;
  		width: 26%;
	}
}


@media (min-width: 769px) {
	.modal {
  		display: none;
  		position: fixed;
  		z-index: 1;
  		left: 280px;
  		top: 0;
  		Width: 99.8%;
  		height: 99.8%;
  		background-color: rgba(0,0,0,0.75);
	}

}

@media (max-width: 768px) {
	.modal {
  		display: none;
  		position: fixed;
  		z-index: 1;
  		left: 0;
  		top: 0;
  		Width: 99.5%;
  		height: 99.5%;
  		background-color: rgba(0,0,0,0.75);
	}

	.modal-content {
  		position: relative;
 		background-color: rgba(0,0,0,0.55);
  		margin: auto;
  		padding: 0;
  		max-width: 65vw;
	}

	.mySlides img {
		width: 100%;
		height: 65vh;
	}
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: rgba(0,0,0,0.55);
  margin: auto;
  padding: 0;
  max-width: 250px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  z-index: 2;
  color: #f2f2f2;
  font-size: 12px;
  padding: 20px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  padding-bottom: 8px;
  color: white;
}

.demo {
  height: 10vh;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*For sub tiers article*/

#dataProtect {
	background-image: url("https://s3.amazonaws.com/helpscout.net/docs/assets/5cd1155204286306738ec619/images/617adff69ccf62287e5f0d49/file-CEwsumpd7r.png");
}

#onlineTrack {
	background-image: url("https://s3.amazonaws.com/helpscout.net/docs/assets/5cd1155204286306738ec619/images/617adffc9ccf62287e5f0d4a/file-EZgNHFgbJD.png");
}

#onlineRep {
	background-image: url("https://s3.amazonaws.com/helpscout.net/docs/assets/5cd1155204286306738ec619/images/617b06180332cb5b9e9b8c9c/file-DVAp6i270I.png");
}

#familyPro {
	background-image: url("https://s3.amazonaws.com/helpscout.net/docs/assets/5cd1155204286306738ec619/images/617ae0929ccf62287e5f0d51/file-DDcxB9Sc3A.png");
}

.bulletAlign {
	width: 10%;
	text-align: center !important;
	color: white;
}

.proBadge {
	color: #0007BA;
	font-size: 9px;
	background-color: white;
	padding: 2px;
	border-radius: 3px;
} 

.whiteText {
	text-align: left !important;
	color: white;
}

.article-lead {
    font-size: 15px !important;
    font-weight: 500;
}

.no-bullet {
	list-style: none; 
}

.testFont{
	font-size: 16px;
	list-style: none;
}



