* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #080710;
}

/* Header/Blog Title */
.header {
  padding: 5px;
  text-align: center;
  background: #13111f;
  color: #f1f1f1;
}

.header h1 {
  font-size: 30px;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #171620;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.table {
  color: rgb(255, 255, 255);
  border: #ddd;
  border-style: dashed;
}

#container {
  height: 500px;
  display: flex;
}

.view_1 {
  height: 475px;
  width: 20%;
  color: white;
  margin-left: 10px;
}

.view_2 {
  height: 380px;
  width: 60%;
}

.view_3 {
  padding-left: 20px;
  height: 380px;
  width: 20%;
}

#view_1_title {
  width: 150px;
  text-align: left;
}

#view_2_title {
  width: 130px;
  text-align: left;
}

.table_1 {
  font-family: Arial;
}

tr:hover {
  background-color: rgb(15, 10, 8);
}

th,td {
  padding-top: 3px;
  padding-bottom: 3px;
}


#trading_container {
  height: 225px;
  display: flex;
  
}

/* trading button */
.box_1 {
  width: 500px;
  height: 260px;
  background-color: #171620;
  border-radius: 50px;
  margin: 30px 10px 0px 0px;
}

.trading_button{
  background-color: #3d3434; 
  color: #ffffff; 
  font-size: 15px; 
  border-radius: 10px;
  margin-top: 13px;
  width: 280px;
  margin-left: 50px;
  height: 30px;
}


.trading_button:hover{
  background-color: #05b62b;
}


.text_warning{
  margin-left: 80px;
  text-align: center;
  color: rgb(143, 22, 22);
}

.text_warning:hover{
  color:#05b62b;
  cursor: grab;

}


.box_2 {
  width: 80%;
  height: 220px;
  border-radius: 50px;
  margin-left: 50px;
  

}


.time_style {
  width: 60%;
  background-color: #a2a2a3;
  color: rgb(8, 8, 8);
}

.time_style:hover {
  background-color: #05b62b;
  color: black;
  cursor: grab;
}

.box_2_button{
  margin: 20px 10px 10px 20px;
  border-color: rgb(179, 179, 209);
  color: rgb(198, 198, 218);
  background-color: #201f24;
  width: 200px;
  height: 30px;
  font-size: 15px;
}
.box_2_button:hover{
  border-color: rgb(29, 235, 74);
  color: rgb(29, 235, 80);
  background-color: #080710;
  width: 200px;
  height: 30px;
  font-size: 15px;
  
}

.trading_frame{
  margin-left: 15px;
  width: 1000px;
  height: 200px;
  border: 0px solid white;
}

.table_1_warning{
  width: 500px;
  padding: 10px;
}

#warning_title_color{
  color:#ddd;

}

#warning_color{
  color:#666464;
}

  /*Footer*/

  .footer-container {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px;
    background-color: rgb(29, 29, 53);
    margin-top: 90px;
  }
  .footer-item {
    padding: 20px;
    font-size: 30px;
    text-align: center;
  }

  .footer_title{
    color:#ffffff;
    padding-left: 100px;
  }

  .footer_1_title{
    color : #bbb;
    padding-left: 100px;
  }


  .app_photo{
    width: 35%;
    height: 12%;
  }

  .footer_text_1{
    font-size: 30px;
    text-align: left;
    font-family:"Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    color: rgb(8, 6, 6);
  }

  .footer_text_2{
    font-size: 20px;
    text-align: left;
    font-family:"Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    color: #bbb;
  }

  p.footer_text_2:hover{
    color: black;
    cursor: pointer;
  }

  /* Radio % Css*/
  ul li.radio{
    color: #AAAAAA;
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #333;
  }
  
  ul li.radio input[type=radio]{
    position: absolute;
    visibility: hidden;
  }
  
  ul li.radio label{
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1.35em;
    padding: 25px 25px 25px 80px;
    margin: 10px auto;
    height: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
  }
  
  ul li.radio:hover label{
    color: #FFFFFF;
  }
  
  ul li.radio .check{
    display: block;
    position: absolute;
    border: 5px solid #AAAAAA;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    top: 30px;
    left: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
  }
  
  ul li.radio:hover .check {
    border: 5px solid #FFFFFF;
  }
  
  ul li.radio .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 5px;
    left: 5px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
  }
  
  input[type=radio]:checked ~ .check {
    border: 5px solid #0DFF92;
  }
  
  input[type=radio]:checked ~ .check::before{
    background: #0DFF92;
  }
  
  input[type=radio]:checked ~ label{
    color: #0DFF92;
  }
  
  .modal {
    display: none; 
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }


  /* Modal Content */
  .modal-content {
    background-color: #161010;
    margin: 15% auto;
    padding: 20px;
    border: 3px solid #fafafa;
    width: 450px;
  }

  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }


  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  
  /* Styles for alert... 
  by the way it is so weird when you look at your code a couple of years after you wrote it XD */
  
  