@charset "UTF-8";

@font-face {
  font-family: 'Jost';
  src: local('Jost Regular'), local('Jost-Regular'),
      url('../fonts/Jost-Regular.woff2') format('woff2'),
      url('../fonts/Jost-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: local('Jost ExtraLight'), local('Jost-ExtraLight'),
      url('../fonts/Jost-ExtraLight.woff2') format('woff2'),
      url('../fonts/Jost-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: local('Jost SemiBold'), local('Jost-SemiBold'),
      url('../fonts/Jost-SemiBold.woff2') format('woff2'),
      url('../fonts/Jost-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html, body{
	font-family: 'Jost', sans-serif;
}
.relative{
	position: relative;
}
.mt0{
	margin-top: 0;
}
.mthalf{
	margin-top: 0.5rem;
}
.mt1{
	margin-top: 1rem;
}
.mt2{
	margin-top: 2rem;
}
.mt4{
	margin-top: 4rem;
}
.mtn1{
	margin-top: -1rem;
}
.mb0{
	margin-bottom: 0;
}
.mb2{
	margin-bottom: 2rem !important;
}
.mb4{
	margin-bottom: 4rem;
}
.mr1{
	margin-right: 1rem;
}
.pt10{
	padding-top: 10rem;
}
.pb10{
	padding-bottom: 10rem;
}
.gray{
	background: #F9F9F9;
}
.dark .gray{
	background: #1c1c1c;
}
.text-banner{
	margin-bottom: 1rem;
}
.hide {
	display: none;
}
.responsive-table{
	overflow-x: auto;
}
.min130{
	min-width: 130px;
}
.material-icons.giant{
	font-size: 5rem;
	opacity: 0.6;
}
.white-color{
	color: #FFF;
}

header{
	padding-top: 3rem;
}
@media (min-width: 1024px){
	header{
		padding-top: 5rem;
	}
}
.light .btn{
	color: #FFF;
}
.btn,.btn-outline,.btn-flat{
	transform: skewX(-8deg);
}
.navigation.top{
	box-shadow: none;
}
.navigation .desktop-nav .btn{
	margin-right: 0.8rem;
}
#hero{
	position: relative;
	padding-top: 18%;
	padding-bottom: 70%;
	overflow: hidden;
}
#hero:before{
	content: '';
	position: absolute;
	background: #37b997;
	width: 130%;
	height: 60%;
	bottom: -20%;
	left: -10%;
	transform: rotate(-16deg);
}
#primary-msg{
	max-width: 280px;
}
#primary-msg h1{
	font-size: 2.6rem;
	line-height: 120%;
}
#hero-banner{
	position: absolute;
	width: 100%;
	top: 110%;
	right: 0%;
	transform: rotate(-16deg);
}
@media (min-width: 1024px){
	#hero{
		padding-top: 15%;
		padding-bottom: 35%;
	}
	#hero:before{
		width: 120%;
		height: 70%;
		bottom: -30%;
		left: -10%;
	}
	#hero-banner{
		width: 70%;
		top: 30%;
		right: 0%;
	}
}

main{
	min-height: 72vh;
}
.section-title{
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	display: inline-block;
	border-bottom: 3px solid #37b997;
	padding-bottom: 0.3rem;
}
header .section-title{
	margin-top: 3rem;
}
#features{
	background: linear-gradient(to bottom, #37b997 0%,#1f9677 100%);
	color: #FFF;
	position: relative;
	padding-bottom: 13%;
	overflow: hidden;
}
#features .section-title{
	border-color: #FFF;
}
#features .lazy-video{
	border-radius: 8px;
}
#features .content{
	text-align: center;
}
@media (min-width: 1024px){
	#features .content{
		text-align: left;
	}
	#features .section-title{
		text-align: left;
		margin-top: 4rem;
	}
}
@media (min-width: 1300px){
	#features .section-title{
		margin-top: 6rem;
	}
}

.slanted-top,
.slanted-both{
	position: relative;
	z-index: 1;
}
.slanted-top:before,
.slanted-both:before{
	content: '';
	position: absolute;
	background: inherit;
	width: 100%;
	top: 0;
	left: 0;
	transform: skewY(-5deg);
	transform-origin: left;
	z-index: -1;
}
.slanted-top:before{
	padding-top: 10%;
}
.slanted-both:before{
	height: 100%;
	padding-bottom: 10%;
}

