/* width */
::-webkit-scrollbar {
    width: 0px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background-color: rgb(239, 246, 255); /* This is fallback font for old browsers */
    background-color: var(--bg-color);
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background-color: rgb(239, 246, 255); /* This is fallback font for old browsers */
    background-color: var(--bg-color);
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: rgb(239, 246, 255); /* This is fallback font for old browsers */
    background-color: var(--bg-color);
}

:root{
    --first-color: rgb(129, 48, 210);
    --second-color: #6B06BF;
    --bg-color: #f2f8fb;
    --main-color: rgb(129, 48, 210);
    --color-default: #6B06BF;
    --color-light: #A669D8;
    --color-text: rgb(22,22,63);
}

.hidden {
    display: none !important;
}


/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 99999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .1), rgba(0, 0, 0, .1));
    background: -webkit-radial-gradient(rgba(20, 20, 20, .1), rgba(0, 0, 0, .1));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


html{
    font-size: 15px;
}

.hidden{
    display: none !important;
}
.min-height-60{
    min-height: 60vh;
}
div#panel{
    background: #0e1726 !important;
    height: 80px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] { -moz-appearance:textfield; }


body.buycrypto{
    background-color: var(--bg-color);
}
body.is_iframe div#content {
    padding-top: 2rem;
}

.profile-left {
    box-shadow: 1px 1px 13px rgb(0 0 0 / 6%);
    padding: 20px 20px;
    border-radius: 10px;
    background: #ffffff;
}
.image-area {
    position: relative;
    width: 100%;
    text-align: center;
}
.image-area .user-image {
    height: 180px;
    width: 165px;
    border-radius: 50%;
    margin: 0 auto;
}
a.follow-area {
    position: absolute;
    right: 10px;
    top: 5px;
    background-image: linear-gradient(to right, #04befe 0%, #4481eb 100%);
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}
.info-area {
    text-align: center;
    margin-top: 20px;
}
.info-area h6 {
    text-align: center;
    letter-spacing: 0;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 3px;
}
.info-area p {
    text-align: center;
    letter-spacing: 0;
    font-weight: 500;
    margin-top: 0;
    font-size: 12px;
    color: #949494;
    margin-bottom: 5px;
}
.info-area button {
    background-image: linear-gradient(to right, #04befe 0%, #4481eb 100%);
    color: white;
    border: 0;
    padding: 3px 18px;
    font-size: 12px;
    border-radius: 15px;
}

.font-15 {
    font-size: 15px !important;
}
.btn-opcion-grid{
    border:none !important;
    background-color: transparent !important;
}
.side-app {
    padding: 0 20px 0 20px;
}

.badgg {
    display: block!important;
    text-align: center;
}
.badge-dot {
    width: 47px;
    margin-right: 11px;
    height: 45px;
    padding-top: 9px!important;
    border-radius: 50%;
}
.badge{
    font-size: 14px !important;
}


.border-input-time{
    border-top: none;
    border-left: none;
    border-right: none;
}

.text-sm-11 {
    font-size: 11px;
}
.text-xs{
    font-size: .75rem !important;
    line-height: 1rem;
}
.text-primary-darker {
    color: var(--color-primary-darker);
}
.text-text-background-dark-4{
    color: var(--color-text-background-dark-4);
}
.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.s-tag {
    display: inline-block;
    align-items: center;
    padding: var(--spacing_0_5) var(--spacing_1);
    width: fit-content;
    gap: 4px;
    height: fit-content;
    border-radius: 12px;
    background-color: var(--system-20);
}

.z-index-1000{
    z-index: 999;
}

a {
    color: var(--color-default);
    text-decoration: none !important;
}

section {
    padding: 3rem 0;
    overflow: visible;
}
p{ font-size: calc(0.5rem + 1vw); }

.bg-blue-50{
    background-color: #f0f5ff;
}
.color-main{
    color: var(--main-color);
}

.text-color-violeta-default{
    color: var(--color-default);
}
.float-left{
    float: left;
}
svg { pointer-events: none;}
.text-underline{
    text-decoration: underline;
}
@media (max-width: 991px){
    .display-2 {
        font-size: 4.2rem !important;
    }
    .display-3 {
        font-size: 3.2rem !important;
    }
    .home #hero {
        height: auto;
    }
}
@media (max-width: 767px){
    html{
        font-size: 12px;
    }
    .display-2,.display-3 {
        line-height: normal !important;
    }
    
}

/*HEADER-----------------*/
header#header {
    /* background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
    box-shadow: none; */
    height: auto;
}
header#header:after{
    content: '';
    height: 1px;
    clear: both;
}
#header-secondary {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
}

