@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: #fff; /*** #0f0f0f ***/  
}

.MsjBox-txt-w-14  { color: #fff; font-size: 14px; font-weight: normal; text-decoration: none; } 
.MsjBox-txt-w-12  { color: #fff; font-size: 12px; font-weight: normal; text-decoration: none; } 
.MsjBox-txt-black-14  { color: 212121; 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:fixed;
    display: flex;
    width: 100%;
    height: 45px;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    margin: 0 auto;
    z-index: 3;
    background: #0060ff; 
    overflow: hidden;
}
/* Estilos del contenedor principal */
.Section-list {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;  
  }
  .Cinta-title,
  .Cinta-subtitle {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 4px 10px;
    align-items: center;
    justify-content: center;   
  }
  .Cinta-title { 
    font-size: clamp(2rem,2.5vw,2rem);
    font-weight: bold;
    line-height: 1;
    text-align: center;
  }
  .Cinta-subtitle { 
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
  }
/*** Panel informativo principal ***/
.action-plan-information {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto; 
    padding: 1rem;
    margin: 0 auto; 
    align-items: center;
    justify-content: center; 
}
.header-information {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto; 
    padding: 1rem;
    margin: 0 auto;  
}
/* Panel izquierdo */
.info-panel-left {
    flex: 1;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    /* Botón principal */
    .btn-unique-selectPlan {
        padding: 10px 20px;
        background-color: #ffae00;
        color: #212121;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: bold;
        transition: background-color 0.3s;
      }
  
      .btn-unique-selectPlan:hover {
        background-color: #03dac5;
        color: #fff;
      }
  
      /* Modal */
      .modal-unique-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 1000;
      }
  
      .modal-unique-container {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }
  
      .modal-unique-header {
        font-size: 1.5rem;
        margin-bottom: 10px;
        text-align: center;
      }
  
      .plan-unique-option {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: border-color 0.3s;
      }
  
      .plan-unique-option:hover {
        border-color: #007bff;
      }
  
      .plan-unique-option input[type="radio"] {
        margin-right: 10px;
      }
  
      .plan-unique-option label {
        flex: 1;
      }
  
      .btn-unique-pay {
        width: 100%;
        padding: 10px;
        background-color: #28a745;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s;
      }
  
      .btn-unique-pay:hover {
        background-color: #218838;
      }
  
      .btn-unique-closeModal {
        background: none;
        border: none;
        color: #888;
        font-size: 1.2rem;
        position: absolute;
        top: 10px;
        right: 15px;
        cursor: pointer;
      }
  
      .btn-unique-closeModal:hover {
        color: #444;
      }
  
      .btn-unique-cancel {
        width: auto;
        padding: 10px 10px;
        background-color: #fff;
        color: #212121;
        border: 1px solid #ccc;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s;
      }
  
      .btn-unique-cancel:hover {
        background-color: #dedede; 
      }
      .button-unique-container {
        display: flex;
        justify-content: space-between; 
        gap: 10px;  
        margin-top: 20px; 
      }
  
      .btn-unique-cancel,
      .btn-unique-pay {
        flex: 1; /* Ambos botones tendrán el mismo ancho */
        text-align: center;
      }



/* Título con dos colores */
.info-title { font-size: 2rem; font-weight: bold;  color: #333333; margin: 0;}

.info-title span { color: #ffae00;}
/* Descripción */
.info-description { font-size: 1rem; color: #666666; margin-top: 10px;}
/* Panel derecho */
.info-panel-right {
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center; 
}
/* Botón moderno */
.info-btn-modern {
    display: inline-block;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.info-btn-modern:hover { background-color: #505050; transform: scale(1.05);}
.info-btn-modern:active { background-color: #707070; transform: scale(0.98);}

.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;
    padding: 0px 1rem;
}

.header-content header>div:nth-child(1) {
    position:relative;
    display: flex;
    flex-direction: row;
    order: 1;
}

.header-content header>div:nth-child(1)>div {
    position:relative;
    display: flex;
    flex-direction: row;
    width: auto;
    align-items: center;
    justify-content: flex-start;
}

.header-content header>div:nth-child(1)>div>a {
    display: block;
    width: 120px;
    line-height: 0;
}

.header-content header>div:nth-child(1)>div>a>img {
    width: 120px;
    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: 10px;
    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: 10px;
}

.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){
    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: #03b4e6;
    color: #fff;
    transition: all 0.5s ease-in-out 0s;
    z-index: 200;
}

.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: #03b4e6;
    color: #fff;
    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: #fff;
    color: #03b4e6;
}


.iTxt-white-12 { color: #fff; font-size: 12px; font-weight: normal; text-decoration: none; padding: auto;}

@keyframes blink {
    0%, 100% { 
        border-radius: 4px; 
        background-color: rgb(255, 255, 255);
        color: rgb(141, 198, 244);
    }
    50% {
        border-radius: 4px;
        background-color: #03b4e6;
        color:rgb(255, 255, 255)
    }
}



.blinking { background-color:transparent;  animation: blink 1.4s linear infinite; }
.blinking-n { background-color:transparent; border-radius: 4px; }
.blinking-n:link { background-color: #03b4e6; border-radius: 4px; }
.blinking-n:hover { background-color: #03b4e6; border-radius: 4px; }
.blinking-n:active { background-color: #03b4e6; border-radius: 4px; }

#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: 0 auto;
        padding: 55px 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(3, 97, 134);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border: 1px solid rgb(3, 97, 134);
    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(4, 80, 111);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px; 
    border: 1px solid rgb(4, 80, 111);
    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) {
    display: flex;
    width: auto;padding: 0px 2px;
}

.app-container>.app-content>.main-container .content-section>div>div:nth-child(3) {
    display: flex;
    width: auto;padding: 0px 2px;
}

.app-container>.app-content>.main-container .content-section>div>div:nth-child(4) {
    display: flex;
    width: auto;padding: 0px 2px;
}

.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: green;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}

.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(4, 80, 111);
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main>div:nth-child(1) {
    width: 50%;
    background-color:  rgb(4, 80, 111);
    color: rgb(255 255 255);
    padding: 5px 10px;
    border-top-left-radius: 4px;
    border: 1px solid  rgb(4, 80, 111);
    border-bottom: 0;
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main>div:nth-child(2) {
    background:  rgb(2, 59, 82);
    color: rgb(149, 150, 155);
    width: 50%;
    padding: 5px 10px;
    border-top-right-radius: 4px;
    border: 1px solid  rgb(2, 59, 82);
    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(4, 80, 111);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid rgb(4, 80, 111);
    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(4, 80, 111);
    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(4, 80, 111);
    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(4, 80, 111);
    color: rgb(149, 150, 155);
    width: 50%;
    padding: 5px 10px;
    border: 1px solid rgb(4, 80, 111);
    border-bottom: 0;
}

.app-container>.app-content>.aside-container>.aside-content>.aside-main.disabled>div:nth-child(2) {
    width: 50%;
    background-color: rgb(2, 59, 82);
    color: rgb(255 255 255);
    padding: 5px 10px;
    border: 1px solid rgb(2, 59, 82);
    border-bottom: 0;
}

.aside-investment .currency-info,
.aside-withdrawals .currency-info {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 4px;
}

.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;
}

.Content-order-mounts {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    font-size: 12px;
    font-weight: bold;    
    font-family: 'Inter', Helvetica, sans-serif;
}
.Content-order-mounts>div:nth-child(1) {
    position: relative;
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}
.Content-order-mounts>div:nth-child(2) {
    position: relative;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
} 
.Amount-saldo {color: #15ff00;}
.Amount-inv {color: #fff;}
.Amount-p2p {color: #ffae00;}
.Amount-deuda {color: #ffff00;}

.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(1),
.aside-withdrawals .currency-info>div:nth-child(1) {
    position: relative;
    width: 80px;
    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;
    flex: 1;
    display: flex;
    align-items: flex-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 4px 10px;
    display: none;
}

.aside-investment .currency-amount>div:nth-child(1)>input,
.aside-withdrawals .currency-amount>div:nth-child(1)>input {
    display: block;
    width: 100%;
    margin: 4px 0px;
    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(2, 44, 61);
    border-radius: 4px;
    border: 1px solid transparent;
    outline: none;
}

.aside-investment .currency-amount>div:nth-child(2),
.aside-withdrawals .currency-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
}

.aside-investment .currency-amount>div:nth-child(2),
.aside-withdrawals .currency-btn>div {
    width: 100%;
}
.aside-investment .currency-amount>div>div {
    width: 100%;
}
.aside-investment .currency-amount>div>div>button {
    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: auto;
    font-size: 0.940rem;
    line-height: 1.5rem;
    font-weight: 400;
    width: 100%;
    display: block;
    text-align: center;
}
.aside-investment .currency-amount>div>div:nth-child(2)>button {
    margin: 0px 2px;
}
.aside-investment .currency-amount>div:nth-child(2)>input,
.aside-withdrawals .currency-btn>div>input {
    background: rgb(0, 183, 255);
    color: rgb(15 15 15);
    cursor: pointer;
    border: 0.125rem solid transparent;
    border-radius: 0.25rem;
    -webkit-box-pack: center;
    height: auto;
    font-size: 0.940rem;
    line-height: 1.5rem;
    font-weight: 400;
    width: 100%;
    display: block;
    text-align: center;
}
.Investor-Btn{
    background: rgb(0, 183, 255);
    color: rgb(15 15 15);
    cursor: pointer;
    border: 0.125rem solid transparent;
    border-radius: 0.25rem;
    -webkit-box-pack: center;
    height: auto;
    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);
}

.Content-withdrawals { 
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%; 
    height: auto; 
    margin: 0 auto;
    padding: 0px;
}
.Withdrawals-list {  position: relative; display: flex; flex-direction: column; width: 100%;  height: auto; margin: 3px auto; padding: 4px; align-items: center; justify-content: flex-start; background-color: rgb(2, 44, 61);}
.Withdrawals-list-n {  position: relative; display: flex; flex-direction: column; width: 100%;  height: auto; margin: 3px auto; padding: 4px; align-items: center; justify-content: flex-start; }
.Withdrawals-list-top { display: flex; width: 100%;height: auto; align-items: center;justify-content: flex-start; color: #fff;font-size: 12px;}
.Withdrawals-list-but { display: flex; width: 100%;height: auto; align-items: center;justify-content: flex-end;font-size: 12px; font-weight: bold;}

.Content-ListInv {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2px;
    margin: 5px auto;
    border-radius: 7px;
    background-color: #989898;
}
.LisTable-items-inv {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: space-between;
    padding: 2px 4px;
    margin: 2px auto;
    border-radius: 4px;
    background-color: #ccc;
    overflow-y: auto;
}
.Item-his-n { display: flex;width: 100%;}
.Item-his-1 { display: flex;width: 150px;}
.Item-his-2 { display: flex;width: 120px;}
.Item-his-3 { position: relative; display: flex; flex-direction: row; flex: 1;}
.Item-his-4 { display: flex;width: 70px;}

.Content-ItemDay {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0;
    margin: 0 auto; 
    align-items: center;
    justify-content: center;
}
.ItemDay {
    position: relative;
    display: flex;
    flex-direction: column;
    width: auto;max-width: 70px;
    padding: 2px 4px;
    margin: 5px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background-color: #989898;
}

.TableItems-retiros {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.Items-Retiros { 
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 4px;
    margin: 2px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #8b8989;
}
.Items-Retiros-body {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 4px;
    margin: 0 auto; 
}
.Items-Retiros-body>div:nth-child(1) {
    position: relative;
    display: flex;
    width: 50%;
    margin: 0px 2px; 
    align-items: center;
    justify-content: flex-start;
}
.Items-Retiros-body>div:nth-child(2) {
    position: relative;
    display: flex;
    width: 50%;
    margin: 0px 2px; 
    align-items: center;
    justify-content: flex-end;
}


.input {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
    background-color: #fff;
    border-radius: 0.25rem;
    box-sizing: border-box;
    height: 56px;
    outline: none;
    padding: 0 16px;
    width: 100%;
    border: 1px solid #ccc;
    color: #212121;
}

.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: 0.7rem;
    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);
}
.green-STOP {
    background: linear-gradient(90deg, #00a8e5 0%, #00c8ff 50%, #00e1ff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}
.green {
    background-color: #005ed6;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Inter', Helvetica, sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.green:hover { background: linear-gradient(90deg, #005ed6 0%, #005ed2 50%, #00d1f2 100%); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); transform: translateY(-2px);}
.green:active { background: #0095c5; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); transform: translateY(0);}


.btn.dark {
    background-color: #005ed6;
    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 {
    position: relative;
    background: rgb(2, 59, 82);
    width: 600px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgb(2, 59, 82);
}

.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 {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 4px;
    z-index: 10000;
    border-radius: 5px;
}

.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;
    padding: 2rem;
    justify-content: center;
    align-items: flex-start;
}

.notification-content {
    background: rgb(4, 80, 111);
    width: 600px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgb(4, 80, 111);
}

.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: rgb(1, 42, 58);
    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;
}

.color-verd {
    color: green;
}
.color-whit {
    color: #fff;
}
/* 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: rgb(4, 80, 111);
    display: flex;
    width: 35%;
    min-width: 400px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgb(4, 80, 111);
    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(2, 44, 61);
    border-radius: 4px;
    border: 1px solid transparent;
    outline: none;
    margin-right: 10px;
}

.total .submit {
    background: rgb(0, 183, 255);
    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-Oper {
    position: absolute;
    top: 0px;
    width: 80%;
    max-width: 400px;
    padding: 5px 10px;
    margin: 0 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-Oper.show,
.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: 0px;   /* Distancia desde la parte superior */
    left: 0px;  /* Distancia desde el borde izquierdo */
    width: 100%;min-width: 120px;
    height: auto;
    padding: 0px 2px;
    border-radius: 2px;
    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: 12px;
}

.record {
    margin: 0 auto;
}

.active {
    background-color: green;
    border-radius: 4px;
    color: #171717;
}

.warning {
    background-color: #fffbe0;
    border-radius: 4px;
    color: #171717;
}

.expired {
    background-color: #ff0000;
    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) {    
    
.record-container-temp-NULL {
    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;
}

.header-content header>div:nth-child(1)>div>span { 
    display: none; 
}
/*** Panel informativo principal ***/
.header-information {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto; 
    padding: 1rem;
    margin: 0 auto;  
} 
.notification-container {
    width: 100%;
    background: rgb(0 0 0 / 67%);
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    display: none;
    padding: 1rem;
    justify-content: center;
    align-items: flex-start;
}
    .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) {

    .profile-content {
        width: 90%;
        padding: 10px;
        border-radius: 7px;
    }
    .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;
    }
}