@-webkit-keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeOutLeftBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes fadeOutLeftBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRightBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes fadeOutRightBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}
#quiz{
	overflow: hidden;
}
#quiz .content{
	padding: 5rem 3rem;
}
#quiz .slides>li:not(.animated) {
  display: none
}
#quiz .content h3{
	margin-bottom: 3rem;
}
#quiz input[type=radio] + label{
	width: 100%;
	margin: 0;
	border: 1px solid #CCC;
	padding: 1rem;
}
.dark #quiz input[type=radio] + label{
	border: 1px solid #666;
}
#quiz input[type=radio] + label:before,
#quiz input[type=radio] + label:after{
	display: none;
}
#quiz .input-field input[type=radio]:checked + label{
	border-color: #111A43;
}
.dark #quiz .input-field input[type=radio]:checked + label{
	border-color: #FFF;
}
#quiz label img{
	width: 100px;
}
#quiz label img.side{
	width: 50px;
	vertical-align: middle;
	margin: 0 1rem;
}
#quiz .error-color{
	display: inline-block;
}

#stories .card{
	margin: 1rem;
}
#stories .card h4{
	margin-bottom: -0.8rem;
}

footer{
	padding-top: 1%;
	background: rgb(20 29 69 / 7%);
}
footer ul li{
	display: inline-block;
	margin-right: 1rem;
}
footer ul li a{
	color: #76797f !important;
}
.footer-bottom{
	padding: 1% 0;
	background: rgb(20 29 69 / 19%);
	margin-top: 1.7%;
}
#gs-credits {
	display: inline-block;
	position: relative;
	font-size: 0.9rem;
	float: right;
	z-index: 2;
}
#gs-credits:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-top-color: #FFF;
	bottom: calc(2rem - 12px);
	left: 1rem;
	opacity: 0;
	transition: all 0.3s ease-out;
}
#gs-credits-content{
	position: absolute;
	opacity: 0;
	pointer-events: none;
	bottom: 2rem;
	left: 50%;
	transform: translate(-50%);
	background: #FFF;
	padding: 0.6rem;
	width: 8rem;
	border-radius: 3px;
	color: #444;
	text-align: center;
	transition: all 0.3s ease-out;
}
#gs-credits:hover #gs-credits-content,
#gs-credits:hover:before{
	opacity: 1;
	pointer-events: all;
}

.signup.card{
	background: #37b997;
	color: #FFF;
	margin-top: 4rem;
}
.signup.card .section-title{
	border-color: #FFF;
}
.signup.card ul li{
	margin-bottom: 0.5rem;
}
.signup.card ul li i{
	background: #FFF;
	color: #37b997;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin-right: 1rem;
}
#plans .item{
	margin: 2rem;
}
@media (min-width: 600px){
	#plans{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	#plans .item{
		width: calc(50% - 4rem);
	}
}
@media (min-width: 1024px){
	#plans .item{
		margin: 1rem;
		width: calc(33.3% - 2rem);
		max-width: 350px;
	}
}
#plans .item img{
	width: 100px;
}
#plans .item .list li{
	padding-left: 2rem;
}
#plans .item .list i{
	font-size: 1.2rem;
}
.no-data{
	text-align: center;
	margin-bottom: 4rem;
}
.no-data > i{
	font-size: 8rem;
	color: #c9e8e0;
}
#export_instructions blockquote{
	border: 1px solid #37b997;
	margin: 0;
	padding: 1rem;
}
#export_instructions h4{
	padding: 2rem 0;
	position: relative;
}
#export_instructions h4 img{
	position: absolute;
	width: 120px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
#import-form .progress.circular{
	vertical-align: middle;
	margin-left: 2rem;
}

