@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter-Regular.eot');
    src: url('../Fonts/Inter-Regular.eot?#iefix') format('embedded-opentype'),
    url('../Fonts/Inter-Regular.woff2') format('woff2'),
    url('../Fonts/Inter-Regular.woff') format('woff'),
    url('../Fonts/Inter-Regular.ttf') format('truetype'),
    url('../Fonts/Inter-Regular.svg#Inter-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter-SemiBold.eot');
    src: url('../Fonts/Inter-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../Fonts/Inter-SemiBold.woff2') format('woff2'),
    url('../Fonts/Inter-SemiBold.woff') format('woff'),
    url('../Fonts/Inter-SemiBold.ttf') format('truetype'),
    url('../Fonts/Inter-SemiBold.svg#Inter-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter-Medium.eot');
    src: url('../Fonts/Inter-Medium.eot?#iefix') format('embedded-opentype'),
    url('../Fonts/Inter-Medium.woff2') format('woff2'),
    url('../Fonts/Inter-Medium.woff') format('woff'),
    url('../Fonts/Inter-Medium.ttf') format('truetype'),
    url('../Fonts/Inter-Medium.svg#Inter-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter-Light.eot');
    src: url('../Fonts/Inter-Light.eot?#iefix') format('embedded-opentype'),
    url('../Fonts/Inter-Light.woff2') format('woff2'),
    url('../Fonts/Inter-Light.woff') format('woff'),
    url('../Fonts/Inter-Light.ttf') format('truetype'),
    url('../Fonts/Inter-Light.svg#Inter-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter-Bold.eot');
    src: url('../Fonts/Inter-Bold.eot?#iefix') format('embedded-opentype'),
    url('../Fonts/Inter-Bold.woff2') format('woff2'),
    url('../Fonts/Inter-Bold.woff') format('woff'),
    url('../Fonts/Inter-Bold.ttf') format('truetype'),
    url('../Fonts/Inter-Bold.svg#Inter-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}
 
body {
    width: 100%;
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 12px;
    background-color: #0f0f0f;
}

.MsjBox-txt-w-14  { color: #fff; font-size: 14px; font-weight: normal; text-decoration: none; } 
.MsjBox-txt-w-14-b { color: #fff; font-size: 14px; font-weight: bold; text-decoration: none; } 

.header-container {
    position: sticky;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px 92px;
    z-index: 3;
    background: #0f0f0f; 
}

.header-container.scrolled {
    background-color: rgb(15 15 15);
}

.header-container .header-content {
    width: 100%;
}

.header-content header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 0px 1rem;
}

.header-content header>div:nth-child(1) {
    order: 1;
}

.header-content header>div:nth-child(1)>div>a {
    display: block;
    width: 52px;
    line-height: 0;
}

.header-content header>div:nth-child(1)>div>a>img {
    width: 45px;
    height: auto;
}

.header-content header>div:nth-child(2) {
    order: 2;
    flex-grow: 1;
}

.header-content header>div:nth-child(2)>nav>ul {
    display: flex;
    align-items: center;
}

.header-content header>div:nth-child(2)>nav>ul>li {
    display: flex;
    list-style: none;
    border-radius: 4px;
}

.header-content header>div:nth-child(2)>nav>ul>li:active {
    background-color: rgb(242, 242, 242, 0.12);
}

.header-content header>div:nth-child(2)>nav>ul>li>a {
    cursor: pointer;
    user-select: none;
    border-radius: 0.25rem;
    padding: 0.875rem 1.5rem;
    color: rgb(149, 150, 155);
    margin-left: 0.125rem;
    margin-right: 0.125rem;
    white-space: nowrap;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    transition: color 0.3s ease 0s;
    text-decoration: none;
}

.header-content header>div:nth-child(2)>nav>ul>li:hover>a {
    color: rgb(242, 242, 242);
}

.header-content header .sub-main {
    position: relative;
}

.header-content header .sub-main:hover>ul {
    display: block;
}

.header-content header .sub-main>ul {
    background: rgb(32, 32, 32);
    border: 1px solid rgb(41 41 41);
    display: none;
    border-radius: 12px;
    height: max-content;
    left: 50%;
    min-width: 172px;
    max-width: 172px;
    position: absolute;
    top: 56px;
    transform: translate(-50%, 0px);
    padding: 16px;
}

.header-content header .sub-main>ul>li {
    display: flex;
    flex-flow: column nowrap;
    list-style: none;
    border-radius: 4px;
}

.header-content header .sub-main>ul>li:hover {
    background-color: rgb(242, 242, 242, 0.12);
}

.header-content header .sub-main>ul>.li-mobile {
    display: none;
}

.header-content header .sub-main>ul>li>a {
    -webkit-box-align: center;
    align-items: center;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    text-decoration: none;
    user-select: none;
    color: rgb(149, 150, 155);
    white-space: nowrap;
    font-size: 0.940rem;
    font-weight: 400;
    line-height: 1.75rem;
    height: 40px;
    padding: 12px 16px;
}

.header-content header .sub-main>ul>li:hover>a {
    color: rgb(242, 242, 242);
}

.header-content header>div:nth-child(3) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    order: 3;
    gap: 24px;
}

.header-content header>div:nth-child(3)>div:nth-child(2)>a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 1.25rem;
    border: 3px solid transparent;
    background: linear-gradient(rgb(15 15 15), rgb(15 15 15)) padding-box padding-box, linear-gradient(141.98deg, rgb(255, 71, 110) 9.04%, rgb(53 82 231) 94.04%) border-box border-box;
    color: rgb(242, 242, 242);
    line-height: 1.25rem;
    font-size: 0.875rem;
}

