.navbar {
	background: none;
}

.modal-body {
	background-color: #fff;
	padding-bottom: 40px;
}

.title {
	color: #4caf50;
	font-weight: bold;
}

.side {
	padding: 35px;
	padding-top: 0;
	padding-bottom: 0;
}

#left-side {
	padding-top: 8px;
}

.heading {
	text-align: center;
	color: white;
	margin-bottom: 20px;
	font-weight: 300;
	font-size: 40px;
}

.feature-heading {
	font-size: 16px;
}

.side button:hover {
	color: white;
}

.create-btn, .subscribe-btn {
	width: 100%;
	padding: 13px;
	color: white;
	background-color: #5db661;
	margin-top: 15px;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
}

.pricing-plans-btn {
	color: white;
	background-color: #0095d0;
}

.field-heading {
	color: #656565;
}

.inputs input {
	margin-bottom: 25px;
	border-color: #dedede;
}

.inputs input::placeholder {
	font-style: italic;
	color: #b1b1b1;
	font-size: 12px;
}

.img-container {
	text-align: center;
	margin-bottom: 20px;
	margin-top: 20px;
}

.img-container img {
	width: 160px;
}

ul {
	margin: 20px 0 40px 0;
	padding-left: 20px;
}

ul li {
	margin-bottom: 10px;
	font-size: 13px;
}

.learn-more {
	margin-top: 15px;
	color: #656565;
	margin-bottom: 5px;
}

.login-text {
	color: #656565;
	text-align: center;
}

.login-link {
	color: #1380c4;
}

.description {
	margin-bottom: 45px;
	color: #656565;
}

.fast-and-free {
	color: #4caf50;
	font-weight: bold;
	text-transform: capitalize;
}

.language-selector-container {
	display: flex;
	justify-content: end;
}

.language-selector-box {
	box-shadow: 0px 2px 3px #dedede;
	width: fit-content;
	padding: 10px;
	color: #b1b1b1;
	position: relative;
	cursor: default;
}

.language-selector-box > *:hover {
	cursor: default;
}

.language-options {
	top: 0;
	left: -10%;
	position: absolute;
	background-color: #666;
	color: white;
	width: 120%;
	text-align: center;
	border-radius: 10px;
	display: none;
	z-index: 9999;
}

.language-option {
	padding: 5px;
	margin: 5px;
	border-radius: 10px;
}

.language-options:first-child {
	margin-bottom: 0;
}

.language-options:last-child {
	margin-top: 0;
}

.language-option:hover {
	background-color: #3399ff;
}

.selected-language {
	color: #656565;
	margin-left: 3px;
	margin-right: 10px;
}

.language-cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 150vh;
	display: none;
}

/* duplicate */
.inputs input.input-error {
	border-color: #e71919;
}

/*overlay*/
#overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
	cursor: pointer;
}

@media screen and (max-width: 992px) {
	#right-side {
		border-left: none !important;
	}

	p.login-text {
		border-bottom: 1px solid #DEDEDE;
		padding-bottom: 20px;
	}

	.features-footer {
		text-align: center;
		margin-top: 20px;
		margin-bottom:15px;
	}

	.language-selector-container {
		display: flex;
		justify-content: start;
	}

	#compare-modal {
		display:none;
	}

	.subscription-control-container {
		border-bottom: none;
	}
}

@media screen and (min-width: 993px) {
	.features-footer {
		display: none;
	}
}

@media screen and (min-width: 993px) {
	.features-footer {
		display: none;
	}
}

/* Safari 11+ */
@media not all and (min-resolution: 0.001dpcm) {
	@supports (-webkit-appearance: none) and (stroke-color: transparent) {
		#overlay {
			background-color: rgba(0, 0, 0, 0);
		}
	}
}

.subscription-plan-option {
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 10px;
	cursor: pointer;
}

.selected {
	background-color: #e8f7ef;
	border: 1px solid #52ad69;
}

.sub-pricing {
	height: 70px;
	width: 130px;
	font-size: 20px;
	text-align: right;
	display: table-cell;
	vertical-align: middle;
}

.subscription-control-container {
	margin-top: 70px;
	border-bottom: 1px solid #ccc;
}

.anual-switch-container {
	margin-bottom:15px;
	color: #656565;
}

	/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 15px;
	top: 5px;
	left: 5px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 10px;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 13px;
	width: 13px;
	left: 3px;
	bottom: 1px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #52AE69;
}

input:focus + .slider {
	box-shadow: 0 0 1px #52AE69;
}

input:checked + .slider:before {
	-webkit-transform: translateX(15px);
	-ms-transform: translateX(15px);
	transform: translateX(15px);
}

	/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

#compare-modal {
	cursor: pointer;
	font-size: 14px;
	color: #656565;
	text-decoration: underline;
}

.compare-modal{
	min-width: 1000px;
}

.compare-arrow {
	position: relative;
	top: 2px;
	left: 5px;
	margin-top: 20px;
}

.plan-details {
	color: #656565;
}

#lite-acct {
	display:none;
}

#lite-summary {
	border-radius: 4px;
	border: 1px solid #ccc;
}

.no-left {
	padding-left: 10px !important;
}

.order-summary-headings {
	padding-left: 25px;
}

.order-summary-text {
	text-align: right;
	padding-right: 25px;
	margin-bottom: 15px;
}

#order-summary-container {
	border: solid 1px #ccc;
	border-radius: 5px;
}

.row {
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#meetingDiv {
	overflow: scroll;
}

#tier-compare {
	width: 100%;
}

.list-none {
	cursor:pointer;
}

#tier-compare,th, td {
	border: 1px solid #F0F0F0;
}

.inline {
	display: inline !important;
}

.hidden {
	display: none !important;
}

td:nth-child(1) {
	max-width: 200px;
	border-left: 1px solid #fff;
	text-align: left;
	font-size: 16px;
	padding-top:15px;
	padding-bottom:15px;
}

td:nth-child(2),td:nth-child(3),td:nth-child(4),td:nth-child(5) {
	text-align: center;
	color: #656565;
	font-family: Helvetica Neue;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

th {
	text-align: center;
}

h5 {
	font-weight: 700 !important;
}

.text-table-header{
	text-align: left;
	font-size: 18px;
	width: 100%;
	display: block;
	padding-left: 15px;
	color: #656565 !important;
}

.plan-fees {
	color: #656565 !important;
	font-family: Helvetica Neue;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

[data-braintree-id="methods-label"] {
	display: none;
}

#spinner-container{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
}

@media  (max-width: 420px) {
	.sub-pricing {
		right: 20px;
		position: inherit;
	}
}