/* System Fonts as used by GitHub */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
	background-color: #F90;
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}

.hero-name {
	font-size: 21px;
}

.features-panel {
	width: 90%;
	border-radius: 16px 21px 0 0;
	padding-bottom: 100px;
	margin-bottom: 200px;
}

.features h1 {
	font-size: 21px;
}

.features h2 {
	font-size: 21px;
	padding-top: 40px;
	color: #fff;
	font-weight: 400;
}

.features li {
	margin-top: 16px;
}

#release-notes li {
	margin-top: 8px;
}

.feature-item {
	text-align: left;
}

.feature-item img {
	width: 80%;
}

.panel-bg {
	background-color: #444e58 !important;
}

.feature-preview {
	width: 250px;
	height: 200px;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Style the Image Used to Trigger the Modal */

.feature-preview {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

.feature-preview:hover {
	opacity: 0.7;
}

/* The Modal (background) */

.img-modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.9);
	/* Black w/ opacity */
}

/* Modal Content (Image) */

.img-modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 600px;
	border: none;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */

#caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}

/* Add Animation - Zoom in the Modal */

.img-modal-content,
#caption {
	animation-name: zoom;
	animation-duration: 0.6s;
}

@keyframes zoom {
	from {
		transform: scale(0)
	}

	to {
		transform: scale(1)
	}
}

/* The Close Button */

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

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

/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 600px) {
	.modal-content {
		width: 100%;
	}
}

.download-btn {
	display: block;
	height: 48px;
	background-repeat: no-repeat;
	background-size: contain;
	margin-top: 16px;
	white-space: nowrap;
}

#direct-download-btn {
	background-color: black;
	border: #fff 1px solid;
	padding-top: 10px;
}

.container {
	margin-top: 20px;
}

/* BUY FORM */
.payform-tinkoff {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 2px auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 250px;
}
.payform-tinkoff-row {
	margin: 2px;
	border-radius: 4px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border: 1px solid #DFE3F3;
	padding: 15px;
	outline: none;
	background-color: #DFE3F3;
	font-size: 15px;
}
.payform-tinkoff-row:focus {
	background-color: #FFFFFF;
	border: 1px solid #616871;
	border-radius: 4px;
}
.payform-tinkoff-btn {
	background-color: #FBC520;
	border: 1px solid #FBC520;
	color: #3C2C0B;
}
.payform-tinkoff-btn:hover {
	background-color: #FAB619;
	border: 1px solid #FAB619;
}

.input-icon {
	position: relative;
  }
  
  .input-icon > i {
	color: #3C2C0B;
	font-weight: 600;
	position: absolute;
	display: block;
	transform: translate(0, -50%);
	top: 50%;
	pointer-events: none;
	width: 25px;
	text-align: center;
	font-style: normal;
  }
  
  .input-icon > input {
	padding-left: 25px;
	padding-right: 0;
  }
  
  .input-icon-right > i {
	right: 0;
  }
  
  .input-icon-right > input {
	padding-left: 0;
	padding-right: 25px;
	text-align: right;
  }