#header-secondary .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

nav#navbar {
    margin-bottom: 1rem;
    box-shadow: 0 1rem 1rem rgba(0,0,0,.10)!important;
}
nav#navbar.navbar a{
    font-size: 1.075rem;
    text-decoration: none;
}
nav#navbar.navbar a:hover {
    color: var(--color-light);
}
nav#navbar.navbar a img {
    padding: 0;
    margin: 0;
    height: 50px;
}
nav#navbar.navbar .navbar-toggler-icon{
    border-bottom: 3px solid;
}

.navbar .user-menu a,  .navbar .user-menu a:focus {
    justify-content: left;
}
@media (max-width: 991px){
    
    nav#navbar.navbar a {
        font-size: 1.175rem;
        font-weight: 500;
        padding: 0px;
    }
    .navbar ul {
        display: block !important;
    }
    .navbar .dropdown ul {
        display: block;
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        z-index: 1;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        transition: none;
        padding-left: 2rem;
        padding-top: 0;
        font-weight: 400;
    }
    section {
        padding: 1rem 0;
        overflow: visible;
    }
}


@media (max-width: 991px){
    #header.fixed-top{
        position:relative;
    }
    nav#navbar.navbar .navbar-toggler {
        display: flex !important;
        flex-direction: column;
        height: 2.5rem;
    }
}


/*BANNER ------------------*/
#hero {
    margin: 0;
    padding: 0;
}
#hero.banner{
    background-color:#ffffff;
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: 66%;
    border-bottom-width: 0px;
}
@media (max-width: 991px){
    #hero {
        margin-bottom: 0;
    }
}
@media (max-width: 412px){
    #hero {
        background: none !important;
        margin-bottom: 100px;
        height: auto;
    }
}
#hero h1, #hero h2 {
    color:#000000;
}
#hero .wrapper{
    margin: 0 auto;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}
.section-title p{
    color: black;
}

.text-color-default{
    color:var(--main-color) !important;
}

.hr-separate{
    margin: 2rem auto 0;
    padding-top: 1rem;
    color:var(--main-color) !important;
    background:linear-gradient(
        to right,
        var(--main-color)0%,
        var(--main-color) 50%,
        rgb(174,72,198) 50%,
        rgb(174,72,198) 100%
      );
    opacity: 1;  
    min-width: 100px;
    width: 10vw;
}

.gradient-custom-login {
    /* fallback for old browsers */
    background: #fccb90;
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
}
.btn-default{
    background-color: var(--main-color) !important;
    color: #ffffff !important;
}

.input-accepta-politica{
    margin-right: 8px !important;
}

header .navbar a.btn-header.btn-registro {
    background: none;
    color: var(--main-color);
    border: 1px solid;
}

header .navbar a.btn-header{
    background: var(--main-color);
    color: #fff;
    padding: 10px 25px;
    margin-left: 30px;
    border-radius: 50px;
    text-decoration: none;
}

/*FOOTER ----------------*/
#footer {
    background: #FFFFFF;
}
#footer .footer-top {
    background-color: #090909 !important;
}

#footer .license {
    color: #fef8f5;
	opacity: .75;
}

#footer .footer-top .footer-links ul a, #footer .footer-top .footer-contact p, #footer .footer-top h4{
    color: #fef8f5;
}
#footer .footer-top .footer-links ul a{
    opacity: .75;
}

#footer select#changeLanguage {
    min-width: 200px;
    margin: 0 auto 1rem;
    text-transform: uppercase;
}
#footer .footer-top .footer-links ul a:hover {
    color: var(--color-light);
}
#footer .footer-top .footer-links ul li a.nav-link.active {
    color: var(--color-light);
}


/*HOME -----*/
.icon-box.cover {
    position: relative;
}
.icon-box.cover .title {
    left: 40%;
    position: absolute;
    top: 55%;
    z-index: 2;
}

.services .icon-box:hover {
    border-color:var(--main-color) !important;
}

.img-vision {
    max-height: 550px;
    margin-top: -55px;
}

