*{
    margin : 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'sans-serif';
    font-weight: normal;

    color: var(--kenta-accent-color);
    background-color: var(--kenta-base-color);
}

input.darkmode:checked + label + body {
    background: #242424;
}

.container{
    display: inline-block;
    overflow: hidden;
    margin: 0.5em;
    padding: 0.5em;
}

.container .text{
    position: relative;
    color: red;
    font-size: 60px;
    font-weight: 600;
}

.container .text.first-text{
    color: var(--kenta-accent-color);
}

.text.sec-text:before{
    content : "";
    position: absolute;
    top: 0;
    left:0;
    height:100%;
    width: 100%;
    background-color: var(--kenta-base-color);
    border-left: 2px solid #4070F4;
    animation: animate 4s steps(12) infinite;
}

@keyframes animate{
    40%, 60%{
        left: calc(100% + 4px);

    }
    100%{
        left:0%;
    }
}

.center-contain{
    text-align:center;
}

.center-contain div{
    text-align:center;
}

.center-contain *{
    text-align: center;
}

.center-contain table{
    margin-left: auto;
    margin-right: auto;
}

.grid{
    padding:20px;
}

.grid *{
    margin:calc(20px + (max(100vw, 800px) - 800px)*0.01);
    padding: 10px;
}

.grid div{
    padding:10px;
}

.grid th{
    padding:5px;
}

.grid2{
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    padding:20px;
}

@media (max-width:1000px) {
    .grid2{
        display: block;
    }
    .start{
        width:80%;
        margin:auto;
    }

    .strat2{
        width:80%;
        margin:auto;
    }

    .chartHome{
        height:600px;
    }
}

@media (max-width:1000px) {
    .close{
        display: none;
        padding:0;
    }

}
/*
.grid2 div{
    padding:calc(5px + (max(100vw, 800px) - 800px)*0.01);
}
*/
.grid2 th{
    padding:calc(5px + (max(100vw, 800px) - 800px)*0.005);
}

.watchlist th{
    padding: 20px;
}

.begin{
    width: 100%;
    height: 100%;
    border: 2px dashed #333;

    /*background: url('Images/hd/fond-tradalt') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover ;

    background-image: url('Images/hd/fond-tradalt');
    background-repeat: no-repeat;
    background-attachment: fixed;*/
    background-size: 100% 100%;
}

.begin *{
    background-color: transparent;
}

h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: white;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  
.boarding{
    border: 2px solid var(--kenta-base-300);
    background: var(--kenta-base-color);
    box-shadow: var(--kenta-base-200) 10px 10px 0px 0px;
    padding: calc(8px + (max(100vw, 800px) - 800px)*0.005);
    border-radius: 0px 0px 0px 0px;
    margin:5px;
}

.boarding2{
    border: 2px solid var(--kenta-base-300);
    background: var(--kenta-base-color);
    padding: calc(8px + (max(100vw, 800px) - 800px)*0.005);
    border-radius: 0px 0px 0px 0px; 
    margin:5px;
}

.boardingzero{
    border: 2px solid #4070F4;
    background: #4070F4;
    box-shadow: #4070F4 10px 10px 0px 0px;
    padding: calc(8px + (max(100vw, 800px) - 800px)*0.005);
    border-radius: 0px 0px 0px 0px;
    margin:5px;
}
  
  /* === HEADING STYLE #1 === */
  .head1-big h1 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 5px;
    font-size: 70px;
    padding:20px;
    color: var(--kenta-base-color);
  }

  .head1-big h1:before {
    width: 50px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: 18px;
    left: 50%;
    margin-left: -25px;
    background-color: #b80000;
  }
  .head1-big h1:after {
    width: 200px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    margin-left: -100px;
    background-color: #b80000;
  }

.head1-name{
    font-size: 40px;
}

img.imglogo{
    width: calc(40px + ((max(100vw, 800px) - 800px)*0.02));
    height: auto;
    max-width: none;
}

.nb_page{
    padding: 10px;
    margin: 10px;
}

.nb_page input{
    padding: 10px;
    margin: 10px;
    box-shadow: 10px 5px 5px teal;
}

.mini_symbol{
    font-size: calc(5px + (max(100vw, 600px) - 600px)*0.015);
    color: #787878;
}

.price{
    font-size: calc(10px + (max(100vw, 600px) - 600px)*0.015);
}

thead th{
    font-size: calc(15px + (max(100vw, 800px) - 800px)*0.01);
    font-weight: bold;
    padding:calc(5px + (max(100vw, 600px) - 600px)*0.01);
}

tbody th{
    padding:auto;
    padding:calc(5px + (max(100vw, 600px) - 600px)*0.01);
    font-size: calc(15px + (max(100vw, 600px) - 600px)*0.015);
}

tbody a{
    text-decoration: none;
}

tr{ 
    border-bottom: 1px solid black;
    padding-bottom: 5px;
} 

.container-parents{
    padding:20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.float-child {
    padding: 20px;
    width: 50%;
} 

.get{
    padding:20px;
    box-shadow: 10px 5px 5px red;
}

select{
    text-align: center;
}

.selected{
    margin:calc(8px + (max(100vw, 800px) - 800px)*0.005);
}

.ranking{
    font-size: calc(20px + (max(100vw, 800px) - 800px)*0.005);
}

.ranking_left div{
    text-align: left;
}

.ranking_right div{
    text-align: right;
}

.red{
    color: #B22222;
}

.green{
    color: #228B22;
}

.up {
    width: 0; 
    height: 0; 
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    
    border-bottom: 20px solid #228B22;

    padding: auto;
}

.down {
    width: 0; 
    height: 0; 
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    
    border-top: 20px solid #B22222;

    padding: auto;
}

.middle{
    height: 20px;
    width: 20px;
    background-color: #4070F4;
    border-radius: 50%;
    display: inline-block;

    padding: auto;
}

.start{
    width:65%;
    margin:auto;
}

.start2{
    padding:0;
}

.spring{
    font-size: calc(15px + (max(100vw, 800px) - 800px)*0.005);
}

.ranking-button a{
    color: white;
    padding:20px;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(121,9,9,1) 35%, rgba(0,212,255,1) 100%);
}

.centerContain{
    display: flex;
    justify-content: center;
    align-items: center;
}

.dyna{
    position: relative;
    font-size: calc(60px + (max(100vw, 800px) - 800px)*0.15);;
    color: #252839;
    -webkit-text-stroke: 0.1vw #383d52;
    text-transform: uppercase;
}

.dyna::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    Left:auto;
    width: 0;
    height:100%;
    color:#4070F4;
    -webkit-text-stroke:Ovw #383d52;
    border-right: 2px solid #4070F4;
    overflow: hidden;
    animation: animate 6s linear infinite;
}

@keyframes animate{
    0%, 10%, 100%{
        width:0;

    }
    70%, 90%{
        width:100%;
    }

}

.chart-column{
    margin:auto;
}

.chart-chart{
    padding: 0 8%;
}

.blue{
    color:#4070F4;
    font-size: calc(15px + (max(100vw, 800px) - 800px)*0.01);
    font-weight: bold;
    padding:calc(5px + (max(100vw, 600px) - 600px)*0.01);
}

.one{
    font-size: calc(15px + (max(100vw, 800px) - 800px)*0.01);
    font-weight: bold;
    padding:calc(5px + (max(100vw, 600px) - 600px)*0.01);
}