.dialog .input-field.active input[type=number]~label:before,
.dialog .input-field.active input[type=text]~label:before,
.dialog .input-field.active select~label:before{
	background: #383838;
}
#filter-options ul{
	column-count: 2;
}
#filter-options li a{
	position: relative;
	padding-left: 2.5rem;
}
#filter-options li a:before{
	content: 'playlist_add';
	font-family: 'Material Icons';
	position: absolute;
	left: 0.7rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2rem;
}
#filter-options li a i.right{
	margin-top: 0.2rem;
	margin-left: 0.4rem;
}
.center-filters{
	display: flex;
	align-items: center;
}

dl{
	display: grid;
	grid-template-columns: 1fr 1.4fr;
}
dl dt{
	font-weight: 600;
	vertical-align: top;
}
dl dd{
	margin-left: 0;
	margin-bottom: 8px;
}
@media (min-width: 600px){
	.text-right-on-large{
		text-align: right;
	}
}
.trade-direction{
	display: inline-block;
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	text-align: center;
	font-size: 1.5rem;
	color: #FFF;
}
.dark .trade-direction{
	color: #121212;
}
@media (min-width: 600px){
	.trade-direction{
		margin-top: 0.9rem;
	}
}
.badge{
	display: inline-block;
	padding: 0.4rem 1rem;
	border-radius: 4px;
	border: 1px solid #CCC;
}
.badge.success-bg,
.badge.error-bg{
	color: #FFF;
}
.dark .badge.success-bg,
.dark .badge.error-bg{
	color: #121212;
	border-color: #666;
}
.badge.trade-profit{
	margin-top: 0.4rem;
}