/*IFRAME -----*/
iframe{
    width: 100%;
    min-height: 450px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow:1px 10px 10px #ccc;
    border-top: 2px solid #f8f9fa;
}

@media (max-width: 412px){
    iframe{
        width: 100%;
    }
}
#w-box-default{
    border-radius: 10px;
    background-color: #FFFFFF;
    padding: 0 15px;
    overflow-y: auto;
    overflow-x: hidden;
}
#w-box-default .tabs-calc > p{
    margin-bottom: 0;
}
#w-box-default .transition-transform {
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    height: 4px;
}
#w-box-default form.form-design-default{
    margin: 0.5rem 0 2rem 0;
    border: none;
}
#w-box-default form.form-design-default .progress {
    height: 2rem;
    margin-bottom: 0;
}
#w-box-default form.form-design-default .progress .progress-bar {
    height: 2rem;
    background-color: #6B06BF;
}

#w-box-default form.form-design-default label {
    font-weight: bold;
    font-size: 14px;
}
#w-box-default form.form-design-default .form-control{
    border-color: #6B06BF;
    border-radius: 0.375rem;
    height: 3rem;
}
#w-box-default form.form-design-default .input-group > .form-control{
    /*border-top-right-radius:0;
    border-bottom-right-radius:0;*/
}
#w-box-default form.form-design-default .input-group > .input-group-prepend > .form-control{
    border-bottom-left-radius:0;
    border-top-left-radius:0;
    border-left-width: 0;
    color:#6B06BF;
    font-weight: 300;
    padding-right: 2rem;
}
#w-box-default form.form-design-default .btn.btn-lg{
    font-weight: 100;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 2rem;
}

.btn-color-default-violet{
    background-color: var(--color-default) !important;
    border: none !important;
    color: white !important;
}


.sidebarPrivateArea{
    width: 100%;
    margin: 72px 0 0 0;
}

.dashboard_wrapper {
    width: 100%;
    height: auto!important;
}
.nav-pills {
    background-color: black;
    min-width: 250px;
    max-width: 250px;
    width: 100%;
    padding: 40px 50px 40px 40px;
    display: flex;
    flex-direction: column;
}


/*PUBlIC PAGES */
section.main-content .description, .services .description{
    font-size: 1.1rem;
    line-height: 1.5;
}
section p{
    font-size: 1.1rem;
}
@media (max-width: 767px){
    section.main-content .description, .services .description,section p {
        font-size: 14px;
    }
    .services .icon-box{
        margin: 0 0 2rem 0;
        padding: 1rem;
    }
}
section.main-content.bg-image {
    background-repeat: no-repeat;
    background-position-y: top;
    background-size: 100% auto;
    min-height: 60vh;
    margin-top: -14px;
}

section.main-content .section-content p {
    line-height: 1.5;
    margin-bottom: 1em;
}
@media (max-width: 991px){
    section.main-content.bg-image {
        background-position: top left !important;
        background-size: auto !important;
    }
}


.about-img{
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 991px){
    .about-img{
        background-size: contain;  
        min-height: 200px;  
    } 
}
.about i {
    font-size: inherit ;
    margin-top: 0;
    color: inherit;
}
section a{
    color: var(--color-default);
}

section .icon-box .icon {
    width: auto;
    height: auto;
}
section .icon-box .icon img{
    margin: 0 auto;
}
.title-aml{
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 1.5rem;
    text-align: center;
}
.border-custom{
    border: 1px solid #c3c3c3;
    border-radius: 10px;
    padding: 1rem;
}
.aml-check-balance-list{
    border-collapse: collapse;
    color: #77869e;
    font-size: 1.1rem;
    line-height: 100%;
    width: 100%;
}
.aml-check-balance-list tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: 0.9rem;
}

.crypto-frame-home{
    margin-top: 15px;
    min-height: 540px;
}

.background-color-trading{
    background-color: #eee;
}

.crypto-frame{
    z-index: 1;
    bottom: 0px;
}

@media (max-width: 768px) {
    .calculator-width {
        width: 100vw !important;
        height: 100vh !important;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

    .calculator-width iframe {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 769px) {
    .calculator-width {
        min-width: 500px;
        min-height: 550px !important;
    }
    .crypto-frame{
        bottom: 100px;
    }

}

a.foot {
    color: #6b06bf;
    text-decoration: none;
} 