.header-content header>div:nth-child(3) .input-search {
    background-color: transparent;
    height: fit-content;
    border-radius: 4px;
    width: fit-content;
    cursor: pointer;
}

.header-content header>div:nth-child(3) .input-search:hover {
    background-color: rgb(32, 32, 32);
    height: 48px;
    border: 1px solid rgb(103, 105, 111);
    border-radius: 4px;
    width: 300px;
}

.header-content header>div:nth-child(3) .input-search:hover + div {
    display: none;
}

.header-content header>div:nth-child(3) .input-search>div>input {
    font-family: 'Inter', Helvetica, sans-serif;
    background-color: rgb(32, 32, 32);
    font-size: 0.940rem;
    font-weight: 400;
    line-height: 1.5rem;
    border: 0;
    outline: 0;
    color: #ffffff;
    width: 0;
}

.header-content header>div:nth-child(3) .input-search:hover>div>input {
    width: 245px;
}

.header-content header>div:nth-child(3)>div:nth-child(1) {
    display: flex;
    align-items: center;
    order: 2;
    padding: 0.875rem 0;
}

.header-content header>div:nth-child(3)>div:nth-child(2) {
    order: 1;
    padding: 0.875rem 0;
}

.header-content header>div:nth-child(3)>div:nth-child(4) {
    order: 4;
    padding: 0.875rem 0;
}

.header-content header>div:nth-child(3)>div:nth-child(3) {
    order: 3;
    padding: 0.875rem 0;
}

.header-content header>div:nth-child(3)>div:nth-child(1)>span, .header-content header>div:nth-child(3)>div:nth-child(1)>a,
.header-content header>div:nth-child(3)>div:nth-child(1)>span, .header-content header>div:nth-child(3)>div:nth-child(3)>span,
.header-content header>div:nth-child(3)>div:nth-child(1)>span, .header-content header>div:nth-child(3)>div:nth-child(4)>a {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    border: none;
    background-color: rgb(32, 32, 32);
    color: rgb(149, 150, 155);
    transition: all 0.5s ease-in-out 0s;
    z-index: 200;
}

.header-content header>div:nth-child(3)>div:nth-child(1)>span:hover {
    color: rgb(255, 255, 255);
}

.header-content header>div:nth-child(3)>div:nth-child(1)>a:hover,
.header-content header>div:nth-child(3)>div:nth-child(3)>span:hover,
.header-content header>div:nth-child(3)>div:nth-child(4)>a:hover {
    background-color: rgb(149, 150, 155);
    color: rgb(33, 36, 46);
}


.iTxt-white-12 { color: #fff; font-size: 12px; font-weight: normal; text-decoration: none; padding: auto;}

@keyframes blink {
    0%, 100% {
        background-color: rgb(149, 150, 155);
        color: rgb(33, 36, 46);
    }
    50% {
        background-color: rgb(32, 32, 32);
        color:rgb(149, 150, 155)
    }
}



.blinking {
    animation: blink 1.4s linear infinite; 
}

#loading>.loader {
    width: 100%;
    display: none;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    background-color: rgb(15, 15, 15);
}

#loading>.loader>svg{
    width: 70px !important;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


    /******* Containers Home Nuevos *******/

    .Home-content {
        position: relative;
        display: flex;
        flex-direction: column;
        margin: 1rem auto;
        padding: 0px 0px;
        width: 100%;
        height: auto;
    }
    .Home-content-body {
        position: relative;
        display: flex;
        flex-direction: column;
        margin: 1rem auto;
        padding: 0px 0px;
        width: 100%;
        height: auto; 
    }


.app-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 0px; 
}