.confetti {
  position: relative;
}
.confetti:before, .confetti:after {
  position: absolute;
  content: '';
  display: none;
  width: 160%;
  height: 120%;
  left: -30%;
  z-index: -1;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.confetti:before {
  top: -95%;
  background-image: radial-gradient(circle, #CFF09E 25%, transparent 25%),
	  radial-gradient(circle, transparent 25%, #A8DBA8 25%, transparent 35%),
	  radial-gradient(circle, #79BD9A 25%, transparent 25%),
	  radial-gradient(circle, #3B8686 25%, transparent 25%),
	  radial-gradient(circle, transparent 15%, #0B486B 20%, transparent 25%),
	  radial-gradient(circle, #CFF09E 25%, transparent 25%),
	  radial-gradient(circle, #A8DBA8 25%, transparent 25%),
	  radial-gradient(circle, #79BD9A 25%, transparent 25%),
	  radial-gradient(circle, #3B8686 25%, transparent 25%);
  background-size: 15% 15%, 25% 25%, 20% 20%, 25% 25%, 23% 23%, 15% 15%, 20% 20%, 15% 15%, 23% 23%;
}
.confetti:after {
  bottom: -95%;
  background-image: radial-gradient(circle, #CFF09E 25%, transparent 25%),
	  radial-gradient(circle, #A8DBA8 25%, transparent 25%),
	  radial-gradient(circle, transparent 15%, #79BD9A 20%, transparent 25%),
	  radial-gradient(circle, #3B8686 25%, transparent 25%),
	  radial-gradient(circle, #0B486B 25%, transparent 25%),
	  radial-gradient(circle, #CFF09E 25%, transparent 25%),
	  radial-gradient(circle, #A8DBA8 25%, transparent 25%);
  background-size: 20% 20%, 25% 25%, 23% 23%, 25% 25%, 20% 20%, 15% 15%, 25% 25%;
}
.confetti.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.confetti.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}
 @keyframes topBubbles {
 	0% {
	 background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
	}
	50% {
		background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
	}
	100% {
		background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
		background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
	}
}
@keyframes bottomBubbles {
	0% {
		background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
	}
	50% {
		background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
	}
	100% {
		background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
		background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
	}
}

.input-field.hasButton .right-assist{
	font-size: 1rem;
	right: 0;
}
.input-field.hasButton input{
	padding-right: 5.3rem;
}
#screenshot-placeholder{
	text-align: center;
	border: 1px solid #b0b0b0;
	border-radius: 4px;
	padding: 2rem 1rem 2.5rem;
	margin-top: 1rem;
}
#screenshot-placeholder i{
	font-size: 5rem;
	color: #c7c7c7;
}
#screenshot-placeholder p{
	color: #9c9c9c;
	margin-top: 0;
}
.dark #screenshot-placeholder{
	border-color: #737373;
}
.dark #screenshot-placeholder i{
	color: #484848;
}

.dyno-content .item{
	position: relative;
	padding: 1rem;
	border: 1px solid #CCC;
	border-radius: 3px;
	margin-bottom: 3rem;
	background: #f7f7f7;
	box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
}
.dark .dyno-content .item{
	background: #232323;
	border-color: #232323;
}
.dyno-content .delete{
	position: absolute;
	border-radius: 50%;
	text-align: center;
	font-size: 1.5rem;
	right: 0;
	bottom: 0;
	transform: translate(-50%, 50%);
	width: 45px;
	height: 45px;
	line-height: 43px;
	padding: 0;
	background: red;
	border-color: red;
}
.dark .dyno-content .delete{
	background: #cf6e7f;
	border-color: #cf6e7f;
}

.upload-sideimage{
	height: 70px;
	float: left;
	margin-right: 10px;
}
.sidelabel .upload-sideimage{
	float: none;
	height: 40px;
	vertical-align: top;
}

#app-install-banner{
	display: none;
}
#app-install-banner .content{
	display: flex;
}
#app-install-banner .material-icons.main{
	margin-top: 0.3rem;
	margin-right: 1rem;
}
#app-install-banner .row{
	flex-grow: 1;
}
@media (min-width: 1024px){
	#app-install-banner .col.m4{
		text-align: right;
	}
}

.show-on-browser,
.show-on-install{
	display: none !important;
}
@media (display-mode: browser){
	.show-on-browser{
		display: block !important;
	}
}
@media (display-mode: minimal-ui), (display-mode: standalone), (display-mode: fullscreen){
	.show-on-install{
		display: block !important;
	}
	.navigation .show-on-install{
		display: inline-block !important;
	}
}

#reports > li{
	padding: 0.2rem;
}
#reports dt{
	width: 60%;
}
#reports dd{
	width: 37%;
}
@media (min-width: 1024px){
	#reports dl{
		column-count: 2;
	}
}
.calendar{
	text-align: center;
}
.calendar .month{
	border: 1px solid #CCC;
	margin-bottom: 2rem;
}
.calendar .week-names,
.calendar .days{
	display: grid;
	grid-template-columns: repeat(7, 14.2%);
}
.calendar .month span{
	padding: 0.5rem 0;
}
.calendar .week-names span{
	font-weight: 600;
	border-bottom: 1px solid #CCC;
}
.calendar span.profit{
	background: #b8f5b8;
}
.calendar span.loss{
	background: #ffd2d2;
}
.dark .calendar span.profit{
	background: #244c24;
}
.dark .calendar span.loss{
	background: #4e2121;
}
#cal-detailed .days span strong{
	font-size: 2rem;
	font-weight: 400;
	color: #5e5e5e;
}
.dark #cal-detailed .days span strong{
	color: #d5d5d5;
}
#cal-detailed .days span a{
	margin-bottom: 0.3rem;
	display: inline-block;
}
@media (max-width: 1024px){
	.tab-controller.fixed{
		top: 40px;
	}
}
#contact-info{
	position: relative;
	padding: 20px;
}
#contact-info:before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	left: 20px;
	top: 0;
	background: #CCC;
}
#contact-info:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 20px;
	background: #CCC;
}
#contact-info li {
	position: relative;
	margin: 3rem 0;
	font-size: 1.2rem;
	line-height: 1;
	padding-left: 10px;
	transition: all 0.3s ease-out;
}
#contact-info li:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: #9da2b9;
	border-radius: 0 3px 3px 0;
	transition: all 0.5s ease-out;
}
#contact-info li small {
	color: #AAA;
}
#contact-info .social-icons{
	display: inline-block;
	width: 40px;
	border: 0;
	margin-top: 4px;
	margin-right: 4px;
}
#contact-info.active li:nth-child(1) {
	padding-left: 100px;
}
#contact-info.active li:nth-child(1):before {
	width: 90px;
}
#contact-info.active li:nth-child(2) {
	padding-left: 50px;
}
#contact-info.active li:nth-child(2):before {
	width: 40px;
}

