:root{
	--grey1: #EFF1E5;
	--grey2: #F2F4F6;
	--grey3: #D9D9D9;
	--orange1: #FF9300;
	--orange2: #FDF2E4;
	--orange3: #F39007;
	--green1: #00C566;
	--blue1: #1F12D9;
	--blue1-rgb: 31, 18, 217;
	--blue2: #1D1770;
	--blue2-rgb: 29, 23, 112;
	--purple1: #DDDCEB;
	--purple2: #CEC7F5;
	--black1: #354052;
	--black1-rgb: 53, 64, 82;
}
html{
    position: relative;
    min-height: 100%;
}
body{
	margin:0 auto;
	background: var(--grey1);
	font-size: 12px;
    margin-bottom: 200px;
}
main{
	margin: 0 auto;
    max-width: 450px !important;
    overflow: hidden;
    padding: 0 0.5rem;
}

a{ color: var(--blue1); }
.color-black1{ color: var(--black1); }
.color-blue1{ color: var(--blue1); }
.color-blue2{ color: var(--blue2); }
.badge-purple{ background-color: var(--purple1); color: var(--blue1); }
.text-small{ font-size: 11px; }
.text-small2{ font-size: 10px; }
.text-big{ font-size: 1.1rem; }
.opt-img{
    background-repeat: no-repeat;
    background-size: 15px auto;
    background-position: left center;
    padding-left: 25px;
}
.bg-primary-light{    background: rgba(var(--blue1-rgb), 0.07);}
.badge-primary-light{
    background: rgba(var(--blue1-rgb), 0.07);   
    color: rgba(var(--blue1), 0.5);
}
.badge-outline-warning{
    border: solid 1px var(--orange1);
    color: var(--orange1);
    font-weight: normal;
    font-size: 9px;
}
.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle, .btn-outline-light:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: unset;
}

.rounded-small{ border-radius: 0.5rem; }
.border-gradient-bluegreen{
    background-image: radial-gradient(circle at 100% 100%, transparent 5px, #1f12d9 5px, #1f12d9 6px, transparent 6px), linear-gradient(to right, #1f12d9, #00c566), radial-gradient(circle at 0% 100%, transparent 5px, #00c566 5px, #00c566 6px, transparent 6px), linear-gradient(to bottom, #00c566, #00c566), radial-gradient(circle at 0% 0%, transparent 5px, #00c566 5px, #00c566 6px, transparent 6px), linear-gradient(to left, #00c566, #1f12d9), radial-gradient(circle at 100% 0%, transparent 5px, #1f12d9 5px, #1f12d9 6px, transparent 6px), linear-gradient(to top, #1f12d9, #1f12d9);
    background-size: 6px 6px, calc(100% - 12px) 1px, 6px 6px, 1px calc(100% - 12px);
    background-position: top left,top center,top right,center right, bottom right,bottom center,bottom left,center left;
    background-repeat: no-repeat;
}
#header{
	background: white;
}
.input-group.rounded{ border-radius: 0.25rem !important; }
.fakeSelect{
    background: yellow;
    z-index:99;
}