.app-container>.app-content {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0px 10px;
    align-items: flex-start;
    justify-content: center; 
}


/*** content-section-ofertas ***/

.app-container>.app-content>.main-container .content-section-ofertas {
    background: rgb(22 22 22);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 611px;
    margin: 5px auto;
}

.content-name-list { margin-top: 3px; }
.app-container>.app-content>.main-container .content-section-ofertas>div {
    padding: 2px 7px;
    margin: 0px 10px 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 7px;
    text-align: left;  
    width:100%; background-color: #505050;
}

.app-container>.app-content>.main-container .content-section-ofertas>div:last-child {
    border-bottom: 0;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div {
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    padding: 5px 10px;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div:nth-child(1) {
    width: auto;height:100%;padding:4px;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    height: auto;
    align-items: flex-start;
    justify-content: center;
    padding: 2px;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div:nth-child(3) {
    display: flex;
    width: auto;min-width: 120px;
    border-radius: 4px;
    align-items: center;
    justify-content: flex-end;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div:nth-child(4) {
    width: auto;min-width: 200px;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div:nth-child(5) {
    width: auto;min-width: 200px;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div:nth-child(4)>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div:nth-child(4)>div>span:nth-child(1) {
    background: #ffbb37;
    color: #161616;
    padding: 7px 10px;
    font-size: 0.940rem;
    border-radius: 2px;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>div:nth-child(4)>div>span:nth-child(2) {
    background: #ea3943;
    color: #161616;
    padding: 7px 10px;
    font-size: 0.940rem;
    border-radius: 2px;
}

.app-container>.app-content>.main-container .content-section-ofertas>div>p {
    color: rgb(149, 150, 155);
    font-size: 0.940rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.app-container>.app-content>.main-container {  /** Contenedos LEft de caja **/
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0px 0px;
    
}

.app-container>.app-content>.main-container>section {
    margin-bottom: 10px;
}

.app-container>.app-content>.main-container .title-section {
    padding: 4px 1rem;
    background: rgb(32 32 32);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border: 1px solid rgb(41 41 41);
    border-bottom: 0;
}

.app-container>.app-content>.main-container .title-section-p2p { 
    padding: 5px 10px;
    background: #ffa600;
    border-radius: 4px;
    border-bottom: 0;
}
.app-container>.app-content>.main-container .title-section>h2 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.625rem;
    color: rgb(255 255 255);
}
.app-container>.app-content>.main-container .title-section-p2p>h2 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.625rem;
    color: rgb(0, 0, 0);
}

.app-container>.app-content>.main-container .content-section {
    position: relative;
    background: rgb(22 22 22);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px; 
    border: 1px solid rgb(41 41 41);
    max-height: 623px;
    overflow: hidden;
}

.app-container>.app-content>.main-container .content-section>div {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(41 41 41);
}

.app-container>.app-content>.main-container .content-section>div:last-child {
    border-bottom: 0;
}

.app-container>.app-content>.main-container .content-section>div>div {
    color: #ffffff;
    cursor: pointer;
}

.app-container>.app-content>.main-container .content-section>div>div:nth-child(1) {
    width: 230px;
}

.app-container>.app-content>.main-container .content-section>div>div:nth-child(2) {
    width: 210px;
}

.app-container>.app-content>.main-container .content-section>div>div:nth-child(3) {
    width: 300px;
}

.app-container>.app-content>.main-container .content-section>div>div:nth-child(4) {
    width: 180px;
}

.app-container>.app-content>.main-container .content-section>.info-investment {
    display: flex;
}

.app-container>.app-content>.main-container .content-section>.info-investment>div {
    width: 33.3% !important;
}

.app-container>.app-content>.main-container .content-section>div>p {
    color: rgb(149, 150, 155);
    font-size: 0.940rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.app-container>.app-content>.main-container .content-section .status {
    padding: 7px 10px;
    font-size: 0.940rem;
    border-radius: 2px;
    display: inline-block;
}

.app-container>.app-content>.main-container .content-section .status.pending {
    background: #ea3943;
    color: #161616;
}

.app-container>.app-content>.main-container .content-section .status.active {
    background: #ffbb37;
    color: #161616;
    text-align: center;
}

.app-container>.app-content>.aside-container {
    position: sticky;
    display: flex;
    flex-direction: column;
    top: 0;
    width: 400px;
    height: auto;
    padding: 0px;
    align-items: center;
    justify-content: flex-start; 
}

.app-container>.app-content>.aside-container>.aside-content {   /** Contenedos Right de caja **/
    position: relative;
    display: flex;
    flex-direction: column;
    width: 350px;
    padding: 0px;
    align-items: center;
    justify-content: flex-start;
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    padding: 0;
    cursor: pointer;
    border-bottom: 1px solid rgb(41 41 41);
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main>div:nth-child(1) {
    width: 50%;
    background-color: rgb(32, 32, 32);
    color: rgb(255 255 255);
    padding: 5px 10px;
    border-top-left-radius: 4px;
    border: 1px solid rgb(41 41 41);
    border-bottom: 0;
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main>div:nth-child(2) {
    background: rgb(22 22 22);
    color: rgb(149, 150, 155);
    width: 50%;
    padding: 5px 10px;
    border-top-right-radius: 4px;
    border: 1px solid #181818;
    border-bottom: 0;
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main>div>h2 {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
}

/*** content-section-user ***/

.app-container>.app-content>.main-container .content-section-user {
    background: rgb(22 22 22);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid rgb(41 41 41);
    max-height: 400px;
    overflow-y: auto;
}

.app-container>.app-content>.main-container .content-section-user>div {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(41 41 41);
    text-align: left;
}
.content-name-list { margin-top: 3px; }
.app-container>.app-content>.main-container .content-section-user>div {
    padding: 4px 10px;
    margin: 0px 10px 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    border-radius: 7px;
    text-align: left;
}

.app-container>.app-content>.main-container .content-section-user>div:last-child {
    border-bottom: 0;
}

.app-container>.app-content>.main-container .content-section-user>div>div {
    color: #ffffff;
    cursor: pointer;
    text-align: left;
}

.app-container>.app-content>.main-container .content-section-user>div>div:nth-child(1) {
    flex: 1; 
}

.app-container>.app-content>.main-container .content-section-user>div>div:nth-child(3) {
    width: auto; 
    display:flex;justify-content: flex-end;
}

.app-container>.app-content>.main-container .content-section-user>div>div:nth-child(2) {
    width: 200px; 
}

.app-container>.app-content>.main-container .content-section-user>div>div:nth-child(4) {
    width: 151px; 
}

.app-container>.app-content>.main-container .content-section-user>div>div:nth-child(4)>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-container>.app-content>.main-container .content-section-user>div>div:nth-child(4)>div>span:nth-child(1) {
    background: #ffbb37;
    color: #161616;
    padding: 7px 10px;
    font-size: 0.940rem;
    border-radius: 2px;
}

.app-container>.app-content>.main-container .content-section-user>div>div:nth-child(4)>div>span:nth-child(2) {
    background: #ea3943;
    color: #161616;
    padding: 7px 10px;
    font-size: 0.940rem;
    border-radius: 2px;
}

.app-container>.app-content>.main-container .content-section-user>div>p {
    color: rgb(149, 150, 155);
    font-size: 0.940rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.aside-main>.main-bg-initial {
    background: #2a2a2a !important;
    color: #fbfbfb !important;
}

.aside-main>.main-bg-select {
    background: #1e1e1e !important;
    color: #7a7a7a !important;
}

.aside-investment,
.aside-withdrawals {
    background: rgb(32 32 32);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 10px;
    width: 100%;
}

.aside-investment.disabled,
.aside-withdrawals.disabled {
    display: none;
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main.disabled>div:nth-child(1) {
    background: rgb(22 22 22);
    color: rgb(149, 150, 155);
    width: 50%;
    padding: 5px 10px;
    border: 1px solid #181818;
    border-bottom: 0;
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main.disabled>div:nth-child(2) {
    width: 50%;
    background-color: rgb(32, 32, 32);
    color: rgb(255 255 255);
    padding: 5px 10px;
    border: 1px solid rgb(41 41 41);
    border-bottom: 0;
}

.aside-investment .currency-info,
.aside-withdrawals .currency-info {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
}

.aside-investment .currency-info>div:nth-child(1),
.aside-withdrawals .currency-info>div:nth-child(1) {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
}
.aside-investment .currency-info>div:nth-child(2),
.aside-withdrawals .currency-info>div:nth-child(2) {
    position: relative;
    flex-direction: column;
    width: 50%;min-width: 120px;
    display: flex;
    align-items: flex-end;
}

.aside-investment .currency-info>div>input,
.aside-withdrawals .currency-info>div>input {
    margin-right: 10px;
    margin-top: -2px;
    cursor: pointer;
}

.aside-investment .currency-info>div>img,
.aside-withdrawals .currency-info>div>img {
    width: 22px;
    height: 22px;
    display: block;
    margin-right: 10px;
}

.aside-investment .currency-info>div>h2,
.aside-withdrawals .currency-info>div>h2 {
    font-size: 0.940rem;
    font-weight: 600;
    line-height: 1.75rem;
    color: rgb(149, 150, 155);
}
.aside-investment .currency-info>div>h2>span,
.aside-withdrawals .currency-info>div>h2>span {
    font-size: 0.940rem;
    font-weight: 600;
    line-height: 1.75rem;
    color: rgb(36, 184, 3);
    
}

/*** Para saldo P2p ****/
.currency-info-p2p {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100%;
    min-height: 100vh;
    padding: 0px 1rem;
    margin: 0 auto;
    background-color: #1d1d1d;
}

.aside-investment .currency-info>div>:nth-child(1)h2,
.aside-withdrawals .currency-info-P2p>div>h2 {
    font-size: 0.700rem;
    font-weight: 600;
    line-height: 1rem;
    color: rgb(149, 150, 155);
}


.aside-withdrawals .currency-info>div>h2:nth-child(2) {
    color: #ea3943;
}

.aside-investment .currency-info>div:nth-child(2),
.aside-withdrawals .currency-info>div:nth-child(2) {
    width: 50%;
    text-align: end;
}

.aside-investment .currency-info>div>h2:nth-child(1),
.aside-withdrawals .currency-info>div>h2:nth-child(1) {
    color: #ffbb37;
}
.aside-investment .currency-info>div>div>h2:nth-child(1),
.aside-withdrawals .currency-info>div>div>h2:nth-child(1) {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    color: #ffbb37;
}
.aside-investment .currency-info>div>div>span,
.aside-withdrawals .currency-info>div>div>span {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    color: #fff;
}

.aside-investment .currency-amount,
.aside-withdrawals .currency-amount {
    flex-direction: column;
    justify-content: center;
    padding: 0 20px 20px;
    display: none;
}

.aside-investment .currency-amount>div>input,
.aside-withdrawals .currency-amount>div>input {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 0 20px;
    font-family: 'Inter', Helvetica, sans-serif;
    height: 50px;
    font-size: 0.940rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #dfdfdf;
    background-color: rgb(15 15 15);
    border-radius: 4px;
    border: 1px solid transparent;
    outline: none;
}

.aside-investment .currency-btn,
.aside-withdrawals .currency-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.aside-investment .currency-btn>div,
.aside-withdrawals .currency-btn>div {
    width: 100%;
}

.aside-investment .currency-btn>div>input,
.aside-withdrawals .currency-btn>div>input {
    background: linear-gradient(90deg, rgb(255, 187, 55) 0%, rgb(255, 187, 55) 33.33%, rgb(255, 204, 105) 43.83%, rgb(255, 212, 130) 50%, rgb(255, 204, 105) 55.9%, rgb(255, 187, 55) 66.66%, rgb(255, 187, 55) 100%) right top / 300% 100% rgb(252, 170, 5);
    color: rgb(15 15 15);
    cursor: pointer;
    border: 0.125rem solid transparent;
    border-radius: 0.25rem;
    -webkit-box-pack: center;
    height: 50px;
    font-size: 0.940rem;
    line-height: 1.5rem;
    font-weight: 400;
    width: 100%;
    display: block;
    text-align: center;
}

.aside-investment #alert-message-investment,
.aside-withdrawals #alert-message-withdrawals {
    -webkit-box-align: center;
    align-items: center;
    color: rgb(242, 242, 242);
    display: none;
    padding: 0px 30px 30px 30px;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.15rem;
}

.aside-investment #alert-message-investment>div:nth-child(1),
.aside-withdrawals #alert-message-withdrawals>div:nth-child(1) {
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0.1875rem;
    text-align: center;
}

.aside-investment #alert-message-investment>div:nth-child(2),
.aside-withdrawals #alert-message-withdrawals>div:nth-child(2) {
    color: rgb(255, 0, 0);
    margin-left: 0.375rem;
    margin-right: 0.625rem;
}

.aside-investment>form.submitted input[type="number"]:invalid,
.aside-withdrawals>form.submitted input[type="number"]:invalid {
    border: 1px solid rgb(255 0 0);
}

.aside-investment>form.submitted input[type="number"]:valid,
.aside-withdrawals>form.submitted input[type="number"]:valid {
    border: 1px solid rgb(79 171 64);
}

.input {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
    background-color: rgb(32, 32, 32);
    border-radius: 0.25rem;
    box-sizing: border-box;
    height: 56px;
    outline: none;
    padding: 0 16px;
    width: 100%;
    border: 1px solid rgb(103, 105, 111);
    color: rgb(255, 255, 255);
}

.input[type="password"] {
    padding: 0 60px 0 16px;
}

.btn {
    cursor: pointer;
    border: 0.125rem solid transparent;
    border-radius: 0.25rem;
    padding: 0.875rem 1.5rem;
    -webkit-box-pack: center;
    font-size: 1.25rem;
    font-weight: 400;
    width: 100%;
    display: block;
    text-align: center;
}

.btn.gold {
    background: linear-gradient(90deg, rgb(255, 187, 55) 0%, rgb(255, 187, 55) 33.33%, rgb(255, 204, 105) 43.83%, rgb(255, 212, 130) 50%, rgb(255, 204, 105) 55.9%, rgb(255, 187, 55) 66.66%, rgb(255, 187, 55) 100%) right top / 300% 100% rgb(252, 170, 5);
    color: rgb(15 15 15);
}
.btn.green {
    background: linear-gradient(90deg, rgb(255, 187, 55) 0%, rgb(255, 187, 55) 33.33%, rgb(255, 204, 105) 43.83%, rgb(255, 212, 130) 50%, rgb(255, 204, 105) 55.9%, rgb(255, 187, 55) 66.66%, rgb(255, 187, 55) 100%) right top / 300% 100% rgb(252, 170, 5);
    color: rgb(15 15 15);
}
.btn.green-STOP {
    background: linear-gradient(90deg, #38b000 0%, #4cc200 33.33%, #66d300 50%, #4cc200 66.66%, #38b000 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn.green:hover {
    background: linear-gradient(90deg, #2e9600 0%, #3ea600 50%, #2e9600 100%);
}

.btn.dark {
    background: rgb(32, 32, 32);
    color: rgb(255 255 255);
}
.btn.darking {
    background-color: #171717;
    color: rgb(255 255 255);
}

.profile-container {
    width: 100%;
    background: rgb(0 0 0 / 67%);
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

.profile-content {
    background: rgb(32 32 32);
    width: 600px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #313131;
}

.profile-content>div>div>h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.profile-content>div>div>b {
    color: rgb(149, 150, 155);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.profile-content>div>div>form>select,
.profile-content>div>div>form>input {
    display: block;
    width: 100%;
    padding: 0 20px;
    font-family: 'Inter', Helvetica, sans-serif;
    height: 50px;
    font-size: 0.940rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #dfdfdf;
    background-color: rgb(15 15 15);
    border-radius: 4px;
    border: 1px solid transparent;
    outline: none;
    margin-bottom: 10px;
    cursor: pointer;
}

.profile-content>div>div>form input[type="submit"]{
    background: linear-gradient(90deg, rgb(255, 187, 55) 0%, rgb(255, 187, 55) 33.33%, rgb(255, 204, 105) 43.83%, rgb(255, 212, 130) 50%, rgb(255, 204, 105) 55.9%, rgb(255, 187, 55) 66.66%, rgb(255, 187, 55) 100%) right top / 300% 100% rgb(252, 170, 5);
    color: rgb(15 15 15);
    cursor: pointer;
    border: 0.125rem solid transparent;
    border-radius: 0.25rem;
    -webkit-box-pack: center;
    height: 50px;
    font-size: 0.940rem;
    font-weight: 400;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.profile-content #alert-message-profile {
    -webkit-box-align: center;
    align-items: center;
    color: rgb(242, 242, 242);
    display: none;
    padding: 30px 0 0 0;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.15rem;
}

.profile-content #alert-message-profile>div:nth-child(1) {
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0.1875rem;
    text-align: center;
}

.profile-content #alert-message-profile>div:nth-child(2) {
    color: rgb(255, 0, 0);
    margin-left: 0.375rem;
    margin-right: 0.625rem;
}

.profile-content form.submitted select:invalid,
.profile-content form.submitted input[type="text"]:invalid {
    border: 1px solid rgb(255 0 0);
}

.profile-content form.submitted select:valid,
.profile-content form.submitted input[type="text"]:valid {
    border: 1px solid rgb(79 171 64);
}

.close-profile {
    display: flex;
    justify-content: end;
    height: 0;
}

.close-profile>svg {
    stroke: #fff;
    background: #2f2f2f;
    border-radius: 4px;
    padding: 3px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.notification-container {
    width: 100%;
    background: rgb(0 0 0 / 67%);
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

.notification-content {
    background: rgb(32 32 32);
    width: 600px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #313131;
}

.notification-content>div>div>div>h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 11px;
    cursor: pointer;
}

.notification-content>div>div>div>p {
    margin-bottom: 10px;
    color: #d7d7d7;
    font-size: 0.9rem;
    font-weight: 400;
}

.notification-content>div>div>div>b {
    color: rgb(149, 150, 155);
    font-size: 16px;
    font-weight: 400;
}

.close-notification {
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}

.close-notification>svg {
    stroke: #fff;
    background: #2f2f2f;
    border-radius: 4px;
    padding: 3px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.space-notification {
    margin-bottom: 20px;
    border-bottom: 1px solid #373737;
    padding-bottom: 20px;
}

.space-notification:last-child {
    border-bottom: 0;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.list-notification {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
}

.color-red {
    color: #ea3943;
}

.color-gold {
    color: #ffbb37;
}

/* Genel stil */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    margin: 10px;
}

/* Giriş stil */
.toggle-switch .toggle-input {
    display: none;
}

/* Anahtarın stilinin etrafındaki etiketin stil */
.toggle-switch .toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 24px;
    background-color: #ea3943;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Anahtarın yuvarlak kısmının stil */
.toggle-switch .toggle-label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background-color: #fff;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

/* Anahtarın etkin hale gelmesindeki stil değişiklikleri */
.toggle-switch .toggle-input:checked + .toggle-label {
    background-color: #ffbb37;
}

.toggle-switch .toggle-input:checked + .toggle-label::before {
    transform: translateX(16px);
}

/* Light tema */
.toggle-switch.light .toggle-label {
    background-color: #BEBEBE;
}

.toggle-switch.light .toggle-input:checked + .toggle-label {
    background-color: #9B9B9B;
}

.toggle-switch.light .toggle-input:checked + .toggle-label::before {
    transform: translateX(6px);
}

/* Dark tema */
.toggle-switch.dark .toggle-label {
    background-color: #4B4B4B;
}

.toggle-switch.dark .toggle-input:checked + .toggle-label {
    background-color: #717171;
}

.toggle-switch.dark .toggle-input:checked + .toggle-label::before {
    transform: translateX(16px);
}

.total {
    background: #161616;
    display: flex;
    width: 35%;
    min-width: 400px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgb(41 41 41);
    border-top: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.total>div:nth-child(1){
    padding: 20px 30px;
    border-bottom: 1px solid rgb(41 41 41);
    color: #ea3943;
    font-size: 0.940rem;
}

.total>div:nth-child(2){
    padding: 20px 30px;
    color: #37b137;
    font-size: 0.940rem;
}

.total>div:nth-child(3){
    padding: 20px 30px;
    color: #fcfcfc;
    border-top: 1px solid rgb(41 41 41);
    font-size: 0.940rem;
}

.total>div:nth-child(4) {
    padding: 20px 30px;
    color: #fcfcfc;
    border-top: 1px solid rgb(41 41 41);
    font-size: 0.940rem;
}

.total form {
    display: flex;
    align-items: center;
}

.total .input {
    display: block;
    width: 100%;
    padding: 0 20px;
    font-family: 'Inter', Helvetica, sans-serif;
    height: 50px;
    font-size: 0.940rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #dfdfdf;
    background-color: rgb(15 15 15);
    border-radius: 4px;
    border: 1px solid transparent;
    outline: none;
    margin-right: 10px;
}

.total .submit {
    background: linear-gradient(90deg, rgb(255, 187, 55) 0%, rgb(255, 187, 55) 33.33%, rgb(255, 204, 105) 43.83%, rgb(255, 212, 130) 50%, rgb(255, 204, 105) 55.9%, rgb(255, 187, 55) 66.66%, rgb(255, 187, 55) 100%) right top / 300% 100% rgb(252, 170, 5);
    color: rgb(15 15 15);
    cursor: pointer;
    border: 0.125rem solid transparent;
    border-radius: 0.25rem;
    -webkit-box-pack: center;
    height: 45px;
    font-size: 0.940rem;
    line-height: 1.5rem;
    font-weight: 400;
    width: 100%;
    display: block;
    text-align: center;
}

.total #alert-message-refer {
    -webkit-box-align: center;
    align-items: center;
    color: rgb(242, 242, 242);
    display: none;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.15rem;
    margin-top: 20px;
}

.total #alert-message-refer>div:nth-child(1) {
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0.1875rem;
    text-align: center;
}

.total #alert-message-refer>div:nth-child(2) {
    color: rgb(255, 0, 0);
    margin-left: 0.375rem;
    margin-right: 0.625rem;
}

.total form.submitted input[type="number"]:invalid {
    border: 1px solid rgb(255 0 0);
}

.total form.submitted input[type="number"]:valid {
    border: 1px solid rgb(79 171 64);
}

#message-user {
    margin-top: 20px;
}

#message-user>textarea {
    min-width: 400px;
    background: #0f0f0f;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 20px;
    color: #fff;
    font-size: 0.940rem;
    font-weight: 400;
    font-family: 'Inter', Helvetica, sans-serif;
    resize: none;
}

#message-user>input {
    max-width: 400px;
}


.Box-msj-suspended  {
    position: relative;
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0 auto;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

/*** Formulario login ***/
.input {
    width: 100%;
    padding-right: 40px; /* Espacio para el botón del ojo */
}
.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.toggle-password svg {
    width: 24px;
    height: 24px;
    fill: #666;
    transition: fill 0.3s;
}
.toggle-password:hover svg {
    fill: #000;
}

/*** Mensajes flotantes ***/
.toast-message {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 16px;
    z-index: 10000;
    display: none; /* Oculto por defecto */
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.toast-success {    background-color: #4caf50;}
.toast-error {    background-color: #f44336;}
.toast-warning {    background-color: #ff9800;}
.toast-message.show {    display: block;    opacity: 1;    transform: translateY(0);}
.message-box {
    position: absolute;
    top: 0px;
    width: 80%;
    max-width: 400px;
    padding: 5px 10px;
    margin: 4px auto;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 10;
}
.message-box.show {    opacity: 1;    transform: translateY(0);}
.message-success {    background-color: #4caf50;    color: white;}
.message-error {    background-color: #f44336;    color: white;}
.message-info {    background-color: #2196f3;    color: white;}
.MsjHidden {
    display: none; /* Oculta completamente cuando no hay mensaje */
}

/*** Mensaje de restantes para Retiros ***/
.record-container-temp {
    position: absolute;
    top: 4px;   /* Distancia desde la parte superior */
    left: px;  /* Distancia desde el borde izquierdo */
    width: 100%;
    height: auto;
    padding: 2px 2px;
    border-radius: 4px;
    background-color: rgba(255, 200, 0, 0.5);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.record {
    margin: 0 auto;
}

.active {
    background-color: #e0ffe0;
    border-radius: 4px;
    color: #171717;
}

.warning {
    background-color: #fffbe0;
    border-radius: 4px;
    color: #171717;
}

.expired {
    background-color: #ffe0e0;
    border-radius: 4px;
    color: #171717;
}


@media screen and (max-width: 1024px) {   
    .header-container,    .app-container {        padding: 2px 4px;    }
}

@media screen and (max-width: 1420px) {

}

@media screen and (max-width: 550px) {
    .app-container>.app-content>.main-container .content-section-user>div>div:nth-child(2) {
        display: none;
    }
    .Box-msj-suspended  {
        width: 90%;
        padding: 5px 10px;
    }

}

@media screen and (max-width: 980px) {

    .header-content header>div:nth-child(2)>nav>ul>.sub-main>ul>.li-mobile {
        display: initial;
    }

    .app-container>.app-content {
        position: relative;
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        overflow: hidden;
        margin: 0 auto; 
    }

    .app-container>.app-content>.aside-container {
        width: 100%;
        margin-bottom: 10px;
    }

    .app-container>.app-content>.aside-container>.aside-content {
        position: relative;
        width: 90%;
    }

    .app-container>.app-content>.main-container { /** Contenedos LEft de caja **/
        width: 95%;
        padding: 0px 0px;
    }
}

@media screen and (max-width: 768px) {

    .Box-login-content {
        width: 100%;
        height: 100%;
    }

    .header-container {
        padding: 4px 1rem;
    }
    
    .app-container {
        padding: 0px 0px;
        z-index: 200;
    }

    .videos-content>div>.video-list>.video-item {
        min-width: calc(50% - 16px);
        max-width: calc(50% - 16px);
    }

    .app-container>.app-content>.main-container .content-section>div>div:nth-child(2) {
        display: none;
    }
}

@media screen and (max-width: 690px) {
    .header-content header>div:nth-child(1)>div>a {
        width: 54px;
    }

    .header-content header>div:nth-child(3)>div:nth-child(2) {
        display: none;
    }

    .app-container>.app-content>.main-container>section {
        margin-bottom: 10px;
    }

    .app-container>.app-content>.main-container .content-section {
        border: 1px solid rgb(84, 83, 83);
    }

    .app-container>.app-content>.main-container .content-section>div>div:nth-child(2) {
        display: none;
    }

    .app-container>.app-content>.main-container .content-section>div>div:nth-child(1) {
        width: 30%;
    }

    .app-container>.app-content>.main-container .content-section>div>div:nth-child(3) {
        width: 43%;
    }

    .app-container>.app-content>.main-container .content-section>div>div:nth-child(4) {
        width: 27%;
    }
}

@media screen and (max-width: 480px) {
    .ActionView-Content-head { display: none; }
    .header-content header>div:nth-child(3)>div:nth-child(2) {
        display: none;
    }

    .header-content header>div:nth-child(2)>nav>ul>li:nth-child(4){
        display: none;
    }

    .header-container,
    .app-container {
        padding: 0px 0px;
    }
}