#ticket-viewer{
	border: 1px solid #CCC;
	display: flex;
}
#ticket-viewer .list{
	width: 100%;
}
#ticket-viewer .list li{
	grid-template-columns: minmax(0, 1fr) 80px;;
	padding: 1rem;
	cursor: pointer;
}
#ticket-viewer .list li.active{
	background: rgb(255 255 255 / 90%);
}
.dark #ticket-viewer .list li.active{
	background: #333;
}
#ticket-viewer .ticket-convo{
	display: none;
}
@media (min-width: 1024px){
	#ticket-viewer .list{
		width: 30%;
		height: 560px;
		overflow-y: auto;
		border-right: 1px solid #CCC;
	}
	#ticket-viewer .ticket-convo{
		display: flex;
		width: 70%;
		height: 560px;
	}
}
.ticket-convo{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}
.ticket-convo ul{
	width: 100%;
	overflow-y: auto;
}
.ticket-convo .message{
	padding: 1rem;
}
.ticket-convo .dp{
	display: inline-block;
	width: 50px;
	margin-right: 10px;
}
.ticket-convo .dp span{
	display: block;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #CCC;
	border-radius: 50%;
	color: #FFF;
	font-size: 1.8rem;
}
.ticket-convo .message .content{
	display: inline-block;
	width: calc(100% - 70px);
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	vertical-align: top;
}
.dark .ticket-convo .message .content{
	background: #333;
}
.ticket-convo .message .content p{
	padding: 1rem;
	margin: 0;
}
.ticket-convo .message .content small{
	font-size: 70%;
	padding-left: 0.5rem;
}
.ticket-convo .reply-box{
	width: 100%;
	margin-top: auto;
	padding: 1rem;
	background: #fff;
	box-shadow: 0 -1px 10px rgb(0 0 0 / 25%);
}
.dark .ticket-convo .reply-box{
	background: #333;
}
i.giant{
	font-size: 3rem;
}
.ticket-convo .attachment{
	background: #9da2b9;
	display: block;
	color: #FFF !important;
	padding: 0.4rem 1rem !important;
	border: 0 !important;
}
.dark .ticket-convo .attachment{
	background: #414658;
	color: #e1e1e1 !important;
}
.ticket-convo .system{
	text-align: center;
	padding: 1rem;
}
.ticket-convo .system span{
	background: #e5e5e5;
	padding: 0.4rem 1rem;
	display: inline-block;
	border-radius: 10px;
}
.dark .ticket-convo .system span{
	background: #2f2f2f;
}
.btn-outline.red{
	border: 1px solid #b93737;
	color: #b93737;
}
.btn-outline.red:before {
	background: #b93737;
}
.offer-price{
	margin-top: -1rem;
}
.grecaptcha-badge {
	visibility: hidden;
}

#subscribe{
	display: none;
}
.subscribe-box{
	border: 1px solid #CCC;
	padding: 2rem;
	border-radius: 2px;
}
.subscribe-box .progress{
	margin: -2rem;
	margin-bottom: 2rem;
}
.subscribe-box hr{
	margin: 2rem -2rem;
	border-color: #CCC;
}
.dark .subscribe-box,
.dark .subscribe-box hr{
	border-color: #666;
}
.payment-options .input-field{
	margin-top: 0.6rem;
	margin-bottom: 0.6rem;
}
.payment-options .col{
	margin-bottom: 0;
}
.payment-options img{
	margin-top: 0.6rem;
}
.payment-options li{
	border: 1px solid #111A43;
	padding: 0.5rem 1.2rem;
	border-radius: 3px;
	margin-bottom: 1rem;
}
#card-element{
	padding: 0.8rem;
	border: 1px solid #111A43;
	border-radius: 3px;
}
.dark .payment-options li,
.dark #card-element{
	border-color: #5f6ca8;
}
.dark .ElementsApp input {
	color: #d5d5d5 !important;
}
@media (min-width: 1024px){
	.sheets.wide{
		width: 600px;
		right: -600px;
	}
}
.sheets .body .progress.linear{
	margin: -1rem;
	margin-bottom: 1rem;
}
#other-trades li{
	padding: 0.5rem;
}
#other-trades a.card{
	display: block;
	border: 0;
}