/*@import url('https://fonts.googleapis.com/css?family=Open+Sans');

* {
	box-sizing: border-box;
}

body {
	background-color: #f6f5f7;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 50px;
}
*/

.pricing-box-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.pricing-box {
	background-color: #1a1a1a;
	/*box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.5);*/
	color: white;
	border-radius: 10px;
	flex: 1;
	padding: 0 30px 30px;
	margin: 2%;
	min-width: 250px;
	/*max-width: 350px;*/
	max-height: 487px;
}

.pricing-box h5 {
	text-transform: uppercase;
	margin-top: 15px;
	font-size: 15px;
	font-weight: 600;
}

.price {
	margin: 24px 0;
	font-size: 36px;
	font-weight: 900;
}

.price sub,
.price sup {
	font-size: 16px;
	font-weight: 100;
}

.features-list {
	padding: 0;
	list-style-type: none;
}

.features-list li {
	font-weight: 100;
	padding: 12px 0;
	font-weight: 100;
}

.features-list li:not(:last-of-type) {
	border-bottom: 1px solid #121212;
}

.btn-primary {
	border: none;
	background-color: rgba(0, 0, 0, 0);
	color: #9818da;
	cursor: pointer;
	padding: 10px 15px;
	margin-top: 20px;
	text-transform: uppercase;
	/*transition: all 0.1s ease-in-out;*/
	outline: none !important;
}

.btn-primary:hover {
	background-color: rgba(255, 255, 255, 0);
	color: #eb7ef5;
	transform: translateY(-3px);
	border: none;
}

.btn-primary:active {
	border: none !important;
	border-color:#12121200 !important;
	background-color: rgba(255, 255, 255, 0) !important;
}

.dm {
	position: relative;
	display: inline-block;
}

/* Dropdown menu */
.nav-drop-menu {
	display: none;
	padding: 0 10px 0 10px;
	position: absolute;
	top: 100%;
	/* Place below the icon */
	left: 50%;
	/* Start from center */
	transform: translateX(-50%);
	/* Adjust to fully center */
	background: #121212;
	list-style: none;
	border-radius: 5px;
	overflow: hidden;
	/*min-width: 150px;*/
}

/* Dropdown items */
.nav-drop-menu li {
	padding: 0;
}

.nav-drop-menu a {
	display: block;
	padding: 10px 15px;
	color: white;
	text-decoration: none;
	transition: background 0.3s;
	text-align: center;
}

/*.nav-drop-menu a:hover {
    
}*/

/* Show dropdown on hover */
.dm:hover .nav-drop-menu {
	display: block;
}

@media all and (max-width:991px) {
	.dm:hover .nav-drop-menu {
		display: contents;
	}
}

.custom-range {
	margin: 0 0;
}

.custom-range input[type="range"] {
	width: 100%;
	padding: 0;
	max-width: 450px;
	min-width: 200px;
	-webkit-appearance: none;
	background: #333;
	height: 4px;
	border-radius: 2px;
	outline: none;
}

.custom-range input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	background: #8e2de2;
	border-radius: 50%;
	cursor: pointer;
}

.custom-subs {
	max-width: none; /* Default for small screens */
  }
  
  @media (min-width: 992px) {
	.custom-subs {
	  max-width: 272px;
	}
  }
  
  @media (min-width: 1200px) {
	.custom-subs {
	  max-width: 325px;
	}
  }