/*--- Dashboard ---*/
.dashboard-highlight{
	background: var(--blue1);
	color: white;
}
.dashboard-highlight.rounded{ border-radius: 1.2rem !important; }
.dashboard-asset{
	background: var(--purple1);
	color: var(--blue2);
	width: 33.33%;
}
.dashboard-asset h2{ font-size: 1.2rem; }
.dashboard-level-subtitle{
	font-size: 14px;
	font-weight: bold;
}
.dashboard-level-desc, .dashboard-level .text-secondary{ font-size: 10px; }
.dashboard-level .progress{ height: 0.5rem; }
.dashboard-level-progress-desc{ font-weight: 600; }
.dashboard-level .dashboard-level-value::before{
	content: ' ';
	position: absolute;
	z-index: 10;
	width: 66px; height: 66px;
}
.dashboard-level .dashboard-level-value{
	z-index: 10;
	width: 66px; height: 66px;
	font-size: 25px;
	font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dashboard-level-energy .dashboard-level-value::before{ background: url('../img/adm/lvl-energy-img1.png') center center no-repeat; }
.dashboard-level-energy .dashboard-level-value{
	color: var(--blue1);
	background: url('../img/adm/lvl-energy-img2.png') center center no-repeat;
}
.dashboard-level-energy .dashboard-level-progress-desc{ color: var(--blue1);}
.dashboard-level-energy .progress-bar{ background-color: var(--blue1); }

.dashboard-level-manager .dashboard-level-value::before{ background: url('../img/adm/lvl-manager-img1.png') center center no-repeat; }
.dashboard-level-manager .dashboard-level-value{
	color: var(--orange1);
	background: url('../img/adm/lvl-manager-img2.png') center center no-repeat;
}
.dashboard-level-manager .dashboard-level-progress-desc{ color: var(--orange1); }
.dashboard-level-manager .progress-bar{ background-color: var(--orange1); }

.dashboard-quicklink a{ color: var(--blue2); text-decoration: none;}

.dashboard-subtitle{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.dashboard-subtitle b{ font-size: 14px; }

.dashboard-product-countdown{
	margin-bottom: .5rem;
	color: var(--orange3);
	background: var(--orange2);
	font-size: 10px;
	display: inline-flex;
	align-items: center;
	padding: 3px 7px;
	border-radius: 5px;
}
.dashboard-product-section1{ 
	border-left: solid 3px var(--purple2);
    padding-left: 0.5rem;
}

.dashboard-product-subtitle{ font-size: 15px; color: var(--blue2); font-weight:bold; }
.dashboard-product-price{
	color: var(--green1);
	font-size: 15px;
	font-weight: bold;

}
.dashboard-product-link{
	display: inherit;
	background: var(--grey2);
	border-radius: 5px;
	width:23px; height: 23px;
	text-align: center;
}

.dashboard-info-subtitle{	color: rgba(var(--black1-rgb), 0.7); }
.dashboard-info-value{
	color: var(--black1);
	font-size: 16px;
	font-weight: bold;
}
.dashboard-info-subtitle.big{ font-size: 16px; }
.dashboard-info-value.big{ font-size: 20px; font-weight: 600; }

/*--- Product ---*/
.content-subtitle-list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.content-subtitle-item{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    color: var(--blue2);
    text-decoration: none !important;
}
.content-subtitle-item:hover{ color: var(--blue2); }
.content-subtitle-item.active, .content-subtitle-item.active:hover{ color: var(--blue1); }

.content-subtitle-opt-list{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.content-subtitle-opt-item{
    background: var(--grey3);
    color: rgba(var(--blue2), 0.5);
    border: solid 1px var(--grey3);
}
.content-subtitle-item.active{
    background: transparent;
    color: var(--blue1);
    /*border-color: var(--blue2);*/
}
.progress.sm{
    height: 6px;
}
.product-progress{ min-width: 60px; }
.product-progress .progress-bar{ background-color: var(--blue1); }
.product-progress-desc{
    color: var(--blue1);
    font-weight: 600;
    font-size: 10px;
}
.product-line1{ min-height: 23px; }
.product-line2{ min-height: 16px; }
.product-desc-list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(var(--blue2-rgb), 0.1);
}
.product-desc-item{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.product-desc-list .product-desc-item:not(:last-child){
    border-right: solid 1px rgba(var(--blue2-rgb), 0.2);
}
.product-desc-item-content{
    display: flex;
    flex-direction: column;

}
.product-desc-item-value{
    font-weight: bold;
    font-size: 14px;
}
.product-desc-item-caption{
    color: rgba(var(--blue2-rgb), 0.7);
    font-size: 11px;
}

/*--- List View ---*/
.page-header{
	padding: 15px 0;
	color: var(--white);
	background-color: var(--blue1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.page-header-subtitle{
	margin-left: 15px;
	font-size: 16px;
	font-weight: bold;
}
.new-wallet-header{
    color: var(--white);
    background: linear-gradient(105deg, #1F12D9 -25.58%, #5607F0 49.42%, #7B61FF 92.81%);
}
.lp-header{
    color: var(--white);
    background: linear-gradient(107deg, #2B0ABB -18.42%, #614BC3 43.49%, #33BBC5 129.78%);
    position: relative;
    z-index: 1;
}
.lp-header::before{
    content: ' ';
    position: absolute;
    z-index: -1;
    background: url('../img/adm/lp-header-bg.png') center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.content-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--white);
	color: var(--blue2);
	padding: 15px 0;
}
.content-header a{ color: var(--blue1); }
.content-subtitle{
	padding: 10px 0;
	color: var(--blue2);
}
.btn-group-bullet{
    /*width: 268px;*/
    width: 100%;
    height: 35px;
    background-color: #dae0e5;
    border-radius: 22px;
    position: relative;
    display: flex;
    justify-content: space-around;
    -webkit-box-align: center;
    align-items: stretch;
    user-select: none;
    padding: 0 2px;
}

.btn-group-bullet .selected.selected2{
    left: unset;
    right: 2px;
}
.btn-group-bullet p{
    z-index: 2;
    margin: 0px; padding: 0 15px;
    opacity: 0.5;
    transition: opacity 0.3s ease 0s;
    line-height: 1.6em;
    position: relative;
    display: flex;
    align-items: center;
}
.btn-group-bullet .active{
	color: white;
    opacity: 1;
}
.btn-group-bullet p::after{
    width: 100%;
    height: 35px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    transition: left 0.3s ease 0s;
    top: 0;
    z-index: -1;
    line-height: 35px;
    padding: 0 15px;
    color: transparent;
}
.btn-group-bullet p:first-child::after{ content: 'wrap'; }
.btn-group-bullet p:last-child::after{ content: 'Item 2'; }
.btn-group-bullet p:nth-child(3)::after{ content: 'Item 1'; }
.btn-group-bullet p:nth-child(2)::after{ content: 'unwrap'; }
.btn-group-bullet .active::after{
    background-color: var(--blue1);

}

.list-view-item{
	padding: 10px 0;
	border-bottom: solid 1px rgba(0,0,0,0.1);
}
.list-view-title, .list-view-value{
	font-size: 15px;
	font-weight: 600;
	color: var(--blue2);
}
.lp-total-stakes{
    background: linear-gradient(180deg, rgba(29, 23, 112, 0.03) 0%, rgba(215, 214, 230, 0.70) 0.01%, rgba(255, 255, 255, 0.70) 128.92%);
}
.lp-total-stakes::before{
    content: ' ';
    position: absolute;
    z-index: 2;
    background: url('../img/adm/lp-chart-bg') center center no-repeat;
}
.lp-total-stakes-subtitle{
    color: var(--blue2);
}
.lp-total-stakes-subtitle-desc{
    color: var(--black1);
}

/*--- Modal ---*/
.modal-header{ align-items: center; padding: 0.5rem;}
.modal-header-icon{ width: 23px; height:23px; display:flex; justify-content:center; align-items:center; border-radius: 5px;}
.modal-header h5{ font-size: 15px; }
.modal-header .close{ border-radius: 15px; width: 26px; height: 26px; padding:0; margin:0; opacity: 1;}
.modal-header .close span{ font-weight: 400; }
.modal-content{ border-radius: 1rem; }
.modal-body .nav-tabs{ font-size: 12px; }
.modal-body .nav-tabs .nav-item.show .nav-link, .modal-body .nav-tabs .nav-link.active{
		border: solid 1px var(--blue1);
}
.modal-footer{ padding: 0.5rem; }
.btn-secondary{
    border-radius: 15px;
    background: var(--purple1);
    color: rgba(var(--blue2-rgb), 0.5);
    border-color: var(--purple1) !important;
}
.btn-secondary.active{
	color: var(--blue2) !important;
	background-color: white !important;
	border-color: var(--blue2) !important;
}
.btn-secondary.bg-transparent.active{
	background-color: transparent !important;
}
.btn-secondary:hover {
    background-color: var(--blue1);
    border-color: var(--blue1);
}
.btn-sm{
	padding: 0.2rem 1.5rem;
}


/*--- Footer ---*/
footer{
	background: var(--blue1);
	margin: 0 auto;
	color: var(--white);
    /*max-width: 450px !important;*/
    overflow: hidden;

    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;

}
footer a{ color: var(--white); text-decoration: none;}
footer a:hover{ opacity:0.7; color: inherit; text-decoration: inherit; }
.footer-subtitle{
	display: flex;
	justify-content: start;
	align-items: center;
	margin-bottom: 7px;
}
.footer-subtitle span{
	margin-left: .5rem;
	font-weight: bold;
}
.footer-socialmedia-link{
	background-color: rgba(255,255,255, 0.3);
    border-radius: 5px;
    padding: 5px 15px;
    text-align: center;
    margin-right: 20px;
}


/*--- Classes ---*/
.font-size-big{ font-size: 1.8rem; }
.font-weight-medium{ font-weight: 600; }

/*--- -Bootstrap --*/
.text-primary { color: var(--blue1) !important; }
.text-success{ color: var(--green1) !important; }
.rounded {	border-radius: 0.75rem!important; }
.border-primary{ border-color: var(--blue1) !important; }
.border-success{ border-color: var(--green1) !important; }
.btn{
	font-size: 12px;
	border-radius: 30px;
}
.btn-light{	color: var(--blue1); }
.btn-primary {
    background-color: var(--blue1);
    border-color: var(--blue1);
}
.btn-primary:hover, .btn-outline-primary:hover {
    background-color: rgba(var(--blue1-rgb), 0.8);
    border-color: rgba(var(--blue1-rgb), 0.8);
}
.btn-outline-primary {
    color: var(--blue1);
    border-color: var(--blue1);
}
.navbar-light .navbar-toggler {
    color: transparent;
    border: transparent;
}
.nav-tabs { border-bottom: unset; }
.nav-tabs .nav-link{
    border-radius: 15px;
    border: none;
    padding: 0.2rem 1rem;
    background: var(--purple1);
    color: rgba(var(--blue2-rgb), 0.5);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--blue2);
}

.navbar-right-container{ width:100%; }

.table-responsive::-webkit-scrollbar {
    -webkit-appearance: none;
}

.table-responsive::-webkit-scrollbar:vertical {
    width: 12px;
}

.table-responsive::-webkit-scrollbar:horizontal {
    height: 12px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.table-responsive::-webkit-scrollbar-track {
    border-radius: 10px;  
    background-color: #ffffff; 
}


@media (max-width: 992px) {
      .navbar-collapse{ position: absolute; }
      .navbar-collapse.show .navbar-nav{ background-color: rgba(255,255,255,0.965); }
      .navbar-collapse.collapsing .navbar-nav {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        left: -45%;
        transition: all 0.2s ease;
      }
      .navbar-collapse.show .navbar-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        flex-direction: column;
        height: auto;
        transition: left 0.35s ease;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        z-index: 999;
      }
      .nav-item{ margin-top: 1rem; margin-bottom: 5px; }
      .nav-link{ font-size: 1rem; font-weight: 400; }
      .nav-item.active .nav-link{ font-weight: bold; }
      .navbar-right-container{ width: unset; }
}