:root {
  --primary-color: #85BB65;
  --primary-color-dark: #6bd440;
}
html {
    scroll-behavior: smooth;
}
/** THEME **/
html body .content .content-wrapper {
    padding-top: 0.5rem;
}
html body.bg-full-screen-image {
    background: #6c3a8f;
    background-size: cover;
}
html body.bg-full-screen-image::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .1;
    width: 100%;
    height: 100%;
    background: url(/app-assets/images/svg/bg.svg) no-repeat center center fixed;
    background-size: cover;
}
.main-menu.menu-bg-default {
    background: -webkit-gradient(linear, left top, left bottom, from(#3B2667), to(#6c3a8f)) !important;
    background: -webkit-linear-gradient(#3B2667, #6c3a8f) !important;
    background: -moz-linear-gradient(#3B2667, #6c3a8f) !important;
    background: -o-linear-gradient(#3B2667, #6c3a8f) !important;
    background: linear-gradient(#3B2667, #6c3a8f) !important;
    -webkit-box-shadow: 0px 0px 8px rgba(62, 57, 107, 0.7) !important;
    box-shadow: 0px 0px 8px rgba(62, 57, 107, 0.7) !important; 
}
.btn-gradient-primary {
    color: #FFFFFF;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--primary-color)), color-stop(51%, var(--primary-color-dark)), to(var(--primary-color)));
    background-image: -webkit-linear-gradient(left, var(--primary-color) 0%, var(--primary-color-dark) 51%, var(--primary-color) 100%);
    background-image: -moz-linear-gradient(left, var(--primary-color) 0%, var(--primary-color-dark) 51%, var(--primary-color) 100%);
    background-image: -o-linear-gradient(left, var(--primary-color) 0%, var(--primary-color-dark) 51%, var(--primary-color) 100%);
    background-image: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color-dark) 51%, var(--primary-color) 100%);
    background-position: left center;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
}
.btn-gradient-secondary {
    color: #FFFFFF;
    background-image: -webkit-gradient(linear, left top, right top, from(#c37af1), color-stop(51%, #6c3a8f), to(#c37af1));
    background-image: -webkit-linear-gradient(left, #c37af1 0%, #6c3a8f 51%, #c37af1 100%);
    background-image: -moz-linear-gradient(left, #c37af1 0%, #6c3a8f 51%, #c37af1 100%);
    background-image: -o-linear-gradient(left, #c37af1 0%, #6c3a8f 51%, #c37af1 100%);
    background-image: linear-gradient(to right, #c37af1 0%, #6c3a8f 51%, #c37af1 100%);
    background-position: left center;
    -webkit-box-shadow: 0px 0px 16px 0 rgb(156 39 176 / 50%);
    box-shadow: 0px 0px 16px 0 rgb(156 39 176 / 50%);
    cursor: pointer;
}
.btn-gradient-primary:disabled,
.btn-gradient-secondary:disabled{
    opacity: 0.5;
}
.purple-gradient {
    background: -webkit-gradient(linear, left top, right top, from(#3B2667), to(#6c3a8f));
    background: -webkit-linear-gradient(left, #3B2667, #6c3a8f);
    background: -moz-linear-gradient(left, #3B2667, #6c3a8f);
    background: -o-linear-gradient(left, #3B2667, #6c3a8f);
    background: linear-gradient(90deg, #3B2667, #6c3a8f) !important;
}
html body a {
    color: var(--primary-color);
}
html body a:hover {
    color: var(--primary-color-dark);
}
html body button .la,
html body a .la {
    font-size: inherit;
}
.header-navbar .user-icon {
	margin-top: 4px;
	display: block;
}
.dropdown-notification .media-list {
    box-shadow: inset 0 -2px 6px rgba(1,1,1,.1);
}
html .cd-horizontal-timeline .events a.selected::after,
html .cd-horizontal-timeline .filling-line {
    background-color: #9c27b0;
    border-color: #9c27b0;
}
.vertical-compact-menu .main-menu .navigation-brand {
    text-align: center;
}
.vertical-compact-menu .main-menu .navigation-brand img {
    width: 60px;
}
.vertical-compact-menu .main-menu .navigation > li > a {
    padding: 0.6rem;
}
.vertical-compact-menu .main-menu .navigation > li > a > span {
    display: block;
	visibility: visible;
}
.main-menu.menu-dark .menu-content {
    background: #3B2667 !important;
}
.login-page .footer,
.login-page .footer a{
	color: #fff;
}
.main-menu.menu-dark .navigation > li.open > a {
    color: inherit;
    background: inherit;
    border-right: 0;
}
a.disabled:hover {
	color: inherit !important;
	cursor: default;
	background-color: inherit;
}
.page-presale .nav-presale a,
.page-dashboard .nav-dashboard a,
.page-buy .nav-buy a,
.page-wallet .nav-wallet a,
.page-faq .nav-faq a,
.page-account .nav-account a{
	color: #fff !important;
    font-weight: 700;
}
/** END THEME **/

/** BOOTSTRAP **/
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.btn-primary:hover {
    background-color: var(--primary-color-dark) !important;
    border-color: var(--primary-color-dark) !important;
}
.bg-light {
    background-color: #eee !important;
}
.border-light {
  	border-color: rgb(199 184 255 / 40%) !important;
}
.border-primary {
    border: 1px solid var(--primary-color) !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color-dark) !important;
    border-color: var(--primary-color-dark) !important;
}
.text-break {
    word-break: break-word!important;
    word-wrap: break-word!important;
}
html .table th, 
html .table td {
    padding: 0.75rem 1rem;
}
.modal-header {
	border: 0;
}
.page-item.active .page-link {
    background-color: var(--primary-color);
    border: 0;
}
.pagination .page-link {
    color: var(--primary-color);
    border: 0;
}
.list-style-disc {
	list-style: disc;
}
.list-style-circle li,
.list-style-disc li {
	list-style: inherit;
}
.tooltip {
	z-index: 100001;
}
.disabled {
    opacity: .65;
}
.datepicker td, 
.datepicker th {
    padding: 8px;
}
@keyframes spinner-border {
  to { transform: rotate(360deg); }
} 
.spinner-border{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}
.spinner-border-sm{
    height: 1.5rem;
    width: 1.5rem;
    border-width: .2em;
}
/** END BOOTSTRAP **/

/** PLUGINS **/
.form-control.datepicker {
	padding: 0.75rem 1rem;
}
html .country-select {
    display: block;
}
.intl-tel-input {
  display: table-cell;
}
.intl-tel-input .selected-flag {
  z-index: 4;
}
.intl-tel-input .country-list {
  z-index: 5;
}
.input-group .intl-tel-input .form-control {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
}
html .iti__country-list{
	z-index: 3;
}
html .iti {
	display: block;
}
/** END PLUGINS **/