input[type="text"], input[type="number"], input[type="email"], input[type="password"], input[type="url"], input[type="tel"], input[type="date"], select, textarea{
    box-sizing: border-box;
    border: 1px solid #cacaca;
    border-radius: 3px;
    background-color: #fff;
    outline-color: inherit;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0.75em;
    height: auto;
    color: #666;
}
input[type="text"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="url"]:focus, input[type="tel"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
    border: 1px solid #cacaca;    
    outline: inherit;
    box-shadow: 0 0 5px #cacaca;
}
input[disabled] {
    background-color: #eee;
}
button, .button {
    display: inline-block;
}
button:active, .button:active {
    border-color: #1e73be;
}
.button:hover {
    background-color: #2d7dc3;
}
.button:active {
    background-color: #81a6c7;
}
button:disabled, .button:disabled, button[disabled], button:disabled:hover, .button:disabled:hover, button[disabled]:hover {
    border-color: #81a6c7;
    background-color: #81a6c7;
}
.breadcrumbs {
	color: #676d73;
}
.breadcrumbs a {
	color: #676d73;
}
.breadcrumbs a:hover {
	color: #2d7dc3;
}
.hover:hover {
	color: #2d7dc3;
}
.popup-active {
  overflow: hidden;
}
.popup-overlay {
  display: none;
}
.popup-overlay.show{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(51,51,51,.8);
    overflow: hidden;
}
.popup-body{
    width: 90%;
    max-width: 550px;
    max-height: 90%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    border-radius: 3px;
    position: relative;
}
.popup-header {
    padding: 1em 1.5em;
    border-bottom: 1px solid #ddd;
}
.popup-header h1 {
    margin: 0;
    font-size: 20px;
    line-height: 1.55em;
}
.popup-header .close {
    cursor: pointer;
    color: #777;
    padding: 0;
    position: absolute;
    top: 0;
    right: 2px;
    background-color: transparent;
    border: 0;
    font-size: 2em;
    margin-top: -10px;
}
.popup-content{
    padding: 1em 1.5em 1.5em;
}
.popup-body footer {
    padding: 1em 1.5em;
    border-top: 1px solid #ddd;
}
.stretch {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.stretch .stretch-inner {
    max-width: 1052px;
    margin: auto;
    padding-left: 29px;
    padding-right: 29px;
}
.heading {
    font-size: 30px;
    line-height: 1.4em;
    margin-bottom: 25px;
}
@media screen and (min-width: 767px) {
.heading {
    font-size: 2.3em;
}
}
.align-right {
    text-align: right;
}
.center{
    text-align: center;
}
.bold {
    font-weight: 700 !important;
}
.light {
    color: #878787;
}
.small {
    font-size: 13px;
}
.show {
    display: block;
}
.hide {
    display: none;
}
.margin-top{
    margin-top: 20px;
}
.margin-bottom{
    margin-bottom: 20px;
}
.padding-top{
    padding-top: 20px;
}
.padding-bottom{
    padding-bottom: 20px;
}
.light-green{
    color: #00ad62;
}
.strike-through{
	text-decoration: line-through;
}
.list-style-none {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pointer {
    cursor: pointer;
}
.bkg-props {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bkg-props .overlay {
    display: flex;
    align-items: center;
    min-height: 500px;
    padding: 50px 0;
    background-color: #353535;
    background-color: rgba(53,53,53,.4);
}
@media screen and (min-width: 767px) {
.bkg-props .overlay {
    min-height: 650px;
}
}
.bkg-props .heading {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
}
@media screen and (min-width: 767px) {
.bkg-props .heading {
    font-size: 2.9em;
}
}
/* How it works */
.hiw {
    margin: 60px 0;
}
.hiw .heading {
    margin-bottom: 30px;
}
@media screen and (min-width: 950px) {
.hiw .flex {
    display: flex;
}
}
.hiw .item {
    display: flex;
    flex: 1;
    margin-bottom: 30px;
}
@media screen and (min-width: 950px) {
.hiw .item:not(:last-child) {
    margin-right: 20px;
}
}
.hiw .number {
    font-family: cursive;
    color: #1e73be;
    font-size: 65px;
    line-height: .9;
    font-weight: bold;
    padding-right: 15px;
}
.hiw .head {
    font-weight: bold;
    margin-bottom: 5px;
}
.flex-block{
	display: flex;
	justify-content: space-between;
	padding-bottom: 10px;
}
.flex-block .label{
	flex: 1 1 0;
}
.flex-block .value{
	flex: 1 1 0;
}
.js-notice{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 999999;
	padding: 10px 25px;
}
@media (max-width: 500px) {
.js-notice{
	padding: 15px;
}
}
.js-notice .items{
  display: flex;
	align-items: center;
	justify-content: space-between;
}
.js-notice .text{
	flex: 5 1 0;
	padding-right: 15px;
}
.js-notice .text a {
	color: inherit;
    opacity: 0.8;
    text-decoration: underline;
}
.js-notice .remove {
    cursor: pointer;
    padding: 0;
    font-size: 1.6em;
}
.js-notice.success{
	color: #fff;
	background-color: #44B03E;
}
.js-notice.error{
	color: #fff;
	background-color: #ff0000;
}
.js-notice.info{
	color: #9f6000;
	background-color: #feefb3;
}
.js-notice.info a {
    display: inline-block;
    text-decoration: underline;
    color: #9f6000;
}
.error-text {
    text-align: left;
    color: #900;
    display: none;
}
/* Loader grey */
.loader-grey{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999999;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.loader-grey .loader{
    border: 14px solid #eaeaea;
    border-radius: 50%;
    border-top: 14px solid #888;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.loader-grey p{
	font-size: 1.5em;
	margin-top: 10px;
}
/* Safari - Required for all loaders */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Loader grey end */
.pagination a, .pagination span {
  color: inherit;
  padding: 10px 15px;
  margin-right: 4px;
  border: 1px solid #d0d0d0;
}
.pagination .current {
  color: #fff;
  background-color: #1e73be;
  border: 1px solid #1e73be;
}
.pagination a:hover {
    background-color: #ddd;
}
/* Temporarily hide woo wallet back btn */
.page-id-25074 .dashicons-editor-break{
    display: none;
}
/* Temporary woo wallet page */
.page-id-25074 .entry-content{
    padding: 20px;
    max-width: 800px;
    margin: auto;
}
.page-form-width {
    max-width: 450px;
    margin: auto;
    padding: 30px 15px 40px;
}
.body-width {
    max-width: 900px;
    margin: auto;
    padding: 20px 10px 30px;
}
.sub-heading-104 {
    font: 22px arial;
    display: block;
    margin-bottom: 15px;
}
.disable-btn{
    pointer-events: none;
}
/* bottom menu */
.bottom-menus {
    display: none;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 52px;
    color: #666;
    background-color: #fff;
    z-index: 9;
    padding: 3px 10px 0;
    -webkit-box-shadow: 0 1px 10px rgba(170,170,170,1);
    -moz-box-shadow: 0 1px 10px rgba(170,170,170,1);
    box-shadow: 0 1px 10px rgba(170,170,170,1);
}
.bottom-menus .menu {
    position: relative;
}
.bottom-menus span:hover {
    opacity: 0.7;
}
.bottom-menus a {
    display: block;
    color: #666;
}
.bottom-menus .menu-icon {
    font-size: 20px;
}
.bottom-menus .menu-title {
    line-height: 1.2;
}
.bottom-menus .selected a, .current-menu-item {
    color: #1e73be;
}
@media (max-width: 830px) {
    .logged-in .ast-container {
        margin-bottom: 52px;
    }
    .logged-in .remove-footer-margin {
        margin-bottom: -52px;
    }
    .logged-in .site-header {
        display: none;
    }
    .logged-in .bottom-menus {
        display: flex;
    }
}
.unread-message {
    position: absolute;
    top: -5px;
    right: 3px;
    color: red;
    font-size: .8em;
    font-weight: 700;
}
/*black friday*/
.sale-wrap {
    height: 40px;
}
@media (max-width: 610px) {
.sale-wrap {
	height: 100px;
}
}
a.sale-notice {
    display: block;
    width: 100%;
    padding: 5px 15px;
    /*background-color: #0170B9;*/
    background-color: #222;
    color: #fff;
    line-height: normal;
}
.payment-plan .sale-notice {
    margin-bottom: 20px;
}
.sale-notice-fixed {
    position: fixed;
    top: 0;
    z-index: 999999;
}
.sale-notice .items {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
@media (max-width: 610px) {
.sale-notice .items {
    flex-direction: column;
    gap: 0;
    font-size: 15px;
}
}
.sale-notice .middle {
    font-size: 1.2em;
}
@media (max-width: 610px) {
    .sale-notice .middle {
        margin-bottom: 5px;
    }
}
.sale-notice .side {
    color: #ffeb3b;
}
.sale-notice .timerCountDown {
    display: flex;
    gap: 10px;
}
.sale-notice .timerCountDown span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.sale-notice .timerCountDown span span {
    padding: 0 4px;
    background-color: yellow;
    border-radius: 3px;
    color: #000;
    font-weight: 700;
    line-height: 1.3;
    font-size: 0.9em;
}
.sale-notice .timerCountDown span small {
    line-height: 1.7;
    font-size: 75%;
}
/* Simple notice */
.simple-notice a {
    background-color: #1e73be;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    padding: 7px 20px;
    font-weight: 700;
    font-size: 16px;
}
.simple-notice a:hover {
    color: #ddd;
}
.simple-notice .icon {
    margin-left: 10px;
    color: #ffc979;
}
.app-download-notice {
    max-width: 800px;
    margin: auto;
    padding: 60px 0;
    font-size: 16px;
}
.app-download-btn {
    color: #fff;
    background-color: #1e73be;
    border: none;
    border-radius: 100px;
    display: inline-block;
    font-weight: 700;
    padding: 12px 24px;
    margin: 20px 0;
}
.app-download-btn.disabled {
    color: #fff;
    background-color: #81a6